OLD | NEW |
1 // Copyright 2011 the V8 project authors. All rights reserved. | 1 // Copyright 2012 the V8 project authors. All rights reserved. |
2 // Redistribution and use in source and binary forms, with or without | 2 // Redistribution and use in source and binary forms, with or without |
3 // modification, are permitted provided that the following conditions are | 3 // modification, are permitted provided that the following conditions are |
4 // met: | 4 // met: |
5 // | 5 // |
6 // * Redistributions of source code must retain the above copyright | 6 // * Redistributions of source code must retain the above copyright |
7 // notice, this list of conditions and the following disclaimer. | 7 // notice, this list of conditions and the following disclaimer. |
8 // * Redistributions in binary form must reproduce the above | 8 // * Redistributions in binary form must reproduce the above |
9 // copyright notice, this list of conditions and the following | 9 // copyright notice, this list of conditions and the following |
10 // disclaimer in the documentation and/or other materials provided | 10 // disclaimer in the documentation and/or other materials provided |
11 // with the distribution. | 11 // with the distribution. |
(...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
118 patcher.Emit(Isolate::Current()->debug()->debug_break_slot()->entry()); | 118 patcher.Emit(Isolate::Current()->debug()->debug_break_slot()->entry()); |
119 } | 119 } |
120 | 120 |
121 | 121 |
122 void BreakLocationIterator::ClearDebugBreakAtSlot() { | 122 void BreakLocationIterator::ClearDebugBreakAtSlot() { |
123 ASSERT(IsDebugBreakSlot()); | 123 ASSERT(IsDebugBreakSlot()); |
124 rinfo()->PatchCode(original_rinfo()->pc(), | 124 rinfo()->PatchCode(original_rinfo()->pc(), |
125 Assembler::kDebugBreakSlotInstructions); | 125 Assembler::kDebugBreakSlotInstructions); |
126 } | 126 } |
127 | 127 |
| 128 const bool Debug::FramePaddingLayout::kIsSupported = false; |
| 129 |
128 | 130 |
129 #define __ ACCESS_MASM(masm) | 131 #define __ ACCESS_MASM(masm) |
130 | 132 |
131 | 133 |
132 static void Generate_DebugBreakCallHelper(MacroAssembler* masm, | 134 static void Generate_DebugBreakCallHelper(MacroAssembler* masm, |
133 RegList object_regs, | 135 RegList object_regs, |
134 RegList non_object_regs) { | 136 RegList non_object_regs) { |
135 { | 137 { |
136 FrameScope scope(masm, StackFrame::INTERNAL); | 138 FrameScope scope(masm, StackFrame::INTERNAL); |
137 | 139 |
(...skipping 196 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
334 | 336 |
335 #undef __ | 337 #undef __ |
336 | 338 |
337 | 339 |
338 | 340 |
339 #endif // ENABLE_DEBUGGER_SUPPORT | 341 #endif // ENABLE_DEBUGGER_SUPPORT |
340 | 342 |
341 } } // namespace v8::internal | 343 } } // namespace v8::internal |
342 | 344 |
343 #endif // V8_TARGET_ARCH_ARM | 345 #endif // V8_TARGET_ARCH_ARM |
OLD | NEW |