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

Unified Diff: src/IceDefs.h

Issue 2185193002: Enable Local CSE by default (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Address Comments 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/IceDefs.h
diff --git a/src/IceDefs.h b/src/IceDefs.h
index 2c09ba9941f091b1388bcba420787a1a178f7b43..c78af0f06afdaeaf18a5010e672b96c31a4258cc 100644
--- a/src/IceDefs.h
+++ b/src/IceDefs.h
@@ -308,6 +308,12 @@ enum LivenessMode {
Liveness_Intervals
};
+enum LCSEOptions {
+ LCSE_Disabled,
+ LCSE_EnabledSSA, // Default Mode, assumes SSA.
+ LCSE_EnabledNoSSA // Does not assume SSA, to be enabled if CSE is done later.
+};
+
enum RegAllocKind {
RAK_Unknown,
RAK_Global, /// full, global register allocation
« src/IceClFlags.def ('K') | « src/IceClFlags.def ('k') | src/IceTargetLoweringX86BaseImpl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698