author | kbarrett |
Tue, 30 Aug 2016 23:48:16 -0400 | |
changeset 40892 | 330a02d935ad |
parent 37197 | 282fa21230c3 |
child 46305 | bff6d23aa1e3 |
permissions | -rw-r--r-- |
1374 | 1 |
/* |
36179
03a0d7b8450f
8149793: DirtyCardQueueSet::apply_closure_to_completed_buffer_helper isn't helpful
kbarrett
parents:
35465
diff
changeset
|
2 |
* Copyright (c) 2001, 2016, Oracle and/or its affiliates. All rights reserved. |
1374 | 3 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
4 |
* |
|
5 |
* This code is free software; you can redistribute it and/or modify it |
|
6 |
* under the terms of the GNU General Public License version 2 only, as |
|
7 |
* published by the Free Software Foundation. |
|
8 |
* |
|
9 |
* This code is distributed in the hope that it will be useful, but WITHOUT |
|
10 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
11 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
12 |
* version 2 for more details (a copy is included in the LICENSE file that |
|
13 |
* accompanied this code). |
|
14 |
* |
|
15 |
* You should have received a copy of the GNU General Public License version |
|
16 |
* 2 along with this work; if not, write to the Free Software Foundation, |
|
17 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
|
18 |
* |
|
5547
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
4481
diff
changeset
|
19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
4481
diff
changeset
|
20 |
* or visit www.oracle.com if you need additional information or have any |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
4481
diff
changeset
|
21 |
* questions. |
1374 | 22 |
* |
23 |
*/ |
|
24 |
||
30764 | 25 |
#ifndef SHARE_VM_GC_G1_DIRTYCARDQUEUE_HPP |
26 |
#define SHARE_VM_GC_G1_DIRTYCARDQUEUE_HPP |
|
7397 | 27 |
|
30764 | 28 |
#include "gc/g1/ptrQueue.hpp" |
7397 | 29 |
#include "memory/allocation.hpp" |
30 |
||
1374 | 31 |
class FreeIdSet; |
33761
329db4b51480
6899049: G1: Clean up code in ptrQueue.[ch]pp and ptrQueue.inline.hpp
kbarrett
parents:
30764
diff
changeset
|
32 |
class DirtyCardQueueSet; |
1374 | 33 |
|
34 |
// A closure class for processing card table entries. Note that we don't |
|
35 |
// require these closure objects to be stack-allocated. |
|
13195 | 36 |
class CardTableEntryClosure: public CHeapObj<mtGC> { |
1374 | 37 |
public: |
38 |
// Process the card whose card table entry is "card_ptr". If returns |
|
39 |
// "false", terminate the iteration early. |
|
37112
fe72d1d082ff
8151781: DirtyCardQueue::apply_closure is unused
kbarrett
parents:
37065
diff
changeset
|
40 |
virtual bool do_card_ptr(jbyte* card_ptr, uint worker_i) = 0; |
1374 | 41 |
}; |
42 |
||
43 |
// A ptrQueue whose elements are "oops", pointers to object heads. |
|
44 |
class DirtyCardQueue: public PtrQueue { |
|
45 |
public: |
|
33761
329db4b51480
6899049: G1: Clean up code in ptrQueue.[ch]pp and ptrQueue.inline.hpp
kbarrett
parents:
30764
diff
changeset
|
46 |
DirtyCardQueue(DirtyCardQueueSet* qset, bool permanent = false); |
6768
71338ecb7813
6980838: G1: guarantee(false) failed: thread has an unexpected active value in its SATB queue
tonyp
parents:
6247
diff
changeset
|
47 |
|
28507 | 48 |
// Flush before destroying; queue may be used to capture pending work while |
49 |
// doing something else, with auto-flush on completion. |
|
33761
329db4b51480
6899049: G1: Clean up code in ptrQueue.[ch]pp and ptrQueue.inline.hpp
kbarrett
parents:
30764
diff
changeset
|
50 |
~DirtyCardQueue(); |
28507 | 51 |
|
52 |
// Process queue entries and release resources. |
|
53 |
void flush() { flush_impl(); } |
|
54 |
||
1374 | 55 |
void **get_buf() { return _buf;} |
56 |
size_t get_index() { return _index;} |
|
57 |
void reinitialize() { _buf = 0; _sz = 0; _index = 0;} |
|
34148
6efbc7ffd767
8143014: Access PtrQueue member offsets through derived classes
kbarrett
parents:
34141
diff
changeset
|
58 |
|
6efbc7ffd767
8143014: Access PtrQueue member offsets through derived classes
kbarrett
parents:
34141
diff
changeset
|
59 |
// Compiler support. |
6efbc7ffd767
8143014: Access PtrQueue member offsets through derived classes
kbarrett
parents:
34141
diff
changeset
|
60 |
static ByteSize byte_offset_of_index() { |
6efbc7ffd767
8143014: Access PtrQueue member offsets through derived classes
kbarrett
parents:
34141
diff
changeset
|
61 |
return PtrQueue::byte_offset_of_index<DirtyCardQueue>(); |
6efbc7ffd767
8143014: Access PtrQueue member offsets through derived classes
kbarrett
parents:
34141
diff
changeset
|
62 |
} |
6efbc7ffd767
8143014: Access PtrQueue member offsets through derived classes
kbarrett
parents:
34141
diff
changeset
|
63 |
using PtrQueue::byte_width_of_index; |
6efbc7ffd767
8143014: Access PtrQueue member offsets through derived classes
kbarrett
parents:
34141
diff
changeset
|
64 |
|
6efbc7ffd767
8143014: Access PtrQueue member offsets through derived classes
kbarrett
parents:
34141
diff
changeset
|
65 |
static ByteSize byte_offset_of_buf() { |
6efbc7ffd767
8143014: Access PtrQueue member offsets through derived classes
kbarrett
parents:
34141
diff
changeset
|
66 |
return PtrQueue::byte_offset_of_buf<DirtyCardQueue>(); |
6efbc7ffd767
8143014: Access PtrQueue member offsets through derived classes
kbarrett
parents:
34141
diff
changeset
|
67 |
} |
6efbc7ffd767
8143014: Access PtrQueue member offsets through derived classes
kbarrett
parents:
34141
diff
changeset
|
68 |
using PtrQueue::byte_width_of_buf; |
6efbc7ffd767
8143014: Access PtrQueue member offsets through derived classes
kbarrett
parents:
34141
diff
changeset
|
69 |
|
1374 | 70 |
}; |
71 |
||
72 |
||
73 |
||
74 |
class DirtyCardQueueSet: public PtrQueueSet { |
|
24104
febf9363fb68
8019342: G1: High "Other" time most likely due to card redirtying
tschatzl
parents:
23855
diff
changeset
|
75 |
// The closure used in mut_process_buffer(). |
febf9363fb68
8019342: G1: High "Other" time most likely due to card redirtying
tschatzl
parents:
23855
diff
changeset
|
76 |
CardTableEntryClosure* _mut_process_closure; |
1374 | 77 |
|
78 |
DirtyCardQueue _shared_dirty_card_queue; |
|
79 |
||
37112
fe72d1d082ff
8151781: DirtyCardQueue::apply_closure is unused
kbarrett
parents:
37065
diff
changeset
|
80 |
// Apply the closure to the elements of "node" from it's index to |
fe72d1d082ff
8151781: DirtyCardQueue::apply_closure is unused
kbarrett
parents:
37065
diff
changeset
|
81 |
// buffer_size. If all closure applications return true, then |
fe72d1d082ff
8151781: DirtyCardQueue::apply_closure is unused
kbarrett
parents:
37065
diff
changeset
|
82 |
// returns true. Stops processing after the first closure |
fe72d1d082ff
8151781: DirtyCardQueue::apply_closure is unused
kbarrett
parents:
37065
diff
changeset
|
83 |
// application that returns false, and returns false from this |
fe72d1d082ff
8151781: DirtyCardQueue::apply_closure is unused
kbarrett
parents:
37065
diff
changeset
|
84 |
// function. If "consume" is true, the node's index is updated to |
37197
282fa21230c3
8151670: Unexpected concurrent refinement deactivation and reactivation
kbarrett
parents:
37112
diff
changeset
|
85 |
// exclude the processed elements, e.g. up to the element for which |
282fa21230c3
8151670: Unexpected concurrent refinement deactivation and reactivation
kbarrett
parents:
37112
diff
changeset
|
86 |
// the closure returned false. |
37112
fe72d1d082ff
8151781: DirtyCardQueue::apply_closure is unused
kbarrett
parents:
37065
diff
changeset
|
87 |
bool apply_closure_to_buffer(CardTableEntryClosure* cl, |
fe72d1d082ff
8151781: DirtyCardQueue::apply_closure is unused
kbarrett
parents:
37065
diff
changeset
|
88 |
BufferNode* node, |
fe72d1d082ff
8151781: DirtyCardQueue::apply_closure is unused
kbarrett
parents:
37065
diff
changeset
|
89 |
bool consume, |
fe72d1d082ff
8151781: DirtyCardQueue::apply_closure is unused
kbarrett
parents:
37065
diff
changeset
|
90 |
uint worker_i = 0); |
fe72d1d082ff
8151781: DirtyCardQueue::apply_closure is unused
kbarrett
parents:
37065
diff
changeset
|
91 |
|
37065 | 92 |
bool mut_process_buffer(BufferNode* node); |
1374 | 93 |
|
94 |
// Protected by the _cbl_mon. |
|
95 |
FreeIdSet* _free_ids; |
|
96 |
||
97 |
// The number of completed buffers processed by mutator and rs thread, |
|
98 |
// respectively. |
|
99 |
jint _processed_buffers_mut; |
|
100 |
jint _processed_buffers_rs_thread; |
|
101 |
||
24104
febf9363fb68
8019342: G1: High "Other" time most likely due to card redirtying
tschatzl
parents:
23855
diff
changeset
|
102 |
// Current buffer node used for parallel iteration. |
febf9363fb68
8019342: G1: High "Other" time most likely due to card redirtying
tschatzl
parents:
23855
diff
changeset
|
103 |
BufferNode* volatile _cur_par_buffer_node; |
37065 | 104 |
|
105 |
void concatenate_log(DirtyCardQueue& dcq); |
|
106 |
||
1374 | 107 |
public: |
4481 | 108 |
DirtyCardQueueSet(bool notify_when_complete = true); |
1374 | 109 |
|
33761
329db4b51480
6899049: G1: Clean up code in ptrQueue.[ch]pp and ptrQueue.inline.hpp
kbarrett
parents:
30764
diff
changeset
|
110 |
void initialize(CardTableEntryClosure* cl, |
329db4b51480
6899049: G1: Clean up code in ptrQueue.[ch]pp and ptrQueue.inline.hpp
kbarrett
parents:
30764
diff
changeset
|
111 |
Monitor* cbl_mon, |
329db4b51480
6899049: G1: Clean up code in ptrQueue.[ch]pp and ptrQueue.inline.hpp
kbarrett
parents:
30764
diff
changeset
|
112 |
Mutex* fl_lock, |
4481 | 113 |
int process_completed_threshold, |
114 |
int max_completed_queue, |
|
33761
329db4b51480
6899049: G1: Clean up code in ptrQueue.[ch]pp and ptrQueue.inline.hpp
kbarrett
parents:
30764
diff
changeset
|
115 |
Mutex* lock, |
35465 | 116 |
DirtyCardQueueSet* fl_owner, |
117 |
bool init_free_ids = false); |
|
1374 | 118 |
|
119 |
// The number of parallel ids that can be claimed to allow collector or |
|
120 |
// mutator threads to do card-processing work. |
|
23855
c4574075402c
8016302: Change type of the number of GC workers to unsigned int (2)
vkempik
parents:
13963
diff
changeset
|
121 |
static uint num_par_ids(); |
1374 | 122 |
|
123 |
static void handle_zero_index_for_thread(JavaThread* t); |
|
124 |
||
37197
282fa21230c3
8151670: Unexpected concurrent refinement deactivation and reactivation
kbarrett
parents:
37112
diff
changeset
|
125 |
// If there are more than stop_at completed buffers, pop one, apply |
282fa21230c3
8151670: Unexpected concurrent refinement deactivation and reactivation
kbarrett
parents:
37112
diff
changeset
|
126 |
// the specified closure to its active elements, and return true. |
282fa21230c3
8151670: Unexpected concurrent refinement deactivation and reactivation
kbarrett
parents:
37112
diff
changeset
|
127 |
// Otherwise return false. |
282fa21230c3
8151670: Unexpected concurrent refinement deactivation and reactivation
kbarrett
parents:
37112
diff
changeset
|
128 |
// |
282fa21230c3
8151670: Unexpected concurrent refinement deactivation and reactivation
kbarrett
parents:
37112
diff
changeset
|
129 |
// A completely processed buffer is freed. However, if a closure |
282fa21230c3
8151670: Unexpected concurrent refinement deactivation and reactivation
kbarrett
parents:
37112
diff
changeset
|
130 |
// invocation returns false, processing is stopped and the partially |
282fa21230c3
8151670: Unexpected concurrent refinement deactivation and reactivation
kbarrett
parents:
37112
diff
changeset
|
131 |
// processed buffer (with its index updated to exclude the processed |
282fa21230c3
8151670: Unexpected concurrent refinement deactivation and reactivation
kbarrett
parents:
37112
diff
changeset
|
132 |
// elements, e.g. up to the element for which the closure returned |
282fa21230c3
8151670: Unexpected concurrent refinement deactivation and reactivation
kbarrett
parents:
37112
diff
changeset
|
133 |
// false) is returned to the completed buffer set. |
282fa21230c3
8151670: Unexpected concurrent refinement deactivation and reactivation
kbarrett
parents:
37112
diff
changeset
|
134 |
// |
282fa21230c3
8151670: Unexpected concurrent refinement deactivation and reactivation
kbarrett
parents:
37112
diff
changeset
|
135 |
// If during_pause is true, stop_at must be zero, and the closure |
282fa21230c3
8151670: Unexpected concurrent refinement deactivation and reactivation
kbarrett
parents:
37112
diff
changeset
|
136 |
// must never return false. |
6247 | 137 |
bool apply_closure_to_completed_buffer(CardTableEntryClosure* cl, |
36179
03a0d7b8450f
8149793: DirtyCardQueueSet::apply_closure_to_completed_buffer_helper isn't helpful
kbarrett
parents:
35465
diff
changeset
|
138 |
uint worker_i, |
36371
fd81a4f0ea00
8139651: ConcurrentG1Refine uses ints for many of its members that should be unsigned types
jprovino
parents:
36179
diff
changeset
|
139 |
size_t stop_at, |
36179
03a0d7b8450f
8149793: DirtyCardQueueSet::apply_closure_to_completed_buffer_helper isn't helpful
kbarrett
parents:
35465
diff
changeset
|
140 |
bool during_pause); |
1374 | 141 |
|
36371
fd81a4f0ea00
8139651: ConcurrentG1Refine uses ints for many of its members that should be unsigned types
jprovino
parents:
36179
diff
changeset
|
142 |
BufferNode* get_completed_buffer(size_t stop_at); |
4460
8ffd47b73f43
6899058: G1: Internal error in ptrQueue.cpp:201 in nightly tests
johnc
parents:
2142
diff
changeset
|
143 |
|
24104
febf9363fb68
8019342: G1: High "Other" time most likely due to card redirtying
tschatzl
parents:
23855
diff
changeset
|
144 |
void reset_for_par_iteration() { _cur_par_buffer_node = _completed_buffers_head; } |
febf9363fb68
8019342: G1: High "Other" time most likely due to card redirtying
tschatzl
parents:
23855
diff
changeset
|
145 |
// Applies the current closure to all completed buffers, non-consumptively. |
37065 | 146 |
// Can be used in parallel, all callers using the iteration state initialized |
147 |
// by reset_for_par_iteration. |
|
24104
febf9363fb68
8019342: G1: High "Other" time most likely due to card redirtying
tschatzl
parents:
23855
diff
changeset
|
148 |
void par_apply_closure_to_all_completed_buffers(CardTableEntryClosure* cl); |
1374 | 149 |
|
150 |
DirtyCardQueue* shared_dirty_card_queue() { |
|
151 |
return &_shared_dirty_card_queue; |
|
152 |
} |
|
153 |
||
6247 | 154 |
// Deallocate any completed log buffers |
155 |
void clear(); |
|
156 |
||
1374 | 157 |
// If a full collection is happening, reset partial logs, and ignore |
158 |
// completed ones: the full collection will make them all irrelevant. |
|
159 |
void abandon_logs(); |
|
160 |
||
161 |
// If any threads have partial logs, add them to the global list of logs. |
|
162 |
void concatenate_logs(); |
|
163 |
void clear_n_completed_buffers() { _n_completed_buffers = 0;} |
|
164 |
||
165 |
jint processed_buffers_mut() { |
|
166 |
return _processed_buffers_mut; |
|
167 |
} |
|
168 |
jint processed_buffers_rs_thread() { |
|
169 |
return _processed_buffers_rs_thread; |
|
170 |
} |
|
171 |
||
172 |
}; |
|
7397 | 173 |
|
30764 | 174 |
#endif // SHARE_VM_GC_G1_DIRTYCARDQUEUE_HPP |