Searched refs:FuncTy (Results 1 - 8 of 8) sorted by relevance
/external/clang/test/CodeGen/ |
H A D | attr-no-tail.c | 21 typedef int (*FuncTy)(int); typedef 29 FuncTy F = callee1;
|
/external/llvm/include/llvm/CodeGen/ |
H A D | FastISel.h | 94 CallLoweringInfo &setCallee(Type *ResultTy, FunctionType *FuncTy, argument 102 IsVarArg = FuncTy->isVarArg(); 109 NumFixedArgs = FuncTy->getNumParams(); 116 CallLoweringInfo &setCallee(Type *ResultTy, FunctionType *FuncTy, argument 126 IsVarArg = FuncTy->isVarArg(); 133 NumFixedArgs = (FixedArgs == ~0U) ? FuncTy->getNumParams() : FixedArgs;
|
/external/llvm/include/llvm/ADT/ |
H A D | STLExtras.h | 194 template <class ItTy, class FuncTy> 195 inline mapped_iterator<ItTy, FuncTy> map_iterator(const ItTy &I, FuncTy F) { 196 return mapped_iterator<ItTy, FuncTy>(I, F);
|
/external/llvm/unittests/ExecutionEngine/MCJIT/ |
H A D | MCJITTestBase.h | 119 FunctionType *FuncTy) { 120 Function *Result = Function::Create(FuncTy, 118 insertExternalReferenceToFunction(Module *M, StringRef Name, FunctionType *FuncTy) argument
|
/external/llvm/tools/bugpoint/ |
H A D | Miscompilation.cpp | 854 FunctionType *FuncTy = F->getFunctionType(); local 855 Function *FuncWrapper = Function::Create(FuncTy,
|
/external/llvm/tools/llvm-stress/ |
H A D | llvm-stress.cpp | 134 auto *FuncTy = FunctionType::get(Type::getVoidTy(Context), ArgsTy, false); local 137 auto *Func = Function::Create(FuncTy, GlobalValue::ExternalLinkage, Name, M);
|
/external/llvm/lib/CodeGen/SelectionDAG/ |
H A D | FastISel.cpp | 1014 FunctionType *FuncTy = cast<FunctionType>(PT->getElementType()); local 1015 Type *RetTy = FuncTy->getReturnType(); 1044 CLI.setCallee(RetTy, FuncTy, CI->getCalledValue(), std::move(Args), CS)
|
/external/clang/lib/CodeGen/ |
H A D | CGBlocks.cpp | 985 const FunctionType *FuncTy = FnType->castAs<FunctionType>(); local 987 CGM.getTypes().arrangeBlockFunctionCall(Args, FuncTy);
|
Completed in 174 milliseconds