Index: src/compiler/access-builder.h |
diff --git a/src/compiler/access-builder.h b/src/compiler/access-builder.h |
index 26fe814652cfc9077b42c3618938437ceaace831..abfcf7c48e20d8abed5781944ff0ab3586be1b68 100644 |
--- a/src/compiler/access-builder.h |
+++ b/src/compiler/access-builder.h |
@@ -71,6 +71,15 @@ class AccessBuilder final : public AllStatic { |
// Provides access to the TypeFeedbackVector in SharedFunctionInfo. |
static FieldAccess ForSharedFunctionInfoTypeFeedbackVector(); |
+ // Provides access to the next frame pointer in a stack frame. |
+ static FieldAccess ForFrameCallerFramePtr(); |
+ |
+ // Provides access to the marker in a stack frame. |
+ static FieldAccess ForFrameMarker(); |
+ |
+ // Provides access to the context in a stack frame |
+ static FieldAccess ForFrameContext(); |
+ |
private: |
DISALLOW_IMPLICIT_CONSTRUCTORS(AccessBuilder); |
}; |