Searched refs:ParamTys (Results 1 – 8 of 8) sorted by relevance
/external/llvm/include/llvm/Analysis/ |
D | TargetTransformInfoImpl.h | 136 ArrayRef<Type *> ParamTys) { in getIntrinsicCost() argument 370 SmallVector<Type *, 8> ParamTys(FTy->param_begin(), FTy->param_end()); in getCallCost() 372 ->getIntrinsicCost(IID, FTy->getReturnType(), ParamTys); in getCallCost() 396 SmallVector<Type *, 8> ParamTys; in getIntrinsicCost() local 397 ParamTys.reserve(Arguments.size()); in getIntrinsicCost() 399 ParamTys.push_back(Arguments[Idx]->getType()); in getIntrinsicCost() 400 return static_cast<T *>(this)->getIntrinsicCost(IID, RetTy, ParamTys); in getIntrinsicCost()
|
D | TargetTransformInfo.h | 168 ArrayRef<Type *> ParamTys) const; 530 ArrayRef<Type *> ParamTys) = 0; 626 ArrayRef<Type *> ParamTys) override { in getIntrinsicCost() argument 627 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 | 166 ArrayRef<Type *> ParamTys) { in getIntrinsicCost() argument 179 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 | 2949 SmallVector<QualType, 16> ParamTys; in GetFullTypeForDeclarator() local 2950 ParamTys.reserve(FTI.NumParams); in GetFullTypeForDeclarator() 3018 ParamTys.push_back(ParamTy); in GetFullTypeForDeclarator() 3051 T = Context.getFunctionType(T, ParamTys, EPI); in GetFullTypeForDeclarator()
|
D | SemaOverload.cpp | 6623 void Sema::AddBuiltinCandidate(QualType ResultTy, QualType *ParamTys, in AddBuiltinCandidate() argument 6639 Candidate.BuiltinTypes.ParamTypes[ArgIdx] = ParamTys[ArgIdx]; in AddBuiltinCandidate() 6659 assert(ParamTys[ArgIdx] == Context.BoolTy && in AddBuiltinCandidate() 6665 = TryCopyInitialization(*this, Args[ArgIdx], ParamTys[ArgIdx], in AddBuiltinCandidate()
|
/external/clang/include/clang/Sema/ |
D | Sema.h | 2274 void AddBuiltinCandidate(QualType ResultTy, QualType *ParamTys,
|