debug-ia32.cc 10.2 KB
Newer Older
1
// Copyright 2010 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 28 29
// 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.

#include "v8.h"

30 31
#if defined(V8_TARGET_ARCH_IA32)

32 33
#include "codegen-inl.h"
#include "debug.h"
sgjesse@chromium.org's avatar
sgjesse@chromium.org committed
34

35

36 37
namespace v8 {
namespace internal {
38

39
#ifdef ENABLE_DEBUGGER_SUPPORT
40

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


// Patch the JS frame exit code with a debug break call. See
// CodeGenerator::VisitReturnStatement and VirtualFrame::Exit in codegen-ia32.cc
// for the precise return instructions sequence.
void BreakLocationIterator::SetDebugBreakAtReturn() {
50 51
  ASSERT(Assembler::kJSReturnSequenceLength >=
         Assembler::kCallInstructionLength);
52
  rinfo()->PatchCodeWithCall(Debug::debug_break_return()->entry(),
53
      Assembler::kJSReturnSequenceLength - Assembler::kCallInstructionLength);
54 55 56 57 58 59
}


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


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


72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92
bool BreakLocationIterator::IsDebugBreakAtSlot() {
  ASSERT(IsDebugBreakSlot());
  // Check whether the debug break slot instructions have been patched.
  return rinfo()->IsPatchedDebugBreakSlotSequence();
}


void BreakLocationIterator::SetDebugBreakAtSlot() {
  ASSERT(IsDebugBreakSlot());
  rinfo()->PatchCodeWithCall(
      Debug::debug_break_slot()->entry(),
      Assembler::kDebugBreakSlotLength - Assembler::kCallInstructionLength);
}


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


93
#define __ ACCESS_MASM(masm)
94 95 96


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

103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123
  // Store the registers containing live values on the expression stack to
  // make sure that these are correctly updated during GC. Non object values
  // are stored as a smi causing it to be untouched by GC.
  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 };
    if ((object_regs & (1 << r)) != 0) {
      __ push(reg);
    }
    if ((non_object_regs & (1 << r)) != 0) {
      if (FLAG_debug_code) {
        __ test(reg, Immediate(0xc0000000));
        __ Assert(zero, "Unable to encode value as smi");
      }
      __ SmiTag(reg);
      __ push(reg);
    }
  }
124 125 126 127

#ifdef DEBUG
  __ RecordComment("// Calling from debug break to runtime - come in - over");
#endif
128
  __ Set(eax, Immediate(0));  // No arguments.
129 130
  __ mov(ebx, Immediate(ExternalReference::debug_break()));

131
  CEntryStub ceb(1);
132 133 134
  __ CallStub(&ceb);

  // Restore the register values containing object pointers from the expression
135 136 137 138 139 140 141 142 143 144 145 146 147 148 149
  // stack.
  for (int i = kNumJSCallerSaved; --i >= 0;) {
    int r = JSCallerSavedCode(i);
    Register reg = { r };
    if (FLAG_debug_code) {
      __ Set(reg, Immediate(kDebugZapValue));
    }
    if ((object_regs & (1 << r)) != 0) {
      __ pop(reg);
    }
    if ((non_object_regs & (1 << r)) != 0) {
      __ pop(reg);
      __ SmiUntag(reg);
    }
  }
150 151 152 153 154 155 156

  // 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) {
157
    __ add(Operand(esp), Immediate(kPointerSize));
158 159 160 161 162 163 164 165 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 =
      ExternalReference(Debug_Address::AfterBreakTarget());
  __ jmp(Operand::StaticVariable(after_break_target));
}


void Debug::GenerateLoadICDebugBreak(MacroAssembler* masm) {
  // Register state for IC load call (from ic-ia32.cc).
  // ----------- S t a t e -------------
172
  //  -- eax    : receiver
173 174
  //  -- ecx    : name
  // -----------------------------------
175
  Generate_DebugBreakCallHelper(masm, eax.bit() | ecx.bit(), 0, false);
176 177 178 179
}


void Debug::GenerateStoreICDebugBreak(MacroAssembler* masm) {
180
  // Register state for IC store call (from ic-ia32.cc).
181 182 183
  // ----------- S t a t e -------------
  //  -- eax    : value
  //  -- ecx    : name
184
  //  -- edx    : receiver
185
  // -----------------------------------
186 187
  Generate_DebugBreakCallHelper(
      masm, eax.bit() | ecx.bit() | edx.bit(), 0, false);
188 189 190 191 192 193
}


void Debug::GenerateKeyedLoadICDebugBreak(MacroAssembler* masm) {
  // Register state for keyed IC load call (from ic-ia32.cc).
  // ----------- S t a t e -------------
194 195
  //  -- edx    : receiver
  //  -- eax    : key
196
  // -----------------------------------
197
  Generate_DebugBreakCallHelper(masm, eax.bit() | edx.bit(), 0, false);
198 199 200 201 202 203 204
}


void Debug::GenerateKeyedStoreICDebugBreak(MacroAssembler* masm) {
  // Register state for keyed IC load call (from ic-ia32.cc).
  // ----------- S t a t e -------------
  //  -- eax    : value
205 206
  //  -- ecx    : key
  //  -- edx    : receiver
207
  // -----------------------------------
208 209
  Generate_DebugBreakCallHelper(
      masm, eax.bit() | ecx.bit() | edx.bit(), 0, false);
210 211 212 213 214 215
}


void Debug::GenerateCallICDebugBreak(MacroAssembler* masm) {
  // Register state for keyed IC call call (from ic-ia32.cc)
  // ----------- S t a t e -------------
216
  //  -- ecx: name
217
  // -----------------------------------
218
  Generate_DebugBreakCallHelper(masm, ecx.bit(), 0, false);
219 220 221 222 223 224 225 226
}


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


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


void Debug::GenerateStubNoRegistersDebugBreak(MacroAssembler* masm) {
  // Register state for stub CallFunction (from CallFunctionStub in ic-ia32.cc).
  // ----------- S t a t e -------------
  //  No registers used on entry.
  // -----------------------------------
249
  Generate_DebugBreakCallHelper(masm, 0, 0, false);
250 251 252
}


253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268
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.
269
  Generate_DebugBreakCallHelper(masm, 0, 0, true);
270 271 272
}


273 274 275 276
void Debug::GeneratePlainReturnLiveEdit(MacroAssembler* masm) {
  masm->ret(0);
}

277

278
void Debug::GenerateFrameDropperLiveEdit(MacroAssembler* masm) {
279 280 281 282
  ExternalReference restarter_frame_function_slot =
      ExternalReference(Debug_Address::RestarterFrameFunctionPointer());
  __ mov(Operand::StaticVariable(restarter_frame_function_slot), Immediate(0));

283
  // We do not know our frame height, but set esp based on ebp.
284
  __ lea(esp, Operand(ebp, -1 * kPointerSize));
285

286
  __ pop(edi);  // Function.
287 288
  __ pop(ebp);

289 290 291
  // Load context from the function.
  __ mov(esi, FieldOperand(edi, JSFunction::kContextOffset));

292 293 294 295 296 297 298 299 300
  // Get function code.
  __ mov(edx, FieldOperand(edi, JSFunction::kSharedFunctionInfoOffset));
  __ mov(edx, FieldOperand(edx, SharedFunctionInfo::kCodeOffset));
  __ lea(edx, FieldOperand(edx, Code::kHeaderSize));

  // Re-run JSFunction, edi is function, esi is context.
  __ jmp(Operand(edx));
}

301
const bool Debug::kFrameDropperSupported = true;
302

303
#undef __
304

305
#endif  // ENABLE_DEBUGGER_SUPPORT
306 307

} }  // namespace v8::internal
308 309

#endif  // V8_TARGET_ARCH_IA32