| Index: src/mips64/macro-assembler-mips64.h
|
| diff --git a/src/mips64/macro-assembler-mips64.h b/src/mips64/macro-assembler-mips64.h
|
| index d9f9af4524520c874b8437af7c2a5d417e11f9b1..097f46012a42417c565a1f7ef9feedbafc0c8eb7 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();
|
| @@ -1768,7 +1776,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.
|
|
|