Index: src/serialize.cc |
diff --git a/src/serialize.cc b/src/serialize.cc |
index ef1461f1e9b6b5b634055cea1be441934495c90f..e7dbbe5afbee2dd88a2bba4f87d6cbac609f1994 100644 |
--- a/src/serialize.cc |
+++ b/src/serialize.cc |
@@ -581,6 +581,10 @@ void ExternalReferenceTable::PopulateTable(Isolate* isolate) { |
UNCLASSIFIED, |
63, |
"Heap::allocation_sites_list_address()"); |
+ Add(ExternalReference::record_object_allocation_function(isolate).address(), |
+ UNCLASSIFIED, |
+ 64, |
+ "HeapProfiler::RecordObjectAllocationFromMasm"); |
// Add a small set of deopt entry addresses to encoder without generating the |
// deopt table code, which isn't possible at deserialization time. |
@@ -591,7 +595,7 @@ void ExternalReferenceTable::PopulateTable(Isolate* isolate) { |
entry, |
Deoptimizer::LAZY, |
Deoptimizer::CALCULATE_ENTRY_ADDRESS); |
- Add(address, LAZY_DEOPTIMIZATION, 64 + entry, "lazy_deopt"); |
+ Add(address, LAZY_DEOPTIMIZATION, 65 + entry, "lazy_deopt"); |
} |
} |