Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(155)

Side by Side Diff: src/ia32/debug-ia32.cc

Issue 1222093007: Debugger: use debug break slot to break on call. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 the V8 project authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "src/v8.h" 5 #include "src/v8.h"
6 6
7 #if V8_TARGET_ARCH_IA32 7 #if V8_TARGET_ARCH_IA32
8 8
9 #include "src/codegen.h" 9 #include "src/codegen.h"
10 #include "src/debug.h" 10 #include "src/debug.h"
(...skipping 213 matching lines...) Expand 10 before | Expand all | Expand 10 after
224 // The number of arguments in eax is not smi encoded. 224 // The number of arguments in eax is not smi encoded.
225 Generate_DebugBreakCallHelper(masm, ebx.bit() | edx.bit() | edi.bit(), 225 Generate_DebugBreakCallHelper(masm, ebx.bit() | edx.bit() | edi.bit(),
226 eax.bit(), false); 226 eax.bit(), false);
227 } 227 }
228 228
229 229
230 void DebugCodegen::GenerateSlot(MacroAssembler* masm) { 230 void DebugCodegen::GenerateSlot(MacroAssembler* masm) {
231 // Generate enough nop's to make space for a call instruction. 231 // Generate enough nop's to make space for a call instruction.
232 Label check_codesize; 232 Label check_codesize;
233 __ bind(&check_codesize); 233 __ bind(&check_codesize);
234 __ RecordDebugBreakSlot();
235 __ Nop(Assembler::kDebugBreakSlotLength); 234 __ Nop(Assembler::kDebugBreakSlotLength);
236 DCHECK_EQ(Assembler::kDebugBreakSlotLength, 235 DCHECK_EQ(Assembler::kDebugBreakSlotLength,
237 masm->SizeOfCodeGeneratedSince(&check_codesize)); 236 masm->SizeOfCodeGeneratedSince(&check_codesize));
238 } 237 }
239 238
240 239
241 void DebugCodegen::GenerateSlotDebugBreak(MacroAssembler* masm) { 240 void DebugCodegen::GenerateSlotDebugBreak(MacroAssembler* masm) {
242 Generate_DebugBreakCallHelper(masm, 0, 0, true); 241 Generate_DebugBreakCallHelper(masm, 0, 0, true);
243 } 242 }
244 243
(...skipping 29 matching lines...) Expand all
274 273
275 274
276 const bool LiveEdit::kFrameDropperSupported = true; 275 const bool LiveEdit::kFrameDropperSupported = true;
277 276
278 #undef __ 277 #undef __
279 278
280 } // namespace internal 279 } // namespace internal
281 } // namespace v8 280 } // namespace v8
282 281
283 #endif // V8_TARGET_ARCH_IA32 282 #endif // V8_TARGET_ARCH_IA32
OLDNEW
« src/assembler.cc ('K') | « src/ia32/assembler-ia32.h ('k') | src/ia32/full-codegen-ia32.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698