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

Unified Diff: src/serialize.cc

Issue 11659022: Generate the TransitionElementsStub using Crankshaft (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Address review feedback Created 7 years, 11 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/runtime.cc ('k') | src/x64/assembler-x64.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/serialize.cc
diff --git a/src/serialize.cc b/src/serialize.cc
index 22990adb43f71fd79cfe2f32d6cc1e5ffcef1d8b..eeb180ac324783dd34cfa3335bea04ba068f8c95 100644
--- a/src/serialize.cc
+++ b/src/serialize.cc
@@ -532,6 +532,18 @@ void ExternalReferenceTable::PopulateTable(Isolate* isolate) {
UNCLASSIFIED,
52,
"cpu_features");
+ Add(ExternalReference::new_space_allocation_top_address(isolate).address(),
+ UNCLASSIFIED,
+ 53,
+ "Heap::NewSpaceAllocationTopAddress");
+ Add(ExternalReference::new_space_allocation_limit_address(isolate).address(),
+ UNCLASSIFIED,
+ 54,
+ "Heap::NewSpaceAllocationLimitAddress");
+ Add(ExternalReference(Runtime::kAllocateInNewSpace, isolate).address(),
+ UNCLASSIFIED,
+ 55,
+ "Runtime::AllocateInNewSpace");
// Add a small set of deopt entry addresses to encoder without generating the
// deopt table code, which isn't possible at deserialization time.
@@ -541,7 +553,7 @@ void ExternalReferenceTable::PopulateTable(Isolate* isolate) {
entry,
Deoptimizer::LAZY,
Deoptimizer::CALCULATE_ENTRY_ADDRESS);
- Add(address, LAZY_DEOPTIMIZATION, 53 + entry, "lazy_deopt");
+ Add(address, LAZY_DEOPTIMIZATION, 56 + entry, "lazy_deopt");
}
}
« no previous file with comments | « src/runtime.cc ('k') | src/x64/assembler-x64.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698