| Index: src/mips64/macro-assembler-mips64.h
|
| diff --git a/src/mips64/macro-assembler-mips64.h b/src/mips64/macro-assembler-mips64.h
|
| index 1c7475f6d2cbcd55916a9a2f9a4cf415790becef..e853080877fc956179da6049ac463f62fc9a9d86 100644
|
| --- a/src/mips64/macro-assembler-mips64.h
|
| +++ b/src/mips64/macro-assembler-mips64.h
|
| @@ -804,6 +804,14 @@ class MacroAssembler: public Assembler {
|
| Daddu(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();
|
| @@ -1759,7 +1767,7 @@ const Operand& rt = Operand(zero_reg), BranchDelaySlot bd = PROTECT
|
| DecodeField<Field>(reg, reg);
|
| }
|
| // 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.
|
|
|