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

Unified Diff: src/external-reference-table.cc

Issue 2484003002: [builtins] implement JSBuiltinReducer for ArrayIteratorNext() (Closed)
Patch Set: CheckIf() for ArrayBufferWasNeutered() rather than a branch, which hopefully can be eliminated, and… Created 4 years, 1 month 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/external-reference-table.cc
diff --git a/src/external-reference-table.cc b/src/external-reference-table.cc
index 5f1fe4d62a788f73fd2a0d1b24e6fcc99a0f29f8..78bb2a6d854e41224b38c80f7e8245568cc5970d 100644
--- a/src/external-reference-table.cc
+++ b/src/external-reference-table.cc
@@ -135,6 +135,8 @@ void ExternalReferenceTable::AddReferences(Isolate* isolate) {
"Heap::OldSpaceAllocationTopAddress");
Add(ExternalReference::old_space_allocation_limit_address(isolate).address(),
"Heap::OldSpaceAllocationLimitAddress");
+ Add(ExternalReference::native_contexts_list_address(isolate).address(),
+ "Heap::native_contexts_list_address()");
Add(ExternalReference::allocation_sites_list_address(isolate).address(),
"Heap::allocation_sites_list_address()");
Add(ExternalReference::address_of_uint32_bias().address(), "uint32_bias");

Powered by Google App Engine
This is Rietveld 408576698