Searched refs:Banner (Results 1 - 25 of 30) sorted by relevance

12

/freebsd-11-stable/contrib/llvm-project/llvm/lib/IR/
H A DIRPrintingPasses.cpp24 PrintModulePass::PrintModulePass(raw_ostream &OS, const std::string &Banner, argument
26 : OS(OS), Banner(Banner),
31 if (!Banner.empty())
32 OS << Banner << "\n"; local
39 if (!BannerPrinted && !Banner.empty()) {
40 OS << Banner << "\n"; local
51 PrintFunctionPass::PrintFunctionPass(raw_ostream &OS, const std::string &Banner) argument
52 : OS(OS), Banner(Banner) {}
73 PrintModulePassWrapper(raw_ostream &OS, const std::string &Banner, bool ShouldPreserveUseListOrder) argument
96 PrintFunctionPassWrapper(raw_ostream &OS, const std::string &Banner) argument
122 createPrintModulePass(llvm::raw_ostream &OS, const std::string &Banner, bool ShouldPreserveUseListOrder) argument
128 createPrintFunctionPass(llvm::raw_ostream &OS, const std::string &Banner) argument
[all...]
H A DPass.cpp50 const std::string &Banner) const {
51 return createPrintModulePass(OS, Banner);
154 const std::string &Banner) const {
155 return createPrintFunctionPass(OS, Banner);
H A DLegacyPassManager.cpp342 const std::string &Banner) const override {
343 return createPrintFunctionPass(O, Banner);
415 const std::string &Banner) const override {
416 return createPrintModulePass(O, Banner);
503 const std::string &Banner) const override {
504 return createPrintModulePass(O, Banner);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DMachineFunctionPrinterPass.cpp32 const std::string Banner; member in struct:__anon1753::MachineFunctionPrinterPass
36 : MachineFunctionPass(ID), OS(os), Banner(banner) {}
49 OS << "# " << Banner << ":\n";
67 const std::string &Banner){
68 return new MachineFunctionPrinterPass(OS, Banner);
66 createMachineFunctionPrinterPass(raw_ostream &OS, const std::string &Banner) argument
H A DMachineFunctionPass.cpp34 const std::string &Banner) const {
35 return createMachineFunctionPrinterPass(O, Banner);
H A DTargetPassConfig.cpp533 std::string Banner; local
536 Banner = std::string("After ") + std::string(P->getPassName());
540 addPrintPass(Banner);
542 addVerifyPass(Banner);
589 void TargetPassConfig::printAndVerify(const std::string &Banner) { argument
590 addPrintPass(Banner);
591 addVerifyPass(Banner);
594 void TargetPassConfig::addPrintPass(const std::string &Banner) { argument
596 PM->add(createMachineFunctionPrinterPass(dbgs(), Banner));
599 void TargetPassConfig::addVerifyPass(const std::string &Banner) { argument
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/
H A DIRPrintingPasses.h37 const std::string &Banner = "",
43 const std::string &Banner = "");
76 std::string Banner; member in class:llvm::PrintModulePass
81 PrintModulePass(raw_ostream &OS, const std::string &Banner = "",
95 std::string Banner; member in class:llvm::PrintFunctionPass
99 PrintFunctionPass(raw_ostream &OS, const std::string &Banner = "");
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Passes/
H A DStandardInstrumentations.cpp73 void printIR(const Module *M, StringRef Banner, StringRef Extra = StringRef()) { argument
74 dbgs() << Banner << Extra << "\n";
77 void printIR(const Function *F, StringRef Banner, argument
81 dbgs() << Banner << Extra << "\n" << static_cast<const Value &>(*F);
83 void printIR(const LazyCallGraph::SCC *C, StringRef Banner, argument
90 dbgs() << Banner << Extra << "\n";
97 void printIR(const Loop *L, StringRef Banner) { argument
101 llvm::printLoop(const_cast<Loop &>(*L), dbgs(), Banner);
106 void unwrapAndPrint(Any IR, StringRef Banner, bool ForceModule = false) { argument
109 printIR(UnwrappedModule->first, Banner, UnwrappedModul
196 SmallString<20> Banner = formatv("*** IR Dump After {0} ***", PassID); local
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/
H A Dcircular_raw_ostream.cpp41 TheStream->write(Banner, std::strlen(Banner));
H A DInitLLVM.cpp42 std::string Banner = std::string(Argv[0]) + ": "; local
43 ExitOnError ExitOnErr(Banner);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DLoopPassManager.cpp97 PrintLoopPass::PrintLoopPass(raw_ostream &OS, const std::string &Banner) argument
98 : OS(OS), Banner(Banner) {}
103 printLoop(L, OS, Banner);
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/
H A Dcircular_raw_ostream.h65 /// Banner - A pointer to a banner to print before dumping the
68 const char *Banner; member in class:llvm::circular_raw_ostream
111 Filled(false), Banner(Header) {
H A DError.h1304 ExitOnError(std::string Banner = "", int DefaultErrorExitCode = 1)
1305 : Banner(std::move(Banner)),
1309 void setBanner(std::string Banner) { this->Banner = std::move(Banner); } argument
1337 logAllUnhandledErrors(std::move(Err), errs(), Banner); local
1342 std::string Banner; member in class:llvm::ExitOnError
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DMachineFunctionPass.h73 const std::string &Banner) const override;
H A DTargetPassConfig.h300 void printAndVerify(const std::string &Banner);
303 void addPrintPass(const std::string &Banner);
307 void addVerifyPass(const std::string &Banner);
H A DPasses.h49 const std::string &Banner ="");
332 FunctionPass *createMachineVerifierPass(const std::string& Banner);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/
H A DLoopPass.cpp38 std::string Banner; member in class:__anon1634::PrintLoopPassWrapper
43 PrintLoopPassWrapper(raw_ostream &OS, const std::string &Banner) argument
44 : LoopPass(ID), OS(OS), Banner(Banner) {}
54 printLoop(*L, OS, Banner);
329 const std::string &Banner) const {
330 return new PrintLoopPassWrapper(O, Banner);
H A DRegionPass.cpp183 std::string Banner; member in class:__anon1990::PrintRegionPass
189 : RegionPass(ID), Banner(B), Out(o) {}
196 Out << Banner; variable
277 const std::string &Banner) const {
278 return new PrintRegionPass(Banner, O);
H A DCallGraphSCCPass.cpp620 std::string Banner; member in class:__anon1949::CGPassManager::__anon1950::PrintCallGraphPass
627 : CallGraphSCCPass(ID), Banner(B), OS(OS) {}
638 OS << Banner;
680 const std::string &Banner) const {
681 return new PrintCallGraphPass(Banner, OS);
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/
H A DPass.h122 const std::string &Banner) const = 0;
231 const std::string &Banner) const override;
288 const std::string &Banner) const override;
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DRegionPass.h54 /// @param Banner The banner to separate different printed passes.
58 const std::string &Banner) const override;
H A DCallGraphSCCPass.h41 const std::string &Banner) const override;
H A DLoopPass.h35 const std::string &Banner) const override;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DDebugify.cpp57 StringRef Banner) {
60 dbg() << Banner << "Skipping module with debug info\n";
204 StringRef NameOfWrappedPass, StringRef Banner,
209 dbg() << Banner << "Skipping module without debugify metadata\n";
285 dbg() << Banner;
55 applyDebugifyMetadata(Module &M, iterator_range<Module::iterator> Functions, StringRef Banner) argument
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Transforms/Scalar/
H A DLoopPassManager.h421 std::string Banner; member in class:llvm::PrintLoopPass
425 PrintLoopPass(raw_ostream &OS, const std::string &Banner = "");

Completed in 161 milliseconds

12