Skip to content

Commit 32f4dc8

Browse files
xmas92stefank
authored andcommittedSep 5, 2022
8293295: Add type check asserts to java_lang_ref_Reference accessors
Reviewed-by: stefank, kbarrett, coleenp
1 parent e945619 commit 32f4dc8

File tree

2 files changed

+14
-0
lines changed

2 files changed

+14
-0
lines changed
 

‎src/hotspot/share/classfile/javaClasses.hpp

+2
Original file line numberDiff line numberDiff line change
@@ -988,6 +988,8 @@ class java_lang_ref_Reference: AllStatic {
988988
static bool is_referent_field(oop obj, ptrdiff_t offset);
989989
static inline bool is_final(oop ref);
990990
static inline bool is_phantom(oop ref);
991+
static inline bool is_weak(oop ref);
992+
static inline bool is_soft(oop ref);
991993

992994
static int referent_offset() { CHECK_INIT(_referent_offset); }
993995
static int queue_offset() { CHECK_INIT(_queue_offset); }

‎src/hotspot/share/classfile/javaClasses.inline.hpp

+12
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@
2727

2828
#include "classfile/javaClasses.hpp"
2929

30+
#include "memory/referenceType.hpp"
3031
#include "oops/access.inline.hpp"
3132
#include "oops/instanceKlass.inline.hpp"
3233
#include "oops/method.hpp"
@@ -132,14 +133,17 @@ bool java_lang_String::is_instance(oop obj) {
132133
// Accessors
133134

134135
oop java_lang_ref_Reference::weak_referent_no_keepalive(oop ref) {
136+
assert(java_lang_ref_Reference::is_weak(ref) || java_lang_ref_Reference::is_soft(ref), "must be Weak or Soft Reference");
135137
return ref->obj_field_access<ON_WEAK_OOP_REF | AS_NO_KEEPALIVE>(_referent_offset);
136138
}
137139

138140
oop java_lang_ref_Reference::weak_referent(oop ref) {
141+
assert(java_lang_ref_Reference::is_weak(ref) || java_lang_ref_Reference::is_soft(ref), "must be Weak or Soft Reference");
139142
return ref->obj_field_access<ON_WEAK_OOP_REF>(_referent_offset);
140143
}
141144

142145
oop java_lang_ref_Reference::phantom_referent_no_keepalive(oop ref) {
146+
assert(java_lang_ref_Reference::is_phantom(ref), "must be Phantom Reference");
143147
return ref->obj_field_access<ON_PHANTOM_OOP_REF | AS_NO_KEEPALIVE>(_referent_offset);
144148
}
145149

@@ -195,6 +199,14 @@ bool java_lang_ref_Reference::is_phantom(oop ref) {
195199
return InstanceKlass::cast(ref->klass())->reference_type() == REF_PHANTOM;
196200
}
197201

202+
bool java_lang_ref_Reference::is_weak(oop ref) {
203+
return InstanceKlass::cast(ref->klass())->reference_type() == REF_WEAK;
204+
}
205+
206+
bool java_lang_ref_Reference::is_soft(oop ref) {
207+
return InstanceKlass::cast(ref->klass())->reference_type() == REF_SOFT;
208+
}
209+
198210
inline oop java_lang_Thread::continuation(oop java_thread) {
199211
return java_thread->obj_field(_continuation_offset);
200212
}

0 commit comments

Comments
 (0)
Please sign in to comment.