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

Unified Diff: src/IceRegAlloc.cpp

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/IceRegAlloc.h ('k') | src/IceTargetLowering.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/IceRegAlloc.cpp
diff --git a/src/IceRegAlloc.cpp b/src/IceRegAlloc.cpp
index 4922848d19ea23d733dcc6d89f149d420664e87c..ea15b1b6db8cbb5280030bd25fb1554ec785e8ba 100644
--- a/src/IceRegAlloc.cpp
+++ b/src/IceRegAlloc.cpp
@@ -277,6 +277,28 @@ void LinearScan::initForInfOnly() {
Kills.clear();
}
+void LinearScan::initForSecondChance() {
+ TimerMarker T(TimerStack::TT_initUnhandled, Func);
+ FindPreference = true;
+ FindOverlap = true;
+ const VarList &Vars = Func->getVariables();
+ Unhandled.reserve(Vars.size());
+ UnhandledPrecolored.reserve(Vars.size());
+ for (Variable *Var : Vars) {
+ if (Var->hasReg()) {
+ Var->untrimLiveRange();
+ Var->setRegNumTmp(Var->getRegNum());
+ Var->setMustHaveReg();
+ UnhandledPrecolored.push_back(Var);
+ Unhandled.push_back(Var);
+ }
+ }
+ for (Variable *Var : Evicted) {
+ Var->untrimLiveRange();
+ Unhandled.push_back(Var);
+ }
+}
+
void LinearScan::init(RegAllocKind Kind) {
this->Kind = Kind;
Unhandled.clear();
@@ -302,8 +324,13 @@ void LinearScan::init(RegAllocKind Kind) {
case RAK_InfOnly:
initForInfOnly();
break;
+ case RAK_SecondChance:
+ initForSecondChance();
+ break;
}
+ Evicted.clear();
+
auto CompareRanges = [](const Variable *L, const Variable *R) {
InstNumberT Lstart = L->getLiveRange().getStart();
InstNumberT Rstart = R->getLiveRange().getStart();
@@ -319,6 +346,7 @@ void LinearScan::init(RegAllocKind Kind) {
Handled.reserve(Unhandled.size());
Inactive.reserve(Unhandled.size());
Active.reserve(Unhandled.size());
+ Evicted.reserve(Unhandled.size());
}
// This is called when Cur must be allocated a register but no registers are
@@ -663,6 +691,7 @@ void LinearScan::handleNoFreeRegisters(IterationState &Iter) {
assert(RegUses[RegNum] >= 0);
Item->setRegNumTmp(Variable::NoRegister);
moveItem(Active, Index, Handled);
+ Evicted.push_back(Item);
}
}
// Do the same for Inactive.
@@ -680,6 +709,7 @@ void LinearScan::handleNoFreeRegisters(IterationState &Iter) {
dumpLiveRangeTrace("Evicting I ", Item);
Item->setRegNumTmp(Variable::NoRegister);
moveItem(Inactive, Index, Handled);
+ Evicted.push_back(Item);
}
}
// Assign the register to Cur.
« no previous file with comments | « src/IceRegAlloc.h ('k') | src/IceTargetLowering.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698