Searched defs:ArgTys (Results 1 - 20 of 20) sorted by relevance

/external/spirv-llvm/lib/SPIRV/
H A DOCLTypeToSPIRV.cpp151 std::vector<Type*> ArgTys; local
157 ArgTys.push_back (Found ? Loc->second : I.getType());
177 FT = FunctionType::get(FT->getReturnType(), ArgTys, FT->isVarArg());
H A DSPIRVUtil.cpp233 std::vector<Type*>& ArgTys) {
235 ArgTys.push_back(*I);
232 getFunctionTypeParameterTypes(llvm::FunctionType* FT, std::vector<Type*>& ArgTys) argument
/external/llvm/lib/IR/
H A DModule.cpp161 std::vector<Type*> ArgTys; local
163 ArgTys.push_back(ArgTy);
169 FunctionType::get(RetTy, ArgTys, false),
179 std::vector<Type*> ArgTys; local
181 ArgTys.push_back(ArgTy);
187 FunctionType::get(RetTy, ArgTys, false),
H A DFunction.cpp869 SmallVector<Type*, 8> ArgTys; local
871 ArgTys.push_back(DecodeFixedType(TableRef, Tys, Context));
875 if (!ArgTys.empty() && ArgTys.back()->isVoidTy()) {
876 ArgTys.pop_back();
877 return FunctionType::get(ResultTy, ArgTys, true);
879 return FunctionType::get(ResultTy, ArgTys, false);
924 SmallVectorImpl<Type*> &ArgTys) {
945 matchIntrinsicType(VT->getElementType(), Infos, ArgTys);
950 matchIntrinsicType(PT->getElementType(), Infos, ArgTys);
923 matchIntrinsicType(Type *Ty, ArrayRef<Intrinsic::IITDescriptor> &Infos, SmallVectorImpl<Type*> &ArgTys) argument
1088 SmallVector<Type *, 4> ArgTys; local
[all...]
H A DVerifier.cpp3766 SmallVector<Type *, 4> ArgTys; local
3768 TableRef, ArgTys),
3772 TableRef, ArgTys),
3790 const std::string ExpectedName = Intrinsic::getName(ID, ArgTys);
/external/swiftshader/third_party/LLVM/lib/VMCore/
H A DModule.cpp207 std::vector<Type*> ArgTys; local
209 ArgTys.push_back(ArgTy);
215 FunctionType::get(RetTy, ArgTys, false),
225 std::vector<Type*> ArgTys; local
227 ArgTys.push_back(ArgTy);
233 FunctionType::get(RetTy, ArgTys, false),
/external/llvm/lib/Target/X86/
H A DX86WinEHState.cpp391 Type *ArgTys[5] = {Int8PtrType, Int8PtrType, Int8PtrType, Int8PtrType, local
394 FunctionType::get(Int32Ty, makeArrayRef(&ArgTys[0], 4),
397 FunctionType::get(Int32Ty, makeArrayRef(&ArgTys[0], 5),
/external/llvm/unittests/IR/
H A DInstructionsTest.cpp495 Type *ArgTys[] = {Int32Ty, Int32Ty, Int32Ty}; local
496 Type *FnTy = FunctionType::get(Int32Ty, ArgTys, /*isVarArg=*/false);
/external/swiftshader/third_party/LLVM/lib/Transforms/Scalar/
H A DMemCpyOptimizer.cpp843 Type *ArgTys[3] = { M->getRawDest()->getType(), local
847 ArgTys));
/external/llvm/lib/Transforms/Scalar/
H A DMemCpyOptimizer.cpp1248 Type *ArgTys[3] = { M->getRawDest()->getType(), local
1252 Intrinsic::memcpy, ArgTys));
/external/clang/lib/CodeGen/
H A DCGCall.cpp478 CanQualType ArgTys[] = { GetThisType(Context, MD->getParent()) }; local
480 /*chainCall=*/false, ArgTys,
490 SmallVector<CanQualType, 2> ArgTys; local
492 ArgTys.push_back(GetThisType(Context, RD));
494 ArgTys.push_back(*FTP->param_type_begin());
496 ArgTys.push_back(Context.IntTy);
500 /*chainCall=*/false, ArgTys,
H A DCGException.cpp1420 QualType ArgTys[2] = {Context.UnsignedCharTy, Context.VoidPtrTy}; variable
1424 llvm::ConstantInt::get(CGF.ConvertType(ArgTys[0]), F.isForEHCleanup());
1425 Args.add(RValue::get(IsForEH), ArgTys[0]); variable
1426 Args.add(RValue::get(FP), ArgTys[1]); variable
H A DCGObjCGNU.cpp65 std::vector<llvm::Type *> ArgTys; local
69 ArgTys.push_back(ArgTy);
71 FTy = llvm::FunctionType::get(RetTy, ArgTys, false);
H A DCGBuiltin.cpp2078 llvm::Type *ArgTys[] = {Arg0->getType(), I8PTy}; local
2080 Int32Ty, llvm::ArrayRef<llvm::Type *>(ArgTys), false);
2090 llvm::Type *ArgTys[] = {Arg0->getType(), Arg1->getType(), Int32Ty, I8PTy}; local
2094 Int32Ty, llvm::ArrayRef<llvm::Type *>(ArgTys), false);
2132 llvm::Type *ArgTys[] = {Arg0->getType(), Int32Ty}; local
2134 ReservedIDTy, llvm::ArrayRef<llvm::Type *>(ArgTys), false);
2168 llvm::Type *ArgTys[] = {Arg0->getType(), Arg1->getType()}; local
2171 llvm::ArrayRef<llvm::Type *>(ArgTys), false);
2187 llvm::Type *ArgTys[] = {Arg0->getType()}; local
2189 Int32Ty, llvm::ArrayRef<llvm::Type *>(ArgTys), fals
2235 llvm::Type *ArgTys[] = {QueueTy, Int32Ty, RangeTy, Int8PtrTy}; local
2257 std::vector<llvm::Type *> ArgTys = {QueueTy, IntTy, RangeTy, Int8PtrTy, local
2267 push_back(TypeSizeInBytes < 4 ? Builder.CreateZExt(ArgSize, Int32Ty) : ArgSize); } llvm::FunctionType *FTy = llvm::FunctionType::get( Int32Ty, llvm::ArrayRef<llvm::Type *>(ArgTys), true); return RValue::get( Builder.CreateCall(CGM.CreateRuntimeFunction(FTy, Name), llvm::ArrayRef<llvm::Value *>(Args))); } if (NumArgs >= 7) argument
2301 std::vector<llvm::Type *> ArgTys = { local
[all...]
H A DItaniumCXXABI.cpp208 SmallVectorImpl<CanQualType> &ArgTys) override;
1344 SmallVectorImpl<CanQualType> &ArgTys) {
1352 ArgTys.insert(ArgTys.begin() + 1,
1343 buildStructorSignature(const CXXMethodDecl *MD, StructorType T, SmallVectorImpl<CanQualType> &ArgTys) argument
H A DMicrosoftCXXABI.cpp206 SmallVectorImpl<CanQualType> &ArgTys) override;
1230 SmallVectorImpl<CanQualType> &ArgTys) {
1234 ArgTys.push_back(getContext().IntTy);
1247 ArgTys.insert(ArgTys.begin() + 1, getContext().IntTy);
1249 ArgTys.push_back(getContext().IntTy);
1229 buildStructorSignature(const CXXMethodDecl *MD, StructorType T, SmallVectorImpl<CanQualType> &ArgTys) argument
/external/llvm/lib/CodeGen/
H A DAtomicExpandPass.cpp1603 SmallVector<Type *, 6> ArgTys; local
1605 ArgTys.push_back(Arg->getType());
1606 FunctionType *FnType = FunctionType::get(ResultTy, ArgTys, false);
/external/clang/lib/Frontend/Rewrite/
H A DRewriteObjC.cpp2222 SmallVector<QualType, 16> ArgTys; local
2223 ArgTys.push_back(Context->getPointerType(Context->CharTy.withConst()));
2225 getSimpleFunctionType(Context->getObjCSelType(), ArgTys);
2314 SmallVector<QualType, 16> ArgTys; local
2317 ArgTys.push_back(argT);
2318 ArgTys.push_back(argT);
2320 ArgTys);
2331 SmallVector<QualType, 16> ArgTys; local
2334 ArgTys.push_back(argT);
2337 ArgTys
2350 SmallVector<QualType, 16> ArgTys; local
2372 SmallVector<QualType, 16> ArgTys; local
2393 SmallVector<QualType, 16> ArgTys; local
2416 SmallVector<QualType, 16> ArgTys; local
2435 SmallVector<QualType, 16> ArgTys; local
2450 SmallVector<QualType, 16> ArgTys; local
2465 SmallVector<QualType, 16> ArgTys; local
[all...]
H A DRewriteModernObjC.cpp2311 SmallVector<QualType, 16> ArgTys; local
2312 ArgTys.push_back(Context->getPointerType(Context->CharTy.withConst()));
2314 getSimpleFunctionType(Context->getObjCSelType(), ArgTys);
2406 SmallVector<QualType, 16> ArgTys; local
2409 ArgTys.push_back(argT);
2410 ArgTys.push_back(argT);
2412 ArgTys);
2423 SmallVector<QualType, 16> ArgTys; local
2426 ArgTys.push_back(argT);
2429 ArgTys
2442 SmallVector<QualType, 2> ArgTys; local
2456 SmallVector<QualType, 16> ArgTys; local
2477 SmallVector<QualType, 2> ArgTys; local
2492 SmallVector<QualType, 16> ArgTys; local
2511 SmallVector<QualType, 16> ArgTys; local
2526 SmallVector<QualType, 16> ArgTys; local
2541 SmallVector<QualType, 16> ArgTys; local
[all...]
/external/clang/lib/Sema/
H A DSemaChecking.cpp225 QualType ArgTys[2] = { ReturnTy, ChainResult.get()->getType() }; local
227 ReturnTy, ArgTys, FunctionProtoType::ExtProtoInfo());

Completed in 554 milliseconds