debug-x64.cc 10.7 KB
Newer Older
1
// Copyright 2011 the V8 project authors. All rights reserved.
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are
// met:
//
//     * Redistributions of source code must retain the above copyright
//       notice, this list of conditions and the following disclaimer.
//     * Redistributions in binary form must reproduce the above
//       copyright notice, this list of conditions and the following
//       disclaimer in the documentation and/or other materials provided
//       with the distribution.
//     * Neither the name of Google Inc. nor the names of its
//       contributors may be used to endorse or promote products derived
//       from this software without specific prior written permission.
//
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

28 29
#include "v8.h"

30 31
#if defined(V8_TARGET_ARCH_X64)

32 33
#include "assembler.h"
#include "codegen.h"
34 35 36
#include "debug.h"


37 38
namespace v8 {
namespace internal {
39 40 41

#ifdef ENABLE_DEBUGGER_SUPPORT

42 43 44 45 46 47 48 49 50 51 52
bool BreakLocationIterator::IsDebugBreakAtReturn()  {
  return Debug::IsDebugBreakAtReturn(rinfo());
}


// Patch the JS frame exit code with a debug break call. See
// CodeGenerator::VisitReturnStatement and VirtualFrame::Exit in codegen-x64.cc
// for the precise return instructions sequence.
void BreakLocationIterator::SetDebugBreakAtReturn()  {
  ASSERT(Assembler::kJSReturnSequenceLength >=
         Assembler::kCallInstructionLength);
53 54
  rinfo()->PatchCodeWithCall(
      Isolate::Current()->debug()->debug_break_return()->entry(),
55 56 57 58 59 60 61 62 63 64 65 66 67
      Assembler::kJSReturnSequenceLength - Assembler::kCallInstructionLength);
}


// Restore the JS frame exit code.
void BreakLocationIterator::ClearDebugBreakAtReturn() {
  rinfo()->PatchCode(original_rinfo()->pc(),
                     Assembler::kJSReturnSequenceLength);
}


// A debug break in the frame exit code is identified by the JS frame exit code
// having been patched with a call instruction.
68
bool Debug::IsDebugBreakAtReturn(v8::internal::RelocInfo* rinfo) {
69
  ASSERT(RelocInfo::IsJSReturn(rinfo->rmode()));
70
  return rinfo->IsPatchedReturnSequence();
71 72
}

73 74 75 76 77 78 79 80 81 82 83

bool BreakLocationIterator::IsDebugBreakAtSlot() {
  ASSERT(IsDebugBreakSlot());
  // Check whether the debug break slot instructions have been patched.
  return !Assembler::IsNop(rinfo()->pc());
}


void BreakLocationIterator::SetDebugBreakAtSlot() {
  ASSERT(IsDebugBreakSlot());
  rinfo()->PatchCodeWithCall(
84
      Isolate::Current()->debug()->debug_break_slot()->entry(),
85 86 87 88 89 90 91 92 93 94
      Assembler::kDebugBreakSlotLength - Assembler::kCallInstructionLength);
}


void BreakLocationIterator::ClearDebugBreakAtSlot() {
  ASSERT(IsDebugBreakSlot());
  rinfo()->PatchCode(original_rinfo()->pc(), Assembler::kDebugBreakSlotLength);
}


95 96
#define __ ACCESS_MASM(masm)

97

98
static void Generate_DebugBreakCallHelper(MacroAssembler* masm,
99 100
                                          RegList object_regs,
                                          RegList non_object_regs,
101 102 103 104
                                          bool convert_call_to_jmp) {
  // Enter an internal frame.
  __ EnterInternalFrame();

105 106
  // Store the registers containing live values on the expression stack to
  // make sure that these are correctly updated during GC. Non object values
107
  // are stored as as two smis causing it to be untouched by GC.
108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127
  ASSERT((object_regs & ~kJSCallerSaved) == 0);
  ASSERT((non_object_regs & ~kJSCallerSaved) == 0);
  ASSERT((object_regs & non_object_regs) == 0);
  for (int i = 0; i < kNumJSCallerSaved; i++) {
    int r = JSCallerSavedCode(i);
    Register reg = { r };
    ASSERT(!reg.is(kScratchRegister));
    if ((object_regs & (1 << r)) != 0) {
      __ push(reg);
    }
    // Store the 64-bit value as two smis.
    if ((non_object_regs & (1 << r)) != 0) {
      __ movq(kScratchRegister, reg);
      __ Integer32ToSmi(reg, reg);
      __ push(reg);
      __ sar(kScratchRegister, Immediate(32));
      __ Integer32ToSmi(kScratchRegister, kScratchRegister);
      __ push(kScratchRegister);
    }
  }
128 129 130 131

#ifdef DEBUG
  __ RecordComment("// Calling from debug break to runtime - come in - over");
#endif
132
  __ Set(rax, 0);  // No arguments (argc == 0).
133
  __ movq(rbx, ExternalReference::debug_break(masm->isolate()));
134

135
  CEntryStub ceb(1);
136 137
  __ CallStub(&ceb);

138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156
  // Restore the register values from the expression stack.
  for (int i = kNumJSCallerSaved - 1; i >= 0; i--) {
    int r = JSCallerSavedCode(i);
    Register reg = { r };
    if (FLAG_debug_code) {
      __ Set(reg, kDebugZapValue);
    }
    if ((object_regs & (1 << r)) != 0) {
      __ pop(reg);
    }
    // Reconstruct the 64-bit value from two smis.
    if ((non_object_regs & (1 << r)) != 0) {
      __ pop(kScratchRegister);
      __ SmiToInteger32(kScratchRegister, kScratchRegister);
      __ shl(kScratchRegister, Immediate(32));
      __ pop(reg);
      __ SmiToInteger32(reg, reg);
      __ or_(reg, kScratchRegister);
    }
157
  }
158 159 160 161 162 163 164

  // Get rid of the internal frame.
  __ LeaveInternalFrame();

  // If this call did not replace a call but patched other code then there will
  // be an unwanted return address left on the stack. Here we get rid of that.
  if (convert_call_to_jmp) {
165
    __ addq(rsp, Immediate(kPointerSize));
166 167 168 169 170 171
  }

  // 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.
  ExternalReference after_break_target =
172
      ExternalReference(Debug_Address::AfterBreakTarget(), masm->isolate());
173 174 175 176 177
  __ movq(kScratchRegister, after_break_target);
  __ jmp(Operand(kScratchRegister, 0));
}


178 179
void Debug::GenerateLoadICDebugBreak(MacroAssembler* masm) {
  // Register state for IC load call (from ic-x64.cc).
180
  // ----------- S t a t e -------------
181 182
  //  -- rax    : receiver
  //  -- rcx    : name
183
  // -----------------------------------
184
  Generate_DebugBreakCallHelper(masm, rax.bit() | rcx.bit(), 0, false);
185 186
}

187

188 189
void Debug::GenerateStoreICDebugBreak(MacroAssembler* masm) {
  // Register state for IC store call (from ic-x64.cc).
190
  // ----------- S t a t e -------------
191 192 193
  //  -- rax    : value
  //  -- rcx    : name
  //  -- rdx    : receiver
194
  // -----------------------------------
195 196
  Generate_DebugBreakCallHelper(
      masm, rax.bit() | rcx.bit() | rdx.bit(), 0, false);
197 198
}

199

200
void Debug::GenerateKeyedLoadICDebugBreak(MacroAssembler* masm) {
201 202
  // Register state for keyed IC load call (from ic-x64.cc).
  // ----------- S t a t e -------------
203 204
  //  -- rax     : key
  //  -- rdx     : receiver
205
  // -----------------------------------
206
  Generate_DebugBreakCallHelper(masm, rax.bit() | rdx.bit(), 0, false);
207 208
}

209

210
void Debug::GenerateKeyedStoreICDebugBreak(MacroAssembler* masm) {
211 212 213
  // Register state for keyed IC load call (from ic-x64.cc).
  // ----------- S t a t e -------------
  //  -- rax    : value
214 215
  //  -- rcx    : key
  //  -- rdx    : receiver
216
  // -----------------------------------
217 218
  Generate_DebugBreakCallHelper(
      masm, rax.bit() | rcx.bit() | rdx.bit(), 0, false);
219 220
}

221

222 223
void Debug::GenerateCallICDebugBreak(MacroAssembler* masm) {
  // Register state for IC call call (from ic-x64.cc)
224
  // ----------- S t a t e -------------
225
  //  -- rcx: function name
226
  // -----------------------------------
227
  Generate_DebugBreakCallHelper(masm, rcx.bit(), 0, false);
228 229
}

230

231
void Debug::GenerateConstructCallDebugBreak(MacroAssembler* masm) {
232
  // Register state just before return from JS function (from codegen-x64.cc).
233 234
  // rax is the actual number of arguments not encoded as a smi, see comment
  // above IC call.
235
  // ----------- S t a t e -------------
236
  //  -- rax: number of arguments
237
  // -----------------------------------
238 239
  // The number of arguments in rax is not smi encoded.
  Generate_DebugBreakCallHelper(masm, rdi.bit(), rax.bit(), false);
240 241
}

242

243 244
void Debug::GenerateReturnDebugBreak(MacroAssembler* masm) {
  // Register state just before return from JS function (from codegen-x64.cc).
245
  // ----------- S t a t e -------------
246
  //  -- rax: return value
247
  // -----------------------------------
248
  Generate_DebugBreakCallHelper(masm, rax.bit(), 0, true);
249 250
}

251

252
void Debug::GenerateStubNoRegistersDebugBreak(MacroAssembler* masm) {
253 254 255 256
  // Register state for stub CallFunction (from CallFunctionStub in ic-x64.cc).
  // ----------- S t a t e -------------
  //  No registers used on entry.
  // -----------------------------------
257
  Generate_DebugBreakCallHelper(masm, 0, 0, false);
258 259
}

260

261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276
void Debug::GenerateSlot(MacroAssembler* masm) {
  // Generate enough nop's to make space for a call instruction.
  Label check_codesize;
  __ bind(&check_codesize);
  __ RecordDebugBreakSlot();
  for (int i = 0; i < Assembler::kDebugBreakSlotLength; i++) {
    __ nop();
  }
  ASSERT_EQ(Assembler::kDebugBreakSlotLength,
            masm->SizeOfCodeGeneratedSince(&check_codesize));
}


void Debug::GenerateSlotDebugBreak(MacroAssembler* masm) {
  // In the places where a debug break slot is inserted no registers can contain
  // object pointers.
277
  Generate_DebugBreakCallHelper(masm, 0, 0, true);
278 279 280
}


281
void Debug::GeneratePlainReturnLiveEdit(MacroAssembler* masm) {
282
  masm->ret(0);
283 284
}

285

286
void Debug::GenerateFrameDropperLiveEdit(MacroAssembler* masm) {
287
  ExternalReference restarter_frame_function_slot =
288 289
      ExternalReference(Debug_Address::RestarterFrameFunctionPointer(),
                        masm->isolate());
290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308
  __ movq(rax, restarter_frame_function_slot);
  __ movq(Operand(rax, 0), Immediate(0));

  // We do not know our frame height, but set rsp based on rbp.
  __ lea(rsp, Operand(rbp, -1 * kPointerSize));

  __ pop(rdi);  // Function.
  __ pop(rbp);

  // Load context from the function.
  __ movq(rsi, FieldOperand(rdi, JSFunction::kContextOffset));

  // Get function code.
  __ movq(rdx, FieldOperand(rdi, JSFunction::kSharedFunctionInfoOffset));
  __ movq(rdx, FieldOperand(rdx, SharedFunctionInfo::kCodeOffset));
  __ lea(rdx, FieldOperand(rdx, Code::kHeaderSize));

  // Re-run JSFunction, rdi is function, rsi is context.
  __ jmp(rdx);
309 310
}

311 312
const bool Debug::kFrameDropperSupported = true;

313 314
#undef __

315 316 317
#endif  // ENABLE_DEBUGGER_SUPPORT

} }  // namespace v8::internal
318 319

#endif  // V8_TARGET_ARCH_X64