author | tschatzl |
Thu, 06 Aug 2015 15:49:50 +0200 | |
changeset 32185 | 49a57ff2c3cb |
parent 30764 | fec48bf5a827 |
child 33786 | ac8da6513351 |
permissions | -rw-r--r-- |
1374 | 1 |
/* |
30173
13cf7580b000
8077413: Avoid use of Universe::heap() inside collectors
pliden
parents:
27251
diff
changeset
|
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:
3283
diff
changeset
|
19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
3283
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:
3283
diff
changeset
|
21 |
* questions. |
1374 | 22 |
* |
23 |
*/ |
|
24 |
||
30764 | 25 |
#ifndef SHARE_VM_GC_G1_G1REMSET_INLINE_HPP |
26 |
#define SHARE_VM_GC_G1_G1REMSET_INLINE_HPP |
|
7397 | 27 |
|
30764 | 28 |
#include "gc/g1/g1RemSet.hpp" |
29 |
#include "gc/g1/heapRegion.hpp" |
|
30 |
#include "gc/g1/heapRegionRemSet.hpp" |
|
7397 | 31 |
#include "oops/oop.inline.hpp" |
32 |
||
11396
917d8673b5ef
7121618: Change type of number of GC workers to unsigned int.
jmasa
parents:
10000
diff
changeset
|
33 |
inline uint G1RemSet::n_workers() { |
27251
7d667f91ec8d
6979279: remove special-case code for ParallelGCThreads==0
mlarsson
parents:
26850
diff
changeset
|
34 |
return _g1->workers()->total_workers(); |
1374 | 35 |
} |
36 |
||
6958 | 37 |
template <class T> |
7385
eaca4b61b374
6978187: G1: assert(ParallelGCThreads> 1 || n_yielded() == _hrrs->occupied()) strikes again
johnc
parents:
6958
diff
changeset
|
38 |
inline void G1RemSet::write_ref(HeapRegion* from, T* p) { |
eaca4b61b374
6978187: G1: assert(ParallelGCThreads> 1 || n_yielded() == _hrrs->occupied()) strikes again
johnc
parents:
6958
diff
changeset
|
39 |
par_write_ref(from, p, 0); |
1374 | 40 |
} |
41 |
||
6958 | 42 |
template <class T> |
26850
515ff48cf5f0
8036116: Fix thread-id types in G1 remembered set implementations
brutisso
parents:
26701
diff
changeset
|
43 |
inline void G1RemSet::par_write_ref(HeapRegion* from, T* p, uint tid) { |
3262
30d1c247fc25
6700789: G1: Enable use of compressed oops with G1 heaps
ysr
parents:
2344
diff
changeset
|
44 |
oop obj = oopDesc::load_decode_heap_oop(p); |
24106
dae9277bdf2a
8040722: G1: Clean up usages of heap_region_containing
brutisso
parents:
11586
diff
changeset
|
45 |
if (obj == NULL) { |
dae9277bdf2a
8040722: G1: Clean up usages of heap_region_containing
brutisso
parents:
11586
diff
changeset
|
46 |
return; |
dae9277bdf2a
8040722: G1: Clean up usages of heap_region_containing
brutisso
parents:
11586
diff
changeset
|
47 |
} |
dae9277bdf2a
8040722: G1: Clean up usages of heap_region_containing
brutisso
parents:
11586
diff
changeset
|
48 |
|
1374 | 49 |
#ifdef ASSERT |
50 |
// can't do because of races |
|
51 |
// assert(obj == NULL || obj->is_oop(), "expected an oop"); |
|
52 |
||
53 |
// Do the safe subset of is_oop |
|
54 |
#ifdef CHECK_UNHANDLED_OOPS |
|
24106
dae9277bdf2a
8040722: G1: Clean up usages of heap_region_containing
brutisso
parents:
11586
diff
changeset
|
55 |
oopDesc* o = obj.obj(); |
1374 | 56 |
#else |
24106
dae9277bdf2a
8040722: G1: Clean up usages of heap_region_containing
brutisso
parents:
11586
diff
changeset
|
57 |
oopDesc* o = obj; |
1374 | 58 |
#endif // CHECK_UNHANDLED_OOPS |
24106
dae9277bdf2a
8040722: G1: Clean up usages of heap_region_containing
brutisso
parents:
11586
diff
changeset
|
59 |
assert((intptr_t)o % MinObjAlignmentInBytes == 0, "not oop aligned"); |
30173
13cf7580b000
8077413: Avoid use of Universe::heap() inside collectors
pliden
parents:
27251
diff
changeset
|
60 |
assert(_g1->is_in_reserved(obj), "must be in heap"); |
1374 | 61 |
#endif // ASSERT |
6247 | 62 |
|
63 |
assert(from == NULL || from->is_in_reserved(p), "p is not in from"); |
|
64 |
||
1374 | 65 |
HeapRegion* to = _g1->heap_region_containing(obj); |
24106
dae9277bdf2a
8040722: G1: Clean up usages of heap_region_containing
brutisso
parents:
11586
diff
changeset
|
66 |
if (from != to) { |
7385
eaca4b61b374
6978187: G1: assert(ParallelGCThreads> 1 || n_yielded() == _hrrs->occupied()) strikes again
johnc
parents:
6958
diff
changeset
|
67 |
assert(to->rem_set() != NULL, "Need per-region 'into' remsets."); |
eaca4b61b374
6978187: G1: assert(ParallelGCThreads> 1 || n_yielded() == _hrrs->occupied()) strikes again
johnc
parents:
6958
diff
changeset
|
68 |
to->rem_set()->add_reference(p, tid); |
1374 | 69 |
} |
70 |
} |
|
2152
99356e7f31b1
6760309: G1: update remembered sets during Full GCs
apetrusenko
parents:
2142
diff
changeset
|
71 |
|
6958 | 72 |
template <class T> |
73 |
inline void UpdateRSOopClosure::do_oop_work(T* p) { |
|
2152
99356e7f31b1
6760309: G1: update remembered sets during Full GCs
apetrusenko
parents:
2142
diff
changeset
|
74 |
assert(_from != NULL, "from region must be non-NULL"); |
99356e7f31b1
6760309: G1: update remembered sets during Full GCs
apetrusenko
parents:
2142
diff
changeset
|
75 |
_rs->par_write_ref(_from, p, _worker_i); |
99356e7f31b1
6760309: G1: update remembered sets during Full GCs
apetrusenko
parents:
2142
diff
changeset
|
76 |
} |
6247 | 77 |
|
30764 | 78 |
#endif // SHARE_VM_GC_G1_G1REMSET_INLINE_HPP |