Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(155)

Side by Side Diff: runtime/vm/debugger.cc

Issue 2827873002: Move runtime functions to the more logical runtime_entry.cc. (Closed)
Patch Set: sort Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « runtime/vm/dart_entry.cc ('k') | runtime/vm/deopt_instructions.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
OLDNEW
« no previous file with comments | « runtime/vm/dart_entry.cc ('k') | runtime/vm/deopt_instructions.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698