| OLD | NEW |
| 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 #include "vm/debugger.h" | 5 #include "vm/debugger.h" |
| 6 | 6 |
| 7 #include "include/dart_api.h" | 7 #include "include/dart_api.h" |
| 8 | 8 |
| 9 #include "platform/address_sanitizer.h" | 9 #include "platform/address_sanitizer.h" |
| 10 | 10 |
| 11 #include "vm/code_generator.h" | |
| 12 #include "vm/code_patcher.h" | 11 #include "vm/code_patcher.h" |
| 13 #include "vm/compiler.h" | 12 #include "vm/compiler.h" |
| 14 #include "vm/dart_entry.h" | 13 #include "vm/dart_entry.h" |
| 15 #include "vm/deopt_instructions.h" | 14 #include "vm/deopt_instructions.h" |
| 16 #include "vm/flags.h" | 15 #include "vm/flags.h" |
| 17 #include "vm/globals.h" | 16 #include "vm/globals.h" |
| 17 #include "vm/json_stream.h" |
| 18 #include "vm/longjump.h" | 18 #include "vm/longjump.h" |
| 19 #include "vm/json_stream.h" | |
| 20 #include "vm/message_handler.h" | 19 #include "vm/message_handler.h" |
| 21 #include "vm/object.h" | 20 #include "vm/object.h" |
| 22 #include "vm/object_store.h" | 21 #include "vm/object_store.h" |
| 23 #include "vm/os.h" | 22 #include "vm/os.h" |
| 24 #include "vm/port.h" | 23 #include "vm/port.h" |
| 24 #include "vm/runtime_entry.h" |
| 25 #include "vm/service.h" |
| 25 #include "vm/service_event.h" | 26 #include "vm/service_event.h" |
| 26 #include "vm/service_isolate.h" | 27 #include "vm/service_isolate.h" |
| 27 #include "vm/service.h" | |
| 28 #include "vm/stack_frame.h" | 28 #include "vm/stack_frame.h" |
| 29 #include "vm/stack_trace.h" | 29 #include "vm/stack_trace.h" |
| 30 #include "vm/stub_code.h" | 30 #include "vm/stub_code.h" |
| 31 #include "vm/symbols.h" | 31 #include "vm/symbols.h" |
| 32 #include "vm/thread_interrupter.h" | 32 #include "vm/thread_interrupter.h" |
| 33 #include "vm/timeline.h" | 33 #include "vm/timeline.h" |
| 34 #include "vm/token_position.h" | 34 #include "vm/token_position.h" |
| 35 #include "vm/visitor.h" | 35 #include "vm/visitor.h" |
| 36 | 36 |
| 37 | 37 |
| (...skipping 4329 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4367 | 4367 |
| 4368 void Debugger::RegisterCodeBreakpoint(CodeBreakpoint* bpt) { | 4368 void Debugger::RegisterCodeBreakpoint(CodeBreakpoint* bpt) { |
| 4369 ASSERT(bpt->next() == NULL); | 4369 ASSERT(bpt->next() == NULL); |
| 4370 bpt->set_next(code_breakpoints_); | 4370 bpt->set_next(code_breakpoints_); |
| 4371 code_breakpoints_ = bpt; | 4371 code_breakpoints_ = bpt; |
| 4372 } | 4372 } |
| 4373 | 4373 |
| 4374 #endif // !PRODUCT | 4374 #endif // !PRODUCT |
| 4375 | 4375 |
| 4376 } // namespace dart | 4376 } // namespace dart |
| OLD | NEW |