debug-arm64.cc 5.95 KB
Newer Older
1
// Copyright 2013 the V8 project authors. All rights reserved.
2 3
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
4

5
#if V8_TARGET_ARCH_ARM64
6

7 8
#include "src/debug/debug.h"

9
#include "src/arm64/frames-arm64.h"
10
#include "src/codegen.h"
11
#include "src/debug/liveedit.h"
12 13 14 15 16 17 18

namespace v8 {
namespace internal {

#define __ ACCESS_MASM(masm)


19 20 21 22 23 24 25 26 27 28 29
void EmitDebugBreakSlot(Assembler* masm) {
  Label check_size;
  __ bind(&check_size);
  for (int i = 0; i < Assembler::kDebugBreakSlotInstructions; i++) {
    __ nop(Assembler::DEBUG_BREAK_NOP);
  }
  DCHECK_EQ(Assembler::kDebugBreakSlotInstructions,
            static_cast<int>(masm->InstructionsGeneratedSince(&check_size)));
}


30
void DebugCodegen::GenerateSlot(MacroAssembler* masm, RelocInfo::Mode mode) {
31 32 33
  // Generate enough nop's to make space for a call instruction. Avoid emitting
  // the constant pool in the debug break slot code.
  InstructionAccurateScope scope(masm, Assembler::kDebugBreakSlotInstructions);
34
  masm->RecordDebugBreakSlot(mode);
35 36 37 38
  EmitDebugBreakSlot(masm);
}


39 40
void DebugCodegen::ClearDebugBreakSlot(Isolate* isolate, Address pc) {
  PatchingAssembler patcher(isolate, reinterpret_cast<Instruction*>(pc),
41 42
                            Assembler::kDebugBreakSlotInstructions);
  EmitDebugBreakSlot(&patcher);
43 44 45
}


46 47
void DebugCodegen::PatchDebugBreakSlot(Isolate* isolate, Address pc,
                                       Handle<Code> code) {
48
  DCHECK(code->is_debug_stub());
49
  PatchingAssembler patcher(isolate, reinterpret_cast<Instruction*>(pc),
50
                            Assembler::kDebugBreakSlotInstructions);
51 52
  // Patch the code emitted by DebugCodegen::GenerateSlots, changing the debug
  // break slot code from
53 54 55 56
  //   mov x0, x0    @ nop DEBUG_BREAK_NOP
  //   mov x0, x0    @ nop DEBUG_BREAK_NOP
  //   mov x0, x0    @ nop DEBUG_BREAK_NOP
  //   mov x0, x0    @ nop DEBUG_BREAK_NOP
57
  //   mov x0, x0    @ nop DEBUG_BREAK_NOP
58 59 60
  // to a call to the debug slot code.
  //   ldr ip0, [pc, #(2 * kInstructionSize)]
  //   blr ip0
61 62 63
  //   b skip
  //   <debug break slot code entry point address (64 bits)>
  //   skip:
64

65
  Label skip_constant;
66 67
  // The first instruction of a patched debug break slot must be a load literal
  // loading the address of the debug break slot code.
68
  patcher.ldr_pcrel(ip0, (2 * kInstructionSize) >> kLoadLiteralScaleLog2);
69 70 71
  patcher.b(&skip_constant);
  patcher.dc64(reinterpret_cast<int64_t>(code->entry()));
  patcher.bind(&skip_constant);
72 73
  // TODO(all): check the following is correct.
  // The debug break slot code will push a frame and call statically compiled
74 75
  // code. By using blr,  this call site will be registered in the frame.
  // The debugger can now iterate on the frames to find this call.
76 77 78
  patcher.blr(ip0);
}

79 80 81 82
bool DebugCodegen::DebugBreakSlotIsPatched(Address pc) {
  Instruction* current_instr = reinterpret_cast<Instruction*>(pc);
  return !current_instr->IsNop(Assembler::DEBUG_BREAK_NOP);
}
83

84 85 86
void DebugCodegen::GenerateDebugBreakStub(MacroAssembler* masm,
                                          DebugBreakCallHelperMode mode) {
  __ RecordComment("Debug break");
87
  Register scratch = x10;
88 89 90
  {
    FrameScope scope(masm, StackFrame::INTERNAL);

91
    // Load padding words on stack.
92 93 94 95
    __ Mov(scratch, Smi::FromInt(LiveEdit::kFramePaddingValue));
    __ PushMultipleTimes(scratch, LiveEdit::kFramePaddingInitialSize);
    __ Mov(scratch, Smi::FromInt(LiveEdit::kFramePaddingInitialSize));
    __ Push(scratch);
96

97 98 99 100 101 102 103 104 105
    // Push arguments for DebugBreak call.
    if (mode == SAVE_RESULT_REGISTER) {
      // Break on return.
      __ Push(x0);
    } else {
      // Non-return breaks.
      __ Push(masm->isolate()->factory()->the_hole_value());
    }
    __ Mov(x0, 1);
106 107
    __ Mov(x1, ExternalReference(Runtime::FunctionForId(Runtime::kDebugBreak),
                                 masm->isolate()));
108

109
    CEntryStub stub(masm->isolate(), 1);
110 111
    __ CallStub(&stub);

112 113 114
    if (FLAG_debug_code) {
      for (int i = 0; i < kNumJSCallerSaved; i++) {
        Register reg = Register::XRegFromCode(JSCallerSavedCode(i));
115 116 117 118 119
        // Do not clobber x0 if mode is SAVE_RESULT_REGISTER. It will
        // contain return value of the function.
        if (!(reg.is(x0) && (mode == SAVE_RESULT_REGISTER))) {
          __ Mov(reg, Operand(kDebugZapValue));
        }
120
      }
121 122
    }

123 124 125
    // Don't bother removing padding bytes pushed on the stack
    // as the frame is going to be restored right away.

126 127 128 129 130 131
    // Leave the internal frame.
  }

  // Now that the break point has been handled, resume normal execution by
  // jumping to the target address intended by the caller and that was
  // overwritten by the address of DebugBreakXXX.
132 133
  ExternalReference after_break_target =
      ExternalReference::debug_after_break_target_address(masm->isolate());
134
  __ Mov(scratch, after_break_target);
135 136 137 138 139
  __ Ldr(scratch, MemOperand(scratch));
  __ Br(scratch);
}


140
void DebugCodegen::GenerateFrameDropperLiveEdit(MacroAssembler* masm) {
141
  // We do not know our frame height, but set sp based on fp.
142
  __ Add(masm->StackPointer(), fp, FrameDropperFrameConstants::kFunctionOffset);
143
  __ AssertStackConsistency();
144

145 146 147
  __ Pop(x1);  // Function
  __ Mov(masm->StackPointer(), Operand(fp));
  __ Pop(fp, lr);  // Frame, Return address.
148

149 150 151 152 153 154
  ParameterCount dummy(0);
  __ FloodFunctionIfStepping(x1, no_reg, dummy, dummy);

  UseScratchRegisterScope temps(masm);
  Register scratch = temps.AcquireX();

155
  // Load context from the function.
156
  __ Ldr(cp, FieldMemOperand(x1, JSFunction::kContextOffset));
157

158 159 160
  // Clear new.target as a safety measure.
  __ LoadRoot(x3, Heap::kUndefinedValueRootIndex);

161
  // Get function code.
162 163 164
  __ Ldr(scratch, FieldMemOperand(x1, JSFunction::kSharedFunctionInfoOffset));
  __ Ldr(scratch, FieldMemOperand(scratch, SharedFunctionInfo::kCodeOffset));
  __ Add(scratch, scratch, Code::kHeaderSize - kHeapObjectTag);
165 166

  // Re-run JSFunction, x1 is function, cp is context.
167
  __ Br(scratch);
168 169
}

170

171
const bool LiveEdit::kFrameDropperSupported = true;
172

173 174
}  // namespace internal
}  // namespace v8
175

176
#endif  // V8_TARGET_ARCH_ARM64