author | tschatzl |
Wed, 25 Nov 2015 14:43:29 +0100 | |
changeset 34300 | 6075c1e0e913 |
parent 34269 | 7c558c120803 |
child 36572 | bdbf53032b6a |
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> |
26850
515ff48cf5f0
8036116: Fix thread-id types in G1 remembered set implementations
brutisso
parents:
26701
diff
changeset
|
38 |
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
|
39 |
oop obj = oopDesc::load_decode_heap_oop(p); |
24106
dae9277bdf2a
8040722: G1: Clean up usages of heap_region_containing
brutisso
parents:
11586
diff
changeset
|
40 |
if (obj == NULL) { |
dae9277bdf2a
8040722: G1: Clean up usages of heap_region_containing
brutisso
parents:
11586
diff
changeset
|
41 |
return; |
dae9277bdf2a
8040722: G1: Clean up usages of heap_region_containing
brutisso
parents:
11586
diff
changeset
|
42 |
} |
dae9277bdf2a
8040722: G1: Clean up usages of heap_region_containing
brutisso
parents:
11586
diff
changeset
|
43 |
|
1374 | 44 |
#ifdef ASSERT |
45 |
// can't do because of races |
|
46 |
// assert(obj == NULL || obj->is_oop(), "expected an oop"); |
|
47 |
||
48 |
// Do the safe subset of is_oop |
|
49 |
#ifdef CHECK_UNHANDLED_OOPS |
|
24106
dae9277bdf2a
8040722: G1: Clean up usages of heap_region_containing
brutisso
parents:
11586
diff
changeset
|
50 |
oopDesc* o = obj.obj(); |
1374 | 51 |
#else |
24106
dae9277bdf2a
8040722: G1: Clean up usages of heap_region_containing
brutisso
parents:
11586
diff
changeset
|
52 |
oopDesc* o = obj; |
1374 | 53 |
#endif // CHECK_UNHANDLED_OOPS |
24106
dae9277bdf2a
8040722: G1: Clean up usages of heap_region_containing
brutisso
parents:
11586
diff
changeset
|
54 |
assert((intptr_t)o % MinObjAlignmentInBytes == 0, "not oop aligned"); |
30173
13cf7580b000
8077413: Avoid use of Universe::heap() inside collectors
pliden
parents:
27251
diff
changeset
|
55 |
assert(_g1->is_in_reserved(obj), "must be in heap"); |
1374 | 56 |
#endif // ASSERT |
6247 | 57 |
|
33786
ac8da6513351
8139867: Change how startsHumongous and continuesHumongous regions work in G1.
david
parents:
30764
diff
changeset
|
58 |
assert(from->is_in_reserved(p) || from->is_starts_humongous(), "p is not in from"); |
6247 | 59 |
|
1374 | 60 |
HeapRegion* to = _g1->heap_region_containing(obj); |
24106
dae9277bdf2a
8040722: G1: Clean up usages of heap_region_containing
brutisso
parents:
11586
diff
changeset
|
61 |
if (from != to) { |
7385
eaca4b61b374
6978187: G1: assert(ParallelGCThreads> 1 || n_yielded() == _hrrs->occupied()) strikes again
johnc
parents:
6958
diff
changeset
|
62 |
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
|
63 |
to->rem_set()->add_reference(p, tid); |
1374 | 64 |
} |
65 |
} |
|
2152
99356e7f31b1
6760309: G1: update remembered sets during Full GCs
apetrusenko
parents:
2142
diff
changeset
|
66 |
|
6958 | 67 |
template <class T> |
68 |
inline void UpdateRSOopClosure::do_oop_work(T* p) { |
|
2152
99356e7f31b1
6760309: G1: update remembered sets during Full GCs
apetrusenko
parents:
2142
diff
changeset
|
69 |
assert(_from != NULL, "from region must be non-NULL"); |
99356e7f31b1
6760309: G1: update remembered sets during Full GCs
apetrusenko
parents:
2142
diff
changeset
|
70 |
_rs->par_write_ref(_from, p, _worker_i); |
99356e7f31b1
6760309: G1: update remembered sets during Full GCs
apetrusenko
parents:
2142
diff
changeset
|
71 |
} |
6247 | 72 |
|
30764 | 73 |
#endif // SHARE_VM_GC_G1_G1REMSET_INLINE_HPP |