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

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

Issue 300793002: Move LiveEdit-related code. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: fix x64 Created 6 years, 7 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 | Annotate | Revision Log
« no previous file with comments | « src/liveedit.cc ('k') | src/x64/debug-x64.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 5
6 6
7 #include "v8.h" 7 #include "v8.h"
8 8
9 #if V8_TARGET_ARCH_MIPS 9 #if V8_TARGET_ARCH_MIPS
10 10
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after
83 patcher.masm()->Call(v8::internal::t9); 83 patcher.masm()->Call(v8::internal::t9);
84 } 84 }
85 85
86 86
87 void BreakLocationIterator::ClearDebugBreakAtSlot() { 87 void BreakLocationIterator::ClearDebugBreakAtSlot() {
88 ASSERT(IsDebugBreakSlot()); 88 ASSERT(IsDebugBreakSlot());
89 rinfo()->PatchCode(original_rinfo()->pc(), 89 rinfo()->PatchCode(original_rinfo()->pc(),
90 Assembler::kDebugBreakSlotInstructions); 90 Assembler::kDebugBreakSlotInstructions);
91 } 91 }
92 92
93 const bool Debug::FramePaddingLayout::kIsSupported = false;
94
95 93
96 #define __ ACCESS_MASM(masm) 94 #define __ ACCESS_MASM(masm)
97 95
98 96
99 97
100 static void Generate_DebugBreakCallHelper(MacroAssembler* masm, 98 static void Generate_DebugBreakCallHelper(MacroAssembler* masm,
101 RegList object_regs, 99 RegList object_regs,
102 RegList non_object_regs) { 100 RegList non_object_regs) {
103 { 101 {
104 FrameScope scope(masm, StackFrame::INTERNAL); 102 FrameScope scope(masm, StackFrame::INTERNAL);
(...skipping 189 matching lines...) Expand 10 before | Expand all | Expand 10 after
294 void DebugCodegen::GeneratePlainReturnLiveEdit(MacroAssembler* masm) { 292 void DebugCodegen::GeneratePlainReturnLiveEdit(MacroAssembler* masm) {
295 masm->Abort(kLiveEditFrameDroppingIsNotSupportedOnMips); 293 masm->Abort(kLiveEditFrameDroppingIsNotSupportedOnMips);
296 } 294 }
297 295
298 296
299 void DebugCodegen::GenerateFrameDropperLiveEdit(MacroAssembler* masm) { 297 void DebugCodegen::GenerateFrameDropperLiveEdit(MacroAssembler* masm) {
300 masm->Abort(kLiveEditFrameDroppingIsNotSupportedOnMips); 298 masm->Abort(kLiveEditFrameDroppingIsNotSupportedOnMips);
301 } 299 }
302 300
303 301
304 const bool Debug::kFrameDropperSupported = false; 302 const bool LiveEdit::kFrameDropperSupported = false;
305 303
306 #undef __ 304 #undef __
307 305
308 } } // namespace v8::internal 306 } } // namespace v8::internal
309 307
310 #endif // V8_TARGET_ARCH_MIPS 308 #endif // V8_TARGET_ARCH_MIPS
OLDNEW
« no previous file with comments | « src/liveedit.cc ('k') | src/x64/debug-x64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698