Skip to content

Commit ba21ffe

Browse files
committedJul 22, 2016
Add flag to PassManagerBuilder to disable GVN Hoist Pass.
Summary: Adding a flag to diable GVN Hoisting by default. Note: The GVN Hoist Pass causes some Halide tests to hang. Halide will disable the pass while investigating. Reviewers: llvm-commits, chandlerc, spop, dberlin Subscribers: mehdi_amini Differential Revision: https://reviews.llvm.org/D22639 llvm-svn: 276479
1 parent 6118ce1 commit ba21ffe

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed
 

‎llvm/lib/Transforms/IPO/PassManagerBuilder.cpp

+6-1
Original file line numberDiff line numberDiff line change
@@ -134,6 +134,10 @@ static cl::opt<int> PreInlineThreshold(
134134
cl::desc("Control the amount of inlining in pre-instrumentation inliner "
135135
"(default = 75)"));
136136

137+
static cl::opt<bool> EnableGVNHoist(
138+
"enable-gvn-hoist", cl::init(false), cl::Hidden,
139+
cl::desc("Enable the experimental GVN Hoisting pass"));
140+
137141
PassManagerBuilder::PassManagerBuilder() {
138142
OptLevel = 2;
139143
SizeLevel = 0;
@@ -232,7 +236,8 @@ void PassManagerBuilder::populateFunctionPassManager(
232236
FPM.add(createCFGSimplificationPass());
233237
FPM.add(createSROAPass());
234238
FPM.add(createEarlyCSEPass());
235-
FPM.add(createGVNHoistPass());
239+
if(EnableGVNHoist)
240+
FPM.add(createGVNHoistPass());
236241
FPM.add(createLowerExpectIntrinsicPass());
237242
}
238243

‎llvm/test/Feature/optnone-opt.ll

-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,6 @@ attributes #0 = { optnone noinline }
4141
; OPT-O1-DAG: Skipping pass 'Combine redundant instructions'
4242
; OPT-O1-DAG: Skipping pass 'Dead Store Elimination'
4343
; OPT-O1-DAG: Skipping pass 'Early CSE'
44-
; OPT-O1-DAG: Skipping pass 'Early GVN Hoisting of Expressions'
4544
; OPT-O1-DAG: Skipping pass 'Jump Threading'
4645
; OPT-O1-DAG: Skipping pass 'MemCpy Optimization'
4746
; OPT-O1-DAG: Skipping pass 'Reassociate expressions'

0 commit comments

Comments
 (0)
Please sign in to comment.