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 137 FunctionType *Function::getFunctionType() const {
142 return getFunctionType()->isVarArg();
146 return getFunctionType()->getReturnType();
198 FunctionType *FT = getFunctionType();
211 return getFunctionType()->getNumParams();
214 return getFunctionType()->getNumParams() == 0;
InlineAsm.cpp 45 assert(Verify(getFunctionType(), constraints) &&
54 FunctionType *InlineAsm::getFunctionType() const {
AutoUpgrade.cpp 37 FunctionType *FTy = F->getFunctionType();
  /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();
374 FunctionType *FT = Callee->getFunctionType();
429 FunctionType *FT = Callee->getFunctionType();
465 FunctionType *FT = Callee->getFunctionType();
514 FunctionType *FT = Callee->getFunctionType();
540 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/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/lib/Transforms/IPO/
LoopExtractor.cpp 205 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();
484 if (!isEquivalentType(F1->getFunctionType(), F2->getFunctionType()))
721 Function *NewG = Function::Create(G->getFunctionType(), G->getLinkage(), "",
728 FunctionType *FFTy = F->getFunctionType();
777 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/tools/bugpoint/
Miscompilation.cpp 392 I->getFunctionType()));
414 assert(NewF->getFunctionType() == MisCompFunctions[i].second &&
577 I->getFunctionType()));
596 assert(NewF->getFunctionType() == MisCompFunctions[i].second &&
778 Function *newMain = Function::Create(oldMain->getFunctionType(),
783 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 127 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 298 CodeCompleteConsumer::OverloadCandidate::getFunctionType() const {
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/clang/lib/CodeGen/
CGObjCRuntime.cpp 297 SyncArg = CGF.Builder.CreateBitCast(SyncArg, syncEnterFn->getFunctionType()->getParamType(0));
  /external/clang/include/clang/Sema/
CodeCompleteConsumer.h 791 const FunctionType *getFunctionType() const;
    [all...]
  /external/llvm/lib/Target/CppBackend/
CPPBackend.cpp 641 printType(FI->getFunctionType());
    [all...]

Completed in 2125 milliseconds

1 2 3