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 #ifndef RUNTIME_VM_THREAD_REGISTRY_H_ | 5 #ifndef RUNTIME_VM_THREAD_REGISTRY_H_ |
6 #define RUNTIME_VM_THREAD_REGISTRY_H_ | 6 #define RUNTIME_VM_THREAD_REGISTRY_H_ |
7 | 7 |
8 #include "vm/globals.h" | 8 #include "vm/globals.h" |
9 #include "vm/growable_array.h" | 9 #include "vm/growable_array.h" |
10 #include "vm/isolate.h" | 10 #include "vm/isolate.h" |
(...skipping 19 matching lines...) Expand all Loading... |
30 ~ThreadRegistry(); | 30 ~ThreadRegistry(); |
31 | 31 |
32 void VisitObjectPointers(ObjectPointerVisitor* visitor, bool validate_frames); | 32 void VisitObjectPointers(ObjectPointerVisitor* visitor, bool validate_frames); |
33 void PrepareForGC(); | 33 void PrepareForGC(); |
34 Thread* mutator_thread() const { return mutator_thread_; } | 34 Thread* mutator_thread() const { return mutator_thread_; } |
35 | 35 |
36 #ifndef PRODUCT | 36 #ifndef PRODUCT |
37 void PrintJSON(JSONStream* stream) const; | 37 void PrintJSON(JSONStream* stream) const; |
38 #endif | 38 #endif |
39 | 39 |
40 // Calculates the sum of the max memory usage in bytes of each thread. | |
41 uint ThreadHighWatermarksTotalLocked() const; | |
42 intptr_t CountZoneHandles() const; | 40 intptr_t CountZoneHandles() const; |
43 intptr_t CountScopedHandles() const; | 41 intptr_t CountScopedHandles() const; |
44 | 42 |
45 private: | 43 private: |
46 Thread* active_list() const { return active_list_; } | 44 Thread* active_list() const { return active_list_; } |
47 Monitor* threads_lock() const { return threads_lock_; } | 45 Monitor* threads_lock() const { return threads_lock_; } |
48 | 46 |
49 Thread* GetFreeThreadLocked(Isolate* isolate, bool is_mutator); | 47 Thread* GetFreeThreadLocked(Isolate* isolate, bool is_mutator); |
50 void ReturnThreadLocked(bool is_mutator, Thread* thread); | 48 void ReturnThreadLocked(bool is_mutator, Thread* thread); |
51 void AddToActiveListLocked(Thread* thread); | 49 void AddToActiveListLocked(Thread* thread); |
(...skipping 23 matching lines...) Expand all Loading... |
75 Thread* mutator_thread_; | 73 Thread* mutator_thread_; |
76 | 74 |
77 friend class Isolate; | 75 friend class Isolate; |
78 friend class SafepointHandler; | 76 friend class SafepointHandler; |
79 DISALLOW_COPY_AND_ASSIGN(ThreadRegistry); | 77 DISALLOW_COPY_AND_ASSIGN(ThreadRegistry); |
80 }; | 78 }; |
81 | 79 |
82 } // namespace dart | 80 } // namespace dart |
83 | 81 |
84 #endif // RUNTIME_VM_THREAD_REGISTRY_H_ | 82 #endif // RUNTIME_VM_THREAD_REGISTRY_H_ |
OLD | NEW |