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

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

Issue 2867603002: [turbofan] Create-lowering support for CreateGeneratorObject (Closed)
Patch Set: Nit. Created 3 years, 7 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 a93c1fc6e7fcc6f6978f9dc1dea568226dc6d4ed..b4c3ed0615883b085523f2cc08d755a83d2353b3 100644
--- a/src/compiler/access-builder.h
+++ b/src/compiler/access-builder.h
@@ -82,16 +82,28 @@ class V8_EXPORT_PRIVATE AccessBuilder final
// Provides access to JSGeneratorObject::input_or_debug_pos() field.
static FieldAccess ForJSGeneratorObjectInputOrDebugPos();
- // Provides access to JSAsyncGeneratorObject::await_input_or_debug_pos()
- // field.
- static FieldAccess ForJSAsyncGeneratorObjectAwaitInputOrDebugPos();
-
// Provides access to JSGeneratorObject::register_file() field.
static FieldAccess ForJSGeneratorObjectRegisterFile();
+ // Provides access to JSGeneratorObject::function() field.
+ static FieldAccess ForJSGeneratorObjectFunction();
+
+ // Provides access to JSGeneratorObject::receiver() field.
+ static FieldAccess ForJSGeneratorObjectReceiver();
+
// Provides access to JSGeneratorObject::resume_mode() field.
static FieldAccess ForJSGeneratorObjectResumeMode();
+ // Provides access to JSAsyncGeneratorObject::queue() field.
+ static FieldAccess ForJSAsyncGeneratorObjectQueue();
+
+ // Provides access to JSAsyncGeneratorObject::await_input_or_debug_pos()
+ // field.
+ static FieldAccess ForJSAsyncGeneratorObjectAwaitInputOrDebugPos();
+
+ // Provides access to JSAsyncGeneratorObject::awaited_promise() field.
+ static FieldAccess ForJSAsyncGeneratorObjectAwaitedPromise();
+
// Provides access to JSArray::length() field.
static FieldAccess ForJSArrayLength(ElementsKind elements_kind);
« 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