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

Unified Diff: src/compiler/access-builder.h

Issue 1412113004: [turbofan] Lower unmapped arguments objects in inline frame. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Addressed comments. Created 5 years, 2 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 | « no previous file | src/compiler/access-builder.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/compiler/access-builder.h
diff --git a/src/compiler/access-builder.h b/src/compiler/access-builder.h
index 7c51b0cb5e33605dde2faf9706e69f7699331fd0..0e9f53b50a25035d8c29016136b8fdff6cca829b 100644
--- a/src/compiler/access-builder.h
+++ b/src/compiler/access-builder.h
@@ -61,10 +61,19 @@ class AccessBuilder final : public AllStatic {
// Provides access to String::length() field.
static FieldAccess ForStringLength(Zone* zone);
+ // Provides access to GlobalObject::native_context() field.
+ static FieldAccess ForGlobalObjectNativeContext();
+
// Provides access to JSValue::value() field.
static FieldAccess ForValue();
- // Provides access Context slots.
+ // Provides access to arguments objects fields.
+ static FieldAccess ForArgumentsLength();
+
+ // Provides access to FixedArray slots.
+ static FieldAccess ForFixedArraySlot(size_t index);
+
+ // Provides access to Context slots.
static FieldAccess ForContextSlot(size_t index);
// Provides access to PropertyCell::value() field.
« no previous file with comments | « no previous file | src/compiler/access-builder.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698