| OLD | NEW |
| 1 // Copyright 2006-2008 the V8 project authors. All rights reserved. | 1 // Copyright 2006-2008 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 |
| (...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 125 | 125 |
| 126 protected: | 126 protected: |
| 127 bool RinfoDone() const; | 127 bool RinfoDone() const; |
| 128 void RinfoNext(); | 128 void RinfoNext(); |
| 129 | 129 |
| 130 BreakLocatorType type_; | 130 BreakLocatorType type_; |
| 131 int break_point_; | 131 int break_point_; |
| 132 int position_; | 132 int position_; |
| 133 int statement_position_; | 133 int statement_position_; |
| 134 Handle<DebugInfo> debug_info_; | 134 Handle<DebugInfo> debug_info_; |
| 135 Handle<Code> debug_break_stub_; | |
| 136 RelocIterator* reloc_iterator_; | 135 RelocIterator* reloc_iterator_; |
| 137 RelocIterator* reloc_iterator_original_; | 136 RelocIterator* reloc_iterator_original_; |
| 138 | 137 |
| 139 private: | 138 private: |
| 140 void SetDebugBreak(); | 139 void SetDebugBreak(); |
| 141 void ClearDebugBreak(); | 140 void ClearDebugBreak(); |
| 142 | 141 |
| 143 void SetDebugBreakAtIC(); | 142 void SetDebugBreakAtIC(); |
| 144 void ClearDebugBreakAtIC(); | 143 void ClearDebugBreakAtIC(); |
| 145 | 144 |
| (...skipping 741 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 887 | 886 |
| 888 DISALLOW_COPY_AND_ASSIGN(MessageDispatchHelperThread); | 887 DISALLOW_COPY_AND_ASSIGN(MessageDispatchHelperThread); |
| 889 }; | 888 }; |
| 890 | 889 |
| 891 | 890 |
| 892 } } // namespace v8::internal | 891 } } // namespace v8::internal |
| 893 | 892 |
| 894 #endif // ENABLE_DEBUGGER_SUPPORT | 893 #endif // ENABLE_DEBUGGER_SUPPORT |
| 895 | 894 |
| 896 #endif // V8_DEBUG_H_ | 895 #endif // V8_DEBUG_H_ |
| OLD | NEW |