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

Unified Diff: src/lithium.cc

Issue 194793002: [v8-dev] ARM: safepoints frame optimization (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 years, 9 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/lithium.cc
diff --git a/src/lithium.cc b/src/lithium.cc
index 9ccdc7a1fbf67e8bf9e13e4bf078aed1bcd5c8f5..5c3c1337139c28ecd0235c30f7c84dc9a5d04fc0 100644
--- a/src/lithium.cc
+++ b/src/lithium.cc
@@ -415,8 +415,9 @@ LChunk* LChunk::NewChunk(HGraph* graph) {
return NULL;
}
- chunk->set_allocated_double_registers(
- allocator.assigned_double_registers());
+ chunk->set_allocated_double_registers(allocator.assigned_double_registers());
+ chunk->set_safepoints_registers(allocator.modified_registers());
+ chunk->set_safepoints_double_registers(allocator.modified_double_registers());
return chunk;
}
« src/arm/assembler-arm.h ('K') | « src/lithium.h ('k') | src/lithium-allocator.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698