|
27 | 27 |
|
28 | 28 | #include "classfile/javaClasses.hpp"
|
29 | 29 |
|
| 30 | +#include "memory/referenceType.hpp" |
30 | 31 | #include "oops/access.inline.hpp"
|
31 | 32 | #include "oops/instanceKlass.inline.hpp"
|
32 | 33 | #include "oops/method.hpp"
|
@@ -132,14 +133,17 @@ bool java_lang_String::is_instance(oop obj) {
|
132 | 133 | // Accessors
|
133 | 134 |
|
134 | 135 | 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"); |
135 | 137 | return ref->obj_field_access<ON_WEAK_OOP_REF | AS_NO_KEEPALIVE>(_referent_offset);
|
136 | 138 | }
|
137 | 139 |
|
138 | 140 | 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"); |
139 | 142 | return ref->obj_field_access<ON_WEAK_OOP_REF>(_referent_offset);
|
140 | 143 | }
|
141 | 144 |
|
142 | 145 | oop java_lang_ref_Reference::phantom_referent_no_keepalive(oop ref) {
|
| 146 | + assert(java_lang_ref_Reference::is_phantom(ref), "must be Phantom Reference"); |
143 | 147 | return ref->obj_field_access<ON_PHANTOM_OOP_REF | AS_NO_KEEPALIVE>(_referent_offset);
|
144 | 148 | }
|
145 | 149 |
|
@@ -195,6 +199,14 @@ bool java_lang_ref_Reference::is_phantom(oop ref) {
|
195 | 199 | return InstanceKlass::cast(ref->klass())->reference_type() == REF_PHANTOM;
|
196 | 200 | }
|
197 | 201 |
|
| 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 | + |
198 | 210 | inline oop java_lang_Thread::continuation(oop java_thread) {
|
199 | 211 | return java_thread->obj_field(_continuation_offset);
|
200 | 212 | }
|
|
0 commit comments