author | kbarrett |
Mon, 09 Jul 2018 13:35:55 -0400 | |
changeset 50954 | f85092465b0c |
parent 50209 | 2fdce199fcb9 |
child 52037 | d2a6c3cbc110 |
permissions | -rw-r--r-- |
49005
cc2b457f2589
8197992: Move the OopStorage::ParState type out of inline.hpp
pliden
parents:
diff
changeset
|
1 |
/* |
cc2b457f2589
8197992: Move the OopStorage::ParState type out of inline.hpp
pliden
parents:
diff
changeset
|
2 |
* Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. |
cc2b457f2589
8197992: Move the OopStorage::ParState type out of inline.hpp
pliden
parents:
diff
changeset
|
3 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
cc2b457f2589
8197992: Move the OopStorage::ParState type out of inline.hpp
pliden
parents:
diff
changeset
|
4 |
* |
cc2b457f2589
8197992: Move the OopStorage::ParState type out of inline.hpp
pliden
parents:
diff
changeset
|
5 |
* This code is free software; you can redistribute it and/or modify it |
cc2b457f2589
8197992: Move the OopStorage::ParState type out of inline.hpp
pliden
parents:
diff
changeset
|
6 |
* under the terms of the GNU General Public License version 2 only, as |
cc2b457f2589
8197992: Move the OopStorage::ParState type out of inline.hpp
pliden
parents:
diff
changeset
|
7 |
* published by the Free Software Foundation. |
cc2b457f2589
8197992: Move the OopStorage::ParState type out of inline.hpp
pliden
parents:
diff
changeset
|
8 |
* |
cc2b457f2589
8197992: Move the OopStorage::ParState type out of inline.hpp
pliden
parents:
diff
changeset
|
9 |
* This code is distributed in the hope that it will be useful, but WITHOUT |
cc2b457f2589
8197992: Move the OopStorage::ParState type out of inline.hpp
pliden
parents:
diff
changeset
|
10 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
cc2b457f2589
8197992: Move the OopStorage::ParState type out of inline.hpp
pliden
parents:
diff
changeset
|
11 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
cc2b457f2589
8197992: Move the OopStorage::ParState type out of inline.hpp
pliden
parents:
diff
changeset
|
12 |
* version 2 for more details (a copy is included in the LICENSE file that |
cc2b457f2589
8197992: Move the OopStorage::ParState type out of inline.hpp
pliden
parents:
diff
changeset
|
13 |
* accompanied this code). |
cc2b457f2589
8197992: Move the OopStorage::ParState type out of inline.hpp
pliden
parents:
diff
changeset
|
14 |
* |
cc2b457f2589
8197992: Move the OopStorage::ParState type out of inline.hpp
pliden
parents:
diff
changeset
|
15 |
* You should have received a copy of the GNU General Public License version |
cc2b457f2589
8197992: Move the OopStorage::ParState type out of inline.hpp
pliden
parents:
diff
changeset
|
16 |
* 2 along with this work; if not, write to the Free Software Foundation, |
cc2b457f2589
8197992: Move the OopStorage::ParState type out of inline.hpp
pliden
parents:
diff
changeset
|
17 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
cc2b457f2589
8197992: Move the OopStorage::ParState type out of inline.hpp
pliden
parents:
diff
changeset
|
18 |
* |
cc2b457f2589
8197992: Move the OopStorage::ParState type out of inline.hpp
pliden
parents:
diff
changeset
|
19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
cc2b457f2589
8197992: Move the OopStorage::ParState type out of inline.hpp
pliden
parents:
diff
changeset
|
20 |
* or visit www.oracle.com if you need additional information or have any |
cc2b457f2589
8197992: Move the OopStorage::ParState type out of inline.hpp
pliden
parents:
diff
changeset
|
21 |
* questions. |
cc2b457f2589
8197992: Move the OopStorage::ParState type out of inline.hpp
pliden
parents:
diff
changeset
|
22 |
* |
cc2b457f2589
8197992: Move the OopStorage::ParState type out of inline.hpp
pliden
parents:
diff
changeset
|
23 |
*/ |
cc2b457f2589
8197992: Move the OopStorage::ParState type out of inline.hpp
pliden
parents:
diff
changeset
|
24 |
|
cc2b457f2589
8197992: Move the OopStorage::ParState type out of inline.hpp
pliden
parents:
diff
changeset
|
25 |
#ifndef SHARE_GC_SHARED_OOPSTORAGEPARSTATE_HPP |
cc2b457f2589
8197992: Move the OopStorage::ParState type out of inline.hpp
pliden
parents:
diff
changeset
|
26 |
#define SHARE_GC_SHARED_OOPSTORAGEPARSTATE_HPP |
cc2b457f2589
8197992: Move the OopStorage::ParState type out of inline.hpp
pliden
parents:
diff
changeset
|
27 |
|
cc2b457f2589
8197992: Move the OopStorage::ParState type out of inline.hpp
pliden
parents:
diff
changeset
|
28 |
#include "gc/shared/oopStorage.hpp" |
cc2b457f2589
8197992: Move the OopStorage::ParState type out of inline.hpp
pliden
parents:
diff
changeset
|
29 |
#include "utilities/macros.hpp" |
cc2b457f2589
8197992: Move the OopStorage::ParState type out of inline.hpp
pliden
parents:
diff
changeset
|
30 |
|
cc2b457f2589
8197992: Move the OopStorage::ParState type out of inline.hpp
pliden
parents:
diff
changeset
|
31 |
////////////////////////////////////////////////////////////////////////////// |
cc2b457f2589
8197992: Move the OopStorage::ParState type out of inline.hpp
pliden
parents:
diff
changeset
|
32 |
// Support for parallel and optionally concurrent state iteration. |
cc2b457f2589
8197992: Move the OopStorage::ParState type out of inline.hpp
pliden
parents:
diff
changeset
|
33 |
// |
cc2b457f2589
8197992: Move the OopStorage::ParState type out of inline.hpp
pliden
parents:
diff
changeset
|
34 |
// Parallel iteration is for the exclusive use of the GC. Other iteration |
cc2b457f2589
8197992: Move the OopStorage::ParState type out of inline.hpp
pliden
parents:
diff
changeset
|
35 |
// clients must use serial iteration. |
cc2b457f2589
8197992: Move the OopStorage::ParState type out of inline.hpp
pliden
parents:
diff
changeset
|
36 |
// |
cc2b457f2589
8197992: Move the OopStorage::ParState type out of inline.hpp
pliden
parents:
diff
changeset
|
37 |
// Concurrent Iteration |
cc2b457f2589
8197992: Move the OopStorage::ParState type out of inline.hpp
pliden
parents:
diff
changeset
|
38 |
// |
50209
2fdce199fcb9
8202863: Rename OopStorage inner collection classes
kbarrett
parents:
49977
diff
changeset
|
39 |
// Iteration involves the _active_array (an ActiveArray), which contains all |
2fdce199fcb9
8202863: Rename OopStorage inner collection classes
kbarrett
parents:
49977
diff
changeset
|
40 |
// of the blocks owned by a storage object. |
49005
cc2b457f2589
8197992: Move the OopStorage::ParState type out of inline.hpp
pliden
parents:
diff
changeset
|
41 |
// |
cc2b457f2589
8197992: Move the OopStorage::ParState type out of inline.hpp
pliden
parents:
diff
changeset
|
42 |
// At most one concurrent ParState can exist at a time for a given storage |
cc2b457f2589
8197992: Move the OopStorage::ParState type out of inline.hpp
pliden
parents:
diff
changeset
|
43 |
// object. |
cc2b457f2589
8197992: Move the OopStorage::ParState type out of inline.hpp
pliden
parents:
diff
changeset
|
44 |
// |
cc2b457f2589
8197992: Move the OopStorage::ParState type out of inline.hpp
pliden
parents:
diff
changeset
|
45 |
// A concurrent ParState sets the associated storage's |
cc2b457f2589
8197992: Move the OopStorage::ParState type out of inline.hpp
pliden
parents:
diff
changeset
|
46 |
// _concurrent_iteration_active flag true when the state is constructed, and |
cc2b457f2589
8197992: Move the OopStorage::ParState type out of inline.hpp
pliden
parents:
diff
changeset
|
47 |
// sets it false when the state is destroyed. These assignments are made with |
cc2b457f2589
8197992: Move the OopStorage::ParState type out of inline.hpp
pliden
parents:
diff
changeset
|
48 |
// _active_mutex locked. Meanwhile, empty block deletion is not done while |
cc2b457f2589
8197992: Move the OopStorage::ParState type out of inline.hpp
pliden
parents:
diff
changeset
|
49 |
// _concurrent_iteration_active is true. The flag check and the dependent |
49977
9f758f0bb058
8200557: OopStorage parallel iteration scales poorly
kbarrett
parents:
49711
diff
changeset
|
50 |
// removal of a block from the _active_array is performed with _active_mutex |
49005
cc2b457f2589
8197992: Move the OopStorage::ParState type out of inline.hpp
pliden
parents:
diff
changeset
|
51 |
// locked. This prevents concurrent iteration and empty block deletion from |
cc2b457f2589
8197992: Move the OopStorage::ParState type out of inline.hpp
pliden
parents:
diff
changeset
|
52 |
// interfering with with each other. |
cc2b457f2589
8197992: Move the OopStorage::ParState type out of inline.hpp
pliden
parents:
diff
changeset
|
53 |
// |
cc2b457f2589
8197992: Move the OopStorage::ParState type out of inline.hpp
pliden
parents:
diff
changeset
|
54 |
// Both allocate() and delete_empty_blocks_concurrent() lock the |
50954
f85092465b0c
8204834: Fix confusing "allocate" naming in OopStorage
kbarrett
parents:
50209
diff
changeset
|
55 |
// _allocation_mutex while performing their respective list and array |
49977
9f758f0bb058
8200557: OopStorage parallel iteration scales poorly
kbarrett
parents:
49711
diff
changeset
|
56 |
// manipulations, preventing them from interfering with each other. |
49005
cc2b457f2589
8197992: Move the OopStorage::ParState type out of inline.hpp
pliden
parents:
diff
changeset
|
57 |
// |
49977
9f758f0bb058
8200557: OopStorage parallel iteration scales poorly
kbarrett
parents:
49711
diff
changeset
|
58 |
// When allocate() creates a new block, it is added to the end of the |
9f758f0bb058
8200557: OopStorage parallel iteration scales poorly
kbarrett
parents:
49711
diff
changeset
|
59 |
// _active_array. Then _active_array's _block_count is incremented to account |
9f758f0bb058
8200557: OopStorage parallel iteration scales poorly
kbarrett
parents:
49711
diff
changeset
|
60 |
// for the new block. When concurrent iteration is started (by a parallel |
9f758f0bb058
8200557: OopStorage parallel iteration scales poorly
kbarrett
parents:
49711
diff
changeset
|
61 |
// worker thread calling the state's iterate() function), the current |
9f758f0bb058
8200557: OopStorage parallel iteration scales poorly
kbarrett
parents:
49711
diff
changeset
|
62 |
// _active_array and its _block_count are captured for use by the iteration, |
9f758f0bb058
8200557: OopStorage parallel iteration scales poorly
kbarrett
parents:
49711
diff
changeset
|
63 |
// with iteration processing all blocks in that array up to that block count. |
49005
cc2b457f2589
8197992: Move the OopStorage::ParState type out of inline.hpp
pliden
parents:
diff
changeset
|
64 |
// |
49977
9f758f0bb058
8200557: OopStorage parallel iteration scales poorly
kbarrett
parents:
49711
diff
changeset
|
65 |
// As a result, the sequence over which concurrent iteration operates is |
9f758f0bb058
8200557: OopStorage parallel iteration scales poorly
kbarrett
parents:
49711
diff
changeset
|
66 |
// stable. However, once the iteration is started, later allocations may add |
9f758f0bb058
8200557: OopStorage parallel iteration scales poorly
kbarrett
parents:
49711
diff
changeset
|
67 |
// blocks to the end of the array that won't be examined by the iteration. |
9f758f0bb058
8200557: OopStorage parallel iteration scales poorly
kbarrett
parents:
49711
diff
changeset
|
68 |
// An allocation may even require expansion of the array, so the iteration is |
9f758f0bb058
8200557: OopStorage parallel iteration scales poorly
kbarrett
parents:
49711
diff
changeset
|
69 |
// no longer processing the current array, but rather the previous one. |
9f758f0bb058
8200557: OopStorage parallel iteration scales poorly
kbarrett
parents:
49711
diff
changeset
|
70 |
// And while the sequence is stable, concurrent allocate() and release() |
9f758f0bb058
8200557: OopStorage parallel iteration scales poorly
kbarrett
parents:
49711
diff
changeset
|
71 |
// operations may change the set of allocated entries in a block at any time |
9f758f0bb058
8200557: OopStorage parallel iteration scales poorly
kbarrett
parents:
49711
diff
changeset
|
72 |
// during the iteration. |
49005
cc2b457f2589
8197992: Move the OopStorage::ParState type out of inline.hpp
pliden
parents:
diff
changeset
|
73 |
// |
cc2b457f2589
8197992: Move the OopStorage::ParState type out of inline.hpp
pliden
parents:
diff
changeset
|
74 |
// As a result, a concurrent iteration handler must accept that some |
cc2b457f2589
8197992: Move the OopStorage::ParState type out of inline.hpp
pliden
parents:
diff
changeset
|
75 |
// allocations and releases that occur after the iteration started will not be |
cc2b457f2589
8197992: Move the OopStorage::ParState type out of inline.hpp
pliden
parents:
diff
changeset
|
76 |
// seen by the iteration. Further, some may overlap examination by the |
cc2b457f2589
8197992: Move the OopStorage::ParState type out of inline.hpp
pliden
parents:
diff
changeset
|
77 |
// iteration. To help with this, allocate() and release() have an invariant |
cc2b457f2589
8197992: Move the OopStorage::ParState type out of inline.hpp
pliden
parents:
diff
changeset
|
78 |
// that an entry's value must be NULL when it is not in use. |
cc2b457f2589
8197992: Move the OopStorage::ParState type out of inline.hpp
pliden
parents:
diff
changeset
|
79 |
// |
cc2b457f2589
8197992: Move the OopStorage::ParState type out of inline.hpp
pliden
parents:
diff
changeset
|
80 |
// An in-progress delete_empty_blocks_concurrent() operation can contend with |
cc2b457f2589
8197992: Move the OopStorage::ParState type out of inline.hpp
pliden
parents:
diff
changeset
|
81 |
// the start of a concurrent iteration over the _active_mutex. Since both are |
cc2b457f2589
8197992: Move the OopStorage::ParState type out of inline.hpp
pliden
parents:
diff
changeset
|
82 |
// under GC control, that potential contention can be eliminated by never |
cc2b457f2589
8197992: Move the OopStorage::ParState type out of inline.hpp
pliden
parents:
diff
changeset
|
83 |
// scheduling both operations to run at the same time. |
cc2b457f2589
8197992: Move the OopStorage::ParState type out of inline.hpp
pliden
parents:
diff
changeset
|
84 |
// |
cc2b457f2589
8197992: Move the OopStorage::ParState type out of inline.hpp
pliden
parents:
diff
changeset
|
85 |
// ParState<concurrent, is_const> |
cc2b457f2589
8197992: Move the OopStorage::ParState type out of inline.hpp
pliden
parents:
diff
changeset
|
86 |
// concurrent must be true if iteration is concurrent with the |
cc2b457f2589
8197992: Move the OopStorage::ParState type out of inline.hpp
pliden
parents:
diff
changeset
|
87 |
// mutator, false if iteration is at a safepoint. |
cc2b457f2589
8197992: Move the OopStorage::ParState type out of inline.hpp
pliden
parents:
diff
changeset
|
88 |
// |
cc2b457f2589
8197992: Move the OopStorage::ParState type out of inline.hpp
pliden
parents:
diff
changeset
|
89 |
// is_const must be true if the iteration is over a constant storage |
cc2b457f2589
8197992: Move the OopStorage::ParState type out of inline.hpp
pliden
parents:
diff
changeset
|
90 |
// object, false if the iteration may modify the storage object. |
cc2b457f2589
8197992: Move the OopStorage::ParState type out of inline.hpp
pliden
parents:
diff
changeset
|
91 |
// |
cc2b457f2589
8197992: Move the OopStorage::ParState type out of inline.hpp
pliden
parents:
diff
changeset
|
92 |
// ParState([const] OopStorage* storage) |
cc2b457f2589
8197992: Move the OopStorage::ParState type out of inline.hpp
pliden
parents:
diff
changeset
|
93 |
// Construct an object for managing an iteration over storage. For a |
cc2b457f2589
8197992: Move the OopStorage::ParState type out of inline.hpp
pliden
parents:
diff
changeset
|
94 |
// concurrent ParState, empty block deletion for the associated storage |
cc2b457f2589
8197992: Move the OopStorage::ParState type out of inline.hpp
pliden
parents:
diff
changeset
|
95 |
// is inhibited for the life of the ParState. There can be no more |
cc2b457f2589
8197992: Move the OopStorage::ParState type out of inline.hpp
pliden
parents:
diff
changeset
|
96 |
// than one live concurrent ParState at a time for a given storage object. |
cc2b457f2589
8197992: Move the OopStorage::ParState type out of inline.hpp
pliden
parents:
diff
changeset
|
97 |
// |
cc2b457f2589
8197992: Move the OopStorage::ParState type out of inline.hpp
pliden
parents:
diff
changeset
|
98 |
// template<typename F> void iterate(F f) |
cc2b457f2589
8197992: Move the OopStorage::ParState type out of inline.hpp
pliden
parents:
diff
changeset
|
99 |
// Repeatedly claims a block from the associated storage that has |
cc2b457f2589
8197992: Move the OopStorage::ParState type out of inline.hpp
pliden
parents:
diff
changeset
|
100 |
// not been processed by this iteration (possibly by other threads), |
cc2b457f2589
8197992: Move the OopStorage::ParState type out of inline.hpp
pliden
parents:
diff
changeset
|
101 |
// and applies f to each entry in the claimed block. Assume p is of |
cc2b457f2589
8197992: Move the OopStorage::ParState type out of inline.hpp
pliden
parents:
diff
changeset
|
102 |
// type const oop* or oop*, according to is_const. Then f(p) must be |
cc2b457f2589
8197992: Move the OopStorage::ParState type out of inline.hpp
pliden
parents:
diff
changeset
|
103 |
// a valid expression whose value is ignored. Concurrent uses must |
cc2b457f2589
8197992: Move the OopStorage::ParState type out of inline.hpp
pliden
parents:
diff
changeset
|
104 |
// be prepared for an entry's value to change at any time, due to |
cc2b457f2589
8197992: Move the OopStorage::ParState type out of inline.hpp
pliden
parents:
diff
changeset
|
105 |
// mutator activity. |
cc2b457f2589
8197992: Move the OopStorage::ParState type out of inline.hpp
pliden
parents:
diff
changeset
|
106 |
// |
cc2b457f2589
8197992: Move the OopStorage::ParState type out of inline.hpp
pliden
parents:
diff
changeset
|
107 |
// template<typename Closure> void oops_do(Closure* cl) |
cc2b457f2589
8197992: Move the OopStorage::ParState type out of inline.hpp
pliden
parents:
diff
changeset
|
108 |
// Wrapper around iterate, providing an adaptation layer allowing |
cc2b457f2589
8197992: Move the OopStorage::ParState type out of inline.hpp
pliden
parents:
diff
changeset
|
109 |
// the use of OopClosures and similar objects for iteration. Assume |
cc2b457f2589
8197992: Move the OopStorage::ParState type out of inline.hpp
pliden
parents:
diff
changeset
|
110 |
// p is of type const oop* or oop*, according to is_const. Then |
cc2b457f2589
8197992: Move the OopStorage::ParState type out of inline.hpp
pliden
parents:
diff
changeset
|
111 |
// cl->do_oop(p) must be a valid expression whose value is ignored. |
cc2b457f2589
8197992: Move the OopStorage::ParState type out of inline.hpp
pliden
parents:
diff
changeset
|
112 |
// Concurrent uses must be prepared for the entry's value to change |
cc2b457f2589
8197992: Move the OopStorage::ParState type out of inline.hpp
pliden
parents:
diff
changeset
|
113 |
// at any time, due to mutator activity. |
cc2b457f2589
8197992: Move the OopStorage::ParState type out of inline.hpp
pliden
parents:
diff
changeset
|
114 |
// |
cc2b457f2589
8197992: Move the OopStorage::ParState type out of inline.hpp
pliden
parents:
diff
changeset
|
115 |
// Optional operations, provided only if !concurrent && !is_const. |
cc2b457f2589
8197992: Move the OopStorage::ParState type out of inline.hpp
pliden
parents:
diff
changeset
|
116 |
// These are not provided when is_const, because the storage object |
cc2b457f2589
8197992: Move the OopStorage::ParState type out of inline.hpp
pliden
parents:
diff
changeset
|
117 |
// may be modified by the iteration infrastructure, even if the |
cc2b457f2589
8197992: Move the OopStorage::ParState type out of inline.hpp
pliden
parents:
diff
changeset
|
118 |
// provided closure doesn't modify the storage object. These are not |
cc2b457f2589
8197992: Move the OopStorage::ParState type out of inline.hpp
pliden
parents:
diff
changeset
|
119 |
// provided when concurrent because any pre-filtering behavior by the |
cc2b457f2589
8197992: Move the OopStorage::ParState type out of inline.hpp
pliden
parents:
diff
changeset
|
120 |
// iteration infrastructure is inappropriate for concurrent iteration; |
cc2b457f2589
8197992: Move the OopStorage::ParState type out of inline.hpp
pliden
parents:
diff
changeset
|
121 |
// modifications of the storage by the mutator could result in the |
cc2b457f2589
8197992: Move the OopStorage::ParState type out of inline.hpp
pliden
parents:
diff
changeset
|
122 |
// pre-filtering being applied (successfully or not) to objects that |
cc2b457f2589
8197992: Move the OopStorage::ParState type out of inline.hpp
pliden
parents:
diff
changeset
|
123 |
// are unrelated to what the closure finds in the entry. |
cc2b457f2589
8197992: Move the OopStorage::ParState type out of inline.hpp
pliden
parents:
diff
changeset
|
124 |
// |
cc2b457f2589
8197992: Move the OopStorage::ParState type out of inline.hpp
pliden
parents:
diff
changeset
|
125 |
// template<typename Closure> void weak_oops_do(Closure* cl) |
cc2b457f2589
8197992: Move the OopStorage::ParState type out of inline.hpp
pliden
parents:
diff
changeset
|
126 |
// template<typename IsAliveClosure, typename Closure> |
cc2b457f2589
8197992: Move the OopStorage::ParState type out of inline.hpp
pliden
parents:
diff
changeset
|
127 |
// void weak_oops_do(IsAliveClosure* is_alive, Closure* cl) |
cc2b457f2589
8197992: Move the OopStorage::ParState type out of inline.hpp
pliden
parents:
diff
changeset
|
128 |
// Wrappers around iterate, providing an adaptation layer allowing |
cc2b457f2589
8197992: Move the OopStorage::ParState type out of inline.hpp
pliden
parents:
diff
changeset
|
129 |
// the use of is-alive closures and OopClosures for iteration. |
cc2b457f2589
8197992: Move the OopStorage::ParState type out of inline.hpp
pliden
parents:
diff
changeset
|
130 |
// Assume p is of type oop*. Then |
cc2b457f2589
8197992: Move the OopStorage::ParState type out of inline.hpp
pliden
parents:
diff
changeset
|
131 |
// |
cc2b457f2589
8197992: Move the OopStorage::ParState type out of inline.hpp
pliden
parents:
diff
changeset
|
132 |
// - cl->do_oop(p) must be a valid expression whose value is ignored. |
cc2b457f2589
8197992: Move the OopStorage::ParState type out of inline.hpp
pliden
parents:
diff
changeset
|
133 |
// |
cc2b457f2589
8197992: Move the OopStorage::ParState type out of inline.hpp
pliden
parents:
diff
changeset
|
134 |
// - is_alive->do_object_b(*p) must be a valid expression whose value |
cc2b457f2589
8197992: Move the OopStorage::ParState type out of inline.hpp
pliden
parents:
diff
changeset
|
135 |
// is convertible to bool. |
cc2b457f2589
8197992: Move the OopStorage::ParState type out of inline.hpp
pliden
parents:
diff
changeset
|
136 |
// |
cc2b457f2589
8197992: Move the OopStorage::ParState type out of inline.hpp
pliden
parents:
diff
changeset
|
137 |
// If *p == NULL then neither is_alive nor cl will be invoked for p. |
cc2b457f2589
8197992: Move the OopStorage::ParState type out of inline.hpp
pliden
parents:
diff
changeset
|
138 |
// If is_alive->do_object_b(*p) is false, then cl will not be |
cc2b457f2589
8197992: Move the OopStorage::ParState type out of inline.hpp
pliden
parents:
diff
changeset
|
139 |
// invoked on p. |
cc2b457f2589
8197992: Move the OopStorage::ParState type out of inline.hpp
pliden
parents:
diff
changeset
|
140 |
|
49392
2956d0ece7a9
8199282: Remove ValueObj class for allocation subclassing for gc code
coleenp
parents:
49005
diff
changeset
|
141 |
class OopStorage::BasicParState { |
49977
9f758f0bb058
8200557: OopStorage parallel iteration scales poorly
kbarrett
parents:
49711
diff
changeset
|
142 |
const OopStorage* _storage; |
50209
2fdce199fcb9
8202863: Rename OopStorage inner collection classes
kbarrett
parents:
49977
diff
changeset
|
143 |
ActiveArray* _active_array; |
49977
9f758f0bb058
8200557: OopStorage parallel iteration scales poorly
kbarrett
parents:
49711
diff
changeset
|
144 |
size_t _block_count; |
9f758f0bb058
8200557: OopStorage parallel iteration scales poorly
kbarrett
parents:
49711
diff
changeset
|
145 |
volatile size_t _next_block; |
9f758f0bb058
8200557: OopStorage parallel iteration scales poorly
kbarrett
parents:
49711
diff
changeset
|
146 |
uint _estimated_thread_count; |
49005
cc2b457f2589
8197992: Move the OopStorage::ParState type out of inline.hpp
pliden
parents:
diff
changeset
|
147 |
bool _concurrent; |
cc2b457f2589
8197992: Move the OopStorage::ParState type out of inline.hpp
pliden
parents:
diff
changeset
|
148 |
|
cc2b457f2589
8197992: Move the OopStorage::ParState type out of inline.hpp
pliden
parents:
diff
changeset
|
149 |
// Noncopyable. |
cc2b457f2589
8197992: Move the OopStorage::ParState type out of inline.hpp
pliden
parents:
diff
changeset
|
150 |
BasicParState(const BasicParState&); |
cc2b457f2589
8197992: Move the OopStorage::ParState type out of inline.hpp
pliden
parents:
diff
changeset
|
151 |
BasicParState& operator=(const BasicParState&); |
cc2b457f2589
8197992: Move the OopStorage::ParState type out of inline.hpp
pliden
parents:
diff
changeset
|
152 |
|
49977
9f758f0bb058
8200557: OopStorage parallel iteration scales poorly
kbarrett
parents:
49711
diff
changeset
|
153 |
struct IterationData; |
9f758f0bb058
8200557: OopStorage parallel iteration scales poorly
kbarrett
parents:
49711
diff
changeset
|
154 |
|
49005
cc2b457f2589
8197992: Move the OopStorage::ParState type out of inline.hpp
pliden
parents:
diff
changeset
|
155 |
void update_iteration_state(bool value); |
49977
9f758f0bb058
8200557: OopStorage parallel iteration scales poorly
kbarrett
parents:
49711
diff
changeset
|
156 |
bool claim_next_segment(IterationData* data); |
9f758f0bb058
8200557: OopStorage parallel iteration scales poorly
kbarrett
parents:
49711
diff
changeset
|
157 |
bool finish_iteration(const IterationData* data) const; |
49005
cc2b457f2589
8197992: Move the OopStorage::ParState type out of inline.hpp
pliden
parents:
diff
changeset
|
158 |
|
cc2b457f2589
8197992: Move the OopStorage::ParState type out of inline.hpp
pliden
parents:
diff
changeset
|
159 |
// Wrapper for iteration handler; ignore handler result and return true. |
cc2b457f2589
8197992: Move the OopStorage::ParState type out of inline.hpp
pliden
parents:
diff
changeset
|
160 |
template<typename F> class AlwaysTrueFn; |
cc2b457f2589
8197992: Move the OopStorage::ParState type out of inline.hpp
pliden
parents:
diff
changeset
|
161 |
|
cc2b457f2589
8197992: Move the OopStorage::ParState type out of inline.hpp
pliden
parents:
diff
changeset
|
162 |
public: |
49977
9f758f0bb058
8200557: OopStorage parallel iteration scales poorly
kbarrett
parents:
49711
diff
changeset
|
163 |
BasicParState(const OopStorage* storage, |
9f758f0bb058
8200557: OopStorage parallel iteration scales poorly
kbarrett
parents:
49711
diff
changeset
|
164 |
uint estimated_thread_count, |
9f758f0bb058
8200557: OopStorage parallel iteration scales poorly
kbarrett
parents:
49711
diff
changeset
|
165 |
bool concurrent); |
49005
cc2b457f2589
8197992: Move the OopStorage::ParState type out of inline.hpp
pliden
parents:
diff
changeset
|
166 |
~BasicParState(); |
cc2b457f2589
8197992: Move the OopStorage::ParState type out of inline.hpp
pliden
parents:
diff
changeset
|
167 |
|
cc2b457f2589
8197992: Move the OopStorage::ParState type out of inline.hpp
pliden
parents:
diff
changeset
|
168 |
template<bool is_const, typename F> void iterate(F f); |
49977
9f758f0bb058
8200557: OopStorage parallel iteration scales poorly
kbarrett
parents:
49711
diff
changeset
|
169 |
|
9f758f0bb058
8200557: OopStorage parallel iteration scales poorly
kbarrett
parents:
49711
diff
changeset
|
170 |
static uint default_estimated_thread_count(bool concurrent); |
49005
cc2b457f2589
8197992: Move the OopStorage::ParState type out of inline.hpp
pliden
parents:
diff
changeset
|
171 |
}; |
cc2b457f2589
8197992: Move the OopStorage::ParState type out of inline.hpp
pliden
parents:
diff
changeset
|
172 |
|
cc2b457f2589
8197992: Move the OopStorage::ParState type out of inline.hpp
pliden
parents:
diff
changeset
|
173 |
template<bool concurrent, bool is_const> |
49392
2956d0ece7a9
8199282: Remove ValueObj class for allocation subclassing for gc code
coleenp
parents:
49005
diff
changeset
|
174 |
class OopStorage::ParState { |
49005
cc2b457f2589
8197992: Move the OopStorage::ParState type out of inline.hpp
pliden
parents:
diff
changeset
|
175 |
BasicParState _basic_state; |
cc2b457f2589
8197992: Move the OopStorage::ParState type out of inline.hpp
pliden
parents:
diff
changeset
|
176 |
|
49977
9f758f0bb058
8200557: OopStorage parallel iteration scales poorly
kbarrett
parents:
49711
diff
changeset
|
177 |
typedef typename Conditional<is_const, |
9f758f0bb058
8200557: OopStorage parallel iteration scales poorly
kbarrett
parents:
49711
diff
changeset
|
178 |
const OopStorage*, |
9f758f0bb058
8200557: OopStorage parallel iteration scales poorly
kbarrett
parents:
49711
diff
changeset
|
179 |
OopStorage*>::type StoragePtr; |
9f758f0bb058
8200557: OopStorage parallel iteration scales poorly
kbarrett
parents:
49711
diff
changeset
|
180 |
|
49005
cc2b457f2589
8197992: Move the OopStorage::ParState type out of inline.hpp
pliden
parents:
diff
changeset
|
181 |
public: |
49977
9f758f0bb058
8200557: OopStorage parallel iteration scales poorly
kbarrett
parents:
49711
diff
changeset
|
182 |
ParState(StoragePtr storage, |
9f758f0bb058
8200557: OopStorage parallel iteration scales poorly
kbarrett
parents:
49711
diff
changeset
|
183 |
uint estimated_thread_count = BasicParState::default_estimated_thread_count(concurrent)) : |
9f758f0bb058
8200557: OopStorage parallel iteration scales poorly
kbarrett
parents:
49711
diff
changeset
|
184 |
_basic_state(storage, estimated_thread_count, concurrent) |
49005
cc2b457f2589
8197992: Move the OopStorage::ParState type out of inline.hpp
pliden
parents:
diff
changeset
|
185 |
{} |
cc2b457f2589
8197992: Move the OopStorage::ParState type out of inline.hpp
pliden
parents:
diff
changeset
|
186 |
|
cc2b457f2589
8197992: Move the OopStorage::ParState type out of inline.hpp
pliden
parents:
diff
changeset
|
187 |
template<typename F> void iterate(F f); |
cc2b457f2589
8197992: Move the OopStorage::ParState type out of inline.hpp
pliden
parents:
diff
changeset
|
188 |
template<typename Closure> void oops_do(Closure* cl); |
cc2b457f2589
8197992: Move the OopStorage::ParState type out of inline.hpp
pliden
parents:
diff
changeset
|
189 |
}; |
cc2b457f2589
8197992: Move the OopStorage::ParState type out of inline.hpp
pliden
parents:
diff
changeset
|
190 |
|
cc2b457f2589
8197992: Move the OopStorage::ParState type out of inline.hpp
pliden
parents:
diff
changeset
|
191 |
template<> |
49392
2956d0ece7a9
8199282: Remove ValueObj class for allocation subclassing for gc code
coleenp
parents:
49005
diff
changeset
|
192 |
class OopStorage::ParState<false, false> { |
49005
cc2b457f2589
8197992: Move the OopStorage::ParState type out of inline.hpp
pliden
parents:
diff
changeset
|
193 |
BasicParState _basic_state; |
cc2b457f2589
8197992: Move the OopStorage::ParState type out of inline.hpp
pliden
parents:
diff
changeset
|
194 |
|
cc2b457f2589
8197992: Move the OopStorage::ParState type out of inline.hpp
pliden
parents:
diff
changeset
|
195 |
public: |
49977
9f758f0bb058
8200557: OopStorage parallel iteration scales poorly
kbarrett
parents:
49711
diff
changeset
|
196 |
ParState(OopStorage* storage, |
9f758f0bb058
8200557: OopStorage parallel iteration scales poorly
kbarrett
parents:
49711
diff
changeset
|
197 |
uint estimated_thread_count = BasicParState::default_estimated_thread_count(false)) : |
9f758f0bb058
8200557: OopStorage parallel iteration scales poorly
kbarrett
parents:
49711
diff
changeset
|
198 |
_basic_state(storage, estimated_thread_count, false) |
49005
cc2b457f2589
8197992: Move the OopStorage::ParState type out of inline.hpp
pliden
parents:
diff
changeset
|
199 |
{} |
cc2b457f2589
8197992: Move the OopStorage::ParState type out of inline.hpp
pliden
parents:
diff
changeset
|
200 |
|
cc2b457f2589
8197992: Move the OopStorage::ParState type out of inline.hpp
pliden
parents:
diff
changeset
|
201 |
template<typename F> void iterate(F f); |
cc2b457f2589
8197992: Move the OopStorage::ParState type out of inline.hpp
pliden
parents:
diff
changeset
|
202 |
template<typename Closure> void oops_do(Closure* cl); |
cc2b457f2589
8197992: Move the OopStorage::ParState type out of inline.hpp
pliden
parents:
diff
changeset
|
203 |
template<typename Closure> void weak_oops_do(Closure* cl); |
cc2b457f2589
8197992: Move the OopStorage::ParState type out of inline.hpp
pliden
parents:
diff
changeset
|
204 |
template<typename IsAliveClosure, typename Closure> |
cc2b457f2589
8197992: Move the OopStorage::ParState type out of inline.hpp
pliden
parents:
diff
changeset
|
205 |
void weak_oops_do(IsAliveClosure* is_alive, Closure* cl); |
cc2b457f2589
8197992: Move the OopStorage::ParState type out of inline.hpp
pliden
parents:
diff
changeset
|
206 |
}; |
cc2b457f2589
8197992: Move the OopStorage::ParState type out of inline.hpp
pliden
parents:
diff
changeset
|
207 |
|
cc2b457f2589
8197992: Move the OopStorage::ParState type out of inline.hpp
pliden
parents:
diff
changeset
|
208 |
#endif // SHARE_GC_SHARED_OOPSTORAGEPARSTATE_HPP |