Home
last modified time | relevance | path

Searched refs:FuncTy (Results 1 – 12 of 12) sorted by relevance

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/
DParallel.h128 template <class IterTy, class FuncTy>
129 void parallel_for_each(IterTy Begin, IterTy End, FuncTy Fn) { in parallel_for_each()
146 template <class IndexTy, class FuncTy>
147 void parallel_for_each_n(IndexTy Begin, IndexTy End, FuncTy Fn) { in parallel_for_each_n()
182 template <class Policy, class IterTy, class FuncTy>
183 void for_each(Policy policy, IterTy Begin, IterTy End, FuncTy Fn) { in for_each()
189 template <class Policy, class IndexTy, class FuncTy>
190 void for_each_n(Policy policy, IndexTy Begin, IndexTy End, FuncTy Fn) { in for_each_n()
207 template <class IterTy, class FuncTy>
209 FuncTy Fn) { in for_each()
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/
DFastISel.h104 CallLoweringInfo &setCallee(Type *ResultTy, FunctionType *FuncTy, in setCallee()
112 IsVarArg = FuncTy->isVarArg(); in setCallee()
119 NumFixedArgs = FuncTy->getNumParams(); in setCallee()
126 CallLoweringInfo &setCallee(Type *ResultTy, FunctionType *FuncTy,
136 IsVarArg = FuncTy->isVarArg();
143 NumFixedArgs = (FixedArgs == ~0U) ? FuncTy->getNumParams() : FixedArgs;
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/WebAssembly/
DWebAssemblyFixFunctionBitcasts.cpp228 static bool shouldFixMainFunction(FunctionType *FuncTy, FunctionType *MainTy) { in shouldFixMainFunction() argument
232 return FuncTy->getReturnType() == MainTy->getReturnType() && in shouldFixMainFunction()
233 FuncTy->getNumParams() == 0 && in shouldFixMainFunction()
234 !FuncTy->isVarArg(); in shouldFixMainFunction()
DWebAssemblyMCInstLower.cpp52 if (const auto *FuncTy = dyn_cast<FunctionType>(Global->getValueType())) { in GetGlobalAddressSymbol() local
59 computeSignatureVTs(FuncTy, CurrentFunc, TM, ParamMVTs, ResultMVTs); in GetGlobalAddressSymbol()
DWebAssemblyFastISel.cpp761 FunctionType *FuncTy = Call->getFunctionType(); in selectCall() local
763 bool IsVoid = FuncTy->getReturnType()->isVoidTy(); in selectCall()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/
DAMDGPULibFunc.h436 FunctionType *FuncTy; variable
442 FuncTy = FT; in AMDGPUUnmangledLibFunc()
446 FunctionType *getFunctionType(Module &M) const override { return FuncTy; } in getFunctionType()
455 void setFunctionType(FunctionType *FT) { FuncTy = FT; } in setFunctionType()
DAMDGPULibFunc.cpp515 FuncTy = nullptr; in AMDGPUUnmangledLibFunc()
969 FunctionType *FuncTy = fInfo.getFunctionType(*M); in getOrInsertFunction() local
973 PI = FuncTy->param_begin(), in getOrInsertFunction()
974 PE = FuncTy->param_end(); in getOrInsertFunction()
986 C = M->getOrInsertFunction(FuncName, FuncTy); in getOrInsertFunction()
994 C = M->getOrInsertFunction(FuncName, FuncTy, Attr); in getOrInsertFunction()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/
DSTLExtras.h208 template <typename ItTy, typename FuncTy,
210 decltype(std::declval<FuncTy>()(*std::declval<ItTy>()))>
213 mapped_iterator<ItTy, FuncTy>, ItTy,
217 mapped_iterator(ItTy U, FuncTy F)
225 FuncTy F;
230 template <class ItTy, class FuncTy>
231 inline mapped_iterator<ItTy, FuncTy> map_iterator(ItTy I, FuncTy F) {
232 return mapped_iterator<ItTy, FuncTy>(std::move(I), std::move(F));
235 template <class ContainerTy, class FuncTy>
236 auto map_range(ContainerTy &&C, FuncTy F)
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/ADT/
DSTLExtras.h184 template <class ItTy, class FuncTy>
185 inline mapped_iterator<ItTy, FuncTy> map_iterator(const ItTy &I, FuncTy F) { in map_iterator()
186 return mapped_iterator<ItTy, FuncTy>(I, F); in map_iterator()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Utils/
DSimplifyLibCalls.cpp75 auto *FuncTy = CI->getFunctionType(); in isCallingConvCCompatible() local
77 if (!FuncTy->getReturnType()->isPointerTy() && in isCallingConvCCompatible()
78 !FuncTy->getReturnType()->isIntegerTy() && in isCallingConvCCompatible()
79 !FuncTy->getReturnType()->isVoidTy()) in isCallingConvCCompatible()
82 for (auto Param : FuncTy->params()) { in isCallingConvCCompatible()
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/src/
DPNaClTranslator.cpp1004 auto *FuncTy = cast<FuncSigExtendedType>(Ty); in ProcessRecord() local
1005 FuncTy->setReturnType(Context->getSimpleTypeByID(Values[1])); in ProcessRecord()
1018 FuncTy->appendArgType(ArgTy); in ProcessRecord()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/SelectionDAG/
DFastISel.cpp1251 FunctionType *FuncTy = CS.getFunctionType(); in lowerCall() local
1285 CLI.setCallee(RetTy, FuncTy, CI->getCalledValue(), std::move(Args), CS) in lowerCall()