| Index: src/serialize.cc
|
| diff --git a/src/serialize.cc b/src/serialize.cc
|
| index b3a78780a9413da5d90e5403533bea82326da410..750ab622b65f8677f0d5dba08fa5713cb482c68e 100644
|
| --- a/src/serialize.cc
|
| +++ b/src/serialize.cc
|
| @@ -528,58 +528,62 @@ void ExternalReferenceTable::PopulateTable(Isolate* isolate) {
|
| UNCLASSIFIED,
|
| 51,
|
| "Code::MakeCodeYoung");
|
| - Add(ExternalReference::cpu_features().address(),
|
| + Add(ExternalReference::get_mark_code_as_executed_function(isolate).address(),
|
| UNCLASSIFIED,
|
| 52,
|
| + "Code::MarkCodeAsExecuted");
|
| + Add(ExternalReference::cpu_features().address(),
|
| + UNCLASSIFIED,
|
| + 53,
|
| "cpu_features");
|
| Add(ExternalReference::new_space_allocation_top_address(isolate).address(),
|
| UNCLASSIFIED,
|
| - 53,
|
| + 54,
|
| "Heap::NewSpaceAllocationTopAddress");
|
| Add(ExternalReference::new_space_allocation_limit_address(isolate).address(),
|
| UNCLASSIFIED,
|
| - 54,
|
| + 55,
|
| "Heap::NewSpaceAllocationLimitAddress");
|
| Add(ExternalReference(Runtime::kAllocateInNewSpace, isolate).address(),
|
| UNCLASSIFIED,
|
| - 55,
|
| + 56,
|
| "Runtime::AllocateInNewSpace");
|
| Add(ExternalReference::old_pointer_space_allocation_top_address(
|
| isolate).address(),
|
| UNCLASSIFIED,
|
| - 56,
|
| + 57,
|
| "Heap::OldPointerSpaceAllocationTopAddress");
|
| Add(ExternalReference::old_pointer_space_allocation_limit_address(
|
| isolate).address(),
|
| UNCLASSIFIED,
|
| - 57,
|
| + 58,
|
| "Heap::OldPointerSpaceAllocationLimitAddress");
|
| Add(ExternalReference(Runtime::kAllocateInOldPointerSpace, isolate).address(),
|
| UNCLASSIFIED,
|
| - 58,
|
| + 59,
|
| "Runtime::AllocateInOldPointerSpace");
|
| Add(ExternalReference::old_data_space_allocation_top_address(
|
| isolate).address(),
|
| UNCLASSIFIED,
|
| - 59,
|
| + 60,
|
| "Heap::OldDataSpaceAllocationTopAddress");
|
| Add(ExternalReference::old_data_space_allocation_limit_address(
|
| isolate).address(),
|
| UNCLASSIFIED,
|
| - 60,
|
| + 61,
|
| "Heap::OldDataSpaceAllocationLimitAddress");
|
| Add(ExternalReference(Runtime::kAllocateInOldDataSpace, isolate).address(),
|
| UNCLASSIFIED,
|
| - 61,
|
| + 62,
|
| "Runtime::AllocateInOldDataSpace");
|
| Add(ExternalReference::new_space_high_promotion_mode_active_address(isolate).
|
| address(),
|
| UNCLASSIFIED,
|
| - 62,
|
| + 63,
|
| "Heap::NewSpaceAllocationLimitAddress");
|
| Add(ExternalReference::allocation_sites_list_address(isolate).address(),
|
| UNCLASSIFIED,
|
| - 63,
|
| + 64,
|
| "Heap::allocation_sites_list_address()");
|
|
|
| // Add a small set of deopt entry addresses to encoder without generating the
|
| @@ -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");
|
| }
|
| }
|
|
|
|
|