Searched refs:ParamTys (Results 1 – 8 of 8) sorted by relevance
/external/llvm/include/llvm/Analysis/ |
D | TargetTransformInfoImpl.h | 132 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()
|
D | TargetTransformInfo.h | 172 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/ |
D | IntrinsicLowering.cpp | 32 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/ |
D | BasicTTIImpl.h | 161 ArrayRef<Type *> ParamTys) { in getIntrinsicCost() argument 174 return BaseT::getIntrinsicCost(IID, RetTy, ParamTys); in getIntrinsicCost()
|
/external/llvm/bindings/ocaml/llvm/ |
D | llvm_ocaml.c | 315 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/ |
D | SemaType.cpp | 3934 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()
|
D | SemaOverload.cpp | 6715 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/ |
D | Sema.h | 2452 void AddBuiltinCandidate(QualType ResultTy, QualType *ParamTys,
|