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

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

Issue 1146963002: Add %GetCallerJSFunction intrinsic (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Tests run Created 5 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') | test/mjsunit/get-caller-js-function.js » ('J')
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 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);
};
« no previous file with comments | « no previous file | src/compiler/access-builder.cc » ('j') | test/mjsunit/get-caller-js-function.js » ('J')

Powered by Google App Engine
This is Rietveld 408576698