summaryrefslogtreecommitdiff
path: root/deps/v8/src/execution/x64/frame-constants-x64.h
diff options
context:
space:
mode:
Diffstat (limited to 'deps/v8/src/execution/x64/frame-constants-x64.h')
-rw-r--r--deps/v8/src/execution/x64/frame-constants-x64.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/deps/v8/src/execution/x64/frame-constants-x64.h b/deps/v8/src/execution/x64/frame-constants-x64.h
index d1ba413c8a..deb66d05e6 100644
--- a/deps/v8/src/execution/x64/frame-constants-x64.h
+++ b/deps/v8/src/execution/x64/frame-constants-x64.h
@@ -26,9 +26,9 @@ class EntryFrameConstants : public AllStatic {
// On x64, there are 7 pushq() and 3 Push() calls between setting up rbp and
// pushing the c_entry_fp, plus we manually allocate kXMMRegistersBlockSize
// bytes on the stack.
- static constexpr int kCallerFPOffset = -3 * kSystemPointerSize +
- -7 * kSystemPointerSize -
- kXMMRegistersBlockSize;
+ static constexpr int kNextExitFrameFPOffset = -3 * kSystemPointerSize +
+ -7 * kSystemPointerSize -
+ kXMMRegistersBlockSize;
// Stack offsets for arguments passed to JSEntry.
static constexpr int kArgcOffset = 6 * kSystemPointerSize;
@@ -38,7 +38,7 @@ class EntryFrameConstants : public AllStatic {
// Isolate::c_entry_fp onto the stack.
// On x64, there are 5 pushq() and 3 Push() calls between setting up rbp and
// pushing the c_entry_fp.
- static constexpr int kCallerFPOffset =
+ static constexpr int kNextExitFrameFPOffset =
-3 * kSystemPointerSize + -5 * kSystemPointerSize;
#endif
};