OLD | NEW |
1 // Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2015, 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/thread.h" | 5 #include "vm/thread.h" |
6 | 6 |
7 #include "vm/growable_array.h" | 7 #include "vm/growable_array.h" |
8 #include "vm/isolate.h" | 8 #include "vm/isolate.h" |
9 #include "vm/lockers.h" | 9 #include "vm/lockers.h" |
10 #include "vm/log.h" | 10 #include "vm/log.h" |
| 11 #include "vm/native_entry.h" |
11 #include "vm/object.h" | 12 #include "vm/object.h" |
12 #include "vm/os_thread.h" | 13 #include "vm/os_thread.h" |
13 #include "vm/profiler.h" | 14 #include "vm/profiler.h" |
14 #include "vm/runtime_entry.h" | 15 #include "vm/runtime_entry.h" |
15 #include "vm/stub_code.h" | 16 #include "vm/stub_code.h" |
16 #include "vm/symbols.h" | 17 #include "vm/symbols.h" |
17 #include "vm/thread_interrupter.h" | 18 #include "vm/thread_interrupter.h" |
18 #include "vm/thread_registry.h" | 19 #include "vm/thread_registry.h" |
19 | 20 |
20 namespace dart { | 21 namespace dart { |
(...skipping 362 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
383 return Thread::name##_entry_point_offset(); \ | 384 return Thread::name##_entry_point_offset(); \ |
384 } | 385 } |
385 LEAF_RUNTIME_ENTRY_LIST(COMPUTE_OFFSET) | 386 LEAF_RUNTIME_ENTRY_LIST(COMPUTE_OFFSET) |
386 #undef COMPUTE_OFFSET | 387 #undef COMPUTE_OFFSET |
387 | 388 |
388 UNREACHABLE(); | 389 UNREACHABLE(); |
389 return -1; | 390 return -1; |
390 } | 391 } |
391 | 392 |
392 } // namespace dart | 393 } // namespace dart |
OLD | NEW |