private static Field getReflectionSlotField(Class<?> reflectionClass) {
   try {
     Field field = reflectionClass.getDeclaredField("slot");
     field.setAccessible(true);
     return field;
   } catch (NoSuchFieldException | SecurityException e) {
     throw new GraalInternalError(e);
   }
 }