Searched refs:ParamTys (Results 1 – 4 of 4) sorted by relevance
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Analysis/ |
D | TargetTransformInfoImpl.h | 725 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()
|
D | TargetTransformInfo.h | 285 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);
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/ |
D | IntrinsicLowering.cpp | 38 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()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/ |
D | BasicTTIImpl.h | 312 ArrayRef<Type *> ParamTys, const User *U) { in getIntrinsicCost() argument 325 return BaseT::getIntrinsicCost(IID, RetTy, ParamTys, U); in getIntrinsicCost()
|