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