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

Unified Diff: src/IceClFlags.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: 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 | « no previous file | src/IceClFlags.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/IceClFlags.h
diff --git a/src/IceClFlags.h b/src/IceClFlags.h
index 0aba214c35e4d1f1a94dc1da1898e82310344d21..64fac195b13f40334247cc68daf5e6a788cbbbfc 100644
--- a/src/IceClFlags.h
+++ b/src/IceClFlags.h
@@ -106,6 +106,9 @@ public:
bool shouldRandomizeRegAlloc() const { return RandomRegAlloc; }
void setShouldRandomizeRegAlloc(bool NewValue) { RandomRegAlloc = NewValue; }
+ bool shouldRegAllocRepeat() const { return RegAllocRepeat; }
John 2015/10/09 20:13:04 This reads a bit funny to me... maybe shouldRepeat
Jim Stichnoth 2015/10/09 21:33:07 Good point. I changed all that to be RepeatRegAll
+ void setShouldRegAllocRepeat(bool NewValue) { RegAllocRepeat = NewValue; }
+
bool getSkipUnimplemented() const { return SkipUnimplemented; }
void setSkipUnimplemented(bool NewValue) { SkipUnimplemented = NewValue; }
@@ -262,6 +265,7 @@ private:
bool PhiEdgeSplit;
bool RandomNopInsertion;
bool RandomRegAlloc;
+ bool RegAllocRepeat;
bool ReorderBasicBlocks;
bool ReorderFunctions;
bool ReorderGlobalVariables;
« no previous file with comments | « no previous file | src/IceClFlags.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698