| Index: src/mips64/debug-mips64.cc
|
| diff --git a/src/mips64/debug-mips64.cc b/src/mips64/debug-mips64.cc
|
| index 2762e0beb5e7f837a90f68e0bc4ec3ded8c9a7d0..43ede412b2082e90a579e4859706abc565e395cf 100644
|
| --- a/src/mips64/debug-mips64.cc
|
| +++ b/src/mips64/debug-mips64.cc
|
| @@ -140,12 +140,15 @@ void DebugCodegen::GenerateReturnDebugBreak(MacroAssembler* masm) {
|
| }
|
|
|
|
|
| -void DebugCodegen::GenerateSlot(MacroAssembler* masm) {
|
| +void DebugCodegen::GenerateSlot(MacroAssembler* masm,
|
| + DebugCodegen::SlotLocation location,
|
| + int call_argc) {
|
| // Generate enough nop's to make space for a call instruction. Avoid emitting
|
| // the trampoline pool in the debug break slot code.
|
| Assembler::BlockTrampolinePoolScope block_trampoline_pool(masm);
|
| Label check_codesize;
|
| __ bind(&check_codesize);
|
| + RecordRelocInfo(masm, location, call_argc);
|
| for (int i = 0; i < Assembler::kDebugBreakSlotInstructions; i++) {
|
| __ nop(MacroAssembler::DEBUG_BREAK_NOP);
|
| }
|
|
|