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

1 2 3

  /external/clang/lib/AST/
LambdaMangleContext.cpp 24 QualType Key = Context.getFunctionType(Context.VoidTy,
  /external/llvm/lib/VMCore/
Function.cpp 140 FunctionType *Function::getFunctionType() const {
145 return getFunctionType()->isVarArg();
149 return getFunctionType()->getReturnType();
201 FunctionType *FT = getFunctionType();
214 return getFunctionType()->getNumParams();
217 return getFunctionType()->getNumParams() == 0;
InlineAsm.cpp 45 assert(Verify(getFunctionType(), constraints) &&
54 FunctionType *InlineAsm::getFunctionType() const {
  /external/llvm/lib/ExecutionEngine/Interpreter/
Interpreter.cpp 87 const unsigned ArgCount = F->getFunctionType()->getNumParams();
ExternalFunctions.cpp 94 FunctionType *FT = F->getFunctionType();
185 FunctionType *FTy = F->getFunctionType();
259 return Fn(F->getFunctionType(), ArgVals);
  /external/llvm/lib/Transforms/Scalar/
SimplifyLibCalls.cpp 137 FunctionType *FT = Callee->getFunctionType();
187 FunctionType *FT = Callee->getFunctionType();
235 FunctionType *FT = Callee->getFunctionType();
284 FunctionType *FT = Callee->getFunctionType();
323 FunctionType *FT = Callee->getFunctionType();
371 FunctionType *FT = Callee->getFunctionType();
430 FunctionType *FT = Callee->getFunctionType();
466 FunctionType *FT = Callee->getFunctionType();
515 FunctionType *FT = Callee->getFunctionType();
541 FunctionType *FT = Callee->getFunctionType();
    [all...]
TailRecursionElimination.cpp 152 if (F.getFunctionType()->isVarArg()) return false;
  /external/llvm/lib/Analysis/
MemoryBuiltins.cpp 50 FunctionType *FTy = Callee->getFunctionType();
204 FunctionType *FTy = Callee->getFunctionType();
  /external/llvm/lib/Transforms/IPO/
LoopExtractor.cpp 252 assert(MF->getFunctionType() == F->getFunctionType() && "Wrong function?");
DeadArgumentElimination.cpp 186 assert(Fn.getFunctionType()->isVarArg() && "Function isn't varargs!");
209 FunctionType *FTy = Fn.getFunctionType();
419 if (ArgNo >= F->getFunctionType()->getNumParams())
479 != F.getFunctionType()->getReturnType()) {
649 FunctionType *FTy = F->getFunctionType();
    [all...]
MergeFunctions.cpp 79 FunctionType *FTy = F->getFunctionType();
488 if (!isEquivalentType(F1->getFunctionType(), F2->getFunctionType()))
725 Function *NewG = Function::Create(G->getFunctionType(), G->getLinkage(), "",
732 FunctionType *FFTy = F->getFunctionType();
781 Function *H = Function::Create(F->getFunctionType(), F->getLinkage(), "",
  /external/llvm/lib/Transforms/Utils/
ValueMapper.cpp 40 FunctionType *NewTy = IA->getFunctionType();
44 if (NewTy != IA->getFunctionType())
CloneFunction.cpp 173 FunctionType *FTy = FunctionType::get(F->getFunctionType()->getReturnType(),
174 ArgTypes, F->getFunctionType()->isVarArg());
  /external/llvm/include/llvm/
InlineAsm.h 72 /// getFunctionType - InlineAsm's are always pointers to functions.
74 FunctionType *getFunctionType() const;
Function.h 132 FunctionType *getFunctionType() const; // Return the FunctionType for me
  /external/clang/lib/Sema/
SemaLambda.cpp 242 QualType MethodTy = Context.getFunctionType(Context.DependentTy,
466 FunctionTy = S.Context.getFunctionType(Proto->getResultType(),
475 QualType ConvTy = S.Context.getFunctionType(FunctionPtrTy, 0, 0, ExtInfo);
538 = S.Context.getFunctionType(Proto->getResultType(),
547 QualType ConvTy = S.Context.getFunctionType(BlockPtrTy, 0, 0, ExtInfo);
674 = Context.getFunctionType(LSI->ReturnType,
    [all...]
SemaDeclCXX.cpp     [all...]
CodeCompleteConsumer.cpp 438 CodeCompleteConsumer::OverloadCandidate::getFunctionType() const {
SemaExceptionSpec.cpp 162 QualType NewType = Context.getFunctionType(NewProto->getResultType(),
186 QualType NewType = Context.getFunctionType(NewProto->getResultType(),
    [all...]
SemaDeclAttr.cpp 52 static const FunctionType *getFunctionType(const Decl *D,
78 return getFunctionType(D, false) != NULL;
114 if (const FunctionType *FnTy = getFunctionType(D))
126 if (const FunctionType *FnTy = getFunctionType(D))
134 if (const FunctionType *FnTy = getFunctionType(D))
143 if (const FunctionType *FnTy = getFunctionType(D))
149 if (const FunctionType *FnTy = getFunctionType(D)) {
    [all...]
  /external/llvm/tools/bugpoint/
Miscompilation.cpp 392 I->getFunctionType()));
576 I->getFunctionType()));
776 Function *newMain = Function::Create(oldMain->getFunctionType(),
781 Function *oldMainProto = Function::Create(oldMain->getFunctionType(),
    [all...]
CrashDebugger.cpp 215 assert(CMF->getFunctionType() == Funcs[i]->getFunctionType() && "wrong ty");
  /external/llvm/lib/ExecutionEngine/MCJIT/
MCJIT.cpp 125 FunctionType *FTy = F->getFunctionType();
  /external/llvm/lib/Target/
Mangler.cpp 220 FunctionType *FT = F->getFunctionType();
  /external/clang/include/clang/Sema/
CodeCompleteConsumer.h     [all...]

Completed in 243 milliseconds

1 2 3