Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(3)

Unified Diff: src/IceClFlags.cpp

Issue 1790063003: Subzero: Control whether deleted instructions are retained. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« src/IceCfgNode.cpp ('K') | « src/IceClFlags.h ('k') | src/IceDefs.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/IceClFlags.cpp
diff --git a/src/IceClFlags.cpp b/src/IceClFlags.cpp
index e21413c4edb072d422dc11d70e8cb45cb315b645..b944ec0f531fb92356610a6989c49615ad5435a1 100644
--- a/src/IceClFlags.cpp
+++ b/src/IceClFlags.cpp
@@ -136,6 +136,14 @@ cl::opt<bool>
FunctionSections("ffunction-sections",
cl::desc("Emit functions into separate sections"));
+/// Retain deleted instructions in the Cfg. Defaults to true in DUMP-enabled
+/// build, and false in a non-DUMP build, but is ignored in a MINIMAL build.
+/// This flag allows overriding the default primarily for debugging.
+cl::opt<bool>
+ KeepDeletedInsts("keep-deleted-insts",
+ cl::desc("Retain deleted instructions in the Cfg"),
+ cl::init(Ice::BuildDefs::dump()));
+
/// Mock bounds checking on loads/stores.
cl::opt<bool> MockBoundsCheck("mock-bounds-check",
cl::desc("Mock bounds checking on loads/stores"));
@@ -475,6 +483,7 @@ void ClFlags::resetClFlags(ClFlags &OutFlags) {
OutFlags.ForceMemIntrinOpt = false;
OutFlags.FunctionSections = false;
OutFlags.GenerateUnitTestMessages = false;
+ OutFlags.KeepDeletedInsts = Ice::BuildDefs::dump();
Eric Holk 2016/03/14 13:20:14 Is there a way to tie this reference to Ice::Build
Jim Stichnoth 2016/03/14 13:51:16 Yeah, this is definitely obnoxious and out of cont
Eric Holk 2016/03/14 14:01:04 Ok, great!
OutFlags.MockBoundsCheck = false;
OutFlags.PhiEdgeSplit = false;
OutFlags.RandomNopInsertion = false;
@@ -544,6 +553,7 @@ void ClFlags::getParsedClFlags(ClFlags &OutFlags) {
OutFlags.setFunctionSections(::FunctionSections);
OutFlags.setNumTranslationThreads(::NumThreads);
OutFlags.setOptLevel(::OLevel);
+ OutFlags.setKeepDeletedInsts(::KeepDeletedInsts);
OutFlags.setMockBoundsCheck(::MockBoundsCheck);
OutFlags.setPhiEdgeSplit(::EnablePhiEdgeSplit);
OutFlags.setRandomSeed(::RandomSeed);
« src/IceCfgNode.cpp ('K') | « src/IceClFlags.h ('k') | src/IceDefs.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698