Home
last modified time | relevance | path

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

/external/clang/test/CodeGen/
Dattr-no-tail.c21 typedef int (*FuncTy)(int); typedef
29 FuncTy F = callee1; in foo0()
/external/llvm/include/llvm/CodeGen/
DFastISel.h98 CallLoweringInfo &setCallee(Type *ResultTy, FunctionType *FuncTy, in setCallee()
106 IsVarArg = FuncTy->isVarArg(); in setCallee()
113 NumFixedArgs = FuncTy->getNumParams(); in setCallee()
120 CallLoweringInfo &setCallee(Type *ResultTy, FunctionType *FuncTy,
130 IsVarArg = FuncTy->isVarArg();
137 NumFixedArgs = (FixedArgs == ~0U) ? FuncTy->getNumParams() : FixedArgs;
/external/swiftshader/third_party/LLVM/include/llvm/ADT/
DSTLExtras.h129 template <class ItTy, class FuncTy>
130 inline mapped_iterator<ItTy, FuncTy> map_iterator(const ItTy &I, FuncTy F) { in map_iterator()
131 return mapped_iterator<ItTy, FuncTy>(I, F); in map_iterator()
/external/swiftshader/third_party/LLVM/unittests/ExecutionEngine/JIT/
DJITTest.cpp329 FunctionType *FuncTy = FunctionType::get( in TEST_F() local
333 Function *Func2 = Function::Create(FuncTy, Function::InternalLinkage, in TEST_F()
335 Function *Func3 = Function::Create(FuncTy, Function::InternalLinkage, in TEST_F()
382 FunctionType *FuncTy = in TEST_F() local
384 Function *Func1 = Function::Create(FuncTy, Function::ExternalLinkage, in TEST_F()
386 Function *Func2 = Function::Create(FuncTy, Function::InternalLinkage, in TEST_F()
/external/llvm/include/llvm/ADT/
DSTLExtras.h198 template <class ItTy, class FuncTy>
199 inline mapped_iterator<ItTy, FuncTy> map_iterator(const ItTy &I, FuncTy F) { in map_iterator()
200 return mapped_iterator<ItTy, FuncTy>(I, F); in map_iterator()
/external/llvm/unittests/ExecutionEngine/MCJIT/
DMCJITTestBase.h119 FunctionType *FuncTy) { in insertExternalReferenceToFunction() argument
120 Function *Result = Function::Create(FuncTy, in insertExternalReferenceToFunction()
/external/swiftshader/third_party/llvm-subzero/include/llvm/ADT/
DSTLExtras.h212 template <class ItTy, class FuncTy>
213 inline mapped_iterator<ItTy, FuncTy> map_iterator(const ItTy &I, FuncTy F) { in map_iterator()
214 return mapped_iterator<ItTy, FuncTy>(I, F); in map_iterator()
/external/spirv-llvm/lib/SPIRV/libSPIRV/
DSPIRVUtil.h430 template<typename MapTy, typename FuncTy>
435 FuncTy Func){ in getOrInsert()
/external/llvm/tools/llvm-stress/
Dllvm-stress.cpp133 auto *FuncTy = FunctionType::get(Type::getVoidTy(Context), ArgsTy, false); in GenEmptyFunction() local
136 auto *Func = Function::Create(FuncTy, GlobalValue::ExternalLinkage, Name, M); in GenEmptyFunction()
/external/swiftshader/third_party/LLVM/tools/bugpoint/
DMiscompilation.cpp850 FunctionType *FuncTy = F->getFunctionType(); in CleanupAndPrepareModules() local
851 Function *FuncWrapper = Function::Create(FuncTy, in CleanupAndPrepareModules()
/external/llvm/tools/bugpoint/
DMiscompilation.cpp858 FunctionType *FuncTy = F->getFunctionType(); in CleanupAndPrepareModules() local
859 Function *FuncWrapper = Function::Create(FuncTy, in CleanupAndPrepareModules()
/external/llvm/tools/sancov/
Dsancov.cc167 template <class RangeTy, class FuncTy>
168 static inline auto group_by(const RangeTy &R, FuncTy F) in group_by()
/external/llvm/lib/Target/WebAssembly/
DWebAssemblyFastISel.cpp634 FunctionType *FuncTy = Call->getFunctionType(); in selectCall() local
637 bool IsVoid = FuncTy->getReturnType()->isVoidTy(); in selectCall()
/external/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()
/external/clang/lib/CodeGen/
DCGBlocks.cpp988 const FunctionType *FuncTy = FnType->castAs<FunctionType>(); in EmitBlockCallExpr() local
990 CGM.getTypes().arrangeBlockFunctionCall(Args, FuncTy); in EmitBlockCallExpr()
/external/llvm/lib/CodeGen/SelectionDAG/
DFastISel.cpp1016 FunctionType *FuncTy = CS.getFunctionType(); in lowerCall() local
1046 CLI.setCallee(RetTy, FuncTy, CI->getCalledValue(), std::move(Args), CS) in lowerCall()
/external/spirv-llvm/lib/SPIRV/
DSPIRVReader.cpp1812 template<class SourceTy, class FuncTy>
1814 SPIRVToLLVM::foreachFuncCtlMask(SourceTy Source, FuncTy Func) { in foreachFuncCtlMask()