Home
last modified time | relevance | path

Searched refs:RTy (Results 1 – 25 of 30) sorted by relevance

12

/external/llvm/include/llvm/IR/
DPatternMatch.h86 template <typename LTy, typename RTy> struct match_combine_or {
88 RTy R;
90 match_combine_or(const LTy &Left, const RTy &Right) : L(Left), R(Right) {} in match_combine_or()
101 template <typename LTy, typename RTy> struct match_combine_and {
103 RTy R;
105 match_combine_and(const LTy &Left, const RTy &Right) : L(Left), R(Right) {} in match_combine_and()
116 template <typename LTy, typename RTy>
117 inline match_combine_or<LTy, RTy> m_CombineOr(const LTy &L, const RTy &R) { in m_CombineOr()
118 return match_combine_or<LTy, RTy>(L, R); in m_CombineOr()
122 template <typename LTy, typename RTy>
[all …]
DDIBuilder.h155 DIDerivedType *createReferenceType(unsigned Tag, DIType *RTy,
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/IR/
DPatternMatch.h94 template <typename LTy, typename RTy> struct match_combine_or {
96 RTy R;
98 match_combine_or(const LTy &Left, const RTy &Right) : L(Left), R(Right) {} in match_combine_or()
109 template <typename LTy, typename RTy> struct match_combine_and {
111 RTy R;
113 match_combine_and(const LTy &Left, const RTy &Right) : L(Left), R(Right) {} in match_combine_and()
124 template <typename LTy, typename RTy>
125 inline match_combine_or<LTy, RTy> m_CombineOr(const LTy &L, const RTy &R) { in m_CombineOr()
126 return match_combine_or<LTy, RTy>(L, R); in m_CombineOr()
130 template <typename LTy, typename RTy>
[all …]
DDIBuilder.h225 DIDerivedType *createReferenceType(unsigned Tag, DIType *RTy,
/external/clang/lib/Sema/
DSemaExprMember.cpp572 explicit RecordMemberExprValidatorCCC(const RecordType *RTy) in RecordMemberExprValidatorCCC() argument
573 : Record(RTy->getDecl()) { in RecordMemberExprValidatorCCC()
616 const RecordType *RTy, in LookupMemberExprInRecord() argument
621 RecordDecl *RDecl = RTy->getDecl(); in LookupMemberExprInRecord()
622 if (!SemaRef.isThisOutsideMemberFunctionBody(QualType(RTy, 0)) && in LookupMemberExprInRecord()
623 SemaRef.RequireCompleteType(OpLoc, QualType(RTy, 0), in LookupMemberExprInRecord()
630 QualType ObjectType = SS.isSet() ? QualType() : QualType(RTy, 0); in LookupMemberExprInRecord()
678 llvm::make_unique<RecordMemberExprValidatorCCC>(RTy), in LookupMemberExprInRecord()
1334 if (const RecordType *RTy = BaseType->getAs<RecordType>()) { in LookupMemberExpr() local
1336 if (LookupMemberExprInRecord(S, R, BaseExpr.get(), RTy, in LookupMemberExpr()
DSemaExprCXX.cpp5130 QualType RTy = RHS.get()->getType(); in CXXCheckConditionalOperands() local
5132 bool RVoid = RTy->isVoidType(); in CXXCheckConditionalOperands()
5156 << (LVoid ? RTy : LTy) << (LVoid ? 0 : 1) in CXXCheckConditionalOperands()
5167 if (!Context.hasSameType(LTy, RTy) && in CXXCheckConditionalOperands()
5168 (LTy->isRecordType() || RTy->isRecordType())) { in CXXCheckConditionalOperands()
5180 << LTy << RTy << LHS.get()->getSourceRange() << RHS.get()->getSourceRange(); in CXXCheckConditionalOperands()
5194 RTy = RHS.get()->getType(); in CXXCheckConditionalOperands()
5204 if (!Context.hasSameType(LTy, RTy) && in CXXCheckConditionalOperands()
5205 Context.hasSameUnqualifiedType(LTy, RTy) && in CXXCheckConditionalOperands()
5211 Qualifiers RCVR = Qualifiers::fromCVRMask(RTy.getCVRQualifiers()); in CXXCheckConditionalOperands()
[all …]
/external/clang/lib/StaticAnalyzer/Core/
DRegionStore.cpp1389 QualType RTy = R->getValueType(); in getBinding() local
1393 if (RTy->isAnyComplexType()) in getBinding()
1404 if (RTy->isStructureOrClassType()) in getBinding()
1408 if (RTy->isUnionType()) in getBinding()
1411 if (RTy->isArrayType()) { in getBinding()
1412 if (RTy->isConstantArrayType()) in getBinding()
1419 if (RTy->isVectorType()) in getBinding()
/external/llvm/lib/TableGen/
DRecord.cpp164 const RecordRecTy *RTy = dyn_cast<RecordRecTy>(RHS); in typeIsConvertibleTo() local
165 if (!RTy) in typeIsConvertibleTo()
168 if (RTy->getRecord() == Rec || Rec->isSubClassOf(RTy->getRecord())) in typeIsConvertibleTo()
171 for (const auto &SCPair : RTy->getRecord()->getSuperClasses()) in typeIsConvertibleTo()
1325 if (RecordRecTy *RTy = dyn_cast<RecordRecTy>(getType())) in getFieldType() local
1326 if (const RecordVal *RV = RTy->getRecord()->getValue(FieldName)) in getFieldType()
/external/clang/lib/CodeGen/
DCodeGenTypes.cpp498 const ReferenceType *RTy = cast<ReferenceType>(Ty); in ConvertType() local
499 QualType ETy = RTy->getPointeeType(); in ConvertType()
/external/llvm/lib/IR/
DDIBuilder.cpp229 DIDerivedType *DIBuilder::createReferenceType(unsigned Tag, DIType *RTy, in createReferenceType() argument
232 assert(RTy && "Unable to create reference type"); in createReferenceType()
233 return DIDerivedType::get(VMContext, Tag, "", nullptr, 0, nullptr, RTy, in createReferenceType()
/external/swiftshader/third_party/LLVM/include/llvm/Analysis/
DDIBuilder.h130 DIType createReferenceType(DIType RTy);
/external/swiftshader/third_party/LLVM/lib/Analysis/
DDIBuilder.cpp231 DIType DIBuilder::createReferenceType(DIType RTy) { in createReferenceType() argument
232 assert(RTy.Verify() && "Unable to create reference type"); in createReferenceType()
244 RTy in createReferenceType()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/IR/
DDIBuilder.cpp294 unsigned Tag, DIType *RTy, in createReferenceType() argument
298 assert(RTy && "Unable to create reference type"); in createReferenceType()
299 return DIDerivedType::get(VMContext, Tag, "", nullptr, 0, nullptr, RTy, in createReferenceType()
/external/swiftshader/third_party/LLVM/lib/Transforms/Utils/
DInlineFunction.cpp1229 Type *RTy = CalledFunc->getReturnType(); in InlineFunction() local
1236 PHI = PHINode::Create(RTy, Returns.size(), TheCall->getName(), in InlineFunction()
/external/clang/lib/AST/
DDeclPrinter.cpp133 else if (const ReferenceType *RTy = BaseType->getAs<ReferenceType>()) in GetBaseType() local
134 BaseType = RTy->getPointeeType(); in GetBaseType()
/external/swiftshader/third_party/LLVM/lib/CodeGen/AsmPrinter/
DDwarfCompileUnit.cpp741 DIDescriptor RTy = Elements.getElement(0); in constructTypeDIE() local
742 addType(&Buffer, DIType(RTy)); in constructTypeDIE()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/TableGen/
DRecord.cpp223 const RecordRecTy *RTy = dyn_cast<RecordRecTy>(RHS); in typeIsConvertibleTo() local
224 if (!RTy) in typeIsConvertibleTo()
227 return llvm::all_of(RTy->getClasses(), [this](Record *TargetClass) { in typeIsConvertibleTo()
/external/llvm/lib/CodeGen/AsmPrinter/
DDwarfUnit.cpp861 if (auto RTy = resolve(Elements[0])) in constructTypeDIE() local
862 addType(Buffer, RTy); in constructTypeDIE()
/external/llvm/lib/Transforms/Utils/
DInlineFunction.cpp2027 Type *RTy = CalledFunc->getReturnType(); in InlineFunction() local
2034 PHI = PHINode::Create(RTy, Returns.size(), TheCall->getName(), in InlineFunction()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/AsmPrinter/
DDwarfUnit.cpp913 if (auto RTy = resolve(Elements[0])) in constructTypeDIE() local
914 addType(Buffer, RTy); in constructTypeDIE()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Utils/
DInlineFunction.cpp2261 Type *RTy = CalledFunc->getReturnType(); in InlineFunction() local
2268 PHI = PHINode::Create(RTy, Returns.size(), TheCall->getName(), in InlineFunction()
/external/swiftshader/third_party/LLVM/lib/Bitcode/Reader/
DBitcodeReader.cpp1439 VectorType *RTy = dyn_cast<VectorType>(CurTy); in ParseConstants() local
1442 if (Record.size() < 4 || RTy == 0 || OpTy == 0) in ParseConstants()
1447 RTy->getNumElements()); in ParseConstants()
/external/swiftshader/third_party/LLVM/lib/TableGen/
DRecord.cpp1361 if (RecordRecTy *RTy = dynamic_cast<RecordRecTy*>(getType())) in getFieldType() local
1362 if (const RecordVal *RV = RTy->getRecord()->getValue(FieldName)) in getFieldType()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Bitcode/Reader/
DBitcodeReader.cpp2479 VectorType *RTy = dyn_cast<VectorType>(CurTy); in parseConstants() local
2482 if (Record.size() < 4 || !RTy || !OpTy) in parseConstants()
2487 RTy->getNumElements()); in parseConstants()
/external/llvm/lib/Bitcode/Reader/
DBitcodeReader.cpp3203 VectorType *RTy = dyn_cast<VectorType>(CurTy); in parseConstants() local
3206 if (Record.size() < 4 || !RTy || !OpTy) in parseConstants()
3211 RTy->getNumElements()); in parseConstants()

12