Home
last modified time | relevance | path

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

/external/llvm/lib/CodeGen/
DJumpInstrTables.cpp206 std::vector<Type *> ParamTys(FunTy->getNumParams()); in transformType() local
223 ParamTys[i] = VoidPtrTy; in transformType()
226 return FunctionType::get(RetTy, ParamTys, IsVarArg); in transformType()
236 ParamTys[i] = VoidPtrTy; in transformType()
238 ParamTys[i] = VoidFnTy; in transformType()
240 ParamTys[i] = Int32Ty; in transformType()
244 return FunctionType::get(RetTy, ParamTys, IsVarArg); in transformType()
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/lib/Analysis/
DTargetTransformInfo.cpp69 Intrinsic::ID IID, Type *RetTy, ArrayRef<Type *> ParamTys) const { in getIntrinsicCost()
70 return PrevTTI->getIntrinsicCost(IID, RetTy, ParamTys); in getIntrinsicCost()
361 SmallVector<Type *, 8> ParamTys(FTy->param_begin(), FTy->param_end()); in getCallCost() local
362 return TopTTI->getIntrinsicCost(IID, FTy->getReturnType(), ParamTys); in getCallCost()
380 ArrayRef<Type *> ParamTys) const override { in getIntrinsicCost()
408 SmallVector<Type *, 8> ParamTys; in getIntrinsicCost() local
409 ParamTys.reserve(Arguments.size()); in getIntrinsicCost()
411 ParamTys.push_back(Arguments[Idx]->getType()); in getIntrinsicCost()
412 return TopTTI->getIntrinsicCost(IID, RetTy, ParamTys); in getIntrinsicCost()
/external/llvm/include/llvm/Analysis/
DTargetTransformInfo.h145 ArrayRef<Type *> ParamTys) const;
/external/llvm/bindings/ocaml/llvm/
Dllvm_ocaml.c313 CAMLprim LLVMTypeRef llvm_function_type(LLVMTypeRef RetTy, value ParamTys) { in llvm_function_type() argument
314 return LLVMFunctionType(RetTy, (LLVMTypeRef *) ParamTys, in llvm_function_type()
315 Wosize_val(ParamTys), 0); in llvm_function_type()
320 value ParamTys) { in llvm_var_arg_function_type() argument
321 return LLVMFunctionType(RetTy, (LLVMTypeRef *) ParamTys, in llvm_var_arg_function_type()
322 Wosize_val(ParamTys), 1); in llvm_var_arg_function_type()
/external/clang/lib/Sema/
DSemaType.cpp2898 SmallVector<QualType, 16> ParamTys; in GetFullTypeForDeclarator() local
2899 ParamTys.reserve(FTI.NumParams); in GetFullTypeForDeclarator()
2967 ParamTys.push_back(ParamTy); in GetFullTypeForDeclarator()
2999 T = Context.getFunctionType(T, ParamTys, EPI); in GetFullTypeForDeclarator()
DSemaOverload.cpp6450 void Sema::AddBuiltinCandidate(QualType ResultTy, QualType *ParamTys, in AddBuiltinCandidate() argument
6466 Candidate.BuiltinTypes.ParamTypes[ArgIdx] = ParamTys[ArgIdx]; in AddBuiltinCandidate()
6486 assert(ParamTys[ArgIdx] == Context.BoolTy && in AddBuiltinCandidate()
6492 = TryCopyInitialization(*this, Args[ArgIdx], ParamTys[ArgIdx], in AddBuiltinCandidate()
/external/clang/include/clang/Sema/
DSema.h2302 void AddBuiltinCandidate(QualType ResultTy, QualType *ParamTys,