blob: 15f945052a4277ff9e50d08ac112ee41fbbe3c66 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
package moe.nea.modernjava.launch.util;
import moe.nea.modernjava.launch.transform.TransObjectHolderRef;
import sun.misc.Unsafe;
import java.lang.reflect.Field;
/**
* A companion to my transformations from {@link TransObjectHolderRef} to avoid
* having to write all of this out in bytecode.
*/
public class ObjectHolderRefCompanion {
private static Unsafe unsafe;
static {
try {
final Field unsafeField = Unsafe.class.getDeclaredField("theUnsafe");
unsafeField.setAccessible(true);
unsafe = (Unsafe) unsafeField.get(null);
} catch (Exception ex) {
ex.printStackTrace();
}
}
/**
* A noop to have a jump target for the reflection factories.
*/
public static void makeFieldWritable(Field f) {
String s = "Doing nothing. We will use unsafe to set the value instead, if possible";
}
/**
* Write a value to a static final field.
*/
public static void doFieldWrite(Field field, Object object) throws IllegalAccessException {
if (unsafe == null) {
field.set(null, object);
} else {
Object o = unsafe.staticFieldBase(field);
long l = unsafe.staticFieldOffset(field);
unsafe.putObject(o, l, object);
}
}
}
|