| OLD | NEW |
| 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2013, 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 RUNTIME_VM_ISOLATE_H_ | 5 #ifndef RUNTIME_VM_ISOLATE_H_ |
| 6 #define RUNTIME_VM_ISOLATE_H_ | 6 #define RUNTIME_VM_ISOLATE_H_ |
| 7 | 7 |
| 8 #include "include/dart_api.h" | 8 #include "include/dart_api.h" |
| 9 #include "platform/assert.h" | 9 #include "platform/assert.h" |
| 10 #include "vm/atomic.h" | 10 #include "vm/atomic.h" |
| (...skipping 160 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 171 // Visits weak object pointers. | 171 // Visits weak object pointers. |
| 172 void VisitWeakPersistentHandles(HandleVisitor* visitor); | 172 void VisitWeakPersistentHandles(HandleVisitor* visitor); |
| 173 | 173 |
| 174 // Prepares all threads in an isolate for Garbage Collection. | 174 // Prepares all threads in an isolate for Garbage Collection. |
| 175 void PrepareForGC(); | 175 void PrepareForGC(); |
| 176 | 176 |
| 177 StoreBuffer* store_buffer() { return store_buffer_; } | 177 StoreBuffer* store_buffer() { return store_buffer_; } |
| 178 | 178 |
| 179 ThreadRegistry* thread_registry() const { return thread_registry_; } | 179 ThreadRegistry* thread_registry() const { return thread_registry_; } |
| 180 SafepointHandler* safepoint_handler() const { return safepoint_handler_; } | 180 SafepointHandler* safepoint_handler() const { return safepoint_handler_; } |
| 181 | 181 uintptr_t memory_high_watermark() const { return memory_high_watermark_; } |
| 182 ClassTable* class_table() { return &class_table_; } | 182 ClassTable* class_table() { return &class_table_; } |
| 183 static intptr_t class_table_offset() { | 183 static intptr_t class_table_offset() { |
| 184 return OFFSET_OF(Isolate, class_table_); | 184 return OFFSET_OF(Isolate, class_table_); |
| 185 } | 185 } |
| 186 | 186 |
| 187 // Prefers old classes when we are in the middle of a reload. | 187 // Prefers old classes when we are in the middle of a reload. |
| 188 RawClass* GetClassForHeapWalkAt(intptr_t cid); | 188 RawClass* GetClassForHeapWalkAt(intptr_t cid); |
| 189 | 189 |
| 190 static intptr_t ic_miss_code_offset() { | 190 static intptr_t ic_miss_code_offset() { |
| 191 return OFFSET_OF(Isolate, ic_miss_code_); | 191 return OFFSET_OF(Isolate, ic_miss_code_); |
| (...skipping 495 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 687 } | 687 } |
| 688 void set_registered_service_extension_handlers( | 688 void set_registered_service_extension_handlers( |
| 689 const GrowableObjectArray& value); | 689 const GrowableObjectArray& value); |
| 690 | 690 |
| 691 Monitor* threads_lock() const; | 691 Monitor* threads_lock() const; |
| 692 Thread* ScheduleThread(bool is_mutator, bool bypass_safepoint = false); | 692 Thread* ScheduleThread(bool is_mutator, bool bypass_safepoint = false); |
| 693 void UnscheduleThread(Thread* thread, | 693 void UnscheduleThread(Thread* thread, |
| 694 bool is_mutator, | 694 bool is_mutator, |
| 695 bool bypass_safepoint = false); | 695 bool bypass_safepoint = false); |
| 696 | 696 |
| 697 // Updates the maximum memory usage in bytes of all zones in all threads of |
| 698 // the current isolate. |
| 699 void UpdateMemoryHighWatermark(); |
| 700 |
| 697 // DEPRECATED: Use Thread's methods instead. During migration, these default | 701 // DEPRECATED: Use Thread's methods instead. During migration, these default |
| 698 // to using the mutator thread (which must also be the current thread). | 702 // to using the mutator thread (which must also be the current thread). |
| 699 Zone* current_zone() const { | 703 Zone* current_zone() const { |
| 700 ASSERT(Thread::Current() == mutator_thread()); | 704 ASSERT(Thread::Current() == mutator_thread()); |
| 701 return mutator_thread()->zone(); | 705 return mutator_thread()->zone(); |
| 702 } | 706 } |
| 703 | 707 |
| 704 // Accessed from generated code: | 708 // Accessed from generated code: |
| 705 StoreBuffer* store_buffer_; | 709 StoreBuffer* store_buffer_; |
| 706 Heap* heap_; | 710 Heap* heap_; |
| 707 uword user_tag_; | 711 uword user_tag_; |
| 708 RawUserTag* current_tag_; | 712 RawUserTag* current_tag_; |
| 709 RawUserTag* default_tag_; | 713 RawUserTag* default_tag_; |
| 710 RawCode* ic_miss_code_; | 714 RawCode* ic_miss_code_; |
| 711 ObjectStore* object_store_; | 715 ObjectStore* object_store_; |
| 712 ClassTable class_table_; | 716 ClassTable class_table_; |
| 713 bool single_step_; | 717 bool single_step_; |
| 714 | 718 |
| 715 ThreadRegistry* thread_registry_; | 719 ThreadRegistry* thread_registry_; |
| 716 SafepointHandler* safepoint_handler_; | 720 SafepointHandler* safepoint_handler_; |
| 721 uintptr_t memory_high_watermark_; |
| 717 Dart_MessageNotifyCallback message_notify_callback_; | 722 Dart_MessageNotifyCallback message_notify_callback_; |
| 718 char* name_; | 723 char* name_; |
| 719 char* debugger_name_; | 724 char* debugger_name_; |
| 720 int64_t start_time_micros_; | 725 int64_t start_time_micros_; |
| 721 Dart_Port main_port_; | 726 Dart_Port main_port_; |
| 722 Dart_Port origin_id_; // Isolates created by spawnFunc have some origin id. | 727 Dart_Port origin_id_; // Isolates created by spawnFunc have some origin id. |
| 723 uint64_t pause_capability_; | 728 uint64_t pause_capability_; |
| 724 uint64_t terminate_capability_; | 729 uint64_t terminate_capability_; |
| 725 bool errors_fatal_; | 730 bool errors_fatal_; |
| 726 void* init_callback_data_; | 731 void* init_callback_data_; |
| (...skipping 266 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 993 intptr_t* spawn_count_; | 998 intptr_t* spawn_count_; |
| 994 | 999 |
| 995 Dart_IsolateFlags isolate_flags_; | 1000 Dart_IsolateFlags isolate_flags_; |
| 996 bool paused_; | 1001 bool paused_; |
| 997 bool errors_are_fatal_; | 1002 bool errors_are_fatal_; |
| 998 }; | 1003 }; |
| 999 | 1004 |
| 1000 } // namespace dart | 1005 } // namespace dart |
| 1001 | 1006 |
| 1002 #endif // RUNTIME_VM_ISOLATE_H_ | 1007 #endif // RUNTIME_VM_ISOLATE_H_ |
| OLD | NEW |