OLD | NEW |
1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 the V8 project authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef V8_HEAP_INCREMENTAL_MARKING_H_ | 5 #ifndef V8_HEAP_INCREMENTAL_MARKING_H_ |
6 #define V8_HEAP_INCREMENTAL_MARKING_H_ | 6 #define V8_HEAP_INCREMENTAL_MARKING_H_ |
7 | 7 |
8 | 8 |
9 #include "src/execution.h" | 9 #include "src/execution.h" |
10 #include "src/heap/mark-compact.h" | 10 #include "src/heap/mark-compact.h" |
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
43 } | 43 } |
44 | 44 |
45 void SetWeakClosureWasOverApproximatedForTesting(bool val) { | 45 void SetWeakClosureWasOverApproximatedForTesting(bool val) { |
46 weak_closure_was_overapproximated_ = val; | 46 weak_closure_was_overapproximated_ = val; |
47 } | 47 } |
48 | 48 |
49 inline bool IsStopped() { return state() == STOPPED; } | 49 inline bool IsStopped() { return state() == STOPPED; } |
50 | 50 |
51 INLINE(bool IsMarking()) { return state() >= MARKING; } | 51 INLINE(bool IsMarking()) { return state() >= MARKING; } |
52 | 52 |
53 inline bool CanDoSteps() { | 53 inline bool IsMarkingIncomplete() { return state() == MARKING; } |
54 return FLAG_incremental_marking_steps && | |
55 (state() == MARKING || state() == SWEEPING); | |
56 } | |
57 | 54 |
58 inline bool IsComplete() { return state() == COMPLETE; } | 55 inline bool IsComplete() { return state() == COMPLETE; } |
59 | 56 |
60 inline bool IsReadyToOverApproximateWeakClosure() const { | 57 inline bool IsReadyToOverApproximateWeakClosure() const { |
61 return request_type_ == OVERAPPROXIMATION && | 58 return request_type_ == OVERAPPROXIMATION && |
62 !weak_closure_was_overapproximated_; | 59 !weak_closure_was_overapproximated_; |
63 } | 60 } |
64 | 61 |
65 GCRequestType request_type() const { return request_type_; } | 62 GCRequestType request_type() const { return request_type_; } |
66 | 63 |
(...skipping 29 matching lines...) Expand all Loading... |
96 // incremental marker until it completes. | 93 // incremental marker until it completes. |
97 // Do some marking every time this much memory has been allocated or that many | 94 // Do some marking every time this much memory has been allocated or that many |
98 // heavy (color-checking) write barriers have been invoked. | 95 // heavy (color-checking) write barriers have been invoked. |
99 static const intptr_t kAllocatedThreshold = 65536; | 96 static const intptr_t kAllocatedThreshold = 65536; |
100 static const intptr_t kWriteBarriersInvokedThreshold = 32768; | 97 static const intptr_t kWriteBarriersInvokedThreshold = 32768; |
101 // Start off by marking this many times more memory than has been allocated. | 98 // Start off by marking this many times more memory than has been allocated. |
102 static const intptr_t kInitialMarkingSpeed = 1; | 99 static const intptr_t kInitialMarkingSpeed = 1; |
103 // But if we are promoting a lot of data we need to mark faster to keep up | 100 // But if we are promoting a lot of data we need to mark faster to keep up |
104 // with the data that is entering the old space through promotion. | 101 // with the data that is entering the old space through promotion. |
105 static const intptr_t kFastMarking = 3; | 102 static const intptr_t kFastMarking = 3; |
106 static const intptr_t kOldSpaceAllocationMarkingFactor = | |
107 kFastMarking / kInitialMarkingSpeed; | |
108 // After this many steps we increase the marking/allocating factor. | 103 // After this many steps we increase the marking/allocating factor. |
109 static const intptr_t kMarkingSpeedAccellerationInterval = 1024; | 104 static const intptr_t kMarkingSpeedAccellerationInterval = 1024; |
110 // This is how much we increase the marking/allocating factor by. | 105 // This is how much we increase the marking/allocating factor by. |
111 static const intptr_t kMarkingSpeedAccelleration = 2; | 106 static const intptr_t kMarkingSpeedAccelleration = 2; |
112 static const intptr_t kMaxMarkingSpeed = 1000; | 107 static const intptr_t kMaxMarkingSpeed = 1000; |
113 | 108 |
114 // This is the upper bound for how many times we allow finalization of | 109 // This is the upper bound for how many times we allow finalization of |
115 // incremental marking to be postponed. | 110 // incremental marking to be postponed. |
116 static const size_t kMaxIdleMarkingDelayCounter = 3; | 111 static const size_t kMaxIdleMarkingDelayCounter = 3; |
117 | 112 |
(...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
247 int weak_closure_approximation_rounds_; | 242 int weak_closure_approximation_rounds_; |
248 | 243 |
249 GCRequestType request_type_; | 244 GCRequestType request_type_; |
250 | 245 |
251 DISALLOW_IMPLICIT_CONSTRUCTORS(IncrementalMarking); | 246 DISALLOW_IMPLICIT_CONSTRUCTORS(IncrementalMarking); |
252 }; | 247 }; |
253 } | 248 } |
254 } // namespace v8::internal | 249 } // namespace v8::internal |
255 | 250 |
256 #endif // V8_HEAP_INCREMENTAL_MARKING_H_ | 251 #endif // V8_HEAP_INCREMENTAL_MARKING_H_ |
OLD | NEW |