/external/llvm/unittests/Transforms/Utils/ |
D | IntegerDivision.cpp | 28 SmallVector<Type*, 2> ArgTys(2, Builder.getInt32Ty()); in TEST() local 30 ArgTys, false), in TEST() 58 SmallVector<Type*, 2> ArgTys(2, Builder.getInt32Ty()); in TEST() local 60 ArgTys, false), in TEST() 88 SmallVector<Type*, 2> ArgTys(2, Builder.getInt32Ty()); in TEST() local 90 ArgTys, false), in TEST() 118 SmallVector<Type*, 2> ArgTys(2, Builder.getInt32Ty()); in TEST() local 120 ArgTys, false), in TEST() 149 SmallVector<Type*, 2> ArgTys(2, Builder.getInt64Ty()); in TEST() local 151 ArgTys, false), in TEST() [all …]
|
/external/llvm/lib/IR/ |
D | Module.cpp | 155 std::vector<Type*> ArgTys; in getOrInsertFunction() local 157 ArgTys.push_back(ArgTy); in getOrInsertFunction() 163 FunctionType::get(RetTy, ArgTys, false), in getOrInsertFunction() 173 std::vector<Type*> ArgTys; in getOrInsertFunction() local 175 ArgTys.push_back(ArgTy); in getOrInsertFunction() 181 FunctionType::get(RetTy, ArgTys, false), in getOrInsertFunction()
|
D | Function.cpp | 825 SmallVector<Type*, 8> ArgTys; in getType() local 827 ArgTys.push_back(DecodeFixedType(TableRef, Tys, Context)); in getType() 831 if (!ArgTys.empty() && ArgTys.back()->isVoidTy()) { in getType() 832 ArgTys.pop_back(); in getType() 833 return FunctionType::get(ResultTy, ArgTys, true); in getType() 835 return FunctionType::get(ResultTy, ArgTys, false); in getType()
|
D | Verifier.cpp | 393 SmallVectorImpl<Type *> &ArgTys); 2910 SmallVectorImpl<Type*> &ArgTys) { in VerifyIntrinsicType() argument 2930 VerifyIntrinsicType(VT->getElementType(), Infos, ArgTys); in VerifyIntrinsicType() 2935 VerifyIntrinsicType(PT->getElementType(), Infos, ArgTys); in VerifyIntrinsicType() 2944 if (VerifyIntrinsicType(ST->getElementType(i), Infos, ArgTys)) in VerifyIntrinsicType() 2952 if (D.getArgumentNumber() < ArgTys.size()) in VerifyIntrinsicType() 2953 return Ty != ArgTys[D.getArgumentNumber()]; in VerifyIntrinsicType() 2957 assert(D.getArgumentNumber() == ArgTys.size() && "Table consistency error"); in VerifyIntrinsicType() 2958 ArgTys.push_back(Ty); in VerifyIntrinsicType() 2971 if (D.getArgumentNumber() >= ArgTys.size()) in VerifyIntrinsicType() [all …]
|
/external/clang/lib/Frontend/Rewrite/ |
D | RewriteObjC.cpp | 2225 SmallVector<QualType, 16> ArgTys; in SynthSelGetUidFunctionDecl() local 2226 ArgTys.push_back(Context->getPointerType(Context->CharTy.withConst())); in SynthSelGetUidFunctionDecl() 2228 getSimpleFunctionType(Context->getObjCSelType(), ArgTys); in SynthSelGetUidFunctionDecl() 2318 SmallVector<QualType, 16> ArgTys; in SynthSuperConstructorFunctionDecl() local 2321 ArgTys.push_back(argT); in SynthSuperConstructorFunctionDecl() 2322 ArgTys.push_back(argT); in SynthSuperConstructorFunctionDecl() 2324 ArgTys); in SynthSuperConstructorFunctionDecl() 2335 SmallVector<QualType, 16> ArgTys; in SynthMsgSendFunctionDecl() local 2338 ArgTys.push_back(argT); in SynthMsgSendFunctionDecl() 2341 ArgTys.push_back(argT); in SynthMsgSendFunctionDecl() [all …]
|
D | RewriteModernObjC.cpp | 2337 SmallVector<QualType, 16> ArgTys; in SynthSelGetUidFunctionDecl() local 2338 ArgTys.push_back(Context->getPointerType(Context->CharTy.withConst())); in SynthSelGetUidFunctionDecl() 2340 getSimpleFunctionType(Context->getObjCSelType(), ArgTys); in SynthSelGetUidFunctionDecl() 2432 SmallVector<QualType, 16> ArgTys; in SynthSuperConstructorFunctionDecl() local 2435 ArgTys.push_back(argT); in SynthSuperConstructorFunctionDecl() 2436 ArgTys.push_back(argT); in SynthSuperConstructorFunctionDecl() 2438 ArgTys); in SynthSuperConstructorFunctionDecl() 2449 SmallVector<QualType, 16> ArgTys; in SynthMsgSendFunctionDecl() local 2452 ArgTys.push_back(argT); in SynthMsgSendFunctionDecl() 2455 ArgTys.push_back(argT); in SynthMsgSendFunctionDecl() [all …]
|
/external/clang/lib/Basic/ |
D | IdentifierTable.cpp | 378 keyword_iterator ArgTys, unsigned NumArgs) { in Profile() argument 381 ID.AddPointer(ArgTys[i]); in Profile()
|
/external/clang/lib/CodeGen/ |
D | CGException.cpp | 1308 QualType ArgTys[2] = {Context.BoolTy, Context.VoidPtrTy}; in Emit() local 1311 Context.getFunctionType(Context.VoidTy, ArgTys, EPI)); in Emit() 1315 llvm::ConstantInt::get(CGF.ConvertType(ArgTys[0]), F.isForEHCleanup()); in Emit() 1316 Args.add(RValue::get(IsForEH), ArgTys[0]); in Emit() 1322 Args.add(RValue::get(FP), ArgTys[1]); in Emit()
|
D | CGObjCGNU.cpp | 49 std::vector<llvm::Type*> ArgTys; member in __anon13748a720111::LazyRuntimeFunction 67 ArgTys.clear(); in init() 71 ArgTys.push_back(ArgTy); in init() 74 ArgTys.push_back(RetTy); in init() 82 llvm::Type *RetTy = ArgTys.back(); in operator llvm::Constant*() 83 ArgTys.pop_back(); in operator llvm::Constant*() 84 llvm::FunctionType *FTy = llvm::FunctionType::get(RetTy, ArgTys, false); in operator llvm::Constant*() 89 ArgTys.resize(0); in operator llvm::Constant*()
|
D | CGCXXABI.h | 274 SmallVectorImpl<CanQualType> &ArgTys) = 0;
|
D | CGCall.cpp | 344 CanQualType ArgTys[] = { GetThisType(Context, MD->getParent()) }; in arrangeMSMemberPointerThunk() local 346 /*chainCall=*/false, ArgTys, in arrangeMSMemberPointerThunk() 356 SmallVector<CanQualType, 2> ArgTys; in arrangeMSCtorClosure() local 358 ArgTys.push_back(GetThisType(Context, RD)); in arrangeMSCtorClosure() 360 ArgTys.push_back(*FTP->param_type_begin()); in arrangeMSCtorClosure() 362 ArgTys.push_back(Context.IntTy); in arrangeMSCtorClosure() 366 /*chainCall=*/false, ArgTys, in arrangeMSCtorClosure()
|
D | MicrosoftCXXABI.cpp | 157 SmallVectorImpl<CanQualType> &ArgTys) override; 1136 SmallVectorImpl<CanQualType> &ArgTys) { in buildStructorSignature() argument 1140 ArgTys.push_back(getContext().IntTy); in buildStructorSignature() 1153 ArgTys.insert(ArgTys.begin() + 1, getContext().IntTy); in buildStructorSignature() 1155 ArgTys.push_back(getContext().IntTy); in buildStructorSignature()
|
D | ItaniumCXXABI.cpp | 163 SmallVectorImpl<CanQualType> &ArgTys) override; 1206 SmallVectorImpl<CanQualType> &ArgTys) { in buildStructorSignature() argument 1214 ArgTys.insert(ArgTys.begin() + 1, in buildStructorSignature()
|
/external/llvm/lib/CodeGen/ |
D | WinEHPrepare.cpp | 827 std::vector<Type *> ArgTys; in outlineHandler() local 828 ArgTys.push_back(Int8PtrType); in outlineHandler() 829 ArgTys.push_back(Int8PtrType); in outlineHandler() 832 FunctionType *FnType = FunctionType::get(Int8PtrType, ArgTys, false); in outlineHandler() 837 FunctionType::get(Type::getVoidTy(Context), ArgTys, false); in outlineHandler()
|
/external/llvm/unittests/IR/ |
D | InstructionsTest.cpp | 491 Type *ArgTys[] = {Int32Ty, Int32Ty, Int32Ty}; in TEST() local 492 Type *FnTy = FunctionType::get(Int32Ty, ArgTys, /*isVarArg=*/false); in TEST()
|
/external/clang/lib/Sema/ |
D | SemaLookup.cpp | 2706 ArrayRef<QualType> ArgTys, in LookupLiteralOperator() argument 2741 else if (FD->getNumParams() == ArgTys.size()) { in LookupLiteralOperator() 2743 for (unsigned ArgIdx = 0; ArgIdx != ArgTys.size(); ++ArgIdx) { in LookupLiteralOperator() 2745 if (!Context.hasSameUnqualifiedType(ArgTys[ArgIdx], ParamTy)) { in LookupLiteralOperator() 2810 << R.getLookupName() << (int)ArgTys.size() << ArgTys[0] in LookupLiteralOperator() 2811 << (ArgTys.size() == 2 ? ArgTys[1] : QualType()) << AllowRaw in LookupLiteralOperator()
|
D | SemaChecking.cpp | 188 QualType ArgTys[2] = { ReturnTy, ChainResult.get()->getType() }; in SemaBuiltinCallWithStaticChain() local 190 ReturnTy, ArgTys, FunctionProtoType::ExtProtoInfo()); in SemaBuiltinCallWithStaticChain()
|
/external/llvm/lib/Transforms/Scalar/ |
D | MemCpyOptimizer.cpp | 941 Type *ArgTys[3] = { M->getRawDest()->getType(), in processMemMove() local 945 ArgTys)); in processMemMove()
|
/external/llvm/lib/Bitcode/Reader/ |
D | BitcodeReader.cpp | 1356 SmallVector<Type*, 8> ArgTys; in ParseTypeTableBody() local 1359 ArgTys.push_back(T); in ParseTypeTableBody() 1365 if (!ResultTy || ArgTys.size() < Record.size()-3) in ParseTypeTableBody() 1368 ResultTy = FunctionType::get(ResultTy, ArgTys, Record[0]); in ParseTypeTableBody() 1375 SmallVector<Type*, 8> ArgTys; in ParseTypeTableBody() local 1378 ArgTys.push_back(T); in ParseTypeTableBody() 1384 if (!ResultTy || ArgTys.size() < Record.size()-2) in ParseTypeTableBody() 1387 ResultTy = FunctionType::get(ResultTy, ArgTys, Record[0]); in ParseTypeTableBody()
|
/external/clang/lib/AST/ |
D | Type.cpp | 1744 const QualType *ArgTys, unsigned NumParams, in Profile() argument 1767 ID.AddPointer(ArgTys[i].getAsOpaquePtr()); in Profile()
|
/external/clang/include/clang/AST/ |
D | Type.h | 3168 param_type_iterator ArgTys, unsigned NumArgs,
|
/external/clang/include/clang/Sema/ |
D | Sema.h | 2633 ArrayRef<QualType> ArgTys,
|