| Index: src/mips64/assembler-mips64.h
|
| diff --git a/src/mips64/assembler-mips64.h b/src/mips64/assembler-mips64.h
|
| index a4fe57f058f96e805b17e85a932be43f74a905ec..f8d315d835d4f3dea88d02846524059f0a84c7be 100644
|
| --- a/src/mips64/assembler-mips64.h
|
| +++ b/src/mips64/assembler-mips64.h
|
| @@ -1105,9 +1105,6 @@ class Assembler : public AssemblerBase {
|
| void dp(uintptr_t data) { dq(data); }
|
| void dd(Label* label);
|
|
|
| - // Emits the address of the code stub's first instruction.
|
| - void emit_code_stub_address(Code* stub);
|
| -
|
| PositionsRecorder* positions_recorder() { return &positions_recorder_; }
|
|
|
| // Postpone the generation of the trampoline pool for the specified number of
|
| @@ -1329,6 +1326,10 @@ class Assembler : public AssemblerBase {
|
| inline void emit(Instr x,
|
| CompactBranchType is_compact_branch = CompactBranchType::NO);
|
| inline void emit(uint64_t x);
|
| + inline void CheckForEmitInForbiddenSlot();
|
| + template <typename T>
|
| + inline void EmitHelper(T x);
|
| + inline void EmitHelper(Instr x, CompactBranchType is_compact_branch);
|
|
|
| // Instruction generation.
|
| // We have 3 different kind of encoding layout on MIPS.
|
|
|