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

Unified Diff: src/IceRegAlloc.cpp

Issue 1349833005: Improve use of CfgLocalAllocator and introduce containers that use it. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Created 5 years, 3 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/IceSwitchLowering.h » ('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 304ac37fabdd3852829ff6947f36794202606390..eac255a476fbcc068329d0b0cd1bdd270c49014d 100644
--- a/src/IceRegAlloc.cpp
+++ b/src/IceRegAlloc.cpp
@@ -166,8 +166,8 @@ void LinearScan::initForInfOnly() {
// Iterate across all instructions and record the begin and end of the live
// range for each variable that is pre-colored or infinite weight.
- std::vector<InstNumberT> LRBegin(Vars.size(), Inst::NumberSentinel);
- std::vector<InstNumberT> LREnd(Vars.size(), Inst::NumberSentinel);
+ CfgVector<InstNumberT> LRBegin(Vars.size(), Inst::NumberSentinel);
+ CfgVector<InstNumberT> LREnd(Vars.size(), Inst::NumberSentinel);
for (CfgNode *Node : Func->getNodes()) {
for (Inst &Inst : Node->getInsts()) {
if (Inst.isDeleted())
« no previous file with comments | « src/IceRegAlloc.h ('k') | src/IceSwitchLowering.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698