Skip to content

Commit 84d7ff6

Browse files
ashu-mehraadinn
authored andcommittedSep 21, 2022
8288129: Shenandoah: Skynet test crashed with iu + aggressive
Reviewed-by: eosterlund, rkennke
1 parent 07afa3f commit 84d7ff6

9 files changed

+33
-9
lines changed
 

‎src/hotspot/share/gc/shenandoah/mode/shenandoahIUMode.cpp

-3
Original file line numberDiff line numberDiff line change
@@ -51,9 +51,6 @@ void ShenandoahIUMode::initialize_flags() const {
5151
FLAG_SET_DEFAULT(ShenandoahSATBBarrier, false);
5252
}
5353

54-
// Disable Loom
55-
SHENANDOAH_ERGO_DISABLE_FLAG(VMContinuations);
56-
5754
SHENANDOAH_ERGO_ENABLE_FLAG(ExplicitGCInvokesConcurrent);
5855
SHENANDOAH_ERGO_ENABLE_FLAG(ShenandoahImplicitGCInvokesConcurrent);
5956

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ class Access: public AllStatic {
118118
template <DecoratorSet expected_mo_decorators>
119119
static void verify_heap_oop_decorators() {
120120
const DecoratorSet heap_oop_decorators = AS_DECORATOR_MASK | ON_DECORATOR_MASK |
121-
IN_HEAP | IS_ARRAY | IS_NOT_NULL;
121+
IN_HEAP | IS_ARRAY | IS_NOT_NULL | IS_DEST_UNINITIALIZED;
122122
verify_decorators<expected_mo_decorators | heap_oop_decorators>();
123123
}
124124

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

+4-1
Original file line numberDiff line numberDiff line change
@@ -147,12 +147,15 @@ class oopDesc {
147147
}
148148

149149
// Access to fields in a instanceOop through these methods.
150-
template <DecoratorSet decorator>
150+
template<DecoratorSet decorators>
151151
oop obj_field_access(int offset) const;
152152
oop obj_field(int offset) const;
153+
153154
void obj_field_put(int offset, oop value);
154155
void obj_field_put_raw(int offset, oop value);
155156
void obj_field_put_volatile(int offset, oop value);
157+
template<DecoratorSet decorators>
158+
void obj_field_put_access(int offset, oop value);
156159

157160
Metadata* metadata_field(int offset) const;
158161
void metadata_field_put(int offset, Metadata* value);

‎src/hotspot/share/oops/oop.inline.hpp

+2
Original file line numberDiff line numberDiff line change
@@ -207,6 +207,8 @@ inline oop oopDesc::obj_field_access(int offset) const { return Hea
207207
inline oop oopDesc::obj_field(int offset) const { return HeapAccess<>::oop_load_at(as_oop(), offset); }
208208

209209
inline void oopDesc::obj_field_put(int offset, oop value) { HeapAccess<>::oop_store_at(as_oop(), offset, value); }
210+
template <DecoratorSet decorators>
211+
inline void oopDesc::obj_field_put_access(int offset, oop value) { HeapAccess<decorators>::oop_store_at(as_oop(), offset, value); }
210212

211213
inline jbyte oopDesc::byte_field(int offset) const { return *field_addr<jbyte>(offset); }
212214
inline void oopDesc::byte_field_put(int offset, jbyte value) { *field_addr<jbyte>(offset) = value; }

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

+4
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,8 @@ class stackChunkOopDesc : public instanceOopDesc {
7171
inline bool is_parent_null() const;
7272
template<typename P>
7373
inline void set_parent_raw(oop value);
74+
template<DecoratorSet decorators>
75+
inline void set_parent_access(oop value);
7476

7577
inline int stack_size() const;
7678

@@ -96,6 +98,8 @@ class stackChunkOopDesc : public instanceOopDesc {
9698
inline void set_cont(oop value);
9799
template<typename P>
98100
inline void set_cont_raw(oop value);
101+
template<DecoratorSet decorators>
102+
inline void set_cont_access(oop value);
99103

100104
inline int bottom() const;
101105

‎src/hotspot/share/oops/stackChunkOop.inline.hpp

+6-2
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,8 @@ inline bool stackChunkOopDesc::is_parent_null() const { return jdk_inte
5252
inline void stackChunkOopDesc::set_parent(stackChunkOop value) { jdk_internal_vm_StackChunk::set_parent(this, value); }
5353
template<typename P>
5454
inline void stackChunkOopDesc::set_parent_raw(oop value) { jdk_internal_vm_StackChunk::set_parent_raw<P>(this, value); }
55+
template<DecoratorSet decorators>
56+
inline void stackChunkOopDesc::set_parent_access(oop value) { jdk_internal_vm_StackChunk::set_parent_access<decorators>(this, value); }
5557

5658
inline int stackChunkOopDesc::stack_size() const { return jdk_internal_vm_StackChunk::size(as_oop()); }
5759

@@ -90,9 +92,11 @@ inline oop stackChunkOopDesc::cont() const {
9092
obj = (oop)NativeAccess<>::oop_load(&obj);
9193
return obj;
9294
}
93-
inline void stackChunkOopDesc::set_cont(oop value) { jdk_internal_vm_StackChunk::set_cont(this, value); }
95+
inline void stackChunkOopDesc::set_cont(oop value) { jdk_internal_vm_StackChunk::set_cont(this, value); }
9496
template<typename P>
95-
inline void stackChunkOopDesc::set_cont_raw(oop value) { jdk_internal_vm_StackChunk::set_cont_raw<P>(this, value); }
97+
inline void stackChunkOopDesc::set_cont_raw(oop value) { jdk_internal_vm_StackChunk::set_cont_raw<P>(this, value); }
98+
template<DecoratorSet decorators>
99+
inline void stackChunkOopDesc::set_cont_access(oop value) { jdk_internal_vm_StackChunk::set_cont_access<decorators>(this, value); }
96100

97101
inline int stackChunkOopDesc::bottom() const { return stack_size() - argsize(); }
98102

‎src/hotspot/share/runtime/continuationFreezeThaw.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -1290,8 +1290,8 @@ stackChunkOop Freeze<ConfigT>::allocate_chunk(size_t stack_size) {
12901290
assert(chunk->is_gc_mode() == false, "");
12911291

12921292
// fields are uninitialized
1293-
chunk->set_parent_raw<typename ConfigT::OopT>(_cont.last_nonempty_chunk());
1294-
chunk->set_cont_raw<typename ConfigT::OopT>(_cont.continuation());
1293+
chunk->set_parent_access<IS_DEST_UNINITIALIZED>(_cont.last_nonempty_chunk());
1294+
chunk->set_cont_access<IS_DEST_UNINITIALIZED>(_cont.continuation());
12951295

12961296
assert(chunk->parent() == nullptr || chunk->parent()->is_stackChunk(), "");
12971297

‎src/hotspot/share/runtime/continuationJavaClasses.hpp

+4
Original file line numberDiff line numberDiff line change
@@ -109,6 +109,8 @@ class jdk_internal_vm_StackChunk: AllStatic {
109109
static inline bool is_parent_null(oop chunk); // bypasses barriers for a faster test
110110
template<typename P>
111111
static inline void set_parent_raw(oop chunk, oop value);
112+
template<DecoratorSet decorators>
113+
static inline void set_parent_access(oop chunk, oop value);
112114

113115
static inline int size(oop chunk);
114116
static inline void set_size(HeapWord* chunk, int value);
@@ -136,6 +138,8 @@ class jdk_internal_vm_StackChunk: AllStatic {
136138
static inline oop cont_raw(oop chunk);
137139
template<typename P>
138140
static inline void set_cont_raw(oop chunk, oop value);
141+
template<DecoratorSet decorators>
142+
static inline void set_cont_access(oop chunk, oop value);
139143
};
140144

141145
#endif // SHARE_RUNTIME_CONTINUATIONJAVACLASSES_HPP

‎src/hotspot/share/runtime/continuationJavaClasses.inline.hpp

+10
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,11 @@ inline void jdk_internal_vm_StackChunk::set_parent_raw(oop chunk, oop value) {
9797
RawAccess<>::oop_store(chunk->field_addr<P>(_parent_offset), value);
9898
}
9999

100+
template<DecoratorSet decorators>
101+
inline void jdk_internal_vm_StackChunk::set_parent_access(oop chunk, oop value) {
102+
chunk->obj_field_put_access<decorators>(_parent_offset, value);
103+
}
104+
100105
inline oop jdk_internal_vm_StackChunk::cont(oop chunk) {
101106
return chunk->obj_field(_cont_offset);
102107
}
@@ -115,6 +120,11 @@ inline void jdk_internal_vm_StackChunk::set_cont_raw(oop chunk, oop value) {
115120
RawAccess<>::oop_store(chunk->field_addr<P>(_cont_offset), value);
116121
}
117122

123+
template<DecoratorSet decorators>
124+
inline void jdk_internal_vm_StackChunk::set_cont_access(oop chunk, oop value) {
125+
chunk->obj_field_put_access<decorators>(_cont_offset, value);
126+
}
127+
118128
inline int jdk_internal_vm_StackChunk::size(oop chunk) {
119129
return chunk->int_field(_size_offset);
120130
}

0 commit comments

Comments
 (0)
Please sign in to comment.