Home
last modified time | relevance | path

Searched refs:ParamTys (Results 1 – 12 of 12) sorted by relevance

/external/llvm/include/llvm/Analysis/
DTargetTransformInfoImpl.h134 ArrayRef<Type *> ParamTys) { in getIntrinsicCost() argument
415 SmallVector<Type *, 8> ParamTys(FTy->param_begin(), FTy->param_end()); in getCallCost()
417 ->getIntrinsicCost(IID, FTy->getReturnType(), ParamTys); in getCallCost()
496 SmallVector<Type *, 8> ParamTys; in getIntrinsicCost() local
497 ParamTys.reserve(Arguments.size()); in getIntrinsicCost()
499 ParamTys.push_back(Arguments[Idx]->getType()); in getIntrinsicCost()
500 return static_cast<T *>(this)->getIntrinsicCost(IID, RetTy, ParamTys); in getIntrinsicCost()
DTargetTransformInfo.h181 ArrayRef<Type *> ParamTys) const;
641 ArrayRef<Type *> ParamTys) = 0;
775 ArrayRef<Type *> ParamTys) override { in getIntrinsicCost() argument
776 return Impl.getIntrinsicCost(IID, RetTy, ParamTys); in getIntrinsicCost()
/external/llvm/lib/CodeGen/
DIntrinsicLowering.cpp32 std::vector<Type *> ParamTys; in EnsureFunctionExists() local
34 ParamTys.push_back(I->getType()); in EnsureFunctionExists()
35 M.getOrInsertFunction(Name, FunctionType::get(RetTy, ParamTys, false)); in EnsureFunctionExists()
72 std::vector<Type *> ParamTys; in ReplaceCallWith() local
74 ParamTys.push_back((*I)->getType()); in ReplaceCallWith()
76 FunctionType::get(RetTy, ParamTys, false)); in ReplaceCallWith()
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Analysis/
DTargetTransformInfoImpl.h725 SmallVector<Type *, 8> ParamTys(FTy->param_begin(), FTy->param_end()); in getCallCost()
727 ->getIntrinsicCost(IID, FTy->getReturnType(), ParamTys, U); in getCallCost()
806 ArrayRef<Type *> ParamTys, const User *U) { in getIntrinsicCost() argument
854 SmallVector<Type *, 8> ParamTys; in getIntrinsicCost() local
855 ParamTys.reserve(Arguments.size()); in getIntrinsicCost()
857 ParamTys.push_back(Arguments[Idx]->getType()); in getIntrinsicCost()
858 return static_cast<T *>(this)->getIntrinsicCost(IID, RetTy, ParamTys, U); in getIntrinsicCost()
DTargetTransformInfo.h285 ArrayRef<Type *> ParamTys,
1189 ArrayRef<Type *> ParamTys, const User *U) = 0;
1440 ArrayRef<Type *> ParamTys, const User *U = nullptr) override {
1441 return Impl.getIntrinsicCost(IID, RetTy, ParamTys, U);
/external/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/
DIntrinsicLowering.cpp38 std::vector<Type *> ParamTys; in ReplaceCallWith() local
40 ParamTys.push_back((*I)->getType()); in ReplaceCallWith()
42 M->getOrInsertFunction(NewFn, FunctionType::get(RetTy, ParamTys, false)); in ReplaceCallWith()
/external/llvm/bindings/ocaml/llvm/
Dllvm_ocaml.c360 CAMLprim LLVMTypeRef llvm_function_type(LLVMTypeRef RetTy, value ParamTys) { in llvm_function_type() argument
361 return LLVMFunctionType(RetTy, (LLVMTypeRef *) ParamTys, in llvm_function_type()
362 Wosize_val(ParamTys), 0); in llvm_function_type()
367 value ParamTys) { in llvm_var_arg_function_type() argument
368 return LLVMFunctionType(RetTy, (LLVMTypeRef *) ParamTys, in llvm_var_arg_function_type()
369 Wosize_val(ParamTys), 1); in llvm_var_arg_function_type()
/external/llvm/include/llvm/CodeGen/
DBasicTTIImpl.h171 ArrayRef<Type *> ParamTys) { in getIntrinsicCost() argument
184 return BaseT::getIntrinsicCost(IID, RetTy, ParamTys); in getIntrinsicCost()
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/
DBasicTTIImpl.h312 ArrayRef<Type *> ParamTys, const User *U) { in getIntrinsicCost() argument
325 return BaseT::getIntrinsicCost(IID, RetTy, ParamTys, U); in getIntrinsicCost()
/external/clang/lib/Sema/
DSemaType.cpp4202 SmallVector<QualType, 16> ParamTys; in GetFullTypeForDeclarator() local
4203 ParamTys.reserve(FTI.NumParams); in GetFullTypeForDeclarator()
4276 ParamTys.push_back(ParamTy); in GetFullTypeForDeclarator()
4281 checkExtParameterInfos(S, ParamTys, EPI, in GetFullTypeForDeclarator()
4312 T = Context.getFunctionType(T, ParamTys, EPI); in GetFullTypeForDeclarator()
DSemaOverload.cpp6761 void Sema::AddBuiltinCandidate(QualType ResultTy, QualType *ParamTys, in AddBuiltinCandidate() argument
6777 Candidate.BuiltinTypes.ParamTypes[ArgIdx] = ParamTys[ArgIdx]; in AddBuiltinCandidate()
6797 assert(ParamTys[ArgIdx] == Context.BoolTy && in AddBuiltinCandidate()
6803 = TryCopyInitialization(*this, Args[ArgIdx], ParamTys[ArgIdx], in AddBuiltinCandidate()
/external/clang/include/clang/Sema/
DSema.h2517 void AddBuiltinCandidate(QualType ResultTy, QualType *ParamTys,