author | ddmitriev |
Mon, 07 Mar 2016 10:36:50 +0300 | |
changeset 36572 | bdbf53032b6a |
parent 35877 | a2a62511d0f8 |
child 37480 | 291ee208fb72 |
permissions | -rw-r--r-- |
1 | 1 |
/* |
35498
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
2 |
* Copyright (c) 1997, 2016, Oracle and/or its affiliates. All rights reserved. |
1 | 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:
3262
diff
changeset
|
19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
3262
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:
3262
diff
changeset
|
21 |
* questions. |
1 | 22 |
* |
23 |
*/ |
|
24 |
||
7397 | 25 |
#ifndef SHARE_VM_OOPS_OOP_INLINE_HPP |
26 |
#define SHARE_VM_OOPS_OOP_INLINE_HPP |
|
27 |
||
30764 | 28 |
#include "gc/shared/ageTable.hpp" |
29 |
#include "gc/shared/barrierSet.inline.hpp" |
|
30 |
#include "gc/shared/cardTableModRefBS.hpp" |
|
31 |
#include "gc/shared/collectedHeap.inline.hpp" |
|
32 |
#include "gc/shared/genCollectedHeap.hpp" |
|
33 |
#include "gc/shared/generation.hpp" |
|
7397 | 34 |
#include "oops/arrayKlass.hpp" |
35 |
#include "oops/arrayOop.hpp" |
|
19319
0ad35be0733a
8003424: Enable Class Data Sharing for CompressedOops
hseigel
parents:
15484
diff
changeset
|
36 |
#include "oops/klass.inline.hpp" |
7397 | 37 |
#include "oops/markOop.inline.hpp" |
38 |
#include "oops/oop.hpp" |
|
24351
61b33cc6d3cf
8042195: Introduce umbrella header orderAccess.inline.hpp.
goetz
parents:
22908
diff
changeset
|
39 |
#include "runtime/atomic.inline.hpp" |
61b33cc6d3cf
8042195: Introduce umbrella header orderAccess.inline.hpp.
goetz
parents:
22908
diff
changeset
|
40 |
#include "runtime/orderAccess.inline.hpp" |
7397 | 41 |
#include "runtime/os.hpp" |
15482
470d0b0c09f1
8005915: Unify SERIALGC and INCLUDE_ALTERNATE_GCS
jprovino
parents:
13969
diff
changeset
|
42 |
#include "utilities/macros.hpp" |
7397 | 43 |
|
35498
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
44 |
inline void update_barrier_set(void* p, oop v, bool release = false) { |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
45 |
assert(oopDesc::bs() != NULL, "Uninitialized bs in oop!"); |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
46 |
oopDesc::bs()->write_ref_field(p, v, release); |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
47 |
} |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
48 |
|
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
49 |
template <class T> inline void update_barrier_set_pre(T* p, oop v) { |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
50 |
oopDesc::bs()->write_ref_field_pre(p, v); |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
51 |
} |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
52 |
|
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
53 |
template <class T> void oop_store(T* p, oop v) { |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
54 |
if (always_do_update_barrier) { |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
55 |
oop_store((volatile T*)p, v); |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
56 |
} else { |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
57 |
update_barrier_set_pre(p, v); |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
58 |
oopDesc::encode_store_heap_oop(p, v); |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
59 |
// always_do_update_barrier == false => |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
60 |
// Either we are at a safepoint (in GC) or CMS is not used. In both |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
61 |
// cases it's unnecessary to mark the card as dirty with release sematics. |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
62 |
update_barrier_set((void*)p, v, false /* release */); // cast away type |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
63 |
} |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
64 |
} |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
65 |
|
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
66 |
template <class T> void oop_store(volatile T* p, oop v) { |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
67 |
update_barrier_set_pre((T*)p, v); // cast away volatile |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
68 |
// Used by release_obj_field_put, so use release_store_ptr. |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
69 |
oopDesc::release_encode_store_heap_oop(p, v); |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
70 |
// When using CMS we must mark the card corresponding to p as dirty |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
71 |
// with release sematics to prevent that CMS sees the dirty card but |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
72 |
// not the new value v at p due to reordering of the two |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
73 |
// stores. Note that CMS has a concurrent precleaning phase, where |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
74 |
// it reads the card table while the Java threads are running. |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
75 |
update_barrier_set((void*)p, v, true /* release */); // cast away type |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
76 |
} |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
77 |
|
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
78 |
// Should replace *addr = oop assignments where addr type depends on UseCompressedOops |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
79 |
// (without having to remember the function name this calls). |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
80 |
inline void oop_store_raw(HeapWord* addr, oop value) { |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
81 |
if (UseCompressedOops) { |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
82 |
oopDesc::encode_store_heap_oop((narrowOop*)addr, value); |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
83 |
} else { |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
84 |
oopDesc::encode_store_heap_oop((oop*)addr, value); |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
85 |
} |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
86 |
} |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
87 |
|
1 | 88 |
// Implementation of all inlined member functions defined in oop.hpp |
89 |
// We need a separate file to avoid circular references |
|
90 |
||
35498
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
91 |
void oopDesc::release_set_mark(markOop m) { |
1 | 92 |
OrderAccess::release_store_ptr(&_mark, m); |
93 |
} |
|
94 |
||
35498
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
95 |
markOop oopDesc::cas_set_mark(markOop new_mark, markOop old_mark) { |
1 | 96 |
return (markOop) Atomic::cmpxchg_ptr(new_mark, &_mark, old_mark); |
97 |
} |
|
98 |
||
35498
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
99 |
void oopDesc::init_mark() { |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
100 |
set_mark(markOopDesc::prototype_for_object(this)); |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
101 |
} |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
102 |
|
35862
411842d0c882
8146395: Add inline qualifier in oop.hpp and fix inlining in gc files
goetz
parents:
35498
diff
changeset
|
103 |
Klass* oopDesc::klass() const { |
19979
ebe1dbb6e1aa
8015107: NPG: Use consistent naming for metaspace concepts
ehelin
parents:
19319
diff
changeset
|
104 |
if (UseCompressedClassPointers) { |
19319
0ad35be0733a
8003424: Enable Class Data Sharing for CompressedOops
hseigel
parents:
15484
diff
changeset
|
105 |
return Klass::decode_klass_not_null(_metadata._compressed_klass); |
593
803947e176bd
6696264: assert("narrow oop can never be zero") for GCBasher & ParNewGC
coleenp
parents:
382
diff
changeset
|
106 |
} else { |
803947e176bd
6696264: assert("narrow oop can never be zero") for GCBasher & ParNewGC
coleenp
parents:
382
diff
changeset
|
107 |
return _metadata._klass; |
803947e176bd
6696264: assert("narrow oop can never be zero") for GCBasher & ParNewGC
coleenp
parents:
382
diff
changeset
|
108 |
} |
803947e176bd
6696264: assert("narrow oop can never be zero") for GCBasher & ParNewGC
coleenp
parents:
382
diff
changeset
|
109 |
} |
803947e176bd
6696264: assert("narrow oop can never be zero") for GCBasher & ParNewGC
coleenp
parents:
382
diff
changeset
|
110 |
|
35498
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
111 |
Klass* oopDesc::klass_or_null() const volatile { |
593
803947e176bd
6696264: assert("narrow oop can never be zero") for GCBasher & ParNewGC
coleenp
parents:
382
diff
changeset
|
112 |
// can be NULL in CMS |
19979
ebe1dbb6e1aa
8015107: NPG: Use consistent naming for metaspace concepts
ehelin
parents:
19319
diff
changeset
|
113 |
if (UseCompressedClassPointers) { |
19319
0ad35be0733a
8003424: Enable Class Data Sharing for CompressedOops
hseigel
parents:
15484
diff
changeset
|
114 |
return Klass::decode_klass(_metadata._compressed_klass); |
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
115 |
} else { |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
116 |
return _metadata._klass; |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
117 |
} |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
118 |
} |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
119 |
|
35498
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
120 |
Klass** oopDesc::klass_addr() { |
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
121 |
// Only used internally and with CMS and will not work with |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
122 |
// UseCompressedOops |
19979
ebe1dbb6e1aa
8015107: NPG: Use consistent naming for metaspace concepts
ehelin
parents:
19319
diff
changeset
|
123 |
assert(!UseCompressedClassPointers, "only supported with uncompressed klass pointers"); |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
10540
diff
changeset
|
124 |
return (Klass**) &_metadata._klass; |
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
125 |
} |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
126 |
|
35498
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
127 |
narrowKlass* oopDesc::compressed_klass_addr() { |
19979
ebe1dbb6e1aa
8015107: NPG: Use consistent naming for metaspace concepts
ehelin
parents:
19319
diff
changeset
|
128 |
assert(UseCompressedClassPointers, "only called by compressed klass pointers"); |
19319
0ad35be0733a
8003424: Enable Class Data Sharing for CompressedOops
hseigel
parents:
15484
diff
changeset
|
129 |
return &_metadata._compressed_klass; |
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
130 |
} |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
131 |
|
35862
411842d0c882
8146395: Add inline qualifier in oop.hpp and fix inlining in gc files
goetz
parents:
35498
diff
changeset
|
132 |
void oopDesc::set_klass(Klass* k) { |
1 | 133 |
// since klasses are promoted no store check is needed |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
10540
diff
changeset
|
134 |
assert(Universe::is_bootstrapping() || k != NULL, "must be a real Klass*"); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
10540
diff
changeset
|
135 |
assert(Universe::is_bootstrapping() || k->is_klass(), "not a Klass*"); |
19979
ebe1dbb6e1aa
8015107: NPG: Use consistent naming for metaspace concepts
ehelin
parents:
19319
diff
changeset
|
136 |
if (UseCompressedClassPointers) { |
19319
0ad35be0733a
8003424: Enable Class Data Sharing for CompressedOops
hseigel
parents:
15484
diff
changeset
|
137 |
*compressed_klass_addr() = Klass::encode_klass_not_null(k); |
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
138 |
} else { |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
10540
diff
changeset
|
139 |
*klass_addr() = k; |
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
140 |
} |
1 | 141 |
} |
142 |
||
35498
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
143 |
int oopDesc::klass_gap() const { |
593
803947e176bd
6696264: assert("narrow oop can never be zero") for GCBasher & ParNewGC
coleenp
parents:
382
diff
changeset
|
144 |
return *(int*)(((intptr_t)this) + klass_gap_offset_in_bytes()); |
803947e176bd
6696264: assert("narrow oop can never be zero") for GCBasher & ParNewGC
coleenp
parents:
382
diff
changeset
|
145 |
} |
803947e176bd
6696264: assert("narrow oop can never be zero") for GCBasher & ParNewGC
coleenp
parents:
382
diff
changeset
|
146 |
|
35862
411842d0c882
8146395: Add inline qualifier in oop.hpp and fix inlining in gc files
goetz
parents:
35498
diff
changeset
|
147 |
void oopDesc::set_klass_gap(int v) { |
19979
ebe1dbb6e1aa
8015107: NPG: Use consistent naming for metaspace concepts
ehelin
parents:
19319
diff
changeset
|
148 |
if (UseCompressedClassPointers) { |
593
803947e176bd
6696264: assert("narrow oop can never be zero") for GCBasher & ParNewGC
coleenp
parents:
382
diff
changeset
|
149 |
*(int*)(((intptr_t)this) + klass_gap_offset_in_bytes()) = v; |
803947e176bd
6696264: assert("narrow oop can never be zero") for GCBasher & ParNewGC
coleenp
parents:
382
diff
changeset
|
150 |
} |
803947e176bd
6696264: assert("narrow oop can never be zero") for GCBasher & ParNewGC
coleenp
parents:
382
diff
changeset
|
151 |
} |
803947e176bd
6696264: assert("narrow oop can never be zero") for GCBasher & ParNewGC
coleenp
parents:
382
diff
changeset
|
152 |
|
35498
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
153 |
void oopDesc::set_klass_to_list_ptr(oop k) { |
1 | 154 |
// This is only to be used during GC, for from-space objects, so no |
155 |
// barrier is needed. |
|
19979
ebe1dbb6e1aa
8015107: NPG: Use consistent naming for metaspace concepts
ehelin
parents:
19319
diff
changeset
|
156 |
if (UseCompressedClassPointers) { |
19319
0ad35be0733a
8003424: Enable Class Data Sharing for CompressedOops
hseigel
parents:
15484
diff
changeset
|
157 |
_metadata._compressed_klass = (narrowKlass)encode_heap_oop(k); // may be null (parnew overflow handling) |
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
158 |
} else { |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
10540
diff
changeset
|
159 |
_metadata._klass = (Klass*)(address)k; |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
10540
diff
changeset
|
160 |
} |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
10540
diff
changeset
|
161 |
} |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
10540
diff
changeset
|
162 |
|
35498
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
163 |
oop oopDesc::list_ptr_from_klass() { |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
10540
diff
changeset
|
164 |
// This is only to be used during GC, for from-space objects. |
19979
ebe1dbb6e1aa
8015107: NPG: Use consistent naming for metaspace concepts
ehelin
parents:
19319
diff
changeset
|
165 |
if (UseCompressedClassPointers) { |
19319
0ad35be0733a
8003424: Enable Class Data Sharing for CompressedOops
hseigel
parents:
15484
diff
changeset
|
166 |
return decode_heap_oop((narrowOop)_metadata._compressed_klass); |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
10540
diff
changeset
|
167 |
} else { |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
10540
diff
changeset
|
168 |
// Special case for GC |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
10540
diff
changeset
|
169 |
return (oop)(address)_metadata._klass; |
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
170 |
} |
1 | 171 |
} |
172 |
||
35498
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
173 |
bool oopDesc::is_a(Klass* k) const { |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
174 |
return klass()->is_subtype_of(k); |
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
175 |
} |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
176 |
|
35862
411842d0c882
8146395: Add inline qualifier in oop.hpp and fix inlining in gc files
goetz
parents:
35498
diff
changeset
|
177 |
int oopDesc::size() { |
35498
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
178 |
return size_given_klass(klass()); |
10540
92d59dba2407
7085860: JSR 292: implement CallSite.setTargetNormal and setTargetVolatile as native methods
twisti
parents:
8725
diff
changeset
|
179 |
} |
1 | 180 |
|
35498
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
181 |
int oopDesc::size_given_klass(Klass* klass) { |
1 | 182 |
int lh = klass->layout_helper(); |
8725
8c1e3dd5fe1b
7017732: move static fields into Class to prepare for perm gen removal
never
parents:
8107
diff
changeset
|
183 |
int s; |
1 | 184 |
|
185 |
// lh is now a value computed at class initialization that may hint |
|
186 |
// at the size. For instances, this is positive and equal to the |
|
187 |
// size. For arrays, this is negative and provides log2 of the |
|
188 |
// array element size. For other oops, it is zero and thus requires |
|
189 |
// a virtual call. |
|
190 |
// |
|
191 |
// We go to all this trouble because the size computation is at the |
|
192 |
// heart of phase 2 of mark-compaction, and called for every object, |
|
193 |
// alive or dead. So the speed here is equal in importance to the |
|
194 |
// speed of allocation. |
|
195 |
||
8725
8c1e3dd5fe1b
7017732: move static fields into Class to prepare for perm gen removal
never
parents:
8107
diff
changeset
|
196 |
if (lh > Klass::_lh_neutral_value) { |
8c1e3dd5fe1b
7017732: move static fields into Class to prepare for perm gen removal
never
parents:
8107
diff
changeset
|
197 |
if (!Klass::layout_helper_needs_slow_path(lh)) { |
8c1e3dd5fe1b
7017732: move static fields into Class to prepare for perm gen removal
never
parents:
8107
diff
changeset
|
198 |
s = lh >> LogHeapWordSize; // deliver size scaled by wordSize |
8c1e3dd5fe1b
7017732: move static fields into Class to prepare for perm gen removal
never
parents:
8107
diff
changeset
|
199 |
} else { |
8c1e3dd5fe1b
7017732: move static fields into Class to prepare for perm gen removal
never
parents:
8107
diff
changeset
|
200 |
s = klass->oop_size(this); |
8c1e3dd5fe1b
7017732: move static fields into Class to prepare for perm gen removal
never
parents:
8107
diff
changeset
|
201 |
} |
8c1e3dd5fe1b
7017732: move static fields into Class to prepare for perm gen removal
never
parents:
8107
diff
changeset
|
202 |
} else if (lh <= Klass::_lh_neutral_value) { |
1 | 203 |
// The most common case is instances; fall through if so. |
204 |
if (lh < Klass::_lh_neutral_value) { |
|
205 |
// Second most common case is arrays. We have to fetch the |
|
206 |
// length of the array, shift (multiply) it appropriately, |
|
207 |
// up to wordSize, add the header, and align to object size. |
|
208 |
size_t size_in_bytes; |
|
209 |
#ifdef _M_IA64 |
|
210 |
// The Windows Itanium Aug 2002 SDK hoists this load above |
|
211 |
// the check for s < 0. An oop at the end of the heap will |
|
212 |
// cause an access violation if this load is performed on a non |
|
213 |
// array oop. Making the reference volatile prohibits this. |
|
214 |
// (%%% please explain by what magic the length is actually fetched!) |
|
215 |
volatile int *array_length; |
|
216 |
array_length = (volatile int *)( (intptr_t)this + |
|
217 |
arrayOopDesc::length_offset_in_bytes() ); |
|
218 |
assert(array_length > 0, "Integer arithmetic problem somewhere"); |
|
219 |
// Put into size_t to avoid overflow. |
|
220 |
size_in_bytes = (size_t) array_length; |
|
221 |
size_in_bytes = size_in_bytes << Klass::layout_helper_log2_element_size(lh); |
|
222 |
#else |
|
223 |
size_t array_length = (size_t) ((arrayOop)this)->length(); |
|
224 |
size_in_bytes = array_length << Klass::layout_helper_log2_element_size(lh); |
|
225 |
#endif |
|
226 |
size_in_bytes += Klass::layout_helper_header_size(lh); |
|
227 |
||
228 |
// This code could be simplified, but by keeping array_header_in_bytes |
|
229 |
// in units of bytes and doing it this way we can round up just once, |
|
230 |
// skipping the intermediate round to HeapWordSize. Cast the result |
|
231 |
// of round_to to size_t to guarantee unsigned division == right shift. |
|
232 |
s = (int)((size_t)round_to(size_in_bytes, MinObjAlignmentInBytes) / |
|
233 |
HeapWordSize); |
|
234 |
||
27898
813ad96387b3
8065972: Remove support for ParNew+SerialOld and DefNew+CMS
brutisso
parents:
25715
diff
changeset
|
235 |
// ParNew (used by CMS), UseParallelGC and UseG1GC can change the length field |
1374
4c24294029a9
6711316: Open source the Garbage-First garbage collector
ysr
parents:
382
diff
changeset
|
236 |
// of an "old copy" of an object array in the young gen so it indicates |
4c24294029a9
6711316: Open source the Garbage-First garbage collector
ysr
parents:
382
diff
changeset
|
237 |
// the grey portion of an already copied array. This will cause the first |
4c24294029a9
6711316: Open source the Garbage-First garbage collector
ysr
parents:
382
diff
changeset
|
238 |
// disjunct below to fail if the two comparands are computed across such |
4c24294029a9
6711316: Open source the Garbage-First garbage collector
ysr
parents:
382
diff
changeset
|
239 |
// a concurrent change. |
27898
813ad96387b3
8065972: Remove support for ParNew+SerialOld and DefNew+CMS
brutisso
parents:
25715
diff
changeset
|
240 |
// ParNew also runs with promotion labs (which look like int |
1 | 241 |
// filler arrays) which are subject to changing their declared size |
242 |
// when finally retiring a PLAB; this also can cause the first disjunct |
|
243 |
// to fail for another worker thread that is concurrently walking the block |
|
244 |
// offset table. Both these invariant failures are benign for their |
|
245 |
// current uses; we relax the assertion checking to cover these two cases below: |
|
246 |
// is_objArray() && is_forwarded() // covers first scenario above |
|
247 |
// || is_typeArray() // covers second scenario above |
|
248 |
// If and when UseParallelGC uses the same obj array oop stealing/chunking |
|
1374
4c24294029a9
6711316: Open source the Garbage-First garbage collector
ysr
parents:
382
diff
changeset
|
249 |
// technique, we will need to suitably modify the assertion. |
1 | 250 |
assert((s == klass->oop_size(this)) || |
1374
4c24294029a9
6711316: Open source the Garbage-First garbage collector
ysr
parents:
382
diff
changeset
|
251 |
(Universe::heap()->is_gc_active() && |
27898
813ad96387b3
8065972: Remove support for ParNew+SerialOld and DefNew+CMS
brutisso
parents:
25715
diff
changeset
|
252 |
((is_typeArray() && UseConcMarkSweepGC) || |
813ad96387b3
8065972: Remove support for ParNew+SerialOld and DefNew+CMS
brutisso
parents:
25715
diff
changeset
|
253 |
(is_objArray() && is_forwarded() && (UseConcMarkSweepGC || UseParallelGC || UseG1GC)))), |
1 | 254 |
"wrong array object size"); |
255 |
} else { |
|
256 |
// Must be zero, so bite the bullet and take the virtual call. |
|
257 |
s = klass->oop_size(this); |
|
258 |
} |
|
259 |
} |
|
260 |
||
261 |
assert(s % MinObjAlignment == 0, "alignment check"); |
|
262 |
assert(s > 0, "Bad size calculated"); |
|
263 |
return s; |
|
264 |
} |
|
265 |
||
35498
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
266 |
bool oopDesc::is_instance() const { return klass()->is_instance_klass(); } |
35862
411842d0c882
8146395: Add inline qualifier in oop.hpp and fix inlining in gc files
goetz
parents:
35498
diff
changeset
|
267 |
bool oopDesc::is_array() const { return klass()->is_array_klass(); } |
35498
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
268 |
bool oopDesc::is_objArray() const { return klass()->is_objArray_klass(); } |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
269 |
bool oopDesc::is_typeArray() const { return klass()->is_typeArray_klass(); } |
1 | 270 |
|
35498
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
271 |
void* oopDesc::field_base(int offset) const { return (void*)&((char*)this)[offset]; } |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
272 |
|
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
273 |
jbyte* oopDesc::byte_field_addr(int offset) const { return (jbyte*) field_base(offset); } |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
274 |
jchar* oopDesc::char_field_addr(int offset) const { return (jchar*) field_base(offset); } |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
275 |
jboolean* oopDesc::bool_field_addr(int offset) const { return (jboolean*) field_base(offset); } |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
276 |
jint* oopDesc::int_field_addr(int offset) const { return (jint*) field_base(offset); } |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
277 |
jshort* oopDesc::short_field_addr(int offset) const { return (jshort*) field_base(offset); } |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
278 |
jlong* oopDesc::long_field_addr(int offset) const { return (jlong*) field_base(offset); } |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
279 |
jfloat* oopDesc::float_field_addr(int offset) const { return (jfloat*) field_base(offset); } |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
280 |
jdouble* oopDesc::double_field_addr(int offset) const { return (jdouble*) field_base(offset); } |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
281 |
Metadata** oopDesc::metadata_field_addr(int offset) const { return (Metadata**)field_base(offset); } |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
282 |
|
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
283 |
template <class T> T* oopDesc::obj_field_addr(int offset) const { return (T*) field_base(offset); } |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
284 |
address* oopDesc::address_field_addr(int offset) const { return (address*) field_base(offset); } |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
285 |
|
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
286 |
|
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
287 |
// Functions for getting and setting oops within instance objects. |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
288 |
// If the oops are compressed, the type passed to these overloaded functions |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
289 |
// is narrowOop. All functions are overloaded so they can be called by |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
290 |
// template functions without conditionals (the compiler instantiates via |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
291 |
// the right type and inlines the appopriate code). |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
292 |
|
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
293 |
// Algorithm for encoding and decoding oops from 64 bit pointers to 32 bit |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
294 |
// offset from the heap base. Saving the check for null can save instructions |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
295 |
// in inner GC loops so these are separated. |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
296 |
|
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
297 |
inline bool check_obj_alignment(oop obj) { |
36572
bdbf53032b6a
8149973: Optimize object alignment check in debug builds.
ddmitriev
parents:
35877
diff
changeset
|
298 |
return (cast_from_oop<intptr_t>(obj) & MinObjAlignmentInBytesMask) == 0; |
1894
5c343868d071
6692899: CMS: many vm.parallel_class_loading tests fail with assert "missing Printezis mark"
jmasa
parents:
1607
diff
changeset
|
299 |
} |
5c343868d071
6692899: CMS: many vm.parallel_class_loading tests fail with assert "missing Printezis mark"
jmasa
parents:
1607
diff
changeset
|
300 |
|
35862
411842d0c882
8146395: Add inline qualifier in oop.hpp and fix inlining in gc files
goetz
parents:
35498
diff
changeset
|
301 |
oop oopDesc::decode_heap_oop_not_null(narrowOop v) { |
35498
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
302 |
assert(!is_null(v), "narrow oop value can never be zero"); |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
303 |
address base = Universe::narrow_oop_base(); |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
304 |
int shift = Universe::narrow_oop_shift(); |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
305 |
oop result = (oop)(void*)((uintptr_t)base + ((uintptr_t)v << shift)); |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
306 |
assert(check_obj_alignment(result), "address not aligned: " INTPTR_FORMAT, p2i((void*) result)); |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
307 |
return result; |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
308 |
} |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
309 |
|
35862
411842d0c882
8146395: Add inline qualifier in oop.hpp and fix inlining in gc files
goetz
parents:
35498
diff
changeset
|
310 |
oop oopDesc::decode_heap_oop(narrowOop v) { |
35498
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
311 |
return is_null(v) ? (oop)NULL : decode_heap_oop_not_null(v); |
1 | 312 |
} |
313 |
||
35498
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
314 |
narrowOop oopDesc::encode_heap_oop_not_null(oop v) { |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
315 |
assert(!is_null(v), "oop value can never be zero"); |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
316 |
assert(check_obj_alignment(v), "Address not aligned"); |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
317 |
assert(Universe::heap()->is_in_reserved(v), "Address not in heap"); |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
318 |
address base = Universe::narrow_oop_base(); |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
319 |
int shift = Universe::narrow_oop_shift(); |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
320 |
uint64_t pd = (uint64_t)(pointer_delta((void*)v, (void*)base, 1)); |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
321 |
assert(OopEncodingHeapMax > pd, "change encoding max if new encoding"); |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
322 |
uint64_t result = pd >> shift; |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
323 |
assert((result & CONST64(0xffffffff00000000)) == 0, "narrow oop overflow"); |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
324 |
assert(decode_heap_oop(result) == v, "reversibility"); |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
325 |
return (narrowOop)result; |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
326 |
} |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
327 |
|
35862
411842d0c882
8146395: Add inline qualifier in oop.hpp and fix inlining in gc files
goetz
parents:
35498
diff
changeset
|
328 |
narrowOop oopDesc::encode_heap_oop(oop v) { |
35498
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
329 |
return (is_null(v)) ? (narrowOop)0 : encode_heap_oop_not_null(v); |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
330 |
} |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
331 |
|
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
332 |
// Load and decode an oop out of the Java heap into a wide oop. |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
333 |
oop oopDesc::load_decode_heap_oop_not_null(narrowOop* p) { |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
334 |
return decode_heap_oop_not_null(*p); |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
335 |
} |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
336 |
|
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
337 |
// Load and decode an oop out of the heap accepting null |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
338 |
oop oopDesc::load_decode_heap_oop(narrowOop* p) { |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
339 |
return decode_heap_oop(*p); |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
340 |
} |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
341 |
|
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
342 |
// Encode and store a heap oop. |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
343 |
void oopDesc::encode_store_heap_oop_not_null(narrowOop* p, oop v) { |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
344 |
*p = encode_heap_oop_not_null(v); |
1374
4c24294029a9
6711316: Open source the Garbage-First garbage collector
ysr
parents:
382
diff
changeset
|
345 |
} |
4c24294029a9
6711316: Open source the Garbage-First garbage collector
ysr
parents:
382
diff
changeset
|
346 |
|
35498
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
347 |
// Encode and store a heap oop allowing for null. |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
348 |
void oopDesc::encode_store_heap_oop(narrowOop* p, oop v) { |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
349 |
*p = encode_heap_oop(v); |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
350 |
} |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
351 |
|
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
352 |
// Store heap oop as is for volatile fields. |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
353 |
void oopDesc::release_store_heap_oop(volatile oop* p, oop v) { |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
354 |
OrderAccess::release_store_ptr(p, v); |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
355 |
} |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
356 |
void oopDesc::release_store_heap_oop(volatile narrowOop* p, narrowOop v) { |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
357 |
OrderAccess::release_store(p, v); |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
358 |
} |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
359 |
|
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
360 |
void oopDesc::release_encode_store_heap_oop_not_null(volatile narrowOop* p, oop v) { |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
361 |
// heap oop is not pointer sized. |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
362 |
OrderAccess::release_store(p, encode_heap_oop_not_null(v)); |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
363 |
} |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
364 |
void oopDesc::release_encode_store_heap_oop_not_null(volatile oop* p, oop v) { |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
365 |
OrderAccess::release_store_ptr(p, v); |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
366 |
} |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
367 |
|
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
368 |
void oopDesc::release_encode_store_heap_oop(volatile oop* p, oop v) { |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
369 |
OrderAccess::release_store_ptr(p, v); |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
370 |
} |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
371 |
void oopDesc::release_encode_store_heap_oop(volatile narrowOop* p, oop v) { |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
372 |
OrderAccess::release_store(p, encode_heap_oop(v)); |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
373 |
} |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
374 |
|
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
375 |
// These functions are only used to exchange oop fields in instances, |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
376 |
// not headers. |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
377 |
oop oopDesc::atomic_exchange_oop(oop exchange_value, volatile HeapWord *dest) { |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
378 |
if (UseCompressedOops) { |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
379 |
// encode exchange value from oop to T |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
380 |
narrowOop val = encode_heap_oop(exchange_value); |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
381 |
narrowOop old = (narrowOop)Atomic::xchg(val, (narrowOop*)dest); |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
382 |
// decode old from T to oop |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
383 |
return decode_heap_oop(old); |
1 | 384 |
} else { |
35498
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
385 |
return (oop)Atomic::xchg_ptr(exchange_value, (oop*)dest); |
1 | 386 |
} |
387 |
} |
|
388 |
||
35498
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
389 |
oop oopDesc::atomic_compare_exchange_oop(oop exchange_value, |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
390 |
volatile HeapWord *dest, |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
391 |
oop compare_value, |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
392 |
bool prebarrier) { |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
10540
diff
changeset
|
393 |
if (UseCompressedOops) { |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
10540
diff
changeset
|
394 |
if (prebarrier) { |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
10540
diff
changeset
|
395 |
update_barrier_set_pre((narrowOop*)dest, exchange_value); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
10540
diff
changeset
|
396 |
} |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
10540
diff
changeset
|
397 |
// encode exchange and compare value from oop to T |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
10540
diff
changeset
|
398 |
narrowOop val = encode_heap_oop(exchange_value); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
10540
diff
changeset
|
399 |
narrowOop cmp = encode_heap_oop(compare_value); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
10540
diff
changeset
|
400 |
|
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
10540
diff
changeset
|
401 |
narrowOop old = (narrowOop) Atomic::cmpxchg(val, (narrowOop*)dest, cmp); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
10540
diff
changeset
|
402 |
// decode old from T to oop |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
10540
diff
changeset
|
403 |
return decode_heap_oop(old); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
10540
diff
changeset
|
404 |
} else { |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
10540
diff
changeset
|
405 |
if (prebarrier) { |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
10540
diff
changeset
|
406 |
update_barrier_set_pre((oop*)dest, exchange_value); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
10540
diff
changeset
|
407 |
} |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
10540
diff
changeset
|
408 |
return (oop)Atomic::cmpxchg_ptr(exchange_value, (oop*)dest, compare_value); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
10540
diff
changeset
|
409 |
} |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
10540
diff
changeset
|
410 |
} |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
10540
diff
changeset
|
411 |
|
35498
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
412 |
// In order to put or get a field out of an instance, must first check |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
413 |
// if the field has been compressed and uncompress it. |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
414 |
oop oopDesc::obj_field(int offset) const { |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
415 |
return UseCompressedOops ? |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
416 |
load_decode_heap_oop(obj_field_addr<narrowOop>(offset)) : |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
417 |
load_decode_heap_oop(obj_field_addr<oop>(offset)); |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
418 |
} |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
419 |
|
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
420 |
void oopDesc::obj_field_put(int offset, oop value) { |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
421 |
UseCompressedOops ? oop_store(obj_field_addr<narrowOop>(offset), value) : |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
422 |
oop_store(obj_field_addr<oop>(offset), value); |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
423 |
} |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
424 |
|
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
425 |
void oopDesc::obj_field_put_raw(int offset, oop value) { |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
426 |
UseCompressedOops ? |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
427 |
encode_store_heap_oop(obj_field_addr<narrowOop>(offset), value) : |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
428 |
encode_store_heap_oop(obj_field_addr<oop>(offset), value); |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
429 |
} |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
430 |
void oopDesc::obj_field_put_volatile(int offset, oop value) { |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
431 |
OrderAccess::release(); |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
432 |
obj_field_put(offset, value); |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
433 |
OrderAccess::fence(); |
1 | 434 |
} |
435 |
||
35498
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
436 |
Metadata* oopDesc::metadata_field(int offset) const { return *metadata_field_addr(offset); } |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
437 |
void oopDesc::metadata_field_put(int offset, Metadata* value) { *metadata_field_addr(offset) = value; } |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
438 |
|
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
439 |
jbyte oopDesc::byte_field(int offset) const { return (jbyte) *byte_field_addr(offset); } |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
440 |
void oopDesc::byte_field_put(int offset, jbyte contents) { *byte_field_addr(offset) = (jint) contents; } |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
441 |
|
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
442 |
jchar oopDesc::char_field(int offset) const { return (jchar) *char_field_addr(offset); } |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
443 |
void oopDesc::char_field_put(int offset, jchar contents) { *char_field_addr(offset) = (jint) contents; } |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
444 |
|
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
445 |
jboolean oopDesc::bool_field(int offset) const { return (jboolean) *bool_field_addr(offset); } |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
446 |
void oopDesc::bool_field_put(int offset, jboolean contents) { *bool_field_addr(offset) = (jint) contents; } |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
447 |
|
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
448 |
jint oopDesc::int_field(int offset) const { return *int_field_addr(offset); } |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
449 |
void oopDesc::int_field_put(int offset, jint contents) { *int_field_addr(offset) = contents; } |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
450 |
|
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
451 |
jshort oopDesc::short_field(int offset) const { return (jshort) *short_field_addr(offset); } |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
452 |
void oopDesc::short_field_put(int offset, jshort contents) { *short_field_addr(offset) = (jint) contents;} |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
453 |
|
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
454 |
jlong oopDesc::long_field(int offset) const { return *long_field_addr(offset); } |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
455 |
void oopDesc::long_field_put(int offset, jlong contents) { *long_field_addr(offset) = contents; } |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
456 |
|
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
457 |
jfloat oopDesc::float_field(int offset) const { return *float_field_addr(offset); } |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
458 |
void oopDesc::float_field_put(int offset, jfloat contents) { *float_field_addr(offset) = contents; } |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
459 |
|
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
460 |
jdouble oopDesc::double_field(int offset) const { return *double_field_addr(offset); } |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
461 |
void oopDesc::double_field_put(int offset, jdouble contents) { *double_field_addr(offset) = contents; } |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
462 |
|
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
463 |
address oopDesc::address_field(int offset) const { return *address_field_addr(offset); } |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
464 |
void oopDesc::address_field_put(int offset, address contents) { *address_field_addr(offset) = contents; } |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
465 |
|
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
466 |
oop oopDesc::obj_field_acquire(int offset) const { |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
467 |
return UseCompressedOops ? |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
468 |
decode_heap_oop((narrowOop) |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
469 |
OrderAccess::load_acquire(obj_field_addr<narrowOop>(offset))) |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
470 |
: decode_heap_oop((oop) |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
471 |
OrderAccess::load_ptr_acquire(obj_field_addr<oop>(offset))); |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
472 |
} |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
473 |
void oopDesc::release_obj_field_put(int offset, oop value) { |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
474 |
UseCompressedOops ? |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
475 |
oop_store((volatile narrowOop*)obj_field_addr<narrowOop>(offset), value) : |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
476 |
oop_store((volatile oop*) obj_field_addr<oop>(offset), value); |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
477 |
} |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
478 |
|
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
479 |
jbyte oopDesc::byte_field_acquire(int offset) const { return OrderAccess::load_acquire(byte_field_addr(offset)); } |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
480 |
void oopDesc::release_byte_field_put(int offset, jbyte contents) { OrderAccess::release_store(byte_field_addr(offset), contents); } |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
481 |
|
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
482 |
jchar oopDesc::char_field_acquire(int offset) const { return OrderAccess::load_acquire(char_field_addr(offset)); } |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
483 |
void oopDesc::release_char_field_put(int offset, jchar contents) { OrderAccess::release_store(char_field_addr(offset), contents); } |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
484 |
|
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
485 |
jboolean oopDesc::bool_field_acquire(int offset) const { return OrderAccess::load_acquire(bool_field_addr(offset)); } |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
486 |
void oopDesc::release_bool_field_put(int offset, jboolean contents) { OrderAccess::release_store(bool_field_addr(offset), contents); } |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
487 |
|
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
488 |
jint oopDesc::int_field_acquire(int offset) const { return OrderAccess::load_acquire(int_field_addr(offset)); } |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
489 |
void oopDesc::release_int_field_put(int offset, jint contents) { OrderAccess::release_store(int_field_addr(offset), contents); } |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
490 |
|
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
491 |
jshort oopDesc::short_field_acquire(int offset) const { return (jshort)OrderAccess::load_acquire(short_field_addr(offset)); } |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
492 |
void oopDesc::release_short_field_put(int offset, jshort contents) { OrderAccess::release_store(short_field_addr(offset), contents); } |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
493 |
|
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
494 |
jlong oopDesc::long_field_acquire(int offset) const { return OrderAccess::load_acquire(long_field_addr(offset)); } |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
495 |
void oopDesc::release_long_field_put(int offset, jlong contents) { OrderAccess::release_store(long_field_addr(offset), contents); } |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
496 |
|
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
497 |
jfloat oopDesc::float_field_acquire(int offset) const { return OrderAccess::load_acquire(float_field_addr(offset)); } |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
498 |
void oopDesc::release_float_field_put(int offset, jfloat contents) { OrderAccess::release_store(float_field_addr(offset), contents); } |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
499 |
|
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
500 |
jdouble oopDesc::double_field_acquire(int offset) const { return OrderAccess::load_acquire(double_field_addr(offset)); } |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
501 |
void oopDesc::release_double_field_put(int offset, jdouble contents) { OrderAccess::release_store(double_field_addr(offset), contents); } |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
502 |
|
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
503 |
address oopDesc::address_field_acquire(int offset) const { return (address) OrderAccess::load_ptr_acquire(address_field_addr(offset)); } |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
504 |
void oopDesc::release_address_field_put(int offset, address contents) { OrderAccess::release_store_ptr(address_field_addr(offset), contents); } |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
505 |
|
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
506 |
bool oopDesc::is_locked() const { |
1 | 507 |
return mark()->is_locked(); |
508 |
} |
|
509 |
||
35498
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
510 |
bool oopDesc::is_unlocked() const { |
1 | 511 |
return mark()->is_unlocked(); |
512 |
} |
|
513 |
||
35498
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
514 |
bool oopDesc::has_bias_pattern() const { |
1 | 515 |
return mark()->has_bias_pattern(); |
516 |
} |
|
517 |
||
518 |
// used only for asserts |
|
35862
411842d0c882
8146395: Add inline qualifier in oop.hpp and fix inlining in gc files
goetz
parents:
35498
diff
changeset
|
519 |
bool oopDesc::is_oop(bool ignore_mark_word) const { |
1 | 520 |
oop obj = (oop) this; |
521 |
if (!check_obj_alignment(obj)) return false; |
|
522 |
if (!Universe::heap()->is_in_reserved(obj)) return false; |
|
523 |
// obj is aligned and accessible in heap |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
10540
diff
changeset
|
524 |
if (Universe::heap()->is_in_reserved(obj->klass_or_null())) return false; |
1 | 525 |
|
526 |
// Header verification: the mark is typically non-NULL. If we're |
|
527 |
// at a safepoint, it must not be null. |
|
528 |
// Outside of a safepoint, the header could be changing (for example, |
|
529 |
// another thread could be inflating a lock on this object). |
|
530 |
if (ignore_mark_word) { |
|
531 |
return true; |
|
532 |
} |
|
533 |
if (mark() != NULL) { |
|
534 |
return true; |
|
535 |
} |
|
536 |
return !SafepointSynchronize::is_at_safepoint(); |
|
537 |
} |
|
538 |
||
539 |
||
540 |
// used only for asserts |
|
35862
411842d0c882
8146395: Add inline qualifier in oop.hpp and fix inlining in gc files
goetz
parents:
35498
diff
changeset
|
541 |
bool oopDesc::is_oop_or_null(bool ignore_mark_word) const { |
1 | 542 |
return this == NULL ? true : is_oop(ignore_mark_word); |
543 |
} |
|
544 |
||
545 |
#ifndef PRODUCT |
|
546 |
// used only for asserts |
|
35498
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
547 |
bool oopDesc::is_unlocked_oop() const { |
1 | 548 |
if (!Universe::heap()->is_in_reserved(this)) return false; |
549 |
return mark()->is_unlocked(); |
|
550 |
} |
|
551 |
#endif // PRODUCT |
|
552 |
||
35498
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
553 |
// Used only for markSweep, scavenging |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
554 |
bool oopDesc::is_gc_marked() const { |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
555 |
return mark()->is_marked(); |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
556 |
} |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
557 |
|
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
558 |
bool oopDesc::is_scavengable() const { |
29081
c61eb4914428
8072911: Remove includes of oop.inline.hpp from .hpp files
stefank
parents:
27898
diff
changeset
|
559 |
return Universe::heap()->is_scavengable(this); |
c61eb4914428
8072911: Remove includes of oop.inline.hpp from .hpp files
stefank
parents:
27898
diff
changeset
|
560 |
} |
c61eb4914428
8072911: Remove includes of oop.inline.hpp from .hpp files
stefank
parents:
27898
diff
changeset
|
561 |
|
1 | 562 |
// Used by scavengers |
35498
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
563 |
bool oopDesc::is_forwarded() const { |
1 | 564 |
// The extra heap check is needed since the obj might be locked, in which case the |
565 |
// mark would point to a stack location and have the sentinel bit cleared |
|
566 |
return mark()->is_marked(); |
|
567 |
} |
|
568 |
||
569 |
// Used by scavengers |
|
35498
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
570 |
void oopDesc::forward_to(oop p) { |
5694
1e0532a6abff
6916623: Align object to 16 bytes to use Compressed Oops with java heap up to 64Gb
kvn
parents:
3262
diff
changeset
|
571 |
assert(check_obj_alignment(p), |
1e0532a6abff
6916623: Align object to 16 bytes to use Compressed Oops with java heap up to 64Gb
kvn
parents:
3262
diff
changeset
|
572 |
"forwarding to something not aligned"); |
1 | 573 |
assert(Universe::heap()->is_in_reserved(p), |
574 |
"forwarding to something not in heap"); |
|
575 |
markOop m = markOopDesc::encode_pointer_as_mark(p); |
|
576 |
assert(m->decode_pointer() == p, "encoding must be reversable"); |
|
577 |
set_mark(m); |
|
578 |
} |
|
579 |
||
580 |
// Used by parallel scavengers |
|
35498
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
581 |
bool oopDesc::cas_forward_to(oop p, markOop compare) { |
5694
1e0532a6abff
6916623: Align object to 16 bytes to use Compressed Oops with java heap up to 64Gb
kvn
parents:
3262
diff
changeset
|
582 |
assert(check_obj_alignment(p), |
1e0532a6abff
6916623: Align object to 16 bytes to use Compressed Oops with java heap up to 64Gb
kvn
parents:
3262
diff
changeset
|
583 |
"forwarding to something not aligned"); |
1 | 584 |
assert(Universe::heap()->is_in_reserved(p), |
585 |
"forwarding to something not in heap"); |
|
586 |
markOop m = markOopDesc::encode_pointer_as_mark(p); |
|
587 |
assert(m->decode_pointer() == p, "encoding must be reversable"); |
|
588 |
return cas_set_mark(m, compare) == compare; |
|
589 |
} |
|
590 |
||
29689
dc72789f83ae
8075249: Cleanup forward_to_atomic and ClaimedForwardPtr
stefank
parents:
29687
diff
changeset
|
591 |
#if INCLUDE_ALL_GCS |
35498
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
592 |
oop oopDesc::forward_to_atomic(oop p) { |
29689
dc72789f83ae
8075249: Cleanup forward_to_atomic and ClaimedForwardPtr
stefank
parents:
29687
diff
changeset
|
593 |
markOop oldMark = mark(); |
dc72789f83ae
8075249: Cleanup forward_to_atomic and ClaimedForwardPtr
stefank
parents:
29687
diff
changeset
|
594 |
markOop forwardPtrMark = markOopDesc::encode_pointer_as_mark(p); |
dc72789f83ae
8075249: Cleanup forward_to_atomic and ClaimedForwardPtr
stefank
parents:
29687
diff
changeset
|
595 |
markOop curMark; |
dc72789f83ae
8075249: Cleanup forward_to_atomic and ClaimedForwardPtr
stefank
parents:
29687
diff
changeset
|
596 |
|
dc72789f83ae
8075249: Cleanup forward_to_atomic and ClaimedForwardPtr
stefank
parents:
29687
diff
changeset
|
597 |
assert(forwardPtrMark->decode_pointer() == p, "encoding must be reversable"); |
dc72789f83ae
8075249: Cleanup forward_to_atomic and ClaimedForwardPtr
stefank
parents:
29687
diff
changeset
|
598 |
assert(sizeof(markOop) == sizeof(intptr_t), "CAS below requires this."); |
dc72789f83ae
8075249: Cleanup forward_to_atomic and ClaimedForwardPtr
stefank
parents:
29687
diff
changeset
|
599 |
|
dc72789f83ae
8075249: Cleanup forward_to_atomic and ClaimedForwardPtr
stefank
parents:
29687
diff
changeset
|
600 |
while (!oldMark->is_marked()) { |
dc72789f83ae
8075249: Cleanup forward_to_atomic and ClaimedForwardPtr
stefank
parents:
29687
diff
changeset
|
601 |
curMark = (markOop)Atomic::cmpxchg_ptr(forwardPtrMark, &_mark, oldMark); |
dc72789f83ae
8075249: Cleanup forward_to_atomic and ClaimedForwardPtr
stefank
parents:
29687
diff
changeset
|
602 |
assert(is_forwarded(), "object should have been forwarded"); |
dc72789f83ae
8075249: Cleanup forward_to_atomic and ClaimedForwardPtr
stefank
parents:
29687
diff
changeset
|
603 |
if (curMark == oldMark) { |
dc72789f83ae
8075249: Cleanup forward_to_atomic and ClaimedForwardPtr
stefank
parents:
29687
diff
changeset
|
604 |
return NULL; |
dc72789f83ae
8075249: Cleanup forward_to_atomic and ClaimedForwardPtr
stefank
parents:
29687
diff
changeset
|
605 |
} |
dc72789f83ae
8075249: Cleanup forward_to_atomic and ClaimedForwardPtr
stefank
parents:
29687
diff
changeset
|
606 |
// If the CAS was unsuccessful then curMark->is_marked() |
dc72789f83ae
8075249: Cleanup forward_to_atomic and ClaimedForwardPtr
stefank
parents:
29687
diff
changeset
|
607 |
// should return true as another thread has CAS'd in another |
dc72789f83ae
8075249: Cleanup forward_to_atomic and ClaimedForwardPtr
stefank
parents:
29687
diff
changeset
|
608 |
// forwarding pointer. |
dc72789f83ae
8075249: Cleanup forward_to_atomic and ClaimedForwardPtr
stefank
parents:
29687
diff
changeset
|
609 |
oldMark = curMark; |
dc72789f83ae
8075249: Cleanup forward_to_atomic and ClaimedForwardPtr
stefank
parents:
29687
diff
changeset
|
610 |
} |
dc72789f83ae
8075249: Cleanup forward_to_atomic and ClaimedForwardPtr
stefank
parents:
29687
diff
changeset
|
611 |
return forwardee(); |
dc72789f83ae
8075249: Cleanup forward_to_atomic and ClaimedForwardPtr
stefank
parents:
29687
diff
changeset
|
612 |
} |
dc72789f83ae
8075249: Cleanup forward_to_atomic and ClaimedForwardPtr
stefank
parents:
29687
diff
changeset
|
613 |
#endif |
dc72789f83ae
8075249: Cleanup forward_to_atomic and ClaimedForwardPtr
stefank
parents:
29687
diff
changeset
|
614 |
|
1 | 615 |
// Note that the forwardee is not the same thing as the displaced_mark. |
616 |
// The forwardee is used when copying during scavenge and mark-sweep. |
|
617 |
// It does need to clear the low two locking- and GC-related bits. |
|
35498
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
618 |
oop oopDesc::forwardee() const { |
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
619 |
return (oop) mark()->decode_pointer(); |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
620 |
} |
1 | 621 |
|
622 |
// The following method needs to be MT safe. |
|
35862
411842d0c882
8146395: Add inline qualifier in oop.hpp and fix inlining in gc files
goetz
parents:
35498
diff
changeset
|
623 |
uint oopDesc::age() const { |
1 | 624 |
assert(!is_forwarded(), "Attempt to read age from forwarded mark"); |
625 |
if (has_displaced_mark()) { |
|
626 |
return displaced_mark()->age(); |
|
627 |
} else { |
|
628 |
return mark()->age(); |
|
629 |
} |
|
630 |
} |
|
631 |
||
35498
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
632 |
void oopDesc::incr_age() { |
1 | 633 |
assert(!is_forwarded(), "Attempt to increment age of forwarded mark"); |
634 |
if (has_displaced_mark()) { |
|
635 |
set_displaced_mark(displaced_mark()->incr_age()); |
|
636 |
} else { |
|
637 |
set_mark(mark()->incr_age()); |
|
638 |
} |
|
639 |
} |
|
640 |
||
35498
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
641 |
int oopDesc::ms_adjust_pointers() { |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
642 |
debug_only(int check_size = size()); |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
643 |
int s = klass()->oop_ms_adjust_pointers(this); |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
644 |
assert(s == check_size, "should be the same"); |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
645 |
return s; |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
646 |
} |
1 | 647 |
|
35498
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
648 |
#if INCLUDE_ALL_GCS |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
649 |
void oopDesc::pc_follow_contents(ParCompactionManager* cm) { |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
650 |
klass()->oop_pc_follow_contents(this, cm); |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
651 |
} |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
652 |
|
35877
a2a62511d0f8
8146987: Improve Parallel GC Full GC by caching results of live_words_in_range()
tschatzl
parents:
35862
diff
changeset
|
653 |
void oopDesc::pc_update_contents(ParCompactionManager* cm) { |
35498
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
654 |
Klass* k = klass(); |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
655 |
if (!k->is_typeArray_klass()) { |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
656 |
// It might contain oops beyond the header, so take the virtual call. |
35877
a2a62511d0f8
8146987: Improve Parallel GC Full GC by caching results of live_words_in_range()
tschatzl
parents:
35862
diff
changeset
|
657 |
k->oop_pc_update_pointers(this, cm); |
35498
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
658 |
} |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
659 |
// Else skip it. The TypeArrayKlass in the header never needs scavenging. |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
660 |
} |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
661 |
|
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
662 |
void oopDesc::ps_push_contents(PSPromotionManager* pm) { |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
663 |
Klass* k = klass(); |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
664 |
if (!k->is_typeArray_klass()) { |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
665 |
// It might contain oops beyond the header, so take the virtual call. |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
666 |
k->oop_ps_push_contents(this, pm); |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
667 |
} |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
668 |
// Else skip it. The TypeArrayKlass in the header never needs scavenging. |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
669 |
} |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
670 |
#endif // INCLUDE_ALL_GCS |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
671 |
|
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
672 |
#define OOP_ITERATE_DEFN(OopClosureType, nv_suffix) \ |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
673 |
\ |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
674 |
void oopDesc::oop_iterate(OopClosureType* blk) { \ |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
675 |
klass()->oop_oop_iterate##nv_suffix(this, blk); \ |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
676 |
} \ |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
677 |
\ |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
678 |
void oopDesc::oop_iterate(OopClosureType* blk, MemRegion mr) { \ |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
679 |
klass()->oop_oop_iterate_bounded##nv_suffix(this, blk, mr); \ |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
680 |
} |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
681 |
|
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
682 |
#define OOP_ITERATE_SIZE_DEFN(OopClosureType, nv_suffix) \ |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
683 |
\ |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
684 |
int oopDesc::oop_iterate_size(OopClosureType* blk) { \ |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
685 |
Klass* k = klass(); \ |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
686 |
int size = size_given_klass(k); \ |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
687 |
k->oop_oop_iterate##nv_suffix(this, blk); \ |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
688 |
return size; \ |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
689 |
} \ |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
690 |
\ |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
691 |
int oopDesc::oop_iterate_size(OopClosureType* blk, MemRegion mr) { \ |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
692 |
Klass* k = klass(); \ |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
693 |
int size = size_given_klass(k); \ |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
694 |
k->oop_oop_iterate_bounded##nv_suffix(this, blk, mr); \ |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
695 |
return size; \ |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
696 |
} |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
697 |
|
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
698 |
int oopDesc::oop_iterate_no_header(OopClosure* blk) { |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
699 |
// The NoHeaderExtendedOopClosure wraps the OopClosure and proxies all |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
700 |
// the do_oop calls, but turns off all other features in ExtendedOopClosure. |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
701 |
NoHeaderExtendedOopClosure cl(blk); |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
702 |
return oop_iterate_size(&cl); |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
703 |
} |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
704 |
|
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
705 |
int oopDesc::oop_iterate_no_header(OopClosure* blk, MemRegion mr) { |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
706 |
NoHeaderExtendedOopClosure cl(blk); |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
707 |
return oop_iterate_size(&cl, mr); |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
708 |
} |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
709 |
|
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
710 |
#if INCLUDE_ALL_GCS |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
711 |
#define OOP_ITERATE_BACKWARDS_DEFN(OopClosureType, nv_suffix) \ |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
712 |
\ |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
713 |
inline void oopDesc::oop_iterate_backwards(OopClosureType* blk) { \ |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
714 |
klass()->oop_oop_iterate_backwards##nv_suffix(this, blk); \ |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
715 |
} |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
716 |
#else |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
717 |
#define OOP_ITERATE_BACKWARDS_DEFN(OopClosureType, nv_suffix) |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
718 |
#endif // INCLUDE_ALL_GCS |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
719 |
|
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
720 |
#define ALL_OOPDESC_OOP_ITERATE(OopClosureType, nv_suffix) \ |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
721 |
OOP_ITERATE_DEFN(OopClosureType, nv_suffix) \ |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
722 |
OOP_ITERATE_SIZE_DEFN(OopClosureType, nv_suffix) \ |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
723 |
OOP_ITERATE_BACKWARDS_DEFN(OopClosureType, nv_suffix) |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
724 |
|
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
725 |
ALL_OOP_OOP_ITERATE_CLOSURES_1(ALL_OOPDESC_OOP_ITERATE) |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
726 |
ALL_OOP_OOP_ITERATE_CLOSURES_2(ALL_OOPDESC_OOP_ITERATE) |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
727 |
|
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
728 |
intptr_t oopDesc::identity_hash() { |
1 | 729 |
// Fast case; if the object is unlocked and the hash value is set, no locking is needed |
730 |
// Note: The mark must be read into local variable to avoid concurrent updates. |
|
731 |
markOop mrk = mark(); |
|
732 |
if (mrk->is_unlocked() && !mrk->has_no_hash()) { |
|
733 |
return mrk->hash(); |
|
734 |
} else if (mrk->is_marked()) { |
|
735 |
return mrk->hash(); |
|
736 |
} else { |
|
737 |
return slow_identity_hash(); |
|
738 |
} |
|
739 |
} |
|
740 |
||
35498
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
741 |
bool oopDesc::has_displaced_mark() const { |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
742 |
return mark()->has_displaced_mark_helper(); |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
10540
diff
changeset
|
743 |
} |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
10540
diff
changeset
|
744 |
|
35498
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
745 |
markOop oopDesc::displaced_mark() const { |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
746 |
return mark()->displaced_mark_helper(); |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
10540
diff
changeset
|
747 |
} |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
10540
diff
changeset
|
748 |
|
35498
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
749 |
void oopDesc::set_displaced_mark(markOop m) { |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
750 |
mark()->set_displaced_mark_helper(m); |
1 | 751 |
} |
752 |
||
7397 | 753 |
#endif // SHARE_VM_OOPS_OOP_INLINE_HPP |