Searched refs:RTy (Results 1 - 16 of 16) sorted by relevance

/freebsd-10.1-release/contrib/llvm/include/llvm/Support/
H A DPatternMatch.h81 template<typename LTy, typename RTy>
84 RTy R;
86 match_combine_or(const LTy &Left, const RTy &Right) : L(Left), R(Right) { }
98 template<typename LTy, typename RTy>
101 RTy R;
103 match_combine_and(const LTy &Left, const RTy &Right) : L(Left), R(Right) { }
115 template<typename LTy, typename RTy>
116 inline match_combine_or<LTy, RTy> m_CombineOr(const LTy &L, const RTy &R) {
117 return match_combine_or<LTy, RTy>(
[all...]
/freebsd-10.1-release/contrib/llvm/tools/clang/lib/Sema/
H A DSemaExprMember.cpp546 explicit RecordMemberExprValidatorCCC(const RecordType *RTy) argument
547 : Record(RTy->getDecl()) {}
584 SourceRange BaseRange, const RecordType *RTy,
587 RecordDecl *RDecl = RTy->getDecl();
588 if (!SemaRef.isThisOutsideMemberFunctionBody(QualType(RTy, 0)) &&
589 SemaRef.RequireCompleteType(OpLoc, QualType(RTy, 0),
596 QualType ObjectType = SS.isSet() ? QualType() : QualType(RTy, 0);
633 RecordMemberExprValidatorCCC Validator(RTy);
1225 if (const RecordType *RTy = BaseType->getAs<RecordType>()) {
1227 RTy, OpLo
583 LookupMemberExprInRecord(Sema &SemaRef, LookupResult &R, SourceRange BaseRange, const RecordType *RTy, SourceLocation OpLoc, CXXScopeSpec &SS, bool HasTemplateArgs) argument
[all...]
H A DSemaExprCXX.cpp4399 QualType RTy = RHS.get()->getType(); local
4401 bool RVoid = RTy->isVoidType();
4427 RTy = RHS.get()->getType();
4435 return RTy;
4446 << (LVoid ? RTy : LTy) << (LVoid ? 0 : 1)
4457 if (!Context.hasSameType(LTy, RTy) &&
4458 (LTy->isRecordType() || RTy->isRecordType())) {
4471 << LTy << RTy << LHS.get()->getSourceRange() << RHS.get()->getSourceRange();
4485 RTy = RHS.get()->getType();
4495 if (!Context.hasSameType(LTy, RTy)
[all...]
/freebsd-10.1-release/contrib/llvm/tools/clang/lib/CodeGen/
H A DCodeGenTypes.cpp409 const ReferenceType *RTy = cast<ReferenceType>(Ty); local
410 QualType ETy = RTy->getPointeeType();
H A DCGBuiltin.cpp2574 llvm::VectorType *RTy = llvm::VectorType::get(ETy, 1); local
2578 RTy = llvm::VectorType::getExtendedElementVectorType(RTy);
2581 llvm::Type *Tys[2] = {RTy, VTy};
2596 llvm::VectorType *RTy = OverloadWideInt ? local
2599 F = CGF.CGM.getIntrinsic(Int, RTy);
H A DCGDebugInfo.cpp1397 llvm::DIType CGDebugInfo::getOrCreateRecordType(QualType RTy, argument
1400 llvm::DIType T = getOrCreateType(RTy, getOrCreateFile(Loc));
H A DCGExprScalar.cpp942 llvm::VectorType *RTy = llvm::VectorType::get(LTy->getElementType(), local
944 Value* NewV = llvm::UndefValue::get(RTy);
/freebsd-10.1-release/contrib/llvm/lib/TableGen/
H A DRecord.cpp359 const RecordRecTy *RTy = dyn_cast<RecordRecTy>(RHS); local
360 if (!RTy)
363 if (Rec == RTy->getRecord() || RTy->getRecord()->isSubClassOf(Rec))
368 if (RTy->getRecord()->isSubClassOf(SC[i]))
1360 if (RecordRecTy *RTy = dyn_cast<RecordRecTy>(getType()))
1361 if (const RecordVal *RV = RTy->getRecord()->getValue(FieldName))
/freebsd-10.1-release/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/
H A DRegionStore.cpp1295 QualType RTy = R->getValueType(); local
1299 if (RTy->isAnyComplexType())
1310 if (RTy->isStructureOrClassType())
1314 if (RTy->isUnionType())
1317 if (RTy->isArrayType()) {
1318 if (RTy->isConstantArrayType())
1325 if (RTy->isVectorType())
/freebsd-10.1-release/contrib/llvm/include/llvm/
H A DDIBuilder.h159 DIDerivedType createReferenceType(unsigned Tag, DIType RTy);
/freebsd-10.1-release/contrib/llvm/lib/Transforms/Utils/
H A DInlineFunction.cpp830 Type *RTy = CalledFunc->getReturnType(); local
837 PHI = PHINode::Create(RTy, Returns.size(), TheCall->getName(),
/freebsd-10.1-release/contrib/llvm/lib/IR/
H A DDIBuilder.cpp330 DIDerivedType DIBuilder::createReferenceType(unsigned Tag, DIType RTy) { argument
331 assert(RTy.isType() && "Unable to create reference type");
343 RTy.getRef()
/freebsd-10.1-release/contrib/llvm/tools/clang/lib/AST/
H A DDeclPrinter.cpp120 else if (const ReferenceType *RTy = BaseType->getAs<ReferenceType>())
121 BaseType = RTy->getPointeeType();
H A DASTContext.cpp5246 } else if (const RecordType *RTy = PointeeTy->getAs<RecordType>()) {
5248 if (RTy->getDecl()->getIdentifier() == &Idents.get("objc_class")) {
5253 if (RTy->getDecl()->getIdentifier() == &Idents.get("objc_object")) {
/freebsd-10.1-release/contrib/llvm/lib/CodeGen/AsmPrinter/
H A DDwarfCompileUnit.cpp1184 DIType RTy(Elements.getElement(0));
1185 if (RTy)
1186 addType(&Buffer, RTy);
/freebsd-10.1-release/contrib/llvm/lib/Bitcode/Reader/
H A DBitcodeReader.cpp1438 VectorType *RTy = dyn_cast<VectorType>(CurTy); local
1441 if (Record.size() < 4 || RTy == 0 || OpTy == 0)
1446 RTy->getNumElements());

Completed in 330 milliseconds