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

1 2 3

  /external/llvm/lib/VMCore/
Function.cpp 138 FunctionType *Function::getFunctionType() const {
143 return getFunctionType()->isVarArg();
147 return getFunctionType()->getReturnType();
199 FunctionType *FT = getFunctionType();
212 return getFunctionType()->getNumParams();
215 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();
184 FunctionType *FTy = F->getFunctionType();
258 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();
285 FunctionType *FT = Callee->getFunctionType();
326 FunctionType *FT = Callee->getFunctionType();
375 FunctionType *FT = Callee->getFunctionType();
434 FunctionType *FT = Callee->getFunctionType();
470 FunctionType *FT = Callee->getFunctionType();
519 FunctionType *FT = Callee->getFunctionType();
545 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 154 FunctionType *FTy = FunctionType::get(F->getFunctionType()->getReturnType(),
155 ArgTypes, F->getFunctionType()->isVarArg());
  /external/llvm/include/llvm/
InlineAsm.h 71 /// getFunctionType - InlineAsm's are always pointers to functions.
73 FunctionType *getFunctionType() const;
Function.h 132 FunctionType *getFunctionType() const; // Return the FunctionType for me
  /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 128 FunctionType *FTy = F->getFunctionType();
  /external/llvm/lib/Target/
Mangler.cpp 217 FunctionType *FT = F->getFunctionType();
  /external/clang/lib/Sema/
SemaExceptionSpec.cpp 141 QualType NewType = Context.getFunctionType(NewProto->getResultType(),
165 QualType NewType = Context.getFunctionType(NewProto->getResultType(),
CodeCompleteConsumer.cpp 321 CodeCompleteConsumer::OverloadCandidate::getFunctionType() const {
SemaDeclCXX.cpp     [all...]
SemaDeclAttr.cpp 55 static const FunctionType *getFunctionType(const Decl *D,
81 return getFunctionType(D, false) != NULL;
117 if (const FunctionType *FnTy = getFunctionType(D))
129 if (const FunctionType *FnTy = getFunctionType(D))
137 if (const FunctionType *FnTy = getFunctionType(D))
146 if (const FunctionType *FnTy = getFunctionType(D))
152 if (const FunctionType *FnTy = getFunctionType(D)) {
    [all...]
  /external/clang/include/clang/Sema/
CodeCompleteConsumer.h 829 const FunctionType *getFunctionType() const;
    [all...]
  /external/llvm/lib/ExecutionEngine/JIT/
JIT.cpp 393 FunctionType *FTy = F->getFunctionType();
  /external/llvm/lib/Target/CppBackend/
CPPBackend.cpp 648 printType(FI->getFunctionType());
    [all...]

Completed in 476 milliseconds

1 2 3