diff options
author | Geoff Berry <gberry@codeaurora.org> | 2017-08-18 01:43:11 +0000 |
---|---|---|
committer | Geoff Berry <gberry@codeaurora.org> | 2017-08-18 01:43:11 +0000 |
commit | bd47e8a4f7553e8f1fba20591e5cf75d23e82e88 (patch) | |
tree | e69832087dd0fdf9abdb9edc7ead198c1038e2df /llvm/lib/CodeGen/TargetPassConfig.cpp | |
parent | a42719406f4d88ad4c1200d742fd703387c6f139 (diff) | |
download | bcm5719-llvm-bd47e8a4f7553e8f1fba20591e5cf75d23e82e88.tar.gz bcm5719-llvm-bd47e8a4f7553e8f1fba20591e5cf75d23e82e88.zip |
Revert "[MachineCopyPropagation] Extend pass to do COPY source forwarding" round 2
This reverts commit r311135.
sanitizer-x86_64-linux-android buildbot is timing out with just this
patch applied.
llvm-svn: 311142
Diffstat (limited to 'llvm/lib/CodeGen/TargetPassConfig.cpp')
-rw-r--r-- | llvm/lib/CodeGen/TargetPassConfig.cpp | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/llvm/lib/CodeGen/TargetPassConfig.cpp b/llvm/lib/CodeGen/TargetPassConfig.cpp index 7860a932c2b..481baea2dff 100644 --- a/llvm/lib/CodeGen/TargetPassConfig.cpp +++ b/llvm/lib/CodeGen/TargetPassConfig.cpp @@ -88,8 +88,6 @@ static cl::opt<bool> DisableCGP("disable-cgp", cl::Hidden, cl::desc("Disable Codegen Prepare")); static cl::opt<bool> DisableCopyProp("disable-copyprop", cl::Hidden, cl::desc("Disable Copy Propagation pass")); -static cl::opt<bool> DisableCopyPropPreRegRewrite("disable-copyprop-prerewrite", cl::Hidden, - cl::desc("Disable Copy Propagation Pre-Register Re-write pass")); static cl::opt<bool> DisablePartialLibcallInlining("disable-partial-libcall-inlining", cl::Hidden, cl::desc("Disable Partial Libcall Inlining")); static cl::opt<bool> EnableImplicitNullChecks( @@ -250,9 +248,6 @@ static IdentifyingPassPtr overridePass(AnalysisID StandardID, if (StandardID == &MachineCopyPropagationID) return applyDisable(TargetID, DisableCopyProp); - if (StandardID == &MachineCopyPropagationPreRegRewriteID) - return applyDisable(TargetID, DisableCopyPropPreRegRewrite); - return TargetID; } @@ -1064,10 +1059,6 @@ void TargetPassConfig::addOptimizedRegAlloc(FunctionPass *RegAllocPass) { // Allow targets to change the register assignments before rewriting. addPreRewrite(); - // Copy propagate to forward register uses and try to eliminate COPYs that - // were not coalesced. - addPass(&MachineCopyPropagationPreRegRewriteID); - // Finally rewrite virtual registers. addPass(&VirtRegRewriterID); |