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 #include "v8.h" | 5 #include "v8.h" |
6 | 6 |
7 #if V8_TARGET_ARCH_ARM | 7 #if V8_TARGET_ARCH_ARM |
8 | 8 |
9 #include "codegen.h" | 9 #include "codegen.h" |
10 #include "debug.h" | 10 #include "debug.h" |
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
76 debug_info_->GetIsolate()->builtins()->Slot_DebugBreak()->entry()); | 76 debug_info_->GetIsolate()->builtins()->Slot_DebugBreak()->entry()); |
77 } | 77 } |
78 | 78 |
79 | 79 |
80 void BreakLocationIterator::ClearDebugBreakAtSlot() { | 80 void BreakLocationIterator::ClearDebugBreakAtSlot() { |
81 ASSERT(IsDebugBreakSlot()); | 81 ASSERT(IsDebugBreakSlot()); |
82 rinfo()->PatchCode(original_rinfo()->pc(), | 82 rinfo()->PatchCode(original_rinfo()->pc(), |
83 Assembler::kDebugBreakSlotInstructions); | 83 Assembler::kDebugBreakSlotInstructions); |
84 } | 84 } |
85 | 85 |
86 const bool Debug::FramePaddingLayout::kIsSupported = false; | |
87 | |
88 | 86 |
89 #define __ ACCESS_MASM(masm) | 87 #define __ ACCESS_MASM(masm) |
90 | 88 |
91 | 89 |
92 static void Generate_DebugBreakCallHelper(MacroAssembler* masm, | 90 static void Generate_DebugBreakCallHelper(MacroAssembler* masm, |
93 RegList object_regs, | 91 RegList object_regs, |
94 RegList non_object_regs) { | 92 RegList non_object_regs) { |
95 { | 93 { |
96 FrameAndConstantPoolScope scope(masm, StackFrame::INTERNAL); | 94 FrameAndConstantPoolScope scope(masm, StackFrame::INTERNAL); |
97 | 95 |
(...skipping 187 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
285 | 283 |
286 void DebugCodegen::GeneratePlainReturnLiveEdit(MacroAssembler* masm) { | 284 void DebugCodegen::GeneratePlainReturnLiveEdit(MacroAssembler* masm) { |
287 masm->Abort(kLiveEditFrameDroppingIsNotSupportedOnArm); | 285 masm->Abort(kLiveEditFrameDroppingIsNotSupportedOnArm); |
288 } | 286 } |
289 | 287 |
290 | 288 |
291 void DebugCodegen::GenerateFrameDropperLiveEdit(MacroAssembler* masm) { | 289 void DebugCodegen::GenerateFrameDropperLiveEdit(MacroAssembler* masm) { |
292 masm->Abort(kLiveEditFrameDroppingIsNotSupportedOnArm); | 290 masm->Abort(kLiveEditFrameDroppingIsNotSupportedOnArm); |
293 } | 291 } |
294 | 292 |
295 const bool Debug::kFrameDropperSupported = false; | 293 |
| 294 const bool LiveEdit::kFrameDropperSupported = false; |
296 | 295 |
297 #undef __ | 296 #undef __ |
298 | 297 |
299 } } // namespace v8::internal | 298 } } // namespace v8::internal |
300 | 299 |
301 #endif // V8_TARGET_ARCH_ARM | 300 #endif // V8_TARGET_ARCH_ARM |
OLD | NEW |