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

Unified Diff: src/IceTargetLowering.cpp

Issue 680733002: Subzero: Allow delaying Phi lowering until after register allocation. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Minor cleanup Created 6 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
Index: src/IceTargetLowering.cpp
diff --git a/src/IceTargetLowering.cpp b/src/IceTargetLowering.cpp
index b18999f67ebb6e7013bd5cf3153bf4121f79e938..2ff5162413728873ce100c2fedda9b0009a6d0f5 100644
--- a/src/IceTargetLowering.cpp
+++ b/src/IceTargetLowering.cpp
@@ -52,6 +52,11 @@ void LoweringContext::init(CfgNode *N) {
advanceForward(Next);
}
+void LoweringContext::rewind() {
+ Begin = getNode()->getInsts().begin();
jvoung (off chromium) 2014/10/27 22:12:21 It seems a bit unexpected that this isn't like ini
Jim Stichnoth 2014/10/28 01:20:14 Refactored init() to call rewind() - and added the
+ Cur = Next = Begin;
+}
+
void LoweringContext::insert(Inst *Inst) {
getNode()->getInsts().insert(Next, Inst);
LastInserted = Inst;

Powered by Google App Engine
This is Rietveld 408576698