author | kbarrett |
Mon, 16 Nov 2015 14:11:36 -0500 | |
changeset 34141 | 1030e4216817 |
parent 33761 | 329db4b51480 |
child 34148 | 6efbc7ffd767 |
permissions | -rw-r--r-- |
1374 | 1 |
/* |
30764 | 2 |
* Copyright (c) 2001, 2015, 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. |
|
23855
c4574075402c
8016302: Change type of the number of GC workers to unsigned int (2)
vkempik
parents:
13963
diff
changeset
|
40 |
virtual bool do_card_ptr(jbyte* card_ptr, uint worker_i = 0) = 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 |
// Apply the closure to all elements, and reset the index to make the |
56 |
// buffer empty. If a closure application returns "false", return |
|
57 |
// "false" immediately, halting the iteration. If "consume" is true, |
|
58 |
// deletes processed entries from logs. |
|
59 |
bool apply_closure(CardTableEntryClosure* cl, |
|
60 |
bool consume = true, |
|
23855
c4574075402c
8016302: Change type of the number of GC workers to unsigned int (2)
vkempik
parents:
13963
diff
changeset
|
61 |
uint worker_i = 0); |
1374 | 62 |
|
63 |
// Apply the closure to all elements of "buf", down to "index" |
|
64 |
// (inclusive.) If returns "false", then a closure application returned |
|
65 |
// "false", and we return immediately. If "consume" is true, entries are |
|
66 |
// set to NULL as they are processed, so they will not be processed again |
|
67 |
// later. |
|
68 |
static bool apply_closure_to_buffer(CardTableEntryClosure* cl, |
|
69 |
void** buf, size_t index, size_t sz, |
|
70 |
bool consume = true, |
|
23855
c4574075402c
8016302: Change type of the number of GC workers to unsigned int (2)
vkempik
parents:
13963
diff
changeset
|
71 |
uint worker_i = 0); |
1374 | 72 |
void **get_buf() { return _buf;} |
73 |
size_t get_index() { return _index;} |
|
74 |
void reinitialize() { _buf = 0; _sz = 0; _index = 0;} |
|
75 |
}; |
|
76 |
||
77 |
||
78 |
||
79 |
class DirtyCardQueueSet: public PtrQueueSet { |
|
24104
febf9363fb68
8019342: G1: High "Other" time most likely due to card redirtying
tschatzl
parents:
23855
diff
changeset
|
80 |
// The closure used in mut_process_buffer(). |
febf9363fb68
8019342: G1: High "Other" time most likely due to card redirtying
tschatzl
parents:
23855
diff
changeset
|
81 |
CardTableEntryClosure* _mut_process_closure; |
1374 | 82 |
|
83 |
DirtyCardQueue _shared_dirty_card_queue; |
|
84 |
||
85 |
// Override. |
|
86 |
bool mut_process_buffer(void** buf); |
|
87 |
||
88 |
// Protected by the _cbl_mon. |
|
89 |
FreeIdSet* _free_ids; |
|
90 |
||
91 |
// The number of completed buffers processed by mutator and rs thread, |
|
92 |
// respectively. |
|
93 |
jint _processed_buffers_mut; |
|
94 |
jint _processed_buffers_rs_thread; |
|
95 |
||
24104
febf9363fb68
8019342: G1: High "Other" time most likely due to card redirtying
tschatzl
parents:
23855
diff
changeset
|
96 |
// Current buffer node used for parallel iteration. |
febf9363fb68
8019342: G1: High "Other" time most likely due to card redirtying
tschatzl
parents:
23855
diff
changeset
|
97 |
BufferNode* volatile _cur_par_buffer_node; |
1374 | 98 |
public: |
4481 | 99 |
DirtyCardQueueSet(bool notify_when_complete = true); |
1374 | 100 |
|
33761
329db4b51480
6899049: G1: Clean up code in ptrQueue.[ch]pp and ptrQueue.inline.hpp
kbarrett
parents:
30764
diff
changeset
|
101 |
void initialize(CardTableEntryClosure* cl, |
329db4b51480
6899049: G1: Clean up code in ptrQueue.[ch]pp and ptrQueue.inline.hpp
kbarrett
parents:
30764
diff
changeset
|
102 |
Monitor* cbl_mon, |
329db4b51480
6899049: G1: Clean up code in ptrQueue.[ch]pp and ptrQueue.inline.hpp
kbarrett
parents:
30764
diff
changeset
|
103 |
Mutex* fl_lock, |
4481 | 104 |
int process_completed_threshold, |
105 |
int max_completed_queue, |
|
33761
329db4b51480
6899049: G1: Clean up code in ptrQueue.[ch]pp and ptrQueue.inline.hpp
kbarrett
parents:
30764
diff
changeset
|
106 |
Mutex* lock, |
329db4b51480
6899049: G1: Clean up code in ptrQueue.[ch]pp and ptrQueue.inline.hpp
kbarrett
parents:
30764
diff
changeset
|
107 |
DirtyCardQueueSet* fl_owner = NULL); |
1374 | 108 |
|
109 |
// The number of parallel ids that can be claimed to allow collector or |
|
110 |
// 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
|
111 |
static uint num_par_ids(); |
1374 | 112 |
|
113 |
static void handle_zero_index_for_thread(JavaThread* t); |
|
114 |
||
115 |
// If there exists some completed buffer, pop it, then apply the |
|
6247 | 116 |
// specified closure to all its elements, nulling out those elements |
117 |
// processed. If all elements are processed, returns "true". If no |
|
118 |
// completed buffers exist, returns false. If a completed buffer exists, |
|
119 |
// but is only partially completed before a "yield" happens, the |
|
120 |
// partially completed buffer (with its processed elements set to NULL) |
|
121 |
// is returned to the completed buffer set, and this call returns false. |
|
122 |
bool apply_closure_to_completed_buffer(CardTableEntryClosure* cl, |
|
23855
c4574075402c
8016302: Change type of the number of GC workers to unsigned int (2)
vkempik
parents:
13963
diff
changeset
|
123 |
uint worker_i = 0, |
6247 | 124 |
int stop_at = 0, |
125 |
bool during_pause = false); |
|
126 |
||
127 |
// Helper routine for the above. |
|
128 |
bool apply_closure_to_completed_buffer_helper(CardTableEntryClosure* cl, |
|
23855
c4574075402c
8016302: Change type of the number of GC workers to unsigned int (2)
vkempik
parents:
13963
diff
changeset
|
129 |
uint worker_i, |
4481 | 130 |
BufferNode* nd); |
1374 | 131 |
|
4481 | 132 |
BufferNode* get_completed_buffer(int stop_at); |
4460
8ffd47b73f43
6899058: G1: Internal error in ptrQueue.cpp:201 in nightly tests
johnc
parents:
2142
diff
changeset
|
133 |
|
1374 | 134 |
// Applies the current closure to all completed buffers, |
135 |
// non-consumptively. |
|
24104
febf9363fb68
8019342: G1: High "Other" time most likely due to card redirtying
tschatzl
parents:
23855
diff
changeset
|
136 |
void apply_closure_to_all_completed_buffers(CardTableEntryClosure* cl); |
febf9363fb68
8019342: G1: High "Other" time most likely due to card redirtying
tschatzl
parents:
23855
diff
changeset
|
137 |
|
febf9363fb68
8019342: G1: High "Other" time most likely due to card redirtying
tschatzl
parents:
23855
diff
changeset
|
138 |
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
|
139 |
// Applies the current closure to all completed buffers, non-consumptively. |
febf9363fb68
8019342: G1: High "Other" time most likely due to card redirtying
tschatzl
parents:
23855
diff
changeset
|
140 |
// Parallel version. |
febf9363fb68
8019342: G1: High "Other" time most likely due to card redirtying
tschatzl
parents:
23855
diff
changeset
|
141 |
void par_apply_closure_to_all_completed_buffers(CardTableEntryClosure* cl); |
1374 | 142 |
|
143 |
DirtyCardQueue* shared_dirty_card_queue() { |
|
144 |
return &_shared_dirty_card_queue; |
|
145 |
} |
|
146 |
||
6247 | 147 |
// Deallocate any completed log buffers |
148 |
void clear(); |
|
149 |
||
1374 | 150 |
// If a full collection is happening, reset partial logs, and ignore |
151 |
// completed ones: the full collection will make them all irrelevant. |
|
152 |
void abandon_logs(); |
|
153 |
||
154 |
// If any threads have partial logs, add them to the global list of logs. |
|
155 |
void concatenate_logs(); |
|
156 |
void clear_n_completed_buffers() { _n_completed_buffers = 0;} |
|
157 |
||
158 |
jint processed_buffers_mut() { |
|
159 |
return _processed_buffers_mut; |
|
160 |
} |
|
161 |
jint processed_buffers_rs_thread() { |
|
162 |
return _processed_buffers_rs_thread; |
|
163 |
} |
|
164 |
||
165 |
}; |
|
7397 | 166 |
|
30764 | 167 |
#endif // SHARE_VM_GC_G1_DIRTYCARDQUEUE_HPP |