25
25
26
26
package java .util ;
27
27
28
+ import jdk .internal .misc .ValhallaFeatures ;
28
29
import jdk .internal .util .Preconditions ;
29
30
import jdk .internal .vm .annotation .ForceInline ;
30
31
import jdk .internal .misc .Unsafe ;
@@ -189,6 +190,19 @@ public static String toIdentityString(Object o) {
189
190
return o .getClass ().getName () + "@" + Integer .toHexString (System .identityHashCode (o ));
190
191
}
191
192
193
+ /**
194
+ * {@return {@code true} if the specified object reference is an identity object, otherwise {@code false}}
195
+ *
196
+ * @param obj an object
197
+ * @throws NullPointerException if {@code obj} is {@code null}
198
+ */
199
+ // @IntrinsicCandidate
200
+ public static boolean isIdentityObject (Object obj ) {
201
+ requireNonNull (obj );
202
+ return obj .getClass ().isIdentity () || // Before Valhalla all classes are identity classes
203
+ obj .getClass () == Object .class ;
204
+ }
205
+
192
206
/**
193
207
* Checks that the specified object reference is an identity object.
194
208
*
@@ -202,9 +216,8 @@ public static String toIdentityString(Object o) {
202
216
@ ForceInline
203
217
public static <T > T requireIdentity (T obj ) {
204
218
Objects .requireNonNull (obj );
205
- var cl = obj .getClass ();
206
- if (cl .isValue ())
207
- throw new IdentityException (cl );
219
+ if (!isIdentityObject (obj ))
220
+ throw new IdentityException (obj .getClass ());
208
221
return obj ;
209
222
}
210
223
@@ -223,7 +236,7 @@ public static <T> T requireIdentity(T obj) {
223
236
@ ForceInline
224
237
public static <T > T requireIdentity (T obj , String message ) {
225
238
Objects .requireNonNull (obj );
226
- if (obj . getClass (). isValue ( ))
239
+ if (! isIdentityObject ( obj ))
227
240
throw new IdentityException (message );
228
241
return obj ;
229
242
}
@@ -243,7 +256,7 @@ public static <T> T requireIdentity(T obj, String message) {
243
256
@ ForceInline
244
257
public static <T > T requireIdentity (T obj , Supplier <String > messageSupplier ) {
245
258
Objects .requireNonNull (obj );
246
- if (obj . getClass (). isValue ( ))
259
+ if (! isIdentityObject ( obj ))
247
260
throw new IdentityException (messageSupplier == null ?
248
261
null : messageSupplier .get ());
249
262
return obj ;
0 commit comments