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

Unified Diff: src/IceClFlags.def

Issue 2177033002: Subzero: Local variable splitting. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Code review changes, mostly renaming. Created 4 years, 5 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
« no previous file with comments | « src/IceClFlags.cpp ('k') | src/IceInst.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/IceClFlags.def
diff --git a/src/IceClFlags.def b/src/IceClFlags.def
index 0fabb9cf51ed1f45a3267210ec921ec5f49926c3..2af1ee4d1d276a3d5e8b9b2f8b5b4c8734391a28 100644
--- a/src/IceClFlags.def
+++ b/src/IceClFlags.def
@@ -159,6 +159,9 @@ struct dev_list_flag {};
X(ForceO2String, std::string, dev_opt_flag, "force-O2", \
cl::desc("Force -O2 for certain functions (assumes -Om1)"), cl::init("")) \
\
+ X(SplitInstString, std::string, dev_opt_flag, "split-inst", \
+ cl::desc("Restrict local var splitting to specific insts"), cl::init(":")) \
+ \
X(FunctionSections, bool, dev_opt_flag, "ffunction-sections", \
cl::desc("Emit functions into separate sections")) \
\
@@ -233,6 +236,9 @@ struct dev_list_flag {};
X(RandomizeRegisterAllocation, bool, dev_opt_flag, "randomize-regalloc", \
cl::desc("Randomize register allocation"), cl::init(false)) \
\
+ X(SplitLocalVars, bool, dev_opt_flag, "split-local-vars", cl::init(true), \
+ cl::desc("Block-local variable splitting (O2 only)")) \
+ \
X(RandomSeed, unsigned long long, dev_opt_flag, "sz-seed", \
cl::desc("Seed the random number generator"), cl::init(1)) \
\
« no previous file with comments | « src/IceClFlags.cpp ('k') | src/IceInst.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698