Home
last modified time | relevance | path

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

/external/llvm/include/llvm/Analysis/
DTargetTransformInfoImpl.h132 ArrayRef<Type *> ParamTys) { in getIntrinsicCost() argument
379 SmallVector<Type *, 8> ParamTys(FTy->param_begin(), FTy->param_end()); in getCallCost()
381 ->getIntrinsicCost(IID, FTy->getReturnType(), ParamTys); in getCallCost()
460 SmallVector<Type *, 8> ParamTys; in getIntrinsicCost() local
461 ParamTys.reserve(Arguments.size()); in getIntrinsicCost()
463 ParamTys.push_back(Arguments[Idx]->getType()); in getIntrinsicCost()
464 return static_cast<T *>(this)->getIntrinsicCost(IID, RetTy, ParamTys); in getIntrinsicCost()
DTargetTransformInfo.h172 ArrayRef<Type *> ParamTys) const;
559 ArrayRef<Type *> ParamTys) = 0;
669 ArrayRef<Type *> ParamTys) override { in getIntrinsicCost() argument
670 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/llvm/include/llvm/CodeGen/
DBasicTTIImpl.h161 ArrayRef<Type *> ParamTys) { in getIntrinsicCost() argument
174 return BaseT::getIntrinsicCost(IID, RetTy, ParamTys); in getIntrinsicCost()
/external/llvm/bindings/ocaml/llvm/
Dllvm_ocaml.c315 CAMLprim LLVMTypeRef llvm_function_type(LLVMTypeRef RetTy, value ParamTys) { in llvm_function_type() argument
316 return LLVMFunctionType(RetTy, (LLVMTypeRef *) ParamTys, in llvm_function_type()
317 Wosize_val(ParamTys), 0); in llvm_function_type()
322 value ParamTys) { in llvm_var_arg_function_type() argument
323 return LLVMFunctionType(RetTy, (LLVMTypeRef *) ParamTys, in llvm_var_arg_function_type()
324 Wosize_val(ParamTys), 1); in llvm_var_arg_function_type()
/external/clang/lib/Sema/
DSemaType.cpp3934 SmallVector<QualType, 16> ParamTys; in GetFullTypeForDeclarator() local
3935 ParamTys.reserve(FTI.NumParams); in GetFullTypeForDeclarator()
4003 ParamTys.push_back(ParamTy); in GetFullTypeForDeclarator()
4036 T = Context.getFunctionType(T, ParamTys, EPI); in GetFullTypeForDeclarator()
DSemaOverload.cpp6715 void Sema::AddBuiltinCandidate(QualType ResultTy, QualType *ParamTys, in AddBuiltinCandidate() argument
6731 Candidate.BuiltinTypes.ParamTypes[ArgIdx] = ParamTys[ArgIdx]; in AddBuiltinCandidate()
6751 assert(ParamTys[ArgIdx] == Context.BoolTy && in AddBuiltinCandidate()
6757 = TryCopyInitialization(*this, Args[ArgIdx], ParamTys[ArgIdx], in AddBuiltinCandidate()
/external/clang/include/clang/Sema/
DSema.h2452 void AddBuiltinCandidate(QualType ResultTy, QualType *ParamTys,