Searched defs:RTy (Results 1 - 15 of 15) sorted by relevance

/external/clang/lib/CodeGen/
H A DCodeGenTypes.cpp498 const ReferenceType *RTy = cast<ReferenceType>(Ty); local
499 QualType ETy = RTy->getPointeeType();
H A DCGDebugInfo.cpp1557 llvm::DIType *CGDebugInfo::getOrCreateRecordType(QualType RTy, argument
1560 llvm::DIType *T = getOrCreateType(RTy, getOrCreateFile(Loc));
H A DCGExprScalar.cpp1010 llvm::VectorType *RTy = llvm::VectorType::get(LTy->getElementType(), local
1012 Value* NewV = llvm::UndefValue::get(RTy);
H A DCGBuiltin.cpp1915 llvm::Type *RTy; local
1925 RTy = Exchange->getType();
1939 RTy));
/external/swiftshader/third_party/LLVM/lib/Analysis/
H A DDIBuilder.cpp231 DIType DIBuilder::createReferenceType(DIType RTy) { argument
232 assert(RTy.Verify() && "Unable to create reference type");
244 RTy
/external/swiftshader/third_party/LLVM/lib/Transforms/Utils/
H A DInlineFunction.cpp1229 Type *RTy = CalledFunc->getReturnType(); local
1236 PHI = PHINode::Create(RTy, Returns.size(), TheCall->getName(),
/external/clang/lib/Sema/
H A DSemaExprMember.cpp572 explicit RecordMemberExprValidatorCCC(const RecordType *RTy) argument
573 : Record(RTy->getDecl()) {
616 const RecordType *RTy,
621 RecordDecl *RDecl = RTy->getDecl();
622 if (!SemaRef.isThisOutsideMemberFunctionBody(QualType(RTy, 0)) &&
623 SemaRef.RequireCompleteType(OpLoc, QualType(RTy, 0),
630 QualType ObjectType = SS.isSet() ? QualType() : QualType(RTy, 0);
678 llvm::make_unique<RecordMemberExprValidatorCCC>(RTy),
1334 if (const RecordType *RTy = BaseType->getAs<RecordType>()) {
1336 if (LookupMemberExprInRecord(S, R, BaseExpr.get(), RTy,
614 LookupMemberExprInRecord(Sema &SemaRef, LookupResult &R, Expr *BaseExpr, const RecordType *RTy, SourceLocation OpLoc, bool IsArrow, CXXScopeSpec &SS, bool HasTemplateArgs, TypoExpr *&TE) argument
[all...]
H A DSemaExprCXX.cpp5130 QualType RTy = RHS.get()->getType(); local
5132 bool RVoid = RTy->isVoidType();
5156 << (LVoid ? RTy : LTy) << (LVoid ? 0 : 1)
5167 if (!Context.hasSameType(LTy, RTy) &&
5168 (LTy->isRecordType() || RTy->isRecordType())) {
5180 << LTy << RTy << LHS.get()->getSourceRange() << RHS.get()->getSourceRange();
5194 RTy = RHS.get()->getType();
5204 if (!Context.hasSameType(LTy, RTy) &&
5205 Context.hasSameUnqualifiedType(LTy, RTy) &&
5211 Qualifiers RCVR = Qualifiers::fromCVRMask(RTy
[all...]
/external/llvm/lib/IR/
H A DDIBuilder.cpp229 DIDerivedType *DIBuilder::createReferenceType(unsigned Tag, DIType *RTy, argument
232 assert(RTy && "Unable to create reference type");
233 return DIDerivedType::get(VMContext, Tag, "", nullptr, 0, nullptr, RTy,
/external/llvm/lib/TableGen/
H A DRecord.cpp164 const RecordRecTy *RTy = dyn_cast<RecordRecTy>(RHS); local
165 if (!RTy)
168 if (RTy->getRecord() == Rec || Rec->isSubClassOf(RTy->getRecord()))
171 for (const auto &SCPair : RTy->getRecord()->getSuperClasses())
1325 if (RecordRecTy *RTy = dyn_cast<RecordRecTy>(getType()))
1326 if (const RecordVal *RV = RTy->getRecord()->getValue(FieldName))
/external/llvm/lib/Transforms/Utils/
H A DInlineFunction.cpp2027 Type *RTy = CalledFunc->getReturnType(); local
2034 PHI = PHINode::Create(RTy, Returns.size(), TheCall->getName(),
/external/swiftshader/third_party/LLVM/lib/Bitcode/Reader/
H A DBitcodeReader.cpp1439 VectorType *RTy = dyn_cast<VectorType>(CurTy); local
1442 if (Record.size() < 4 || RTy == 0 || OpTy == 0)
1447 RTy->getNumElements());
/external/swiftshader/third_party/LLVM/lib/CodeGen/AsmPrinter/
H A DDwarfCompileUnit.cpp741 DIDescriptor RTy = Elements.getElement(0); local
742 addType(&Buffer, DIType(RTy));
/external/clang/lib/StaticAnalyzer/Core/
H A DRegionStore.cpp1389 QualType RTy = R->getValueType(); local
1393 if (RTy->isAnyComplexType())
1404 if (RTy->isStructureOrClassType())
1408 if (RTy->isUnionType())
1411 if (RTy->isArrayType()) {
1412 if (RTy->isConstantArrayType())
1419 if (RTy->isVectorType())
/external/llvm/lib/Bitcode/Reader/
H A DBitcodeReader.cpp3203 VectorType *RTy = dyn_cast<VectorType>(CurTy); local
3206 if (Record.size() < 4 || !RTy || !OpTy)
3211 RTy->getNumElements());

Completed in 648 milliseconds