| Index: src/mips/macro-assembler-mips.h
|
| diff --git a/src/mips/macro-assembler-mips.h b/src/mips/macro-assembler-mips.h
|
| index e92eb9ec4ebf95260a631e64bca45b49754a97cc..c21fba768fe3f9a09ddb5500258e508aea8a57e1 100644
|
| --- a/src/mips/macro-assembler-mips.h
|
| +++ b/src/mips/macro-assembler-mips.h
|
| @@ -762,6 +762,14 @@ class MacroAssembler: public Assembler {
|
| Addu(sp, sp, Operand(count * kPointerSize));
|
| }
|
|
|
| + // Push a fixed frame, consisting of ra, fp.
|
| + void PushCommonFrame(Register marker_reg = no_reg);
|
| +
|
| + // Push a standard frame, consisting of ra, fp, context and JS function.
|
| + void PushStandardFrame(Register function_reg);
|
| +
|
| + void PopCommonFrame(Register marker_reg = no_reg);
|
| +
|
| // Push and pop the registers that can hold pointers, as defined by the
|
| // RegList constant kSafepointSavedRegisters.
|
| void PushSafepointRegisters();
|
| @@ -1605,7 +1613,7 @@ const Operand& rt = Operand(zero_reg), BranchDelaySlot bd = PROTECT
|
| }
|
|
|
| // Generates function and stub prologue code.
|
| - void StubPrologue();
|
| + void StubPrologue(StackFrame::Type type);
|
| void Prologue(bool code_pre_aging);
|
|
|
| // Load the type feedback vector from a JavaScript frame.
|
|
|