| 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 |
| (...skipping 16 matching lines...) Expand all Loading... |
| 27 Dart_FileWriteCallback file_write, | 27 Dart_FileWriteCallback file_write, |
| 28 Dart_FileCloseCallback file_close); | 28 Dart_FileCloseCallback file_close); |
| 29 | 29 |
| 30 static Isolate* CreateIsolate(const char* name_prefix); | 30 static Isolate* CreateIsolate(const char* name_prefix); |
| 31 static RawError* InitializeIsolate(const uint8_t* snapshot, void* data); | 31 static RawError* InitializeIsolate(const uint8_t* snapshot, void* data); |
| 32 static void ShutdownIsolate(); | 32 static void ShutdownIsolate(); |
| 33 | 33 |
| 34 static Isolate* vm_isolate() { return vm_isolate_; } | 34 static Isolate* vm_isolate() { return vm_isolate_; } |
| 35 static ThreadPool* thread_pool() { return thread_pool_; } | 35 static ThreadPool* thread_pool() { return thread_pool_; } |
| 36 | 36 |
| 37 static void set_perf_events_file(void* file) { | |
| 38 perf_events_file_ = file; | |
| 39 } | |
| 40 static void* perf_events_file() { | |
| 41 return perf_events_file_; | |
| 42 } | |
| 43 | |
| 44 static void set_pprof_symbol_generator(DebugInfo* value) { | 37 static void set_pprof_symbol_generator(DebugInfo* value) { |
| 45 pprof_symbol_generator_ = value; | 38 pprof_symbol_generator_ = value; |
| 46 } | 39 } |
| 47 static DebugInfo* pprof_symbol_generator() { return pprof_symbol_generator_; } | 40 static DebugInfo* pprof_symbol_generator() { return pprof_symbol_generator_; } |
| 48 | 41 |
| 49 private: | 42 private: |
| 50 static Isolate* vm_isolate_; | 43 static Isolate* vm_isolate_; |
| 51 static ThreadPool* thread_pool_; | 44 static ThreadPool* thread_pool_; |
| 52 static void* perf_events_file_; | |
| 53 static DebugInfo* pprof_symbol_generator_; | 45 static DebugInfo* pprof_symbol_generator_; |
| 54 }; | 46 }; |
| 55 | 47 |
| 56 } // namespace dart | 48 } // namespace dart |
| 57 | 49 |
| 58 #endif // VM_DART_H_ | 50 #endif // VM_DART_H_ |
| OLD | NEW |