/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 | Function.cpp | 869 SmallVector<Type*, 8> ArgTys; in getType() local 871 ArgTys.push_back(DecodeFixedType(TableRef, Tys, Context)); in getType() 875 if (!ArgTys.empty() && ArgTys.back()->isVoidTy()) { in getType() 876 ArgTys.pop_back(); in getType() 877 return FunctionType::get(ResultTy, ArgTys, true); in getType() 879 return FunctionType::get(ResultTy, ArgTys, false); in getType() 924 SmallVectorImpl<Type*> &ArgTys) { in matchIntrinsicType() argument 945 matchIntrinsicType(VT->getElementType(), Infos, ArgTys); in matchIntrinsicType() 950 matchIntrinsicType(PT->getElementType(), Infos, ArgTys); in matchIntrinsicType() 959 if (matchIntrinsicType(ST->getElementType(i), Infos, ArgTys)) in matchIntrinsicType() [all …]
|
D | Module.cpp | 161 std::vector<Type*> ArgTys; in getOrInsertFunction() local 163 ArgTys.push_back(ArgTy); in getOrInsertFunction() 169 FunctionType::get(RetTy, ArgTys, false), in getOrInsertFunction() 179 std::vector<Type*> ArgTys; in getOrInsertFunction() local 181 ArgTys.push_back(ArgTy); in getOrInsertFunction() 187 FunctionType::get(RetTy, ArgTys, false), in getOrInsertFunction()
|
/external/swiftshader/third_party/LLVM/include/llvm/ |
D | Intrinsics.gen | 6315 …ArgTys.push_back((0 < Tys.size()) ? Tys[0] : PointerType::getUnqual(IntegerType::get(Context, 8))); 6316 …ArgTys.push_back((1 < Tys.size()) ? Tys[1] : PointerType::getUnqual(IntegerType::get(Context, 8))); 6317 ArgTys.push_back(Tys[2]); 6318 ArgTys.push_back(IntegerType::get(Context, 32)); 6319 ArgTys.push_back(IntegerType::get(Context, 1)); 6323 …ArgTys.push_back((0 < Tys.size()) ? Tys[0] : PointerType::getUnqual(IntegerType::get(Context, 8))); 6324 ArgTys.push_back(IntegerType::get(Context, 8)); 6325 ArgTys.push_back(Tys[1]); 6326 ArgTys.push_back(IntegerType::get(Context, 32)); 6327 ArgTys.push_back(IntegerType::get(Context, 1)); [all …]
|
/external/swiftshader/third_party/LLVM/lib/VMCore/ |
D | Module.cpp | 207 std::vector<Type*> ArgTys; in getOrInsertFunction() local 209 ArgTys.push_back(ArgTy); in getOrInsertFunction() 215 FunctionType::get(RetTy, ArgTys, false), in getOrInsertFunction() 225 std::vector<Type*> ArgTys; in getOrInsertFunction() local 227 ArgTys.push_back(ArgTy); in getOrInsertFunction() 233 FunctionType::get(RetTy, ArgTys, false), in getOrInsertFunction()
|
D | Function.cpp | 362 std::vector<Type*> ArgTys; in getType() local 369 return FunctionType::get(ResultTy, ArgTys, IsVarArg); in getType()
|
/external/swiftshader/third_party/LLVM/lib/Target/Blackfin/ |
D | BlackfinIntrinsicInfo.cpp | 86 std::vector<Type*> ArgTys; in getType() local 93 return FunctionType::get(ResultTy, ArgTys, IsVarArg); in getType()
|
/external/swiftshader/third_party/LLVM/lib/Target/MBlaze/ |
D | MBlazeIntrinsicInfo.cpp | 95 std::vector<Type*> ArgTys; in getType() local 102 return FunctionType::get(ResultTy, ArgTys, IsVarArg); in getType()
|
/external/spirv-llvm/lib/SPIRV/ |
D | OCLTypeToSPIRV.cpp | 151 std::vector<Type*> ArgTys; in adaptFunction() local 157 ArgTys.push_back (Found ? Loc->second : I.getType()); in adaptFunction() 177 FT = FunctionType::get(FT->getReturnType(), ArgTys, FT->isVarArg()); in adaptFunction()
|
D | SPIRVReader.cpp | 1045 std::vector<Type *> ArgTys; in postProcessOCLBuiltinReturnStruct() local 1046 getFunctionTypeParameterTypes(F->getFunctionType(), ArgTys); in postProcessOCLBuiltinReturnStruct() 1047 ArgTys.insert(ArgTys.begin(), PointerType::get(F->getReturnType(), in postProcessOCLBuiltinReturnStruct() 1050 ArgTys, Name); in postProcessOCLBuiltinReturnStruct() 1960 std::vector<Type*> ArgTys = transTypeVector( in transBuiltinFromInst() local 1963 for (auto& I:ArgTys) { in transBuiltinFromInst() 1970 MangleOpenCLBuiltin(FuncName, ArgTys, MangledName); in transBuiltinFromInst() 1974 FunctionType* FT = FunctionType::get(RetTy, ArgTys, false); in transBuiltinFromInst() 1989 DEBUG(for (auto& I:ArgTys) { in transBuiltinFromInst()
|
/external/clang/lib/Frontend/Rewrite/ |
D | RewriteObjC.cpp | 2222 SmallVector<QualType, 16> ArgTys; in SynthSelGetUidFunctionDecl() local 2223 ArgTys.push_back(Context->getPointerType(Context->CharTy.withConst())); in SynthSelGetUidFunctionDecl() 2225 getSimpleFunctionType(Context->getObjCSelType(), ArgTys); in SynthSelGetUidFunctionDecl() 2314 SmallVector<QualType, 16> ArgTys; in SynthSuperConstructorFunctionDecl() local 2317 ArgTys.push_back(argT); in SynthSuperConstructorFunctionDecl() 2318 ArgTys.push_back(argT); in SynthSuperConstructorFunctionDecl() 2320 ArgTys); in SynthSuperConstructorFunctionDecl() 2331 SmallVector<QualType, 16> ArgTys; in SynthMsgSendFunctionDecl() local 2334 ArgTys.push_back(argT); in SynthMsgSendFunctionDecl() 2337 ArgTys.push_back(argT); in SynthMsgSendFunctionDecl() [all …]
|
D | RewriteModernObjC.cpp | 2311 SmallVector<QualType, 16> ArgTys; in SynthSelGetUidFunctionDecl() local 2312 ArgTys.push_back(Context->getPointerType(Context->CharTy.withConst())); in SynthSelGetUidFunctionDecl() 2314 getSimpleFunctionType(Context->getObjCSelType(), ArgTys); in SynthSelGetUidFunctionDecl() 2406 SmallVector<QualType, 16> ArgTys; in SynthSuperConstructorFunctionDecl() local 2409 ArgTys.push_back(argT); in SynthSuperConstructorFunctionDecl() 2410 ArgTys.push_back(argT); in SynthSuperConstructorFunctionDecl() 2412 ArgTys); in SynthSuperConstructorFunctionDecl() 2423 SmallVector<QualType, 16> ArgTys; in SynthMsgSendFunctionDecl() local 2426 ArgTys.push_back(argT); in SynthMsgSendFunctionDecl() 2429 ArgTys.push_back(argT); in SynthMsgSendFunctionDecl() [all …]
|
/external/swiftshader/third_party/llvm-subzero/include/llvm/IR/ |
D | Intrinsics.h | 154 SmallVectorImpl<Type*> &ArgTys);
|
/external/llvm/include/llvm/IR/ |
D | Intrinsics.h | 145 SmallVectorImpl<Type*> &ArgTys);
|
/external/llvm/lib/Target/X86/ |
D | X86WinEHState.cpp | 391 Type *ArgTys[5] = {Int8PtrType, Int8PtrType, Int8PtrType, Int8PtrType, in generateLSDAInEAXThunk() local 394 FunctionType::get(Int32Ty, makeArrayRef(&ArgTys[0], 4), in generateLSDAInEAXThunk() 397 FunctionType::get(Int32Ty, makeArrayRef(&ArgTys[0], 5), in generateLSDAInEAXThunk()
|
/external/clang/lib/Basic/ |
D | IdentifierTable.cpp | 388 keyword_iterator ArgTys, unsigned NumArgs) { in Profile() argument 391 ID.AddPointer(ArgTys[i]); in Profile()
|
/external/swiftshader/third_party/LLVM/lib/Bitcode/Reader/ |
D | BitcodeReader.cpp | 623 std::vector<Type*> ArgTys; in ParseTypeTableBody() local 626 ArgTys.push_back(T); in ParseTypeTableBody() 632 if (ResultTy == 0 || ArgTys.size() < Record.size()-3) in ParseTypeTableBody() 635 ResultTy = FunctionType::get(ResultTy, ArgTys, Record[0]); in ParseTypeTableBody() 879 std::vector<Type*> ArgTys; in ParseOldTypeTable() local 882 ArgTys.push_back(Elt); in ParseOldTypeTable() 886 if (ArgTys.size()+3 != Record.size()) in ParseOldTypeTable() 889 ResultTy = FunctionType::get(ResultTy, ArgTys, Record[0]); in ParseOldTypeTable()
|
/external/clang/lib/CodeGen/ |
D | CGException.cpp | 1420 QualType ArgTys[2] = {Context.UnsignedCharTy, Context.VoidPtrTy}; in Emit() local 1424 llvm::ConstantInt::get(CGF.ConvertType(ArgTys[0]), F.isForEHCleanup()); in Emit() 1425 Args.add(RValue::get(IsForEH), ArgTys[0]); in Emit() 1426 Args.add(RValue::get(FP), ArgTys[1]); in Emit()
|
D | CGCXXABI.h | 297 SmallVectorImpl<CanQualType> &ArgTys) = 0;
|
D | CGBuiltin.cpp | 2078 llvm::Type *ArgTys[] = {Arg0->getType(), I8PTy}; in EmitBuiltinExpr() local 2080 Int32Ty, llvm::ArrayRef<llvm::Type *>(ArgTys), false); in EmitBuiltinExpr() 2090 llvm::Type *ArgTys[] = {Arg0->getType(), Arg1->getType(), Int32Ty, I8PTy}; in EmitBuiltinExpr() local 2094 Int32Ty, llvm::ArrayRef<llvm::Type *>(ArgTys), false); in EmitBuiltinExpr() 2132 llvm::Type *ArgTys[] = {Arg0->getType(), Int32Ty}; in EmitBuiltinExpr() local 2134 ReservedIDTy, llvm::ArrayRef<llvm::Type *>(ArgTys), false); in EmitBuiltinExpr() 2168 llvm::Type *ArgTys[] = {Arg0->getType(), Arg1->getType()}; in EmitBuiltinExpr() local 2171 llvm::ArrayRef<llvm::Type *>(ArgTys), false); in EmitBuiltinExpr() 2187 llvm::Type *ArgTys[] = {Arg0->getType()}; in EmitBuiltinExpr() local 2189 Int32Ty, llvm::ArrayRef<llvm::Type *>(ArgTys), false); in EmitBuiltinExpr() [all …]
|
D | CGCall.cpp | 478 CanQualType ArgTys[] = { GetThisType(Context, MD->getParent()) }; in arrangeMSMemberPointerThunk() local 480 /*chainCall=*/false, ArgTys, in arrangeMSMemberPointerThunk() 490 SmallVector<CanQualType, 2> ArgTys; in arrangeMSCtorClosure() local 492 ArgTys.push_back(GetThisType(Context, RD)); in arrangeMSCtorClosure() 494 ArgTys.push_back(*FTP->param_type_begin()); in arrangeMSCtorClosure() 496 ArgTys.push_back(Context.IntTy); in arrangeMSCtorClosure() 500 /*chainCall=*/false, ArgTys, in arrangeMSCtorClosure()
|
/external/llvm/unittests/IR/ |
D | InstructionsTest.cpp | 495 Type *ArgTys[] = {Int32Ty, Int32Ty, Int32Ty}; in TEST() local 496 Type *FnTy = FunctionType::get(Int32Ty, ArgTys, /*isVarArg=*/false); in TEST()
|
/external/swiftshader/third_party/LLVM/lib/Transforms/Scalar/ |
D | MemCpyOptimizer.cpp | 843 Type *ArgTys[3] = { M->getRawDest()->getType(), in processMemMove() local 847 ArgTys)); in processMemMove()
|
/external/clang/lib/Sema/ |
D | SemaLookup.cpp | 3112 ArrayRef<QualType> ArgTys, in LookupLiteralOperator() argument 3147 else if (FD->getNumParams() == ArgTys.size()) { in LookupLiteralOperator() 3149 for (unsigned ArgIdx = 0; ArgIdx != ArgTys.size(); ++ArgIdx) { in LookupLiteralOperator() 3151 if (!Context.hasSameUnqualifiedType(ArgTys[ArgIdx], ParamTy)) { in LookupLiteralOperator() 3216 << R.getLookupName() << (int)ArgTys.size() << ArgTys[0] in LookupLiteralOperator() 3217 << (ArgTys.size() == 2 ? ArgTys[1] : QualType()) << AllowRaw in LookupLiteralOperator()
|
/external/llvm/lib/CodeGen/ |
D | AtomicExpandPass.cpp | 1603 SmallVector<Type *, 6> ArgTys; in expandAtomicOpToLibcall() local 1605 ArgTys.push_back(Arg->getType()); in expandAtomicOpToLibcall() 1606 FunctionType *FnType = FunctionType::get(ResultTy, ArgTys, false); in expandAtomicOpToLibcall()
|