Skip to content

Commit e3035ba

Browse files
fiskxmas92
andcommittedJan 4, 2023
8299079: Better interface nmethod oop accesses
Co-authored-by: Axel Boldt-Christmas <aboldtch@openjdk.org> Reviewed-by: kvn, dholmes
1 parent 41900b5 commit e3035ba

File tree

3 files changed

+25
-17
lines changed

3 files changed

+25
-17
lines changed
 

‎src/hotspot/share/code/nmethod.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -1462,14 +1462,14 @@ oop nmethod::oop_at(int index) const {
14621462
if (index == 0) {
14631463
return NULL;
14641464
}
1465-
return NativeAccess<AS_NO_KEEPALIVE>::oop_load(oop_addr_at(index));
1465+
return NMethodAccess<AS_NO_KEEPALIVE>::oop_load(oop_addr_at(index));
14661466
}
14671467

14681468
oop nmethod::oop_at_phantom(int index) const {
14691469
if (index == 0) {
14701470
return NULL;
14711471
}
1472-
return NativeAccess<ON_PHANTOM_OOP_REF>::oop_load(oop_addr_at(index));
1472+
return NMethodAccess<ON_PHANTOM_OOP_REF>::oop_load(oop_addr_at(index));
14731473
}
14741474

14751475
//

‎src/hotspot/share/oops/access.hpp

+9-3
Original file line numberDiff line numberDiff line change
@@ -271,20 +271,25 @@ class Access: public AllStatic {
271271
};
272272

273273
// Helper for performing raw accesses (knows only of memory ordering
274-
// atomicity decorators as well as compressed oops)
274+
// atomicity decorators as well as compressed oops).
275275
template <DecoratorSet decorators = DECORATORS_NONE>
276276
class RawAccess: public Access<AS_RAW | decorators> {};
277277

278278
// Helper for performing normal accesses on the heap. These accesses
279-
// may resolve an accessor on a GC barrier set
279+
// may resolve an accessor on a GC barrier set.
280280
template <DecoratorSet decorators = DECORATORS_NONE>
281281
class HeapAccess: public Access<IN_HEAP | decorators> {};
282282

283283
// Helper for performing normal accesses in roots. These accesses
284-
// may resolve an accessor on a GC barrier set
284+
// may resolve an accessor on a GC barrier set.
285285
template <DecoratorSet decorators = DECORATORS_NONE>
286286
class NativeAccess: public Access<IN_NATIVE | decorators> {};
287287

288+
// Helper for performing accesses in nmethods. These accesses
289+
// may resolve an accessor on a GC barrier set.
290+
template <DecoratorSet decorators = DECORATORS_NONE>
291+
class NMethodAccess: public Access<IN_NMETHOD | decorators> {};
292+
288293
// Helper for array access.
289294
template <DecoratorSet decorators = DECORATORS_NONE>
290295
class ArrayAccess: public HeapAccess<IS_ARRAY | decorators> {
@@ -362,6 +367,7 @@ void Access<decorators>::verify_decorators() {
362367
const DecoratorSet location_decorators = decorators & IN_DECORATOR_MASK;
363368
STATIC_ASSERT(location_decorators == 0 || ( // make sure location decorators are disjoint if set
364369
(location_decorators ^ IN_NATIVE) == 0 ||
370+
(location_decorators ^ IN_NMETHOD) == 0 ||
365371
(location_decorators ^ IN_HEAP) == 0
366372
));
367373
}

‎src/hotspot/share/oops/accessDecorators.hpp

+14-12
Original file line numberDiff line numberDiff line change
@@ -172,19 +172,21 @@ const DecoratorSet ON_DECORATOR_MASK = ON_STRONG_OOP_REF | ON_WEAK_OOP_REF |
172172
// * IN_HEAP: The access is performed in the heap. Many barriers such as card marking will
173173
// be omitted if this decorator is not set.
174174
// * IN_NATIVE: The access is performed in an off-heap data structure.
175+
// * IN_NMETHOD: The access is performed inside of an nmethod.
175176
const DecoratorSet IN_HEAP = UCONST64(1) << 18;
176177
const DecoratorSet IN_NATIVE = UCONST64(1) << 19;
177-
const DecoratorSet IN_DECORATOR_MASK = IN_HEAP | IN_NATIVE;
178+
const DecoratorSet IN_NMETHOD = UCONST64(1) << 20;
179+
const DecoratorSet IN_DECORATOR_MASK = IN_HEAP | IN_NATIVE | IN_NMETHOD;
178180

179181
// == Boolean Flag Decorators ==
180182
// * IS_ARRAY: The access is performed on a heap allocated array. This is sometimes a special case
181183
// for some GCs.
182184
// * IS_DEST_UNINITIALIZED: This property can be important to e.g. SATB barriers by
183185
// marking that the previous value is uninitialized nonsense rather than a real value.
184186
// * IS_NOT_NULL: This property can make certain barriers faster such as compressing oops.
185-
const DecoratorSet IS_ARRAY = UCONST64(1) << 20;
186-
const DecoratorSet IS_DEST_UNINITIALIZED = UCONST64(1) << 21;
187-
const DecoratorSet IS_NOT_NULL = UCONST64(1) << 22;
187+
const DecoratorSet IS_ARRAY = UCONST64(1) << 21;
188+
const DecoratorSet IS_DEST_UNINITIALIZED = UCONST64(1) << 22;
189+
const DecoratorSet IS_NOT_NULL = UCONST64(1) << 23;
188190

189191
// == Arraycopy Decorators ==
190192
// * ARRAYCOPY_CHECKCAST: This property means that the class of the objects in source
@@ -196,11 +198,11 @@ const DecoratorSet IS_NOT_NULL = UCONST64(1) << 22;
196198
// * ARRAYCOPY_ARRAYOF: The copy is in the arrayof form.
197199
// * ARRAYCOPY_ATOMIC: The accesses have to be atomic over the size of its elements.
198200
// * ARRAYCOPY_ALIGNED: The accesses have to be aligned on a HeapWord.
199-
const DecoratorSet ARRAYCOPY_CHECKCAST = UCONST64(1) << 23;
200-
const DecoratorSet ARRAYCOPY_DISJOINT = UCONST64(1) << 24;
201-
const DecoratorSet ARRAYCOPY_ARRAYOF = UCONST64(1) << 25;
202-
const DecoratorSet ARRAYCOPY_ATOMIC = UCONST64(1) << 26;
203-
const DecoratorSet ARRAYCOPY_ALIGNED = UCONST64(1) << 27;
201+
const DecoratorSet ARRAYCOPY_CHECKCAST = UCONST64(1) << 24;
202+
const DecoratorSet ARRAYCOPY_DISJOINT = UCONST64(1) << 25;
203+
const DecoratorSet ARRAYCOPY_ARRAYOF = UCONST64(1) << 26;
204+
const DecoratorSet ARRAYCOPY_ATOMIC = UCONST64(1) << 27;
205+
const DecoratorSet ARRAYCOPY_ALIGNED = UCONST64(1) << 28;
204206
const DecoratorSet ARRAYCOPY_DECORATOR_MASK = ARRAYCOPY_CHECKCAST | ARRAYCOPY_DISJOINT |
205207
ARRAYCOPY_DISJOINT | ARRAYCOPY_ARRAYOF |
206208
ARRAYCOPY_ATOMIC | ARRAYCOPY_ALIGNED;
@@ -209,11 +211,11 @@ const DecoratorSet ARRAYCOPY_DECORATOR_MASK = ARRAYCOPY_CHECKCAST | ARRAYC
209211
// * ACCESS_READ: Indicate that the resolved object is accessed read-only. This allows the GC
210212
// backend to use weaker and more efficient barriers.
211213
// * ACCESS_WRITE: Indicate that the resolved object is used for write access.
212-
const DecoratorSet ACCESS_READ = UCONST64(1) << 28;
213-
const DecoratorSet ACCESS_WRITE = UCONST64(1) << 29;
214+
const DecoratorSet ACCESS_READ = UCONST64(1) << 29;
215+
const DecoratorSet ACCESS_WRITE = UCONST64(1) << 30;
214216

215217
// Keep track of the last decorator.
216-
const DecoratorSet DECORATOR_LAST = UCONST64(1) << 29;
218+
const DecoratorSet DECORATOR_LAST = UCONST64(1) << 30;
217219

218220
namespace AccessInternal {
219221
// This class adds implied decorators that follow according to decorator rules.

0 commit comments

Comments
 (0)
Please sign in to comment.