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

Unified Diff: src/IceClFlags.def

Issue 2138443002: Subzero: Loop Invariant Code Motion (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Put invariant detection logic into separate function 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
Index: src/IceClFlags.def
diff --git a/src/IceClFlags.def b/src/IceClFlags.def
index bd0c20f8080d69a2a1b8716522f33d28aafbafd4..0fabb9cf51ed1f45a3267210ec921ec5f49926c3 100644
--- a/src/IceClFlags.def
+++ b/src/IceClFlags.def
@@ -186,6 +186,9 @@ struct dev_list_flag {};
X(LocalCseMaxIterations, int, dev_opt_flag, "lcse-max-iters", \
cl::desc("Number of times local-cse is run on a block"), cl::init(2)) \
\
+ X(LoopInvariantCodeMotion, bool, dev_opt_flag, "licm", \
+ cl::desc("Hoist loop invariant arithmetic operations"), cl::init(false)) \
+ \
X(LogFilename, std::string, dev_opt_flag, "log", \
cl::desc("Set log filename"), cl::init("-"), cl::value_desc("filename")) \
\

Powered by Google App Engine
This is Rietveld 408576698