1
1
/*
2
- * Copyright (c) 1996, 2022 , Oracle and/or its affiliates. All rights reserved.
2
+ * Copyright (c) 1996, 2023 , Oracle and/or its affiliates. All rights reserved.
3
3
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4
4
*
5
5
* This code is free software; you can redistribute it and/or modify it
@@ -1905,7 +1905,7 @@ public MemberSignature(Method meth) {
1905
1905
private static class FieldReflector {
1906
1906
1907
1907
/** handle for performing unsafe operations */
1908
- private static final Unsafe unsafe = Unsafe .getUnsafe ();
1908
+ private static final Unsafe UNSAFE = Unsafe .getUnsafe ();
1909
1909
1910
1910
/** fields to operate on */
1911
1911
private final ObjectStreamField [] fields ;
@@ -1944,7 +1944,7 @@ private static class FieldReflector {
1944
1944
ObjectStreamField f = fields [i ];
1945
1945
Field rf = f .getField ();
1946
1946
long key = (rf != null ) ?
1947
- unsafe .objectFieldOffset (rf ) : Unsafe .INVALID_FIELD_OFFSET ;
1947
+ UNSAFE .objectFieldOffset (rf ) : Unsafe .INVALID_FIELD_OFFSET ;
1948
1948
readKeys [i ] = key ;
1949
1949
writeKeys [i ] = usedKeys .add (key ) ?
1950
1950
key : Unsafe .INVALID_FIELD_OFFSET ;
@@ -1986,14 +1986,14 @@ void getPrimFieldValues(Object obj, byte[] buf) {
1986
1986
long key = readKeys [i ];
1987
1987
int off = offsets [i ];
1988
1988
switch (typeCodes [i ]) {
1989
- case 'Z' -> Bits .putBoolean (buf , off , unsafe .getBoolean (obj , key ));
1990
- case 'B' -> buf [off ] = unsafe .getByte (obj , key );
1991
- case 'C' -> Bits .putChar (buf , off , unsafe .getChar (obj , key ));
1992
- case 'S' -> Bits .putShort (buf , off , unsafe .getShort (obj , key ));
1993
- case 'I' -> Bits .putInt (buf , off , unsafe .getInt (obj , key ));
1994
- case 'F' -> Bits .putFloat (buf , off , unsafe .getFloat (obj , key ));
1995
- case 'J' -> Bits .putLong (buf , off , unsafe .getLong (obj , key ));
1996
- case 'D' -> Bits .putDouble (buf , off , unsafe .getDouble (obj , key ));
1989
+ case 'Z' -> Bits .putBoolean (buf , off , UNSAFE .getBoolean (obj , key ));
1990
+ case 'B' -> buf [off ] = UNSAFE .getByte (obj , key );
1991
+ case 'C' -> Bits .putChar (buf , off , UNSAFE .getChar (obj , key ));
1992
+ case 'S' -> Bits .putShort (buf , off , UNSAFE .getShort (obj , key ));
1993
+ case 'I' -> Bits .putInt (buf , off , UNSAFE .getInt (obj , key ));
1994
+ case 'F' -> Bits .putFloat (buf , off , UNSAFE .getFloat (obj , key ));
1995
+ case 'J' -> Bits .putLong (buf , off , UNSAFE .getLong (obj , key ));
1996
+ case 'D' -> Bits .putDouble (buf , off , UNSAFE .getDouble (obj , key ));
1997
1997
default -> throw new InternalError ();
1998
1998
}
1999
1999
}
@@ -2015,14 +2015,14 @@ void setPrimFieldValues(Object obj, byte[] buf) {
2015
2015
}
2016
2016
int off = offsets [i ];
2017
2017
switch (typeCodes [i ]) {
2018
- case 'Z' -> unsafe .putBoolean (obj , key , Bits .getBoolean (buf , off ));
2019
- case 'B' -> unsafe .putByte (obj , key , buf [off ]);
2020
- case 'C' -> unsafe .putChar (obj , key , Bits .getChar (buf , off ));
2021
- case 'S' -> unsafe .putShort (obj , key , Bits .getShort (buf , off ));
2022
- case 'I' -> unsafe .putInt (obj , key , Bits .getInt (buf , off ));
2023
- case 'F' -> unsafe .putFloat (obj , key , Bits .getFloat (buf , off ));
2024
- case 'J' -> unsafe .putLong (obj , key , Bits .getLong (buf , off ));
2025
- case 'D' -> unsafe .putDouble (obj , key , Bits .getDouble (buf , off ));
2018
+ case 'Z' -> UNSAFE .putBoolean (obj , key , Bits .getBoolean (buf , off ));
2019
+ case 'B' -> UNSAFE .putByte (obj , key , buf [off ]);
2020
+ case 'C' -> UNSAFE .putChar (obj , key , Bits .getChar (buf , off ));
2021
+ case 'S' -> UNSAFE .putShort (obj , key , Bits .getShort (buf , off ));
2022
+ case 'I' -> UNSAFE .putInt (obj , key , Bits .getInt (buf , off ));
2023
+ case 'F' -> UNSAFE .putFloat (obj , key , Bits .getFloat (buf , off ));
2024
+ case 'J' -> UNSAFE .putLong (obj , key , Bits .getLong (buf , off ));
2025
+ case 'D' -> UNSAFE .putDouble (obj , key , Bits .getDouble (buf , off ));
2026
2026
default -> throw new InternalError ();
2027
2027
}
2028
2028
}
@@ -2043,7 +2043,7 @@ void getObjFieldValues(Object obj, Object[] vals) {
2043
2043
*/
2044
2044
for (int i = numPrimFields ; i < fields .length ; i ++) {
2045
2045
vals [offsets [i ]] = switch (typeCodes [i ]) {
2046
- case 'L' , '[' -> unsafe .getReference (obj , readKeys [i ]);
2046
+ case 'L' , '[' -> UNSAFE .getReference (obj , readKeys [i ]);
2047
2047
default -> throw new InternalError ();
2048
2048
};
2049
2049
}
@@ -2094,7 +2094,7 @@ private void setObjFieldValues(Object obj, Object[] vals, boolean dryRun) {
2094
2094
obj .getClass ().getName ());
2095
2095
}
2096
2096
if (!dryRun )
2097
- unsafe .putReference (obj , key , val );
2097
+ UNSAFE .putReference (obj , key , val );
2098
2098
}
2099
2099
default -> throw new InternalError ();
2100
2100
}
0 commit comments