HomeSort by relevance Sort by last modified time
    Searched refs:FuncTy (Results 1 - 25 of 30) sorted by null

1 2

  /external/clang/test/CodeGen/
attr-no-tail.c 21 typedef int (*FuncTy)(int);
29 FuncTy F = callee1;
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Support/
Parallel.h 90 template <class IterTy, class FuncTy>
91 void parallel_for_each(IterTy Begin, IterTy End, FuncTy Fn) {
95 template <class IndexTy, class FuncTy>
96 void parallel_for_each_n(IndexTy Begin, IndexTy End, FuncTy Fn) {
150 template <class IterTy, class FuncTy>
151 void parallel_for_each(IterTy Begin, IterTy End, FuncTy Fn) {
168 template <class IndexTy, class FuncTy>
169 void parallel_for_each_n(IndexTy Begin, IndexTy End, FuncTy Fn) {
206 template <class Policy, class IterTy, class FuncTy>
207 void for_each(Policy policy, IterTy Begin, IterTy End, FuncTy Fn)
    [all...]
  /external/swiftshader/third_party/LLVM/include/llvm/ADT/
STLExtras.h 129 template <class ItTy, class FuncTy>
130 inline mapped_iterator<ItTy, FuncTy> map_iterator(const ItTy &I, FuncTy F) {
131 return mapped_iterator<ItTy, FuncTy>(I, F);
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/WebAssembly/
WebAssemblyMCInstLower.cpp 38 if (const auto *FuncTy = dyn_cast<FunctionType>(Global->getValueType())) {
52 ComputeLegalValueVTs(CurrentFunc, TM, FuncTy->getReturnType(), ResultMVTs);
60 for (Type *Ty : FuncTy->params()) {
67 if (FuncTy->isVarArg())
WebAssemblyFastISel.cpp 740 FunctionType *FuncTy = Call->getFunctionType();
742 bool IsVoid = FuncTy->getReturnType()->isVoidTy();
    [all...]
  /external/llvm/include/llvm/CodeGen/
FastISel.h 98 CallLoweringInfo &setCallee(Type *ResultTy, FunctionType *FuncTy,
106 IsVarArg = FuncTy->isVarArg();
113 NumFixedArgs = FuncTy->getNumParams();
120 CallLoweringInfo &setCallee(Type *ResultTy, FunctionType *FuncTy,
130 IsVarArg = FuncTy->isVarArg();
137 NumFixedArgs = (FixedArgs == ~0U) ? FuncTy->getNumParams() : FixedArgs;
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/CodeGen/
FastISel.h 105 CallLoweringInfo &setCallee(Type *ResultTy, FunctionType *FuncTy,
113 IsVarArg = FuncTy->isVarArg();
120 NumFixedArgs = FuncTy->getNumParams();
127 CallLoweringInfo &setCallee(Type *ResultTy, FunctionType *FuncTy,
137 IsVarArg = FuncTy->isVarArg();
144 NumFixedArgs = (FixedArgs == ~0U) ? FuncTy->getNumParams() : FixedArgs;
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/AMDGPU/
AMDGPULibFunc.h 437 FunctionType *FuncTy;
443 FuncTy = FT;
447 FunctionType *getFunctionType(Module &M) const override { return FuncTy; }
456 void setFunctionType(FunctionType *FT) { FuncTy = FT; }
AMDGPULibFunc.cpp 533 FuncTy = nullptr;
    [all...]
  /external/llvm/include/llvm/ADT/
STLExtras.h 198 template <class ItTy, class FuncTy>
199 inline mapped_iterator<ItTy, FuncTy> map_iterator(const ItTy &I, FuncTy F) {
200 return mapped_iterator<ItTy, FuncTy>(I, F);
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/MC/
WasmObjectWriter.cpp 82 WasmFunctionType FuncTy;
83 FuncTy.State = WasmFunctionType::Empty;
84 return FuncTy;
87 WasmFunctionType FuncTy;
88 FuncTy.State = WasmFunctionType::Tombstone;
89 return FuncTy;
91 static unsigned getHashValue(const WasmFunctionType &FuncTy) {
92 uintptr_t Value = FuncTy.State;
93 for (wasm::ValType Ret : FuncTy.Returns)
95 for (wasm::ValType Param : FuncTy.Params
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/ADT/
STLExtras.h 200 template <typename ItTy, typename FuncTy,
202 decltype(std::declval<FuncTy>()(*std::declval<ItTy>()))>
205 mapped_iterator<ItTy, FuncTy>, ItTy,
209 mapped_iterator(ItTy U, FuncTy F)
217 FuncTy F;
222 template <class ItTy, class FuncTy>
223 inline mapped_iterator<ItTy, FuncTy> map_iterator(ItTy I, FuncTy F) {
224 return mapped_iterator<ItTy, FuncTy>(std::move(I), std::move(F));
    [all...]
  /external/swiftshader/third_party/LLVM/unittests/ExecutionEngine/JIT/
JITTest.cpp 329 FunctionType *FuncTy = FunctionType::get(
333 Function *Func2 = Function::Create(FuncTy, Function::InternalLinkage,
335 Function *Func3 = Function::Create(FuncTy, Function::InternalLinkage,
382 FunctionType *FuncTy =
384 Function *Func1 = Function::Create(FuncTy, Function::ExternalLinkage,
386 Function *Func2 = Function::Create(FuncTy, Function::InternalLinkage,
  /external/llvm/unittests/ExecutionEngine/MCJIT/
MCJITTestBase.h 119 FunctionType *FuncTy) {
120 Function *Result = Function::Create(FuncTy,
  /external/spirv-llvm/lib/SPIRV/libSPIRV/
SPIRVUtil.h 430 template<typename MapTy, typename FuncTy>
435 FuncTy Func){
  /external/swiftshader/third_party/llvm-7.0/llvm/unittests/ExecutionEngine/MCJIT/
MCJITTestBase.h 119 FunctionType *FuncTy) {
120 Function *Result = Function::Create(FuncTy,
  /external/swiftshader/third_party/llvm-subzero/include/llvm/ADT/
STLExtras.h 212 template <class ItTy, class FuncTy>
213 inline mapped_iterator<ItTy, FuncTy> map_iterator(const ItTy &I, FuncTy F) {
214 return mapped_iterator<ItTy, FuncTy>(I, F);
  /external/llvm/tools/bugpoint/
Miscompilation.cpp     [all...]
  /external/llvm/tools/llvm-stress/
llvm-stress.cpp 133 auto *FuncTy = FunctionType::get(Type::getVoidTy(Context), ArgsTy, false);
136 auto *Func = Function::Create(FuncTy, GlobalValue::ExternalLinkage, Name, M);
  /external/llvm/tools/sancov/
sancov.cc 166 // elements by FuncTy result.
167 template <class RangeTy, class FuncTy>
168 static inline auto group_by(const RangeTy &R, FuncTy F)
    [all...]
  /external/swiftshader/third_party/LLVM/tools/bugpoint/
Miscompilation.cpp     [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-stress/
llvm-stress.cpp 167 auto *FuncTy = FunctionType::get(Type::getVoidTy(Context), ArgsTy, false);
170 auto *Func = Function::Create(FuncTy, GlobalValue::ExternalLinkage, Name, M);
  /external/llvm/lib/Target/WebAssembly/
WebAssemblyFastISel.cpp 634 FunctionType *FuncTy = Call->getFunctionType();
637 bool IsVoid = FuncTy->getReturnType()->isVoidTy();
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/tools/bugpoint/
Miscompilation.cpp     [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Utils/
SimplifyLibCalls.cpp 71 auto *FuncTy = CI->getFunctionType();
73 if (!FuncTy->getReturnType()->isPointerTy() &&
74 !FuncTy->getReturnType()->isIntegerTy() &&
75 !FuncTy->getReturnType()->isVoidTy())
78 for (auto Param : FuncTy->params()) {
    [all...]

Completed in 2109 milliseconds

1 2