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

Unified Diff: src/arm64/macro-assembler-arm64.h

Issue 2090723005: [builtins] New frame type for exits to C++ builtins (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Add missing condition in SafeStackFrameIter::frame() Created 4 years, 6 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 | « src/arm64/code-stubs-arm64.cc ('k') | src/arm64/macro-assembler-arm64.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/arm64/macro-assembler-arm64.h
diff --git a/src/arm64/macro-assembler-arm64.h b/src/arm64/macro-assembler-arm64.h
index 246d574257e78b045718fb8bce50548967116f19..fbb001610d82475143704714f2e0ea7c15a4c9a9 100644
--- a/src/arm64/macro-assembler-arm64.h
+++ b/src/arm64/macro-assembler-arm64.h
@@ -1174,7 +1174,8 @@ class MacroAssembler : public Assembler {
int num_double_arguments);
// Jump to a runtime routine.
- void JumpToExternalReference(const ExternalReference& builtin);
+ void JumpToExternalReference(const ExternalReference& builtin,
+ bool builtin_exit_frame = false);
// Convenience function: call an external reference.
void CallExternalReference(const ExternalReference& ext,
@@ -1702,9 +1703,9 @@ class MacroAssembler : public Assembler {
//
// This function also stores the new frame information in the top frame, so
// that the new frame becomes the current frame.
- void EnterExitFrame(bool save_doubles,
- const Register& scratch,
- int extra_space = 0);
+ void EnterExitFrame(bool save_doubles, const Register& scratch,
+ int extra_space = 0,
+ StackFrame::Type frame_type = StackFrame::EXIT);
// Leave the current exit frame, after a C function has returned to generated
// (JavaScript) code.
« no previous file with comments | « src/arm64/code-stubs-arm64.cc ('k') | src/arm64/macro-assembler-arm64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698