| 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 #ifndef V8_DEBUG_H_ | 5 #ifndef V8_DEBUG_H_ |
| 6 #define V8_DEBUG_H_ | 6 #define V8_DEBUG_H_ |
| 7 | 7 |
| 8 #include "src/allocation.h" | 8 #include "src/allocation.h" |
| 9 #include "src/arguments.h" | 9 #include "src/arguments.h" |
| 10 #include "src/assembler.h" | 10 #include "src/assembler.h" |
| (...skipping 159 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 170 bool RinfoDone() const; | 170 bool RinfoDone() const; |
| 171 void RinfoNext(); | 171 void RinfoNext(); |
| 172 | 172 |
| 173 Handle<DebugInfo> debug_info_; | 173 Handle<DebugInfo> debug_info_; |
| 174 BreakLocatorType type_; | 174 BreakLocatorType type_; |
| 175 RelocIterator reloc_iterator_; | 175 RelocIterator reloc_iterator_; |
| 176 RelocIterator reloc_iterator_original_; | 176 RelocIterator reloc_iterator_original_; |
| 177 int break_index_; | 177 int break_index_; |
| 178 int position_; | 178 int position_; |
| 179 int statement_position_; | 179 int statement_position_; |
| 180 bool has_immediate_position_; | |
| 181 | 180 |
| 182 DisallowHeapAllocation no_gc_; | 181 DisallowHeapAllocation no_gc_; |
| 183 | 182 |
| 184 DISALLOW_COPY_AND_ASSIGN(Iterator); | 183 DISALLOW_COPY_AND_ASSIGN(Iterator); |
| 185 }; | 184 }; |
| 186 | 185 |
| 187 friend class Debug; | 186 friend class Debug; |
| 188 | 187 |
| 189 static int BreakIndexFromAddress(Handle<DebugInfo> debug_info, | 188 static int BreakIndexFromAddress(Handle<DebugInfo> debug_info, |
| 190 BreakLocatorType type, Address pc); | 189 BreakLocatorType type, Address pc); |
| (...skipping 635 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 826 // several frames above. | 825 // several frames above. |
| 827 // There is no calling conventions here, because it never actually gets | 826 // There is no calling conventions here, because it never actually gets |
| 828 // called, it only gets returned to. | 827 // called, it only gets returned to. |
| 829 static void GenerateFrameDropperLiveEdit(MacroAssembler* masm); | 828 static void GenerateFrameDropperLiveEdit(MacroAssembler* masm); |
| 830 }; | 829 }; |
| 831 | 830 |
| 832 | 831 |
| 833 } } // namespace v8::internal | 832 } } // namespace v8::internal |
| 834 | 833 |
| 835 #endif // V8_DEBUG_H_ | 834 #endif // V8_DEBUG_H_ |
| OLD | NEW |