Home | History | Annotate | Download | only in VMCore

Lines Matching defs:Banner

26     std::string Banner;
34 : ModulePass(ID), Banner(B), Out(o), DeleteStream(DS) {}
41 (*Out) << Banner << M;
51 std::string Banner; // String to print before each function
56 PrintFunctionPass() : FunctionPass(ID), Banner(""), Out(&dbgs()),
59 : FunctionPass(ID), Banner(B), Out(o), DeleteStream(DS) {}
65 // runOnFunction - This pass just prints a banner followed by the
69 (*Out) << Banner << static_cast<Value&>(F);
90 const std::string &Banner) {
91 return new PrintModulePass(Banner, OS, DeleteStream);
96 FunctionPass *llvm::createPrintFunctionPass(const std::string &Banner,
99 return new PrintFunctionPass(Banner, OS, DeleteStream);