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

Unified Diff: src/IceDefs.h

Issue 1395693005: Subzero: Implement "second-chance bin-packing" for register allocation. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Change the internal flag name. Fix a broken MINIMAL=1 test. Created 5 years, 2 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/IceRegAlloc.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/IceDefs.h
diff --git a/src/IceDefs.h b/src/IceDefs.h
index f58ebe9c9677a40f1af7ed4fdff810672fe6480b..d73f9e7af3c89dd7bab6125e3f3adfd6f065e515 100644
--- a/src/IceDefs.h
+++ b/src/IceDefs.h
@@ -217,9 +217,10 @@ enum LivenessMode {
enum RegAllocKind {
RAK_Unknown,
- RAK_Global, /// full, global register allocation
- RAK_Phi, /// infinite-weight Variables with active spilling/filling
- RAK_InfOnly /// allocation only for infinite-weight Variables
+ RAK_Global, /// full, global register allocation
+ RAK_SecondChance, /// second-chance bin-packing after full regalloc attempt
+ RAK_Phi, /// infinite-weight Variables with active spilling/filling
+ RAK_InfOnly /// allocation only for infinite-weight Variables
};
enum VerboseItem {
« no previous file with comments | « src/IceClFlags.cpp ('k') | src/IceRegAlloc.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698