| /NextBSD/contrib/llvm/lib/IR/ |
| HD | 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()
|
| HD | Verifier.cpp | 389 SmallVectorImpl<Type *> &ArgTys); 2989 SmallVectorImpl<Type*> &ArgTys) { in VerifyIntrinsicType() argument 3009 VerifyIntrinsicType(VT->getElementType(), Infos, ArgTys); in VerifyIntrinsicType() 3014 VerifyIntrinsicType(PT->getElementType(), Infos, ArgTys); in VerifyIntrinsicType() 3023 if (VerifyIntrinsicType(ST->getElementType(i), Infos, ArgTys)) in VerifyIntrinsicType() 3031 if (D.getArgumentNumber() < ArgTys.size()) in VerifyIntrinsicType() 3032 return Ty != ArgTys[D.getArgumentNumber()]; in VerifyIntrinsicType() 3036 assert(D.getArgumentNumber() == ArgTys.size() && "Table consistency error"); in VerifyIntrinsicType() 3037 ArgTys.push_back(Ty); in VerifyIntrinsicType() 3050 if (D.getArgumentNumber() >= ArgTys.size()) in VerifyIntrinsicType() [all …]
|
| HD | Function.cpp | 830 SmallVector<Type*, 8> ArgTys; in getType() local 832 ArgTys.push_back(DecodeFixedType(TableRef, Tys, Context)); in getType() 836 if (!ArgTys.empty() && ArgTys.back()->isVoidTy()) { in getType() 837 ArgTys.pop_back(); in getType() 838 return FunctionType::get(ResultTy, ArgTys, true); in getType() 840 return FunctionType::get(ResultTy, ArgTys, false); in getType()
|
| /NextBSD/contrib/llvm/tools/clang/lib/Frontend/Rewrite/ |
| HD | 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 …]
|
| HD | 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 …]
|
| /NextBSD/contrib/llvm/lib/Target/X86/ |
| HD | X86WinEHState.cpp | 331 Type *ArgTys[5] = {Int8PtrType, Int8PtrType, Int8PtrType, Int8PtrType, in generateLSDAInEAXThunk() local 334 FunctionType::get(Int32Ty, makeArrayRef(&ArgTys[0], 4), in generateLSDAInEAXThunk() 337 FunctionType::get(Int32Ty, makeArrayRef(&ArgTys[0], 5), in generateLSDAInEAXThunk()
|
| /NextBSD/contrib/llvm/tools/clang/lib/Basic/ |
| HD | IdentifierTable.cpp | 388 keyword_iterator ArgTys, unsigned NumArgs) { in Profile() argument 391 ID.AddPointer(ArgTys[i]); in Profile()
|
| /NextBSD/contrib/llvm/tools/clang/lib/CodeGen/ |
| HD | CGException.cpp | 1312 QualType ArgTys[2] = {Context.UnsignedCharTy, Context.VoidPtrTy}; in Emit() local 1316 llvm::ConstantInt::get(CGF.ConvertType(ArgTys[0]), F.isForEHCleanup()); in Emit() 1317 Args.add(RValue::get(IsForEH), ArgTys[0]); in Emit() 1318 Args.add(RValue::get(FP), ArgTys[1]); in Emit() 1323 Context.getFunctionType(Context.VoidTy, ArgTys, EPI)); in Emit()
|
| HD | CGCXXABI.h | 274 SmallVectorImpl<CanQualType> &ArgTys) = 0;
|
| HD | 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()
|
| HD | MicrosoftCXXABI.cpp | 157 SmallVectorImpl<CanQualType> &ArgTys) override; 1192 SmallVectorImpl<CanQualType> &ArgTys) { in buildStructorSignature() argument 1196 ArgTys.push_back(getContext().IntTy); in buildStructorSignature() 1209 ArgTys.insert(ArgTys.begin() + 1, getContext().IntTy); in buildStructorSignature() 1211 ArgTys.push_back(getContext().IntTy); in buildStructorSignature()
|
| HD | ItaniumCXXABI.cpp | 163 SmallVectorImpl<CanQualType> &ArgTys) override; 1208 SmallVectorImpl<CanQualType> &ArgTys) { in buildStructorSignature() argument 1216 ArgTys.insert(ArgTys.begin() + 1, in buildStructorSignature()
|
| HD | CGObjCGNU.cpp | 67 std::vector<llvm::Type *> ArgTys; in init() local 71 ArgTys.push_back(ArgTy); in init() 73 FTy = llvm::FunctionType::get(RetTy, ArgTys, false); in init()
|
| /NextBSD/contrib/llvm/tools/clang/lib/Sema/ |
| HD | SemaLookup.cpp | 2848 ArrayRef<QualType> ArgTys, in LookupLiteralOperator() argument 2883 else if (FD->getNumParams() == ArgTys.size()) { in LookupLiteralOperator() 2885 for (unsigned ArgIdx = 0; ArgIdx != ArgTys.size(); ++ArgIdx) { in LookupLiteralOperator() 2887 if (!Context.hasSameUnqualifiedType(ArgTys[ArgIdx], ParamTy)) { in LookupLiteralOperator() 2952 << R.getLookupName() << (int)ArgTys.size() << ArgTys[0] in LookupLiteralOperator() 2953 << (ArgTys.size() == 2 ? ArgTys[1] : QualType()) << AllowRaw in LookupLiteralOperator()
|
| HD | SemaChecking.cpp | 188 QualType ArgTys[2] = { ReturnTy, ChainResult.get()->getType() }; in SemaBuiltinCallWithStaticChain() local 190 ReturnTy, ArgTys, FunctionProtoType::ExtProtoInfo()); in SemaBuiltinCallWithStaticChain()
|
| /NextBSD/contrib/llvm/lib/Bitcode/Reader/ |
| HD | BitcodeReader.cpp | 1393 SmallVector<Type*, 8> ArgTys; in parseTypeTableBody() local 1396 ArgTys.push_back(T); in parseTypeTableBody() 1402 if (!ResultTy || ArgTys.size() < Record.size()-3) in parseTypeTableBody() 1405 ResultTy = FunctionType::get(ResultTy, ArgTys, Record[0]); in parseTypeTableBody() 1412 SmallVector<Type*, 8> ArgTys; in parseTypeTableBody() local 1417 ArgTys.push_back(T); in parseTypeTableBody() 1424 if (!ResultTy || ArgTys.size() < Record.size()-2) in parseTypeTableBody() 1427 ResultTy = FunctionType::get(ResultTy, ArgTys, Record[0]); in parseTypeTableBody()
|
| /NextBSD/contrib/llvm/lib/Transforms/Scalar/ |
| HD | MemCpyOptimizer.cpp | 1057 Type *ArgTys[3] = { M->getRawDest()->getType(), in processMemMove() local 1061 ArgTys)); in processMemMove()
|
| /NextBSD/contrib/llvm/lib/CodeGen/ |
| HD | WinEHPrepare.cpp | 1363 Type *ArgTys[2] = {Int8PtrType, Int8PtrType}; in createHandlerFunc() local 1364 FnType = FunctionType::get(RetTy, ArgTys, false); in createHandlerFunc()
|
| /NextBSD/contrib/llvm/tools/clang/lib/AST/ |
| HD | Type.cpp | 2714 const QualType *ArgTys, unsigned NumParams, in Profile() argument 2737 ID.AddPointer(ArgTys[i].getAsOpaquePtr()); in Profile()
|
| /NextBSD/contrib/llvm/tools/clang/include/clang/AST/ |
| HD | Type.h | 3296 param_type_iterator ArgTys, unsigned NumArgs,
|
| /NextBSD/contrib/llvm/tools/clang/include/clang/Sema/ |
| HD | Sema.h | 2762 ArrayRef<QualType> ArgTys,
|