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

Unified Diff: src/mips/macro-assembler-mips.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: 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
Index: src/mips/macro-assembler-mips.h
diff --git a/src/mips/macro-assembler-mips.h b/src/mips/macro-assembler-mips.h
index e4d88b65f1b461886f9245bacfaa2db6b0e10483..e614772f2cd632eb95ec578cc5fd86ae42052a56 100644
--- a/src/mips/macro-assembler-mips.h
+++ b/src/mips/macro-assembler-mips.h
@@ -1009,8 +1009,8 @@ class MacroAssembler: public Assembler {
// argc - argument count to be dropped by LeaveExitFrame.
// save_doubles - saves FPU registers on stack, currently disabled.
// stack_space - extra stack space.
- void EnterExitFrame(bool save_doubles,
- int stack_space = 0);
+ void EnterExitFrame(bool save_doubles, int stack_space = 0,
+ StackFrame::Type frame_type = StackFrame::EXIT);
// Leave the current exit frame.
void LeaveExitFrame(bool save_doubles, Register arg_count,
@@ -1438,7 +1438,8 @@ const Operand& rt = Operand(zero_reg), BranchDelaySlot bd = PROTECT
// Jump to the builtin routine.
void JumpToExternalReference(const ExternalReference& builtin,
- BranchDelaySlot bd = PROTECT);
+ BranchDelaySlot bd = PROTECT,
+ bool builtin_exit_frame = false);
struct Unresolved {
int pc;

Powered by Google App Engine
This is Rietveld 408576698