HomeSort by: relevance | last modified time | path
    Searched refs:Banner (Results 1 - 25 of 36) sorted by relevancy

1 2

  /src/external/apache2/llvm/dist/llvm/lib/IR/
IRPrintingPasses.cpp 26 PrintModulePass::PrintModulePass(raw_ostream &OS, const std::string &Banner,
28 : OS(OS), Banner(Banner),
33 if (!Banner.empty())
34 OS << Banner << "\n";
41 if (!BannerPrinted && !Banner.empty()) {
42 OS << Banner << "\n";
53 PrintFunctionPass::PrintFunctionPass(raw_ostream &OS, const std::string &Banner)
54 : OS(OS), Banner(Banner) {}
    [all...]
Pass.cpp 47 const std::string &Banner) const {
48 return createPrintModulePass(OS, Banner);
151 const std::string &Banner) const {
152 return createPrintFunctionPass(OS, Banner);
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/
MachineFunctionPrinterPass.cpp 32 const std::string Banner;
35 MachineFunctionPrinterPass(raw_ostream &os, const std::string &banner)
36 : MachineFunctionPass(ID), OS(os), Banner(banner) {}
49 OS << "# " << Banner << ":\n";
64 /// default banner is empty.
67 const std::string &Banner){
68 return new MachineFunctionPrinterPass(OS, Banner);
MachineFunctionPass.cpp 33 const std::string &Banner) const {
34 return createMachineFunctionPrinterPass(O, Banner);
MachinePassManager.cpp 47 std::string Banner = std::string("After ") + std::string(PassID);
48 verifyMachineFunction(&MFAM, Banner, *MF);
TargetPassConfig.cpp 705 std::string Banner;
706 // Construct banner message before PM->add() as that may delete the pass.
708 Banner = std::string("After ") + std::string(P->getPassName());
711 addMachinePostPasses(Banner, /*AllowVerify*/ verifyAfter);
756 void TargetPassConfig::printAndVerify(const std::string &Banner) {
757 addPrintPass(Banner);
758 addVerifyPass(Banner);
761 void TargetPassConfig::addPrintPass(const std::string &Banner) {
763 PM->add(createMachineFunctionPrinterPass(dbgs(), Banner));
766 void TargetPassConfig::addVerifyPass(const std::string &Banner) {
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/IR/
IRPrintingPasses.h 31 const std::string &Banner = "",
37 const std::string &Banner = "");
54 std::string Banner;
59 PrintModulePass(raw_ostream &OS, const std::string &Banner = "",
72 std::string Banner;
76 PrintFunctionPass(raw_ostream &OS, const std::string &Banner = "");
  /src/external/apache2/llvm/dist/llvm/lib/Support/
InitLLVM.cpp 49 std::string Banner = std::string(Argv[0]) + ": ";
50 ExitOnError ExitOnErr(Banner);
circular_raw_ostream.cpp 41 TheStream->write(Banner, std::strlen(Banner));
  /src/distrib/acorn32/stand/
Makefile 33 UUDECODE_FILES=unixfs_res Sprite banner pling.Sprites pling.Sprites22 MemFix
37 UUDECODE_FILES_RENAME_Sprite=tmp/BtNetBSD/!BtNetBSD/src/Banner/Sprite,ff9
38 UUDECODE_FILES_RENAME_banner=tmp/BtNetBSD/!BtNetBSD/Banner,ffa
72 SETTYPE_FILES+=!BtNetBSD/src/Banner/!Path !BtNetBSD/src/Banner/Banner
73 SETTYPE_FILES+=!BtNetBSD/src/Banner/resutil
75 SETTYPE_FILE_!BtNetBSD/src/Banner/!Path=feb
76 SETTYPE_FILE_!BtNetBSD/src/Banner/Banner=ff
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/Support/
circular_raw_ostream.h 65 /// Banner - A pointer to a banner to print before dumping the
68 const char *Banner;
111 Filled(false), Banner(Header) {
Error.h 1309 ExitOnError(std::string Banner = "", int DefaultErrorExitCode = 1)
1310 : Banner(std::move(Banner)),
1313 /// Set the banner string for any errors caught by operator().
1314 void setBanner(std::string Banner) { this->Banner = std::move(Banner); }
1342 logAllUnhandledErrors(std::move(Err), errs(), Banner);
1347 std::string Banner;
  /src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
MachineFunctionPass.h 73 const std::string &Banner) const override;
TargetPassConfig.h 302 void printAndVerify(const std::string &Banner);
305 void addPrintPass(const std::string &Banner);
309 void addVerifyPass(const std::string &Banner);
326 void addMachinePostPasses(const std::string &Banner, bool AllowVerify = true,
Passes.h 61 const std::string &Banner ="");
344 FunctionPass *createMachineVerifierPass(const std::string& Banner);
  /src/external/apache2/llvm/dist/llvm/lib/Analysis/
LoopPass.cpp 39 std::string Banner;
44 PrintLoopPassWrapper(raw_ostream &OS, const std::string &Banner)
45 : LoopPass(ID), OS(OS), Banner(Banner) {}
55 printLoop(*L, OS, Banner);
308 const std::string &Banner) const {
309 return new PrintLoopPassWrapper(O, Banner);
RegionPass.cpp 177 std::string Banner;
183 : RegionPass(ID), Banner(B), Out(o) {}
190 Out << Banner;
271 const std::string &Banner) const {
272 return new PrintRegionPass(Banner, O);
CallGraphSCCPass.cpp 673 std::string Banner;
680 : CallGraphSCCPass(ID), Banner(B), OS(OS) {}
691 OS << Banner;
733 const std::string &Banner) const {
734 return new PrintCallGraphPass(Banner, OS);
  /src/external/apache2/llvm/dist/llvm/include/llvm/
Pass.h 135 const std::string &Banner) const = 0;
247 const std::string &Banner) const override;
304 const std::string &Banner) const override;
  /src/external/apache2/llvm/dist/llvm/include/llvm/Analysis/
RegionPass.h 52 /// @param Banner The banner to separate different printed passes.
56 const std::string &Banner) const override;
CallGraphSCCPass.h 41 const std::string &Banner) const override;
LoopPass.h 34 const std::string &Banner) const override;
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
LoopPassManager.cpp 334 PrintLoopPass::PrintLoopPass(raw_ostream &OS, const std::string &Banner)
335 : OS(OS), Banner(Banner) {}
340 printLoop(L, OS, Banner);
  /src/external/apache2/llvm/dist/llvm/include/llvm/Transforms/Utils/
Debugify.h 54 /// \param Banner A prefix string to add to debug/error messages.
59 Module &M, iterator_range<Module::iterator> Functions, StringRef Banner,
72 /// \param Banner A prefix string to add to debug/error messages.
77 StringRef Banner, StringRef NameOfWrappedPass);
84 /// \param Banner A prefix string to add to debug/error messages.
89 StringRef Banner, StringRef NameOfWrappedPass,
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
Debugify.cpp 77 Module &M, iterator_range<Module::iterator> Functions, StringRef Banner,
81 dbg() << Banner << "Skipping module with debug info\n";
287 StringRef Banner,
289 LLVM_DEBUG(dbgs() << Banner << ": (before) " << NameOfWrappedPass << '\n');
295 dbg() << Banner << ": Skipping module without debug info\n";
519 StringRef Banner, StringRef NameOfWrappedPass,
521 LLVM_DEBUG(dbgs() << Banner << ": (after) " << NameOfWrappedPass << '\n');
524 dbg() << Banner << ": Skipping module without debug info\n";
619 StringRef ResultBanner = NameOfWrappedPass != "" ? NameOfWrappedPass : Banner;
677 StringRef NameOfWrappedPass, StringRef Banner,
    [all...]

Completed in 45 milliseconds

1 2