author | jwilhelm |
Mon, 04 May 2015 17:10:50 +0200 | |
changeset 30579 | 5208524ce05c |
parent 28507 | 354ef83ee258 |
permissions | -rw-r--r-- |
1374 | 1 |
/* |
28507 | 2 |
* Copyright (c) 2001, 2014, 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 |
||
7397 | 25 |
#ifndef SHARE_VM_GC_IMPLEMENTATION_G1_DIRTYCARDQUEUE_HPP |
26 |
#define SHARE_VM_GC_IMPLEMENTATION_G1_DIRTYCARDQUEUE_HPP |
|
27 |
||
28 |
#include "gc_implementation/g1/ptrQueue.hpp" |
|
29 |
#include "memory/allocation.hpp" |
|
30 |
||
1374 | 31 |
class FreeIdSet; |
32 |
||
33 |
// A closure class for processing card table entries. Note that we don't |
|
34 |
// require these closure objects to be stack-allocated. |
|
13195 | 35 |
class CardTableEntryClosure: public CHeapObj<mtGC> { |
1374 | 36 |
public: |
37 |
// Process the card whose card table entry is "card_ptr". If returns |
|
38 |
// "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
|
39 |
virtual bool do_card_ptr(jbyte* card_ptr, uint worker_i = 0) = 0; |
1374 | 40 |
}; |
41 |
||
42 |
// A ptrQueue whose elements are "oops", pointers to object heads. |
|
43 |
class DirtyCardQueue: public PtrQueue { |
|
44 |
public: |
|
45 |
DirtyCardQueue(PtrQueueSet* qset_, bool perm = false) : |
|
6768
71338ecb7813
6980838: G1: guarantee(false) failed: thread has an unexpected active value in its SATB queue
tonyp
parents:
6247
diff
changeset
|
46 |
// Dirty card queues are always active, so we create them with their |
71338ecb7813
6980838: G1: guarantee(false) failed: thread has an unexpected active value in its SATB queue
tonyp
parents:
6247
diff
changeset
|
47 |
// active field set to true. |
71338ecb7813
6980838: G1: guarantee(false) failed: thread has an unexpected active value in its SATB queue
tonyp
parents:
6247
diff
changeset
|
48 |
PtrQueue(qset_, perm, true /* active */) { } |
71338ecb7813
6980838: G1: guarantee(false) failed: thread has an unexpected active value in its SATB queue
tonyp
parents:
6247
diff
changeset
|
49 |
|
28507 | 50 |
// Flush before destroying; queue may be used to capture pending work while |
51 |
// doing something else, with auto-flush on completion. |
|
52 |
~DirtyCardQueue() { if (!is_permanent()) flush(); } |
|
53 |
||
54 |
// Process queue entries and release resources. |
|
55 |
void flush() { flush_impl(); } |
|
56 |
||
1374 | 57 |
// Apply the closure to all elements, and reset the index to make the |
58 |
// buffer empty. If a closure application returns "false", return |
|
59 |
// "false" immediately, halting the iteration. If "consume" is true, |
|
60 |
// deletes processed entries from logs. |
|
61 |
bool apply_closure(CardTableEntryClosure* cl, |
|
62 |
bool consume = true, |
|
23855
c4574075402c
8016302: Change type of the number of GC workers to unsigned int (2)
vkempik
parents:
13963
diff
changeset
|
63 |
uint worker_i = 0); |
1374 | 64 |
|
65 |
// Apply the closure to all elements of "buf", down to "index" |
|
66 |
// (inclusive.) If returns "false", then a closure application returned |
|
67 |
// "false", and we return immediately. If "consume" is true, entries are |
|
68 |
// set to NULL as they are processed, so they will not be processed again |
|
69 |
// later. |
|
70 |
static bool apply_closure_to_buffer(CardTableEntryClosure* cl, |
|
71 |
void** buf, size_t index, size_t sz, |
|
72 |
bool consume = true, |
|
23855
c4574075402c
8016302: Change type of the number of GC workers to unsigned int (2)
vkempik
parents:
13963
diff
changeset
|
73 |
uint worker_i = 0); |
1374 | 74 |
void **get_buf() { return _buf;} |
75 |
void set_buf(void **buf) {_buf = buf;} |
|
76 |
size_t get_index() { return _index;} |
|
77 |
void reinitialize() { _buf = 0; _sz = 0; _index = 0;} |
|
78 |
}; |
|
79 |
||
80 |
||
81 |
||
82 |
class DirtyCardQueueSet: public PtrQueueSet { |
|
24104
febf9363fb68
8019342: G1: High "Other" time most likely due to card redirtying
tschatzl
parents:
23855
diff
changeset
|
83 |
// The closure used in mut_process_buffer(). |
febf9363fb68
8019342: G1: High "Other" time most likely due to card redirtying
tschatzl
parents:
23855
diff
changeset
|
84 |
CardTableEntryClosure* _mut_process_closure; |
1374 | 85 |
|
86 |
DirtyCardQueue _shared_dirty_card_queue; |
|
87 |
||
88 |
// Override. |
|
89 |
bool mut_process_buffer(void** buf); |
|
90 |
||
91 |
// Protected by the _cbl_mon. |
|
92 |
FreeIdSet* _free_ids; |
|
93 |
||
94 |
// The number of completed buffers processed by mutator and rs thread, |
|
95 |
// respectively. |
|
96 |
jint _processed_buffers_mut; |
|
97 |
jint _processed_buffers_rs_thread; |
|
98 |
||
24104
febf9363fb68
8019342: G1: High "Other" time most likely due to card redirtying
tschatzl
parents:
23855
diff
changeset
|
99 |
// Current buffer node used for parallel iteration. |
febf9363fb68
8019342: G1: High "Other" time most likely due to card redirtying
tschatzl
parents:
23855
diff
changeset
|
100 |
BufferNode* volatile _cur_par_buffer_node; |
1374 | 101 |
public: |
4481 | 102 |
DirtyCardQueueSet(bool notify_when_complete = true); |
1374 | 103 |
|
24104
febf9363fb68
8019342: G1: High "Other" time most likely due to card redirtying
tschatzl
parents:
23855
diff
changeset
|
104 |
void initialize(CardTableEntryClosure* cl, Monitor* cbl_mon, Mutex* fl_lock, |
4481 | 105 |
int process_completed_threshold, |
106 |
int max_completed_queue, |
|
107 |
Mutex* lock, PtrQueueSet* 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 |
||
24104
febf9363fb68
8019342: G1: High "Other" time most likely due to card redirtying
tschatzl
parents:
23855
diff
changeset
|
115 |
// Apply the given closure to all entries in all currently-active buffers. |
febf9363fb68
8019342: G1: High "Other" time most likely due to card redirtying
tschatzl
parents:
23855
diff
changeset
|
116 |
// This should only be applied at a safepoint. (Currently must not be called |
febf9363fb68
8019342: G1: High "Other" time most likely due to card redirtying
tschatzl
parents:
23855
diff
changeset
|
117 |
// in parallel; this should change in the future.) If "consume" is true, |
febf9363fb68
8019342: G1: High "Other" time most likely due to card redirtying
tschatzl
parents:
23855
diff
changeset
|
118 |
// processed entries are discarded. |
febf9363fb68
8019342: G1: High "Other" time most likely due to card redirtying
tschatzl
parents:
23855
diff
changeset
|
119 |
void iterate_closure_all_threads(CardTableEntryClosure* cl, |
febf9363fb68
8019342: G1: High "Other" time most likely due to card redirtying
tschatzl
parents:
23855
diff
changeset
|
120 |
bool consume = true, |
23855
c4574075402c
8016302: Change type of the number of GC workers to unsigned int (2)
vkempik
parents:
13963
diff
changeset
|
121 |
uint worker_i = 0); |
1374 | 122 |
|
123 |
// If there exists some completed buffer, pop it, then apply the |
|
6247 | 124 |
// specified closure to all its elements, nulling out those elements |
125 |
// processed. If all elements are processed, returns "true". If no |
|
126 |
// completed buffers exist, returns false. If a completed buffer exists, |
|
127 |
// but is only partially completed before a "yield" happens, the |
|
128 |
// partially completed buffer (with its processed elements set to NULL) |
|
129 |
// is returned to the completed buffer set, and this call returns false. |
|
130 |
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
|
131 |
uint worker_i = 0, |
6247 | 132 |
int stop_at = 0, |
133 |
bool during_pause = false); |
|
134 |
||
135 |
// Helper routine for the above. |
|
136 |
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
|
137 |
uint worker_i, |
4481 | 138 |
BufferNode* nd); |
1374 | 139 |
|
4481 | 140 |
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
|
141 |
|
1374 | 142 |
// Applies the current closure to all completed buffers, |
143 |
// non-consumptively. |
|
24104
febf9363fb68
8019342: G1: High "Other" time most likely due to card redirtying
tschatzl
parents:
23855
diff
changeset
|
144 |
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
|
145 |
|
febf9363fb68
8019342: G1: High "Other" time most likely due to card redirtying
tschatzl
parents:
23855
diff
changeset
|
146 |
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
|
147 |
// 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
|
148 |
// Parallel version. |
febf9363fb68
8019342: G1: High "Other" time most likely due to card redirtying
tschatzl
parents:
23855
diff
changeset
|
149 |
void par_apply_closure_to_all_completed_buffers(CardTableEntryClosure* cl); |
1374 | 150 |
|
151 |
DirtyCardQueue* shared_dirty_card_queue() { |
|
152 |
return &_shared_dirty_card_queue; |
|
153 |
} |
|
154 |
||
6247 | 155 |
// Deallocate any completed log buffers |
156 |
void clear(); |
|
157 |
||
1374 | 158 |
// If a full collection is happening, reset partial logs, and ignore |
159 |
// completed ones: the full collection will make them all irrelevant. |
|
160 |
void abandon_logs(); |
|
161 |
||
162 |
// If any threads have partial logs, add them to the global list of logs. |
|
163 |
void concatenate_logs(); |
|
164 |
void clear_n_completed_buffers() { _n_completed_buffers = 0;} |
|
165 |
||
166 |
jint processed_buffers_mut() { |
|
167 |
return _processed_buffers_mut; |
|
168 |
} |
|
169 |
jint processed_buffers_rs_thread() { |
|
170 |
return _processed_buffers_rs_thread; |
|
171 |
} |
|
172 |
||
173 |
}; |
|
7397 | 174 |
|
175 |
#endif // SHARE_VM_GC_IMPLEMENTATION_G1_DIRTYCARDQUEUE_HPP |