Skip to content

Commit b243c95

Browse files
author
Weiming Zhao
committed
Revert r256952 due to lit test fails.
llvm-svn: 256954
1 parent 8f59cf7 commit b243c95

File tree

7 files changed

+9
-52
lines changed

7 files changed

+9
-52
lines changed

llvm/include/llvm/Pass.h

-4
Original file line numberDiff line numberDiff line change
@@ -369,10 +369,6 @@ class BasicBlockPass : public Pass {
369369
/// @brief This is the storage for the -time-passes option.
370370
extern bool TimePassesIsEnabled;
371371

372-
/// isFunctionInPrintList - returns true if a function should be printed via
373-
// debugging options like -print-after-all/-print-before-all.
374-
// @brief Tells if the function IR should be printed by PrinterPass.
375-
extern bool isFunctionInPrintList(StringRef FunctionName);
376372
} // End llvm namespace
377373

378374
// Include support files that contain important APIs commonly used by Passes,

llvm/lib/Analysis/CallGraphSCCPass.cpp

+3-4
Original file line numberDiff line numberDiff line change
@@ -612,10 +612,9 @@ namespace {
612612
bool runOnSCC(CallGraphSCC &SCC) override {
613613
Out << Banner;
614614
for (CallGraphNode *CGN : SCC) {
615-
if (CGN->getFunction()) {
616-
if (isFunctionInPrintList(CGN->getFunction()->getName()))
617-
CGN->getFunction()->print(Out);
618-
} else
615+
if (CGN->getFunction())
616+
CGN->getFunction()->print(Out);
617+
else
619618
Out << "\nPrinting <null> Function\n";
620619
}
621620
return false;

llvm/lib/Analysis/LoopPass.cpp

+1-5
Original file line numberDiff line numberDiff line change
@@ -42,11 +42,7 @@ class PrintLoopPassWrapper : public LoopPass {
4242
}
4343

4444
bool runOnLoop(Loop *L, LPPassManager &) override {
45-
auto BBI = find_if(L->blocks().begin(), L->blocks().end(),
46-
[](BasicBlock *BB) { return BB; });
47-
if (BBI != L->blocks().end() &&
48-
isFunctionInPrintList((*BBI)->getParent()->getName()))
49-
P.run(*L);
45+
P.run(*L);
5046
return false;
5147
}
5248
};

llvm/lib/CodeGen/MachineFunctionPrinterPass.cpp

+1-3
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ struct MachineFunctionPrinterPass : public MachineFunctionPass {
3131
const std::string Banner;
3232

3333
MachineFunctionPrinterPass() : MachineFunctionPass(ID), OS(dbgs()) { }
34-
MachineFunctionPrinterPass(raw_ostream &os, const std::string &banner)
34+
MachineFunctionPrinterPass(raw_ostream &os, const std::string &banner)
3535
: MachineFunctionPass(ID), OS(os), Banner(banner) {}
3636

3737
const char *getPassName() const override { return "MachineFunction Printer"; }
@@ -42,8 +42,6 @@ struct MachineFunctionPrinterPass : public MachineFunctionPass {
4242
}
4343

4444
bool runOnMachineFunction(MachineFunction &MF) override {
45-
if (!llvm::isFunctionInPrintList(MF.getName()))
46-
return false;
4745
OS << "# " << Banner << ":\n";
4846
MF.print(OS, getAnalysisIfAvailable<SlotIndexes>());
4947
return false;

llvm/lib/IR/IRPrintingPasses.cpp

+3-10
Original file line numberDiff line numberDiff line change
@@ -27,14 +27,8 @@ PrintModulePass::PrintModulePass(raw_ostream &OS, const std::string &Banner,
2727
ShouldPreserveUseListOrder(ShouldPreserveUseListOrder) {}
2828

2929
PreservedAnalyses PrintModulePass::run(Module &M) {
30-
OS << Banner << "\n";
31-
if (llvm::isFunctionInPrintList("*"))
32-
M.print(OS, nullptr, ShouldPreserveUseListOrder);
33-
else {
34-
for(const auto &F : M.functions())
35-
if (llvm::isFunctionInPrintList(F.getName()))
36-
F.print(OS);
37-
}
30+
OS << Banner;
31+
M.print(OS, nullptr, ShouldPreserveUseListOrder);
3832
return PreservedAnalyses::all();
3933
}
4034

@@ -43,8 +37,7 @@ PrintFunctionPass::PrintFunctionPass(raw_ostream &OS, const std::string &Banner)
4337
: OS(OS), Banner(Banner) {}
4438

4539
PreservedAnalyses PrintFunctionPass::run(Function &F) {
46-
if (isFunctionInPrintList(F.getName()))
47-
OS << Banner << static_cast<Value &>(F);
40+
OS << Banner << static_cast<Value &>(F);
4841
return PreservedAnalyses::all();
4942
}
5043

llvm/lib/IR/LegacyPassManager.cpp

-13
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@
2828
#include "llvm/Support/raw_ostream.h"
2929
#include <algorithm>
3030
#include <map>
31-
#include <unordered_set>
3231
using namespace llvm;
3332
using namespace llvm::legacy;
3433

@@ -84,13 +83,6 @@ PrintAfterAll("print-after-all",
8483
llvm::cl::desc("Print IR after each pass"),
8584
cl::init(false));
8685

87-
static cl::list<std::string>
88-
PrintFuncsList("filter-print-funcs", cl::value_desc("function names"),
89-
cl::desc("Only print IR for functions whose name "
90-
"match this for all print-[before|after][-all] "
91-
"options"),
92-
cl::CommaSeparated);
93-
9486
/// This is a helper to determine whether to print IR before or
9587
/// after a pass.
9688

@@ -117,11 +109,6 @@ static bool ShouldPrintAfterPass(const PassInfo *PI) {
117109
return PrintAfterAll || ShouldPrintBeforeOrAfterPass(PI, PrintAfter);
118110
}
119111

120-
bool llvm::isFunctionInPrintList(StringRef FunctionName) {
121-
static std::unordered_set<std::string> PrintFuncNames(PrintFuncsList.begin(),
122-
PrintFuncsList.end());
123-
return PrintFuncNames.empty() || PrintFuncNames.count(FunctionName);
124-
}
125112
/// isPassDebuggingExecutionsOrMore - Return true if -debug-pass=Executions
126113
/// or higher is specified.
127114
bool PMDataManager::isPassDebuggingExecutionsOrMore() const {

llvm/test/Other/2010-05-06-Printer.ll

+1-13
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,7 @@
11
; RUN: llc -O2 -print-after-all < %s 2>/dev/null
2-
; RUN: llc -O2 -print-after-all < %s 2>&1 | FileCheck %s --check-prefix=ALL
3-
; RUN: llc -O2 -print-after-all -filter-print-funcs=foo < %s 2>&1 | FileCheck %s --check-prefix=FOO
42
; REQUIRES: default_triple
5-
define void @tester(){
6-
ret void
7-
}
83

9-
define void @foo(){
4+
define void @tester(){
105
ret void
116
}
127

13-
;ALL: define void @tester()
14-
;ALL: define void @foo()
15-
;ALL: ModuleID =
16-
17-
;FOO: IR Dump After
18-
;FOO-NEXT: define void @foo()
19-
;FOO-NOT: define void @tester

0 commit comments

Comments
 (0)