| OLD | NEW |
| 1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2011, 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 #ifndef VM_DART_H_ | 5 #ifndef VM_DART_H_ |
| 6 #define VM_DART_H_ | 6 #define VM_DART_H_ |
| 7 | 7 |
| 8 #include "include/dart_api.h" | 8 #include "include/dart_api.h" |
| 9 #include "vm/allocation.h" | 9 #include "vm/allocation.h" |
| 10 | 10 |
| 11 namespace dart { | 11 namespace dart { |
| 12 | 12 |
| 13 // Forward declarations. | 13 // Forward declarations. |
| 14 class DebugInfo; | 14 class DebugInfo; |
| 15 class Isolate; | 15 class Isolate; |
| 16 class RawError; | 16 class RawError; |
| 17 class ThreadPool; | 17 class ThreadPool; |
| 18 | 18 |
| 19 class Dart : public AllStatic { | 19 class Dart : public AllStatic { |
| 20 public: | 20 public: |
| 21 static bool InitOnce(Dart_IsolateCreateCallback create, | 21 static bool InitOnce(Dart_IsolateCreateCallback create, |
| 22 Dart_IsolateInterruptCallback interrupt, | 22 Dart_IsolateInterruptCallback interrupt, |
| 23 Dart_IsolateUnhandledExceptionCallback unhandled, |
| 23 Dart_IsolateShutdownCallback shutdown); | 24 Dart_IsolateShutdownCallback shutdown); |
| 24 | 25 |
| 25 static Isolate* CreateIsolate(const char* name_prefix); | 26 static Isolate* CreateIsolate(const char* name_prefix); |
| 26 static RawError* InitializeIsolate(const uint8_t* snapshot, void* data); | 27 static RawError* InitializeIsolate(const uint8_t* snapshot, void* data); |
| 27 static void ShutdownIsolate(); | 28 static void ShutdownIsolate(); |
| 28 | 29 |
| 29 static Isolate* vm_isolate() { return vm_isolate_; } | 30 static Isolate* vm_isolate() { return vm_isolate_; } |
| 30 static ThreadPool* thread_pool() { return thread_pool_; } | 31 static ThreadPool* thread_pool() { return thread_pool_; } |
| 31 | 32 |
| 32 static void set_perf_events_writer(Dart_FileWriterFunction writer_function) { | 33 static void set_perf_events_writer(Dart_FileWriterFunction writer_function) { |
| (...skipping 19 matching lines...) Expand all Loading... |
| 52 static Isolate* vm_isolate_; | 53 static Isolate* vm_isolate_; |
| 53 static ThreadPool* thread_pool_; | 54 static ThreadPool* thread_pool_; |
| 54 static Dart_FileWriterFunction perf_events_writer_; | 55 static Dart_FileWriterFunction perf_events_writer_; |
| 55 static DebugInfo* pprof_symbol_generator_; | 56 static DebugInfo* pprof_symbol_generator_; |
| 56 static Dart_FileWriterFunction flow_graph_writer_; | 57 static Dart_FileWriterFunction flow_graph_writer_; |
| 57 }; | 58 }; |
| 58 | 59 |
| 59 } // namespace dart | 60 } // namespace dart |
| 60 | 61 |
| 61 #endif // VM_DART_H_ | 62 #endif // VM_DART_H_ |
| OLD | NEW |