Home | History | Annotate | Download | only in Analysis

Lines Matching refs:Function

20 #include "llvm/Function.h"
48 virtual bool runOnFunction(Function &F);
78 /// Find the debug info descriptor corresponding to this function.
79 static Value *findDbgSubprogramDeclare(Function *V) {
103 const Function *F = NULL;
109 for (Function::const_iterator FI = F->begin(), FE = F->end(); FI != FE; ++FI)
136 } else if (Function *F = dyn_cast<Function>(const_cast<Value*>(V))){
181 if (isa<Function>(V))
182 Out << " is function " << DisplayName
194 bool PrintDbgInfo::runOnFunction(Function &F) {
198 Out << "function " << F.getName() << "\n\n";
200 for (Function::iterator I = F.begin(), E = F.end(); I != E; ++I) {