OLD | NEW |
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 Loading... |
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 Loading... |
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 |
OLD | NEW |