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

Unified Diff: src/assembler.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/assembler.cc
diff --git a/src/assembler.cc b/src/assembler.cc
index 676a9febdbff695b79db82dadfa5a1958125d143..ed0d2a679a702c1daff68ccb0c7b93e6a69a423d 100644
--- a/src/assembler.cc
+++ b/src/assembler.cc
@@ -1218,6 +1218,10 @@ ExternalReference ExternalReference::roots_array_start(Isolate* isolate) {
return ExternalReference(isolate->heap()->roots_array_start());
}
+ExternalReference ExternalReference::native_contexts_list_address(
+ Isolate* isolate) {
+ return ExternalReference(isolate->heap()->native_contexts_list_address());
+}
ExternalReference ExternalReference::allocation_sites_list_address(
Isolate* isolate) {
« no previous file with comments | « src/assembler.h ('k') | src/bootstrapper.cc » ('j') | src/builtins/builtins-array.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698