@@ -172,19 +172,21 @@ const DecoratorSet ON_DECORATOR_MASK = ON_STRONG_OOP_REF | ON_WEAK_OOP_REF |
172
172
// * IN_HEAP: The access is performed in the heap. Many barriers such as card marking will
173
173
// be omitted if this decorator is not set.
174
174
// * IN_NATIVE: The access is performed in an off-heap data structure.
175
+ // * IN_NMETHOD: The access is performed inside of an nmethod.
175
176
const DecoratorSet IN_HEAP = UCONST64(1 ) << 18 ;
176
177
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;
178
180
179
181
// == Boolean Flag Decorators ==
180
182
// * IS_ARRAY: The access is performed on a heap allocated array. This is sometimes a special case
181
183
// for some GCs.
182
184
// * IS_DEST_UNINITIALIZED: This property can be important to e.g. SATB barriers by
183
185
// marking that the previous value is uninitialized nonsense rather than a real value.
184
186
// * 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 ;
188
190
189
191
// == Arraycopy Decorators ==
190
192
// * 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;
196
198
// * ARRAYCOPY_ARRAYOF: The copy is in the arrayof form.
197
199
// * ARRAYCOPY_ATOMIC: The accesses have to be atomic over the size of its elements.
198
200
// * 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 ;
204
206
const DecoratorSet ARRAYCOPY_DECORATOR_MASK = ARRAYCOPY_CHECKCAST | ARRAYCOPY_DISJOINT |
205
207
ARRAYCOPY_DISJOINT | ARRAYCOPY_ARRAYOF |
206
208
ARRAYCOPY_ATOMIC | ARRAYCOPY_ALIGNED;
@@ -209,11 +211,11 @@ const DecoratorSet ARRAYCOPY_DECORATOR_MASK = ARRAYCOPY_CHECKCAST | ARRAYC
209
211
// * ACCESS_READ: Indicate that the resolved object is accessed read-only. This allows the GC
210
212
// backend to use weaker and more efficient barriers.
211
213
// * 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 ;
214
216
215
217
// Keep track of the last decorator.
216
- const DecoratorSet DECORATOR_LAST = UCONST64(1 ) << 29 ;
218
+ const DecoratorSet DECORATOR_LAST = UCONST64(1 ) << 30 ;
217
219
218
220
namespace AccessInternal {
219
221
// This class adds implied decorators that follow according to decorator rules.
0 commit comments