|
|
|
@ -33,7 +33,7 @@ final class VarHandleGuards {
|
|
|
|
|
@ForceInline
|
|
|
|
|
@LambdaForm.Compiled
|
|
|
|
|
@Hidden
|
|
|
|
|
final static Object guard_L_L(VarHandle handle, Object arg0, VarHandle.AccessDescriptor ad) throws Throwable {
|
|
|
|
|
static final Object guard_L_L(VarHandle handle, Object arg0, VarHandle.AccessDescriptor ad) throws Throwable {
|
|
|
|
|
if (handle.hasInvokeExactBehavior() && handle.accessModeType(ad.type) != ad.symbolicMethodTypeExact) {
|
|
|
|
|
throw new WrongMethodTypeException("expected " + handle.accessModeType(ad.type) + " but found "
|
|
|
|
|
+ ad.symbolicMethodTypeExact);
|
|
|
|
@ -50,7 +50,7 @@ final class VarHandleGuards {
|
|
|
|
|
@ForceInline
|
|
|
|
|
@LambdaForm.Compiled
|
|
|
|
|
@Hidden
|
|
|
|
|
final static void guard_LL_V(VarHandle handle, Object arg0, Object arg1, VarHandle.AccessDescriptor ad) throws Throwable {
|
|
|
|
|
static final void guard_LL_V(VarHandle handle, Object arg0, Object arg1, VarHandle.AccessDescriptor ad) throws Throwable {
|
|
|
|
|
if (handle.hasInvokeExactBehavior() && handle.accessModeType(ad.type) != ad.symbolicMethodTypeExact) {
|
|
|
|
|
throw new WrongMethodTypeException("expected " + handle.accessModeType(ad.type) + " but found "
|
|
|
|
|
+ ad.symbolicMethodTypeExact);
|
|
|
|
@ -68,7 +68,7 @@ final class VarHandleGuards {
|
|
|
|
|
@ForceInline
|
|
|
|
|
@LambdaForm.Compiled
|
|
|
|
|
@Hidden
|
|
|
|
|
final static boolean guard_LLL_Z(VarHandle handle, Object arg0, Object arg1, Object arg2, VarHandle.AccessDescriptor ad) throws Throwable {
|
|
|
|
|
static final boolean guard_LLL_Z(VarHandle handle, Object arg0, Object arg1, Object arg2, VarHandle.AccessDescriptor ad) throws Throwable {
|
|
|
|
|
if (handle.hasInvokeExactBehavior() && handle.accessModeType(ad.type) != ad.symbolicMethodTypeExact) {
|
|
|
|
|
throw new WrongMethodTypeException("expected " + handle.accessModeType(ad.type) + " but found "
|
|
|
|
|
+ ad.symbolicMethodTypeExact);
|
|
|
|
@ -84,7 +84,7 @@ final class VarHandleGuards {
|
|
|
|
|
@ForceInline
|
|
|
|
|
@LambdaForm.Compiled
|
|
|
|
|
@Hidden
|
|
|
|
|
final static Object guard_LLL_L(VarHandle handle, Object arg0, Object arg1, Object arg2, VarHandle.AccessDescriptor ad) throws Throwable {
|
|
|
|
|
static final Object guard_LLL_L(VarHandle handle, Object arg0, Object arg1, Object arg2, VarHandle.AccessDescriptor ad) throws Throwable {
|
|
|
|
|
if (handle.hasInvokeExactBehavior() && handle.accessModeType(ad.type) != ad.symbolicMethodTypeExact) {
|
|
|
|
|
throw new WrongMethodTypeException("expected " + handle.accessModeType(ad.type) + " but found "
|
|
|
|
|
+ ad.symbolicMethodTypeExact);
|
|
|
|
@ -101,7 +101,7 @@ final class VarHandleGuards {
|
|
|
|
|
@ForceInline
|
|
|
|
|
@LambdaForm.Compiled
|
|
|
|
|
@Hidden
|
|
|
|
|
final static Object guard_LL_L(VarHandle handle, Object arg0, Object arg1, VarHandle.AccessDescriptor ad) throws Throwable {
|
|
|
|
|
static final Object guard_LL_L(VarHandle handle, Object arg0, Object arg1, VarHandle.AccessDescriptor ad) throws Throwable {
|
|
|
|
|
if (handle.hasInvokeExactBehavior() && handle.accessModeType(ad.type) != ad.symbolicMethodTypeExact) {
|
|
|
|
|
throw new WrongMethodTypeException("expected " + handle.accessModeType(ad.type) + " but found "
|
|
|
|
|
+ ad.symbolicMethodTypeExact);
|
|
|
|
@ -118,7 +118,7 @@ final class VarHandleGuards {
|
|
|
|
|
@ForceInline
|
|
|
|
|
@LambdaForm.Compiled
|
|
|
|
|
@Hidden
|
|
|
|
|
final static int guard_L_I(VarHandle handle, Object arg0, VarHandle.AccessDescriptor ad) throws Throwable {
|
|
|
|
|
static final int guard_L_I(VarHandle handle, Object arg0, VarHandle.AccessDescriptor ad) throws Throwable {
|
|
|
|
|
if (handle.hasInvokeExactBehavior() && handle.accessModeType(ad.type) != ad.symbolicMethodTypeExact) {
|
|
|
|
|
throw new WrongMethodTypeException("expected " + handle.accessModeType(ad.type) + " but found "
|
|
|
|
|
+ ad.symbolicMethodTypeExact);
|
|
|
|
@ -134,7 +134,7 @@ final class VarHandleGuards {
|
|
|
|
|
@ForceInline
|
|
|
|
|
@LambdaForm.Compiled
|
|
|
|
|
@Hidden
|
|
|
|
|
final static void guard_LI_V(VarHandle handle, Object arg0, int arg1, VarHandle.AccessDescriptor ad) throws Throwable {
|
|
|
|
|
static final void guard_LI_V(VarHandle handle, Object arg0, int arg1, VarHandle.AccessDescriptor ad) throws Throwable {
|
|
|
|
|
if (handle.hasInvokeExactBehavior() && handle.accessModeType(ad.type) != ad.symbolicMethodTypeExact) {
|
|
|
|
|
throw new WrongMethodTypeException("expected " + handle.accessModeType(ad.type) + " but found "
|
|
|
|
|
+ ad.symbolicMethodTypeExact);
|
|
|
|
@ -152,7 +152,7 @@ final class VarHandleGuards {
|
|
|
|
|
@ForceInline
|
|
|
|
|
@LambdaForm.Compiled
|
|
|
|
|
@Hidden
|
|
|
|
|
final static boolean guard_LII_Z(VarHandle handle, Object arg0, int arg1, int arg2, VarHandle.AccessDescriptor ad) throws Throwable {
|
|
|
|
|
static final boolean guard_LII_Z(VarHandle handle, Object arg0, int arg1, int arg2, VarHandle.AccessDescriptor ad) throws Throwable {
|
|
|
|
|
if (handle.hasInvokeExactBehavior() && handle.accessModeType(ad.type) != ad.symbolicMethodTypeExact) {
|
|
|
|
|
throw new WrongMethodTypeException("expected " + handle.accessModeType(ad.type) + " but found "
|
|
|
|
|
+ ad.symbolicMethodTypeExact);
|
|
|
|
@ -168,7 +168,7 @@ final class VarHandleGuards {
|
|
|
|
|
@ForceInline
|
|
|
|
|
@LambdaForm.Compiled
|
|
|
|
|
@Hidden
|
|
|
|
|
final static int guard_LII_I(VarHandle handle, Object arg0, int arg1, int arg2, VarHandle.AccessDescriptor ad) throws Throwable {
|
|
|
|
|
static final int guard_LII_I(VarHandle handle, Object arg0, int arg1, int arg2, VarHandle.AccessDescriptor ad) throws Throwable {
|
|
|
|
|
if (handle.hasInvokeExactBehavior() && handle.accessModeType(ad.type) != ad.symbolicMethodTypeExact) {
|
|
|
|
|
throw new WrongMethodTypeException("expected " + handle.accessModeType(ad.type) + " but found "
|
|
|
|
|
+ ad.symbolicMethodTypeExact);
|
|
|
|
@ -184,7 +184,7 @@ final class VarHandleGuards {
|
|
|
|
|
@ForceInline
|
|
|
|
|
@LambdaForm.Compiled
|
|
|
|
|
@Hidden
|
|
|
|
|
final static int guard_LI_I(VarHandle handle, Object arg0, int arg1, VarHandle.AccessDescriptor ad) throws Throwable {
|
|
|
|
|
static final int guard_LI_I(VarHandle handle, Object arg0, int arg1, VarHandle.AccessDescriptor ad) throws Throwable {
|
|
|
|
|
if (handle.hasInvokeExactBehavior() && handle.accessModeType(ad.type) != ad.symbolicMethodTypeExact) {
|
|
|
|
|
throw new WrongMethodTypeException("expected " + handle.accessModeType(ad.type) + " but found "
|
|
|
|
|
+ ad.symbolicMethodTypeExact);
|
|
|
|
@ -200,7 +200,7 @@ final class VarHandleGuards {
|
|
|
|
|
@ForceInline
|
|
|
|
|
@LambdaForm.Compiled
|
|
|
|
|
@Hidden
|
|
|
|
|
final static long guard_L_J(VarHandle handle, Object arg0, VarHandle.AccessDescriptor ad) throws Throwable {
|
|
|
|
|
static final long guard_L_J(VarHandle handle, Object arg0, VarHandle.AccessDescriptor ad) throws Throwable {
|
|
|
|
|
if (handle.hasInvokeExactBehavior() && handle.accessModeType(ad.type) != ad.symbolicMethodTypeExact) {
|
|
|
|
|
throw new WrongMethodTypeException("expected " + handle.accessModeType(ad.type) + " but found "
|
|
|
|
|
+ ad.symbolicMethodTypeExact);
|
|
|
|
@ -216,7 +216,7 @@ final class VarHandleGuards {
|
|
|
|
|
@ForceInline
|
|
|
|
|
@LambdaForm.Compiled
|
|
|
|
|
@Hidden
|
|
|
|
|
final static void guard_LJ_V(VarHandle handle, Object arg0, long arg1, VarHandle.AccessDescriptor ad) throws Throwable {
|
|
|
|
|
static final void guard_LJ_V(VarHandle handle, Object arg0, long arg1, VarHandle.AccessDescriptor ad) throws Throwable {
|
|
|
|
|
if (handle.hasInvokeExactBehavior() && handle.accessModeType(ad.type) != ad.symbolicMethodTypeExact) {
|
|
|
|
|
throw new WrongMethodTypeException("expected " + handle.accessModeType(ad.type) + " but found "
|
|
|
|
|
+ ad.symbolicMethodTypeExact);
|
|
|
|
@ -234,7 +234,7 @@ final class VarHandleGuards {
|
|
|
|
|
@ForceInline
|
|
|
|
|
@LambdaForm.Compiled
|
|
|
|
|
@Hidden
|
|
|
|
|
final static boolean guard_LJJ_Z(VarHandle handle, Object arg0, long arg1, long arg2, VarHandle.AccessDescriptor ad) throws Throwable {
|
|
|
|
|
static final boolean guard_LJJ_Z(VarHandle handle, Object arg0, long arg1, long arg2, VarHandle.AccessDescriptor ad) throws Throwable {
|
|
|
|
|
if (handle.hasInvokeExactBehavior() && handle.accessModeType(ad.type) != ad.symbolicMethodTypeExact) {
|
|
|
|
|
throw new WrongMethodTypeException("expected " + handle.accessModeType(ad.type) + " but found "
|
|
|
|
|
+ ad.symbolicMethodTypeExact);
|
|
|
|
@ -250,7 +250,7 @@ final class VarHandleGuards {
|
|
|
|
|
@ForceInline
|
|
|
|
|
@LambdaForm.Compiled
|
|
|
|
|
@Hidden
|
|
|
|
|
final static long guard_LJJ_J(VarHandle handle, Object arg0, long arg1, long arg2, VarHandle.AccessDescriptor ad) throws Throwable {
|
|
|
|
|
static final long guard_LJJ_J(VarHandle handle, Object arg0, long arg1, long arg2, VarHandle.AccessDescriptor ad) throws Throwable {
|
|
|
|
|
if (handle.hasInvokeExactBehavior() && handle.accessModeType(ad.type) != ad.symbolicMethodTypeExact) {
|
|
|
|
|
throw new WrongMethodTypeException("expected " + handle.accessModeType(ad.type) + " but found "
|
|
|
|
|
+ ad.symbolicMethodTypeExact);
|
|
|
|
@ -266,7 +266,7 @@ final class VarHandleGuards {
|
|
|
|
|
@ForceInline
|
|
|
|
|
@LambdaForm.Compiled
|
|
|
|
|
@Hidden
|
|
|
|
|
final static long guard_LJ_J(VarHandle handle, Object arg0, long arg1, VarHandle.AccessDescriptor ad) throws Throwable {
|
|
|
|
|
static final long guard_LJ_J(VarHandle handle, Object arg0, long arg1, VarHandle.AccessDescriptor ad) throws Throwable {
|
|
|
|
|
if (handle.hasInvokeExactBehavior() && handle.accessModeType(ad.type) != ad.symbolicMethodTypeExact) {
|
|
|
|
|
throw new WrongMethodTypeException("expected " + handle.accessModeType(ad.type) + " but found "
|
|
|
|
|
+ ad.symbolicMethodTypeExact);
|
|
|
|
@ -282,7 +282,7 @@ final class VarHandleGuards {
|
|
|
|
|
@ForceInline
|
|
|
|
|
@LambdaForm.Compiled
|
|
|
|
|
@Hidden
|
|
|
|
|
final static float guard_L_F(VarHandle handle, Object arg0, VarHandle.AccessDescriptor ad) throws Throwable {
|
|
|
|
|
static final float guard_L_F(VarHandle handle, Object arg0, VarHandle.AccessDescriptor ad) throws Throwable {
|
|
|
|
|
if (handle.hasInvokeExactBehavior() && handle.accessModeType(ad.type) != ad.symbolicMethodTypeExact) {
|
|
|
|
|
throw new WrongMethodTypeException("expected " + handle.accessModeType(ad.type) + " but found "
|
|
|
|
|
+ ad.symbolicMethodTypeExact);
|
|
|
|
@ -298,7 +298,7 @@ final class VarHandleGuards {
|
|
|
|
|
@ForceInline
|
|
|
|
|
@LambdaForm.Compiled
|
|
|
|
|
@Hidden
|
|
|
|
|
final static void guard_LF_V(VarHandle handle, Object arg0, float arg1, VarHandle.AccessDescriptor ad) throws Throwable {
|
|
|
|
|
static final void guard_LF_V(VarHandle handle, Object arg0, float arg1, VarHandle.AccessDescriptor ad) throws Throwable {
|
|
|
|
|
if (handle.hasInvokeExactBehavior() && handle.accessModeType(ad.type) != ad.symbolicMethodTypeExact) {
|
|
|
|
|
throw new WrongMethodTypeException("expected " + handle.accessModeType(ad.type) + " but found "
|
|
|
|
|
+ ad.symbolicMethodTypeExact);
|
|
|
|
@ -316,7 +316,7 @@ final class VarHandleGuards {
|
|
|
|
|
@ForceInline
|
|
|
|
|
@LambdaForm.Compiled
|
|
|
|
|
@Hidden
|
|
|
|
|
final static boolean guard_LFF_Z(VarHandle handle, Object arg0, float arg1, float arg2, VarHandle.AccessDescriptor ad) throws Throwable {
|
|
|
|
|
static final boolean guard_LFF_Z(VarHandle handle, Object arg0, float arg1, float arg2, VarHandle.AccessDescriptor ad) throws Throwable {
|
|
|
|
|
if (handle.hasInvokeExactBehavior() && handle.accessModeType(ad.type) != ad.symbolicMethodTypeExact) {
|
|
|
|
|
throw new WrongMethodTypeException("expected " + handle.accessModeType(ad.type) + " but found "
|
|
|
|
|
+ ad.symbolicMethodTypeExact);
|
|
|
|
@ -332,7 +332,7 @@ final class VarHandleGuards {
|
|
|
|
|
@ForceInline
|
|
|
|
|
@LambdaForm.Compiled
|
|
|
|
|
@Hidden
|
|
|
|
|
final static float guard_LFF_F(VarHandle handle, Object arg0, float arg1, float arg2, VarHandle.AccessDescriptor ad) throws Throwable {
|
|
|
|
|
static final float guard_LFF_F(VarHandle handle, Object arg0, float arg1, float arg2, VarHandle.AccessDescriptor ad) throws Throwable {
|
|
|
|
|
if (handle.hasInvokeExactBehavior() && handle.accessModeType(ad.type) != ad.symbolicMethodTypeExact) {
|
|
|
|
|
throw new WrongMethodTypeException("expected " + handle.accessModeType(ad.type) + " but found "
|
|
|
|
|
+ ad.symbolicMethodTypeExact);
|
|
|
|
@ -348,7 +348,7 @@ final class VarHandleGuards {
|
|
|
|
|
@ForceInline
|
|
|
|
|
@LambdaForm.Compiled
|
|
|
|
|
@Hidden
|
|
|
|
|
final static float guard_LF_F(VarHandle handle, Object arg0, float arg1, VarHandle.AccessDescriptor ad) throws Throwable {
|
|
|
|
|
static final float guard_LF_F(VarHandle handle, Object arg0, float arg1, VarHandle.AccessDescriptor ad) throws Throwable {
|
|
|
|
|
if (handle.hasInvokeExactBehavior() && handle.accessModeType(ad.type) != ad.symbolicMethodTypeExact) {
|
|
|
|
|
throw new WrongMethodTypeException("expected " + handle.accessModeType(ad.type) + " but found "
|
|
|
|
|
+ ad.symbolicMethodTypeExact);
|
|
|
|
@ -364,7 +364,7 @@ final class VarHandleGuards {
|
|
|
|
|
@ForceInline
|
|
|
|
|
@LambdaForm.Compiled
|
|
|
|
|
@Hidden
|
|
|
|
|
final static double guard_L_D(VarHandle handle, Object arg0, VarHandle.AccessDescriptor ad) throws Throwable {
|
|
|
|
|
static final double guard_L_D(VarHandle handle, Object arg0, VarHandle.AccessDescriptor ad) throws Throwable {
|
|
|
|
|
if (handle.hasInvokeExactBehavior() && handle.accessModeType(ad.type) != ad.symbolicMethodTypeExact) {
|
|
|
|
|
throw new WrongMethodTypeException("expected " + handle.accessModeType(ad.type) + " but found "
|
|
|
|
|
+ ad.symbolicMethodTypeExact);
|
|
|
|
@ -380,7 +380,7 @@ final class VarHandleGuards {
|
|
|
|
|
@ForceInline
|
|
|
|
|
@LambdaForm.Compiled
|
|
|
|
|
@Hidden
|
|
|
|
|
final static void guard_LD_V(VarHandle handle, Object arg0, double arg1, VarHandle.AccessDescriptor ad) throws Throwable {
|
|
|
|
|
static final void guard_LD_V(VarHandle handle, Object arg0, double arg1, VarHandle.AccessDescriptor ad) throws Throwable {
|
|
|
|
|
if (handle.hasInvokeExactBehavior() && handle.accessModeType(ad.type) != ad.symbolicMethodTypeExact) {
|
|
|
|
|
throw new WrongMethodTypeException("expected " + handle.accessModeType(ad.type) + " but found "
|
|
|
|
|
+ ad.symbolicMethodTypeExact);
|
|
|
|
@ -398,7 +398,7 @@ final class VarHandleGuards {
|
|
|
|
|
@ForceInline
|
|
|
|
|
@LambdaForm.Compiled
|
|
|
|
|
@Hidden
|
|
|
|
|
final static boolean guard_LDD_Z(VarHandle handle, Object arg0, double arg1, double arg2, VarHandle.AccessDescriptor ad) throws Throwable {
|
|
|
|
|
static final boolean guard_LDD_Z(VarHandle handle, Object arg0, double arg1, double arg2, VarHandle.AccessDescriptor ad) throws Throwable {
|
|
|
|
|
if (handle.hasInvokeExactBehavior() && handle.accessModeType(ad.type) != ad.symbolicMethodTypeExact) {
|
|
|
|
|
throw new WrongMethodTypeException("expected " + handle.accessModeType(ad.type) + " but found "
|
|
|
|
|
+ ad.symbolicMethodTypeExact);
|
|
|
|
@ -414,7 +414,7 @@ final class VarHandleGuards {
|
|
|
|
|
@ForceInline
|
|
|
|
|
@LambdaForm.Compiled
|
|
|
|
|
@Hidden
|
|
|
|
|
final static double guard_LDD_D(VarHandle handle, Object arg0, double arg1, double arg2, VarHandle.AccessDescriptor ad) throws Throwable {
|
|
|
|
|
static final double guard_LDD_D(VarHandle handle, Object arg0, double arg1, double arg2, VarHandle.AccessDescriptor ad) throws Throwable {
|
|
|
|
|
if (handle.hasInvokeExactBehavior() && handle.accessModeType(ad.type) != ad.symbolicMethodTypeExact) {
|
|
|
|
|
throw new WrongMethodTypeException("expected " + handle.accessModeType(ad.type) + " but found "
|
|
|
|
|
+ ad.symbolicMethodTypeExact);
|
|
|
|
@ -430,7 +430,7 @@ final class VarHandleGuards {
|
|
|
|
|
@ForceInline
|
|
|
|
|
@LambdaForm.Compiled
|
|
|
|
|
@Hidden
|
|
|
|
|
final static double guard_LD_D(VarHandle handle, Object arg0, double arg1, VarHandle.AccessDescriptor ad) throws Throwable {
|
|
|
|
|
static final double guard_LD_D(VarHandle handle, Object arg0, double arg1, VarHandle.AccessDescriptor ad) throws Throwable {
|
|
|
|
|
if (handle.hasInvokeExactBehavior() && handle.accessModeType(ad.type) != ad.symbolicMethodTypeExact) {
|
|
|
|
|
throw new WrongMethodTypeException("expected " + handle.accessModeType(ad.type) + " but found "
|
|
|
|
|
+ ad.symbolicMethodTypeExact);
|
|
|
|
@ -446,7 +446,7 @@ final class VarHandleGuards {
|
|
|
|
|
@ForceInline
|
|
|
|
|
@LambdaForm.Compiled
|
|
|
|
|
@Hidden
|
|
|
|
|
final static Object guard__L(VarHandle handle, VarHandle.AccessDescriptor ad) throws Throwable {
|
|
|
|
|
static final Object guard__L(VarHandle handle, VarHandle.AccessDescriptor ad) throws Throwable {
|
|
|
|
|
if (handle.hasInvokeExactBehavior() && handle.accessModeType(ad.type) != ad.symbolicMethodTypeExact) {
|
|
|
|
|
throw new WrongMethodTypeException("expected " + handle.accessModeType(ad.type) + " but found "
|
|
|
|
|
+ ad.symbolicMethodTypeExact);
|
|
|
|
@ -463,7 +463,7 @@ final class VarHandleGuards {
|
|
|
|
|
@ForceInline
|
|
|
|
|
@LambdaForm.Compiled
|
|
|
|
|
@Hidden
|
|
|
|
|
final static void guard_L_V(VarHandle handle, Object arg0, VarHandle.AccessDescriptor ad) throws Throwable {
|
|
|
|
|
static final void guard_L_V(VarHandle handle, Object arg0, VarHandle.AccessDescriptor ad) throws Throwable {
|
|
|
|
|
if (handle.hasInvokeExactBehavior() && handle.accessModeType(ad.type) != ad.symbolicMethodTypeExact) {
|
|
|
|
|
throw new WrongMethodTypeException("expected " + handle.accessModeType(ad.type) + " but found "
|
|
|
|
|
+ ad.symbolicMethodTypeExact);
|
|
|
|
@ -481,7 +481,7 @@ final class VarHandleGuards {
|
|
|
|
|
@ForceInline
|
|
|
|
|
@LambdaForm.Compiled
|
|
|
|
|
@Hidden
|
|
|
|
|
final static boolean guard_LL_Z(VarHandle handle, Object arg0, Object arg1, VarHandle.AccessDescriptor ad) throws Throwable {
|
|
|
|
|
static final boolean guard_LL_Z(VarHandle handle, Object arg0, Object arg1, VarHandle.AccessDescriptor ad) throws Throwable {
|
|
|
|
|
if (handle.hasInvokeExactBehavior() && handle.accessModeType(ad.type) != ad.symbolicMethodTypeExact) {
|
|
|
|
|
throw new WrongMethodTypeException("expected " + handle.accessModeType(ad.type) + " but found "
|
|
|
|
|
+ ad.symbolicMethodTypeExact);
|
|
|
|
@ -497,7 +497,7 @@ final class VarHandleGuards {
|
|
|
|
|
@ForceInline
|
|
|
|
|
@LambdaForm.Compiled
|
|
|
|
|
@Hidden
|
|
|
|
|
final static int guard__I(VarHandle handle, VarHandle.AccessDescriptor ad) throws Throwable {
|
|
|
|
|
static final int guard__I(VarHandle handle, VarHandle.AccessDescriptor ad) throws Throwable {
|
|
|
|
|
if (handle.hasInvokeExactBehavior() && handle.accessModeType(ad.type) != ad.symbolicMethodTypeExact) {
|
|
|
|
|
throw new WrongMethodTypeException("expected " + handle.accessModeType(ad.type) + " but found "
|
|
|
|
|
+ ad.symbolicMethodTypeExact);
|
|
|
|
@ -513,7 +513,7 @@ final class VarHandleGuards {
|
|
|
|
|
@ForceInline
|
|
|
|
|
@LambdaForm.Compiled
|
|
|
|
|
@Hidden
|
|
|
|
|
final static void guard_I_V(VarHandle handle, int arg0, VarHandle.AccessDescriptor ad) throws Throwable {
|
|
|
|
|
static final void guard_I_V(VarHandle handle, int arg0, VarHandle.AccessDescriptor ad) throws Throwable {
|
|
|
|
|
if (handle.hasInvokeExactBehavior() && handle.accessModeType(ad.type) != ad.symbolicMethodTypeExact) {
|
|
|
|
|
throw new WrongMethodTypeException("expected " + handle.accessModeType(ad.type) + " but found "
|
|
|
|
|
+ ad.symbolicMethodTypeExact);
|
|
|
|
@ -531,7 +531,7 @@ final class VarHandleGuards {
|
|
|
|
|
@ForceInline
|
|
|
|
|
@LambdaForm.Compiled
|
|
|
|
|
@Hidden
|
|
|
|
|
final static boolean guard_II_Z(VarHandle handle, int arg0, int arg1, VarHandle.AccessDescriptor ad) throws Throwable {
|
|
|
|
|
static final boolean guard_II_Z(VarHandle handle, int arg0, int arg1, VarHandle.AccessDescriptor ad) throws Throwable {
|
|
|
|
|
if (handle.hasInvokeExactBehavior() && handle.accessModeType(ad.type) != ad.symbolicMethodTypeExact) {
|
|
|
|
|
throw new WrongMethodTypeException("expected " + handle.accessModeType(ad.type) + " but found "
|
|
|
|
|
+ ad.symbolicMethodTypeExact);
|
|
|
|
@ -547,7 +547,7 @@ final class VarHandleGuards {
|
|
|
|
|
@ForceInline
|
|
|
|
|
@LambdaForm.Compiled
|
|
|
|
|
@Hidden
|
|
|
|
|
final static int guard_II_I(VarHandle handle, int arg0, int arg1, VarHandle.AccessDescriptor ad) throws Throwable {
|
|
|
|
|
static final int guard_II_I(VarHandle handle, int arg0, int arg1, VarHandle.AccessDescriptor ad) throws Throwable {
|
|
|
|
|
if (handle.hasInvokeExactBehavior() && handle.accessModeType(ad.type) != ad.symbolicMethodTypeExact) {
|
|
|
|
|
throw new WrongMethodTypeException("expected " + handle.accessModeType(ad.type) + " but found "
|
|
|
|
|
+ ad.symbolicMethodTypeExact);
|
|
|
|
@ -563,7 +563,7 @@ final class VarHandleGuards {
|
|
|
|
|
@ForceInline
|
|
|
|
|
@LambdaForm.Compiled
|
|
|
|
|
@Hidden
|
|
|
|
|
final static int guard_I_I(VarHandle handle, int arg0, VarHandle.AccessDescriptor ad) throws Throwable {
|
|
|
|
|
static final int guard_I_I(VarHandle handle, int arg0, VarHandle.AccessDescriptor ad) throws Throwable {
|
|
|
|
|
if (handle.hasInvokeExactBehavior() && handle.accessModeType(ad.type) != ad.symbolicMethodTypeExact) {
|
|
|
|
|
throw new WrongMethodTypeException("expected " + handle.accessModeType(ad.type) + " but found "
|
|
|
|
|
+ ad.symbolicMethodTypeExact);
|
|
|
|
@ -579,7 +579,7 @@ final class VarHandleGuards {
|
|
|
|
|
@ForceInline
|
|
|
|
|
@LambdaForm.Compiled
|
|
|
|
|
@Hidden
|
|
|
|
|
final static long guard__J(VarHandle handle, VarHandle.AccessDescriptor ad) throws Throwable {
|
|
|
|
|
static final long guard__J(VarHandle handle, VarHandle.AccessDescriptor ad) throws Throwable {
|
|
|
|
|
if (handle.hasInvokeExactBehavior() && handle.accessModeType(ad.type) != ad.symbolicMethodTypeExact) {
|
|
|
|
|
throw new WrongMethodTypeException("expected " + handle.accessModeType(ad.type) + " but found "
|
|
|
|
|
+ ad.symbolicMethodTypeExact);
|
|
|
|
@ -595,7 +595,7 @@ final class VarHandleGuards {
|
|
|
|
|
@ForceInline
|
|
|
|
|
@LambdaForm.Compiled
|
|
|
|
|
@Hidden
|
|
|
|
|
final static void guard_J_V(VarHandle handle, long arg0, VarHandle.AccessDescriptor ad) throws Throwable {
|
|
|
|
|
static final void guard_J_V(VarHandle handle, long arg0, VarHandle.AccessDescriptor ad) throws Throwable {
|
|
|
|
|
if (handle.hasInvokeExactBehavior() && handle.accessModeType(ad.type) != ad.symbolicMethodTypeExact) {
|
|
|
|
|
throw new WrongMethodTypeException("expected " + handle.accessModeType(ad.type) + " but found "
|
|
|
|
|
+ ad.symbolicMethodTypeExact);
|
|
|
|
@ -613,7 +613,7 @@ final class VarHandleGuards {
|
|
|
|
|
@ForceInline
|
|
|
|
|
@LambdaForm.Compiled
|
|
|
|
|
@Hidden
|
|
|
|
|
final static boolean guard_JJ_Z(VarHandle handle, long arg0, long arg1, VarHandle.AccessDescriptor ad) throws Throwable {
|
|
|
|
|
static final boolean guard_JJ_Z(VarHandle handle, long arg0, long arg1, VarHandle.AccessDescriptor ad) throws Throwable {
|
|
|
|
|
if (handle.hasInvokeExactBehavior() && handle.accessModeType(ad.type) != ad.symbolicMethodTypeExact) {
|
|
|
|
|
throw new WrongMethodTypeException("expected " + handle.accessModeType(ad.type) + " but found "
|
|
|
|
|
+ ad.symbolicMethodTypeExact);
|
|
|
|
@ -629,7 +629,7 @@ final class VarHandleGuards {
|
|
|
|
|
@ForceInline
|
|
|
|
|
@LambdaForm.Compiled
|
|
|
|
|
@Hidden
|
|
|
|
|
final static long guard_JJ_J(VarHandle handle, long arg0, long arg1, VarHandle.AccessDescriptor ad) throws Throwable {
|
|
|
|
|
static final long guard_JJ_J(VarHandle handle, long arg0, long arg1, VarHandle.AccessDescriptor ad) throws Throwable {
|
|
|
|
|
if (handle.hasInvokeExactBehavior() && handle.accessModeType(ad.type) != ad.symbolicMethodTypeExact) {
|
|
|
|
|
throw new WrongMethodTypeException("expected " + handle.accessModeType(ad.type) + " but found "
|
|
|
|
|
+ ad.symbolicMethodTypeExact);
|
|
|
|
@ -645,7 +645,7 @@ final class VarHandleGuards {
|
|
|
|
|
@ForceInline
|
|
|
|
|
@LambdaForm.Compiled
|
|
|
|
|
@Hidden
|
|
|
|
|
final static long guard_J_J(VarHandle handle, long arg0, VarHandle.AccessDescriptor ad) throws Throwable {
|
|
|
|
|
static final long guard_J_J(VarHandle handle, long arg0, VarHandle.AccessDescriptor ad) throws Throwable {
|
|
|
|
|
if (handle.hasInvokeExactBehavior() && handle.accessModeType(ad.type) != ad.symbolicMethodTypeExact) {
|
|
|
|
|
throw new WrongMethodTypeException("expected " + handle.accessModeType(ad.type) + " but found "
|
|
|
|
|
+ ad.symbolicMethodTypeExact);
|
|
|
|
@ -661,7 +661,7 @@ final class VarHandleGuards {
|
|
|
|
|
@ForceInline
|
|
|
|
|
@LambdaForm.Compiled
|
|
|
|
|
@Hidden
|
|
|
|
|
final static float guard__F(VarHandle handle, VarHandle.AccessDescriptor ad) throws Throwable {
|
|
|
|
|
static final float guard__F(VarHandle handle, VarHandle.AccessDescriptor ad) throws Throwable {
|
|
|
|
|
if (handle.hasInvokeExactBehavior() && handle.accessModeType(ad.type) != ad.symbolicMethodTypeExact) {
|
|
|
|
|
throw new WrongMethodTypeException("expected " + handle.accessModeType(ad.type) + " but found "
|
|
|
|
|
+ ad.symbolicMethodTypeExact);
|
|
|
|
@ -677,7 +677,7 @@ final class VarHandleGuards {
|
|
|
|
|
@ForceInline
|
|
|
|
|
@LambdaForm.Compiled
|
|
|
|
|
@Hidden
|
|
|
|
|
final static void guard_F_V(VarHandle handle, float arg0, VarHandle.AccessDescriptor ad) throws Throwable {
|
|
|
|
|
static final void guard_F_V(VarHandle handle, float arg0, VarHandle.AccessDescriptor ad) throws Throwable {
|
|
|
|
|
if (handle.hasInvokeExactBehavior() && handle.accessModeType(ad.type) != ad.symbolicMethodTypeExact) {
|
|
|
|
|
throw new WrongMethodTypeException("expected " + handle.accessModeType(ad.type) + " but found "
|
|
|
|
|
+ ad.symbolicMethodTypeExact);
|
|
|
|
@ -695,7 +695,7 @@ final class VarHandleGuards {
|
|
|
|
|
@ForceInline
|
|
|
|
|
@LambdaForm.Compiled
|
|
|
|
|
@Hidden
|
|
|
|
|
final static boolean guard_FF_Z(VarHandle handle, float arg0, float arg1, VarHandle.AccessDescriptor ad) throws Throwable {
|
|
|
|
|
static final boolean guard_FF_Z(VarHandle handle, float arg0, float arg1, VarHandle.AccessDescriptor ad) throws Throwable {
|
|
|
|
|
if (handle.hasInvokeExactBehavior() && handle.accessModeType(ad.type) != ad.symbolicMethodTypeExact) {
|
|
|
|
|
throw new WrongMethodTypeException("expected " + handle.accessModeType(ad.type) + " but found "
|
|
|
|
|
+ ad.symbolicMethodTypeExact);
|
|
|
|
@ -711,7 +711,7 @@ final class VarHandleGuards {
|
|
|
|
|
@ForceInline
|
|
|
|
|
@LambdaForm.Compiled
|
|
|
|
|
@Hidden
|
|
|
|
|
final static float guard_FF_F(VarHandle handle, float arg0, float arg1, VarHandle.AccessDescriptor ad) throws Throwable {
|
|
|
|
|
static final float guard_FF_F(VarHandle handle, float arg0, float arg1, VarHandle.AccessDescriptor ad) throws Throwable {
|
|
|
|
|
if (handle.hasInvokeExactBehavior() && handle.accessModeType(ad.type) != ad.symbolicMethodTypeExact) {
|
|
|
|
|
throw new WrongMethodTypeException("expected " + handle.accessModeType(ad.type) + " but found "
|
|
|
|
|
+ ad.symbolicMethodTypeExact);
|
|
|
|
@ -727,7 +727,7 @@ final class VarHandleGuards {
|
|
|
|
|
@ForceInline
|
|
|
|
|
@LambdaForm.Compiled
|
|
|
|
|
@Hidden
|
|
|
|
|
final static float guard_F_F(VarHandle handle, float arg0, VarHandle.AccessDescriptor ad) throws Throwable {
|
|
|
|
|
static final float guard_F_F(VarHandle handle, float arg0, VarHandle.AccessDescriptor ad) throws Throwable {
|
|
|
|
|
if (handle.hasInvokeExactBehavior() && handle.accessModeType(ad.type) != ad.symbolicMethodTypeExact) {
|
|
|
|
|
throw new WrongMethodTypeException("expected " + handle.accessModeType(ad.type) + " but found "
|
|
|
|
|
+ ad.symbolicMethodTypeExact);
|
|
|
|
@ -743,7 +743,7 @@ final class VarHandleGuards {
|
|
|
|
|
@ForceInline
|
|
|
|
|
@LambdaForm.Compiled
|
|
|
|
|
@Hidden
|
|
|
|
|
final static double guard__D(VarHandle handle, VarHandle.AccessDescriptor ad) throws Throwable {
|
|
|
|
|
static final double guard__D(VarHandle handle, VarHandle.AccessDescriptor ad) throws Throwable {
|
|
|
|
|
if (handle.hasInvokeExactBehavior() && handle.accessModeType(ad.type) != ad.symbolicMethodTypeExact) {
|
|
|
|
|
throw new WrongMethodTypeException("expected " + handle.accessModeType(ad.type) + " but found "
|
|
|
|
|
+ ad.symbolicMethodTypeExact);
|
|
|
|
@ -759,7 +759,7 @@ final class VarHandleGuards {
|
|
|
|
|
@ForceInline
|
|
|
|
|
@LambdaForm.Compiled
|
|
|
|
|
@Hidden
|
|
|
|
|
final static void guard_D_V(VarHandle handle, double arg0, VarHandle.AccessDescriptor ad) throws Throwable {
|
|
|
|
|
static final void guard_D_V(VarHandle handle, double arg0, VarHandle.AccessDescriptor ad) throws Throwable {
|
|
|
|
|
if (handle.hasInvokeExactBehavior() && handle.accessModeType(ad.type) != ad.symbolicMethodTypeExact) {
|
|
|
|
|
throw new WrongMethodTypeException("expected " + handle.accessModeType(ad.type) + " but found "
|
|
|
|
|
+ ad.symbolicMethodTypeExact);
|
|
|
|
@ -777,7 +777,7 @@ final class VarHandleGuards {
|
|
|
|
|
@ForceInline
|
|
|
|
|
@LambdaForm.Compiled
|
|
|
|
|
@Hidden
|
|
|
|
|
final static boolean guard_DD_Z(VarHandle handle, double arg0, double arg1, VarHandle.AccessDescriptor ad) throws Throwable {
|
|
|
|
|
static final boolean guard_DD_Z(VarHandle handle, double arg0, double arg1, VarHandle.AccessDescriptor ad) throws Throwable {
|
|
|
|
|
if (handle.hasInvokeExactBehavior() && handle.accessModeType(ad.type) != ad.symbolicMethodTypeExact) {
|
|
|
|
|
throw new WrongMethodTypeException("expected " + handle.accessModeType(ad.type) + " but found "
|
|
|
|
|
+ ad.symbolicMethodTypeExact);
|
|
|
|
@ -793,7 +793,7 @@ final class VarHandleGuards {
|
|
|
|
|
@ForceInline
|
|
|
|
|
@LambdaForm.Compiled
|
|
|
|
|
@Hidden
|
|
|
|
|
final static double guard_DD_D(VarHandle handle, double arg0, double arg1, VarHandle.AccessDescriptor ad) throws Throwable {
|
|
|
|
|
static final double guard_DD_D(VarHandle handle, double arg0, double arg1, VarHandle.AccessDescriptor ad) throws Throwable {
|
|
|
|
|
if (handle.hasInvokeExactBehavior() && handle.accessModeType(ad.type) != ad.symbolicMethodTypeExact) {
|
|
|
|
|
throw new WrongMethodTypeException("expected " + handle.accessModeType(ad.type) + " but found "
|
|
|
|
|
+ ad.symbolicMethodTypeExact);
|
|
|
|
@ -809,7 +809,7 @@ final class VarHandleGuards {
|
|
|
|
|
@ForceInline
|
|
|
|
|
@LambdaForm.Compiled
|
|
|
|
|
@Hidden
|
|
|
|
|
final static double guard_D_D(VarHandle handle, double arg0, VarHandle.AccessDescriptor ad) throws Throwable {
|
|
|
|
|
static final double guard_D_D(VarHandle handle, double arg0, VarHandle.AccessDescriptor ad) throws Throwable {
|
|
|
|
|
if (handle.hasInvokeExactBehavior() && handle.accessModeType(ad.type) != ad.symbolicMethodTypeExact) {
|
|
|
|
|
throw new WrongMethodTypeException("expected " + handle.accessModeType(ad.type) + " but found "
|
|
|
|
|
+ ad.symbolicMethodTypeExact);
|
|
|
|
@ -825,7 +825,7 @@ final class VarHandleGuards {
|
|
|
|
|
@ForceInline
|
|
|
|
|
@LambdaForm.Compiled
|
|
|
|
|
@Hidden
|
|
|
|
|
final static Object guard_LI_L(VarHandle handle, Object arg0, int arg1, VarHandle.AccessDescriptor ad) throws Throwable {
|
|
|
|
|
static final Object guard_LI_L(VarHandle handle, Object arg0, int arg1, VarHandle.AccessDescriptor ad) throws Throwable {
|
|
|
|
|
if (handle.hasInvokeExactBehavior() && handle.accessModeType(ad.type) != ad.symbolicMethodTypeExact) {
|
|
|
|
|
throw new WrongMethodTypeException("expected " + handle.accessModeType(ad.type) + " but found "
|
|
|
|
|
+ ad.symbolicMethodTypeExact);
|
|
|
|
@ -842,7 +842,7 @@ final class VarHandleGuards {
|
|
|
|
|
@ForceInline
|
|
|
|
|
@LambdaForm.Compiled
|
|
|
|
|
@Hidden
|
|
|
|
|
final static void guard_LIL_V(VarHandle handle, Object arg0, int arg1, Object arg2, VarHandle.AccessDescriptor ad) throws Throwable {
|
|
|
|
|
static final void guard_LIL_V(VarHandle handle, Object arg0, int arg1, Object arg2, VarHandle.AccessDescriptor ad) throws Throwable {
|
|
|
|
|
if (handle.hasInvokeExactBehavior() && handle.accessModeType(ad.type) != ad.symbolicMethodTypeExact) {
|
|
|
|
|
throw new WrongMethodTypeException("expected " + handle.accessModeType(ad.type) + " but found "
|
|
|
|
|
+ ad.symbolicMethodTypeExact);
|
|
|
|
@ -860,7 +860,7 @@ final class VarHandleGuards {
|
|
|
|
|
@ForceInline
|
|
|
|
|
@LambdaForm.Compiled
|
|
|
|
|
@Hidden
|
|
|
|
|
final static boolean guard_LILL_Z(VarHandle handle, Object arg0, int arg1, Object arg2, Object arg3, VarHandle.AccessDescriptor ad) throws Throwable {
|
|
|
|
|
static final boolean guard_LILL_Z(VarHandle handle, Object arg0, int arg1, Object arg2, Object arg3, VarHandle.AccessDescriptor ad) throws Throwable {
|
|
|
|
|
if (handle.hasInvokeExactBehavior() && handle.accessModeType(ad.type) != ad.symbolicMethodTypeExact) {
|
|
|
|
|
throw new WrongMethodTypeException("expected " + handle.accessModeType(ad.type) + " but found "
|
|
|
|
|
+ ad.symbolicMethodTypeExact);
|
|
|
|
@ -876,7 +876,7 @@ final class VarHandleGuards {
|
|
|
|
|
@ForceInline
|
|
|
|
|
@LambdaForm.Compiled
|
|
|
|
|
@Hidden
|
|
|
|
|
final static Object guard_LILL_L(VarHandle handle, Object arg0, int arg1, Object arg2, Object arg3, VarHandle.AccessDescriptor ad) throws Throwable {
|
|
|
|
|
static final Object guard_LILL_L(VarHandle handle, Object arg0, int arg1, Object arg2, Object arg3, VarHandle.AccessDescriptor ad) throws Throwable {
|
|
|
|
|
if (handle.hasInvokeExactBehavior() && handle.accessModeType(ad.type) != ad.symbolicMethodTypeExact) {
|
|
|
|
|
throw new WrongMethodTypeException("expected " + handle.accessModeType(ad.type) + " but found "
|
|
|
|
|
+ ad.symbolicMethodTypeExact);
|
|
|
|
@ -893,7 +893,7 @@ final class VarHandleGuards {
|
|
|
|
|
@ForceInline
|
|
|
|
|
@LambdaForm.Compiled
|
|
|
|
|
@Hidden
|
|
|
|
|
final static Object guard_LIL_L(VarHandle handle, Object arg0, int arg1, Object arg2, VarHandle.AccessDescriptor ad) throws Throwable {
|
|
|
|
|
static final Object guard_LIL_L(VarHandle handle, Object arg0, int arg1, Object arg2, VarHandle.AccessDescriptor ad) throws Throwable {
|
|
|
|
|
if (handle.hasInvokeExactBehavior() && handle.accessModeType(ad.type) != ad.symbolicMethodTypeExact) {
|
|
|
|
|
throw new WrongMethodTypeException("expected " + handle.accessModeType(ad.type) + " but found "
|
|
|
|
|
+ ad.symbolicMethodTypeExact);
|
|
|
|
@ -910,7 +910,7 @@ final class VarHandleGuards {
|
|
|
|
|
@ForceInline
|
|
|
|
|
@LambdaForm.Compiled
|
|
|
|
|
@Hidden
|
|
|
|
|
final static void guard_LII_V(VarHandle handle, Object arg0, int arg1, int arg2, VarHandle.AccessDescriptor ad) throws Throwable {
|
|
|
|
|
static final void guard_LII_V(VarHandle handle, Object arg0, int arg1, int arg2, VarHandle.AccessDescriptor ad) throws Throwable {
|
|
|
|
|
if (handle.hasInvokeExactBehavior() && handle.accessModeType(ad.type) != ad.symbolicMethodTypeExact) {
|
|
|
|
|
throw new WrongMethodTypeException("expected " + handle.accessModeType(ad.type) + " but found "
|
|
|
|
|
+ ad.symbolicMethodTypeExact);
|
|
|
|
@ -928,7 +928,7 @@ final class VarHandleGuards {
|
|
|
|
|
@ForceInline
|
|
|
|
|
@LambdaForm.Compiled
|
|
|
|
|
@Hidden
|
|
|
|
|
final static boolean guard_LIII_Z(VarHandle handle, Object arg0, int arg1, int arg2, int arg3, VarHandle.AccessDescriptor ad) throws Throwable {
|
|
|
|
|
static final boolean guard_LIII_Z(VarHandle handle, Object arg0, int arg1, int arg2, int arg3, VarHandle.AccessDescriptor ad) throws Throwable {
|
|
|
|
|
if (handle.hasInvokeExactBehavior() && handle.accessModeType(ad.type) != ad.symbolicMethodTypeExact) {
|
|
|
|
|
throw new WrongMethodTypeException("expected " + handle.accessModeType(ad.type) + " but found "
|
|
|
|
|
+ ad.symbolicMethodTypeExact);
|
|
|
|
@ -944,7 +944,7 @@ final class VarHandleGuards {
|
|
|
|
|
@ForceInline
|
|
|
|
|
@LambdaForm.Compiled
|
|
|
|
|
@Hidden
|
|
|
|
|
final static int guard_LIII_I(VarHandle handle, Object arg0, int arg1, int arg2, int arg3, VarHandle.AccessDescriptor ad) throws Throwable {
|
|
|
|
|
static final int guard_LIII_I(VarHandle handle, Object arg0, int arg1, int arg2, int arg3, VarHandle.AccessDescriptor ad) throws Throwable {
|
|
|
|
|
if (handle.hasInvokeExactBehavior() && handle.accessModeType(ad.type) != ad.symbolicMethodTypeExact) {
|
|
|
|
|
throw new WrongMethodTypeException("expected " + handle.accessModeType(ad.type) + " but found "
|
|
|
|
|
+ ad.symbolicMethodTypeExact);
|
|
|
|
@ -960,7 +960,7 @@ final class VarHandleGuards {
|
|
|
|
|
@ForceInline
|
|
|
|
|
@LambdaForm.Compiled
|
|
|
|
|
@Hidden
|
|
|
|
|
final static long guard_LI_J(VarHandle handle, Object arg0, int arg1, VarHandle.AccessDescriptor ad) throws Throwable {
|
|
|
|
|
static final long guard_LI_J(VarHandle handle, Object arg0, int arg1, VarHandle.AccessDescriptor ad) throws Throwable {
|
|
|
|
|
if (handle.hasInvokeExactBehavior() && handle.accessModeType(ad.type) != ad.symbolicMethodTypeExact) {
|
|
|
|
|
throw new WrongMethodTypeException("expected " + handle.accessModeType(ad.type) + " but found "
|
|
|
|
|
+ ad.symbolicMethodTypeExact);
|
|
|
|
@ -976,7 +976,7 @@ final class VarHandleGuards {
|
|
|
|
|
@ForceInline
|
|
|
|
|
@LambdaForm.Compiled
|
|
|
|
|
@Hidden
|
|
|
|
|
final static void guard_LIJ_V(VarHandle handle, Object arg0, int arg1, long arg2, VarHandle.AccessDescriptor ad) throws Throwable {
|
|
|
|
|
static final void guard_LIJ_V(VarHandle handle, Object arg0, int arg1, long arg2, VarHandle.AccessDescriptor ad) throws Throwable {
|
|
|
|
|
if (handle.hasInvokeExactBehavior() && handle.accessModeType(ad.type) != ad.symbolicMethodTypeExact) {
|
|
|
|
|
throw new WrongMethodTypeException("expected " + handle.accessModeType(ad.type) + " but found "
|
|
|
|
|
+ ad.symbolicMethodTypeExact);
|
|
|
|
@ -994,7 +994,7 @@ final class VarHandleGuards {
|
|
|
|
|
@ForceInline
|
|
|
|
|
@LambdaForm.Compiled
|
|
|
|
|
@Hidden
|
|
|
|
|
final static boolean guard_LIJJ_Z(VarHandle handle, Object arg0, int arg1, long arg2, long arg3, VarHandle.AccessDescriptor ad) throws Throwable {
|
|
|
|
|
static final boolean guard_LIJJ_Z(VarHandle handle, Object arg0, int arg1, long arg2, long arg3, VarHandle.AccessDescriptor ad) throws Throwable {
|
|
|
|
|
if (handle.hasInvokeExactBehavior() && handle.accessModeType(ad.type) != ad.symbolicMethodTypeExact) {
|
|
|
|
|
throw new WrongMethodTypeException("expected " + handle.accessModeType(ad.type) + " but found "
|
|
|
|
|
+ ad.symbolicMethodTypeExact);
|
|
|
|
@ -1010,7 +1010,7 @@ final class VarHandleGuards {
|
|
|
|
|
@ForceInline
|
|
|
|
|
@LambdaForm.Compiled
|
|
|
|
|
@Hidden
|
|
|
|
|
final static long guard_LIJJ_J(VarHandle handle, Object arg0, int arg1, long arg2, long arg3, VarHandle.AccessDescriptor ad) throws Throwable {
|
|
|
|
|
static final long guard_LIJJ_J(VarHandle handle, Object arg0, int arg1, long arg2, long arg3, VarHandle.AccessDescriptor ad) throws Throwable {
|
|
|
|
|
if (handle.hasInvokeExactBehavior() && handle.accessModeType(ad.type) != ad.symbolicMethodTypeExact) {
|
|
|
|
|
throw new WrongMethodTypeException("expected " + handle.accessModeType(ad.type) + " but found "
|
|
|
|
|
+ ad.symbolicMethodTypeExact);
|
|
|
|
@ -1026,7 +1026,7 @@ final class VarHandleGuards {
|
|
|
|
|
@ForceInline
|
|
|
|
|
@LambdaForm.Compiled
|
|
|
|
|
@Hidden
|
|
|
|
|
final static long guard_LIJ_J(VarHandle handle, Object arg0, int arg1, long arg2, VarHandle.AccessDescriptor ad) throws Throwable {
|
|
|
|
|
static final long guard_LIJ_J(VarHandle handle, Object arg0, int arg1, long arg2, VarHandle.AccessDescriptor ad) throws Throwable {
|
|
|
|
|
if (handle.hasInvokeExactBehavior() && handle.accessModeType(ad.type) != ad.symbolicMethodTypeExact) {
|
|
|
|
|
throw new WrongMethodTypeException("expected " + handle.accessModeType(ad.type) + " but found "
|
|
|
|
|
+ ad.symbolicMethodTypeExact);
|
|
|
|
@ -1042,7 +1042,7 @@ final class VarHandleGuards {
|
|
|
|
|
@ForceInline
|
|
|
|
|
@LambdaForm.Compiled
|
|
|
|
|
@Hidden
|
|
|
|
|
final static float guard_LI_F(VarHandle handle, Object arg0, int arg1, VarHandle.AccessDescriptor ad) throws Throwable {
|
|
|
|
|
static final float guard_LI_F(VarHandle handle, Object arg0, int arg1, VarHandle.AccessDescriptor ad) throws Throwable {
|
|
|
|
|
if (handle.hasInvokeExactBehavior() && handle.accessModeType(ad.type) != ad.symbolicMethodTypeExact) {
|
|
|
|
|
throw new WrongMethodTypeException("expected " + handle.accessModeType(ad.type) + " but found "
|
|
|
|
|
+ ad.symbolicMethodTypeExact);
|
|
|
|
@ -1058,7 +1058,7 @@ final class VarHandleGuards {
|
|
|
|
|
@ForceInline
|
|
|
|
|
@LambdaForm.Compiled
|
|
|
|
|
@Hidden
|
|
|
|
|
final static void guard_LIF_V(VarHandle handle, Object arg0, int arg1, float arg2, VarHandle.AccessDescriptor ad) throws Throwable {
|
|
|
|
|
static final void guard_LIF_V(VarHandle handle, Object arg0, int arg1, float arg2, VarHandle.AccessDescriptor ad) throws Throwable {
|
|
|
|
|
if (handle.hasInvokeExactBehavior() && handle.accessModeType(ad.type) != ad.symbolicMethodTypeExact) {
|
|
|
|
|
throw new WrongMethodTypeException("expected " + handle.accessModeType(ad.type) + " but found "
|
|
|
|
|
+ ad.symbolicMethodTypeExact);
|
|
|
|
@ -1076,7 +1076,7 @@ final class VarHandleGuards {
|
|
|
|
|
@ForceInline
|
|
|
|
|
@LambdaForm.Compiled
|
|
|
|
|
@Hidden
|
|
|
|
|
final static boolean guard_LIFF_Z(VarHandle handle, Object arg0, int arg1, float arg2, float arg3, VarHandle.AccessDescriptor ad) throws Throwable {
|
|
|
|
|
static final boolean guard_LIFF_Z(VarHandle handle, Object arg0, int arg1, float arg2, float arg3, VarHandle.AccessDescriptor ad) throws Throwable {
|
|
|
|
|
if (handle.hasInvokeExactBehavior() && handle.accessModeType(ad.type) != ad.symbolicMethodTypeExact) {
|
|
|
|
|
throw new WrongMethodTypeException("expected " + handle.accessModeType(ad.type) + " but found "
|
|
|
|
|
+ ad.symbolicMethodTypeExact);
|
|
|
|
@ -1092,7 +1092,7 @@ final class VarHandleGuards {
|
|
|
|
|
@ForceInline
|
|
|
|
|
@LambdaForm.Compiled
|
|
|
|
|
@Hidden
|
|
|
|
|
final static float guard_LIFF_F(VarHandle handle, Object arg0, int arg1, float arg2, float arg3, VarHandle.AccessDescriptor ad) throws Throwable {
|
|
|
|
|
static final float guard_LIFF_F(VarHandle handle, Object arg0, int arg1, float arg2, float arg3, VarHandle.AccessDescriptor ad) throws Throwable {
|
|
|
|
|
if (handle.hasInvokeExactBehavior() && handle.accessModeType(ad.type) != ad.symbolicMethodTypeExact) {
|
|
|
|
|
throw new WrongMethodTypeException("expected " + handle.accessModeType(ad.type) + " but found "
|
|
|
|
|
+ ad.symbolicMethodTypeExact);
|
|
|
|
@ -1108,7 +1108,7 @@ final class VarHandleGuards {
|
|
|
|
|
@ForceInline
|
|
|
|
|
@LambdaForm.Compiled
|
|
|
|
|
@Hidden
|
|
|
|
|
final static float guard_LIF_F(VarHandle handle, Object arg0, int arg1, float arg2, VarHandle.AccessDescriptor ad) throws Throwable {
|
|
|
|
|
static final float guard_LIF_F(VarHandle handle, Object arg0, int arg1, float arg2, VarHandle.AccessDescriptor ad) throws Throwable {
|
|
|
|
|
if (handle.hasInvokeExactBehavior() && handle.accessModeType(ad.type) != ad.symbolicMethodTypeExact) {
|
|
|
|
|
throw new WrongMethodTypeException("expected " + handle.accessModeType(ad.type) + " but found "
|
|
|
|
|
+ ad.symbolicMethodTypeExact);
|
|
|
|
@ -1124,7 +1124,7 @@ final class VarHandleGuards {
|
|
|
|
|
@ForceInline
|
|
|
|
|
@LambdaForm.Compiled
|
|
|
|
|
@Hidden
|
|
|
|
|
final static double guard_LI_D(VarHandle handle, Object arg0, int arg1, VarHandle.AccessDescriptor ad) throws Throwable {
|
|
|
|
|
static final double guard_LI_D(VarHandle handle, Object arg0, int arg1, VarHandle.AccessDescriptor ad) throws Throwable {
|
|
|
|
|
if (handle.hasInvokeExactBehavior() && handle.accessModeType(ad.type) != ad.symbolicMethodTypeExact) {
|
|
|
|
|
throw new WrongMethodTypeException("expected " + handle.accessModeType(ad.type) + " but found "
|
|
|
|
|
+ ad.symbolicMethodTypeExact);
|
|
|
|
@ -1140,7 +1140,7 @@ final class VarHandleGuards {
|
|
|
|
|
@ForceInline
|
|
|
|
|
@LambdaForm.Compiled
|
|
|
|
|
@Hidden
|
|
|
|
|
final static void guard_LID_V(VarHandle handle, Object arg0, int arg1, double arg2, VarHandle.AccessDescriptor ad) throws Throwable {
|
|
|
|
|
static final void guard_LID_V(VarHandle handle, Object arg0, int arg1, double arg2, VarHandle.AccessDescriptor ad) throws Throwable {
|
|
|
|
|
if (handle.hasInvokeExactBehavior() && handle.accessModeType(ad.type) != ad.symbolicMethodTypeExact) {
|
|
|
|
|
throw new WrongMethodTypeException("expected " + handle.accessModeType(ad.type) + " but found "
|
|
|
|
|
+ ad.symbolicMethodTypeExact);
|
|
|
|
@ -1158,7 +1158,7 @@ final class VarHandleGuards {
|
|
|
|
|
@ForceInline
|
|
|
|
|
@LambdaForm.Compiled
|
|
|
|
|
@Hidden
|
|
|
|
|
final static boolean guard_LIDD_Z(VarHandle handle, Object arg0, int arg1, double arg2, double arg3, VarHandle.AccessDescriptor ad) throws Throwable {
|
|
|
|
|
static final boolean guard_LIDD_Z(VarHandle handle, Object arg0, int arg1, double arg2, double arg3, VarHandle.AccessDescriptor ad) throws Throwable {
|
|
|
|
|
if (handle.hasInvokeExactBehavior() && handle.accessModeType(ad.type) != ad.symbolicMethodTypeExact) {
|
|
|
|
|
throw new WrongMethodTypeException("expected " + handle.accessModeType(ad.type) + " but found "
|
|
|
|
|
+ ad.symbolicMethodTypeExact);
|
|
|
|
@ -1174,7 +1174,7 @@ final class VarHandleGuards {
|
|
|
|
|
@ForceInline
|
|
|
|
|
@LambdaForm.Compiled
|
|
|
|
|
@Hidden
|
|
|
|
|
final static double guard_LIDD_D(VarHandle handle, Object arg0, int arg1, double arg2, double arg3, VarHandle.AccessDescriptor ad) throws Throwable {
|
|
|
|
|
static final double guard_LIDD_D(VarHandle handle, Object arg0, int arg1, double arg2, double arg3, VarHandle.AccessDescriptor ad) throws Throwable {
|
|
|
|
|
if (handle.hasInvokeExactBehavior() && handle.accessModeType(ad.type) != ad.symbolicMethodTypeExact) {
|
|
|
|
|
throw new WrongMethodTypeException("expected " + handle.accessModeType(ad.type) + " but found "
|
|
|
|
|
+ ad.symbolicMethodTypeExact);
|
|
|
|
@ -1190,7 +1190,7 @@ final class VarHandleGuards {
|
|
|
|
|
@ForceInline
|
|
|
|
|
@LambdaForm.Compiled
|
|
|
|
|
@Hidden
|
|
|
|
|
final static double guard_LID_D(VarHandle handle, Object arg0, int arg1, double arg2, VarHandle.AccessDescriptor ad) throws Throwable {
|
|
|
|
|
static final double guard_LID_D(VarHandle handle, Object arg0, int arg1, double arg2, VarHandle.AccessDescriptor ad) throws Throwable {
|
|
|
|
|
if (handle.hasInvokeExactBehavior() && handle.accessModeType(ad.type) != ad.symbolicMethodTypeExact) {
|
|
|
|
|
throw new WrongMethodTypeException("expected " + handle.accessModeType(ad.type) + " but found "
|
|
|
|
|
+ ad.symbolicMethodTypeExact);
|
|
|
|
@ -1206,7 +1206,7 @@ final class VarHandleGuards {
|
|
|
|
|
@ForceInline
|
|
|
|
|
@LambdaForm.Compiled
|
|
|
|
|
@Hidden
|
|
|
|
|
final static int guard_LJ_I(VarHandle handle, Object arg0, long arg1, VarHandle.AccessDescriptor ad) throws Throwable {
|
|
|
|
|
static final int guard_LJ_I(VarHandle handle, Object arg0, long arg1, VarHandle.AccessDescriptor ad) throws Throwable {
|
|
|
|
|
if (handle.hasInvokeExactBehavior() && handle.accessModeType(ad.type) != ad.symbolicMethodTypeExact) {
|
|
|
|
|
throw new WrongMethodTypeException("expected " + handle.accessModeType(ad.type) + " but found "
|
|
|
|
|
+ ad.symbolicMethodTypeExact);
|
|
|
|
@ -1222,7 +1222,7 @@ final class VarHandleGuards {
|
|
|
|
|
@ForceInline
|
|
|
|
|
@LambdaForm.Compiled
|
|
|
|
|
@Hidden
|
|
|
|
|
final static void guard_LJI_V(VarHandle handle, Object arg0, long arg1, int arg2, VarHandle.AccessDescriptor ad) throws Throwable {
|
|
|
|
|
static final void guard_LJI_V(VarHandle handle, Object arg0, long arg1, int arg2, VarHandle.AccessDescriptor ad) throws Throwable {
|
|
|
|
|
if (handle.hasInvokeExactBehavior() && handle.accessModeType(ad.type) != ad.symbolicMethodTypeExact) {
|
|
|
|
|
throw new WrongMethodTypeException("expected " + handle.accessModeType(ad.type) + " but found "
|
|
|
|
|
+ ad.symbolicMethodTypeExact);
|
|
|
|
@ -1240,7 +1240,7 @@ final class VarHandleGuards {
|
|
|
|
|
@ForceInline
|
|
|
|
|
@LambdaForm.Compiled
|
|
|
|
|
@Hidden
|
|
|
|
|
final static boolean guard_LJII_Z(VarHandle handle, Object arg0, long arg1, int arg2, int arg3, VarHandle.AccessDescriptor ad) throws Throwable {
|
|
|
|
|
static final boolean guard_LJII_Z(VarHandle handle, Object arg0, long arg1, int arg2, int arg3, VarHandle.AccessDescriptor ad) throws Throwable {
|
|
|
|
|
if (handle.hasInvokeExactBehavior() && handle.accessModeType(ad.type) != ad.symbolicMethodTypeExact) {
|
|
|
|
|
throw new WrongMethodTypeException("expected " + handle.accessModeType(ad.type) + " but found "
|
|
|
|
|
+ ad.symbolicMethodTypeExact);
|
|
|
|
@ -1256,7 +1256,7 @@ final class VarHandleGuards {
|
|
|
|
|
@ForceInline
|
|
|
|
|
@LambdaForm.Compiled
|
|
|
|
|
@Hidden
|
|
|
|
|
final static int guard_LJII_I(VarHandle handle, Object arg0, long arg1, int arg2, int arg3, VarHandle.AccessDescriptor ad) throws Throwable {
|
|
|
|
|
static final int guard_LJII_I(VarHandle handle, Object arg0, long arg1, int arg2, int arg3, VarHandle.AccessDescriptor ad) throws Throwable {
|
|
|
|
|
if (handle.hasInvokeExactBehavior() && handle.accessModeType(ad.type) != ad.symbolicMethodTypeExact) {
|
|
|
|
|
throw new WrongMethodTypeException("expected " + handle.accessModeType(ad.type) + " but found "
|
|
|
|
|
+ ad.symbolicMethodTypeExact);
|
|
|
|
@ -1272,7 +1272,7 @@ final class VarHandleGuards {
|
|
|
|
|
@ForceInline
|
|
|
|
|
@LambdaForm.Compiled
|
|
|
|
|
@Hidden
|
|
|
|
|
final static int guard_LJI_I(VarHandle handle, Object arg0, long arg1, int arg2, VarHandle.AccessDescriptor ad) throws Throwable {
|
|
|
|
|
static final int guard_LJI_I(VarHandle handle, Object arg0, long arg1, int arg2, VarHandle.AccessDescriptor ad) throws Throwable {
|
|
|
|
|
if (handle.hasInvokeExactBehavior() && handle.accessModeType(ad.type) != ad.symbolicMethodTypeExact) {
|
|
|
|
|
throw new WrongMethodTypeException("expected " + handle.accessModeType(ad.type) + " but found "
|
|
|
|
|
+ ad.symbolicMethodTypeExact);
|
|
|
|
@ -1288,7 +1288,7 @@ final class VarHandleGuards {
|
|
|
|
|
@ForceInline
|
|
|
|
|
@LambdaForm.Compiled
|
|
|
|
|
@Hidden
|
|
|
|
|
final static void guard_LJJ_V(VarHandle handle, Object arg0, long arg1, long arg2, VarHandle.AccessDescriptor ad) throws Throwable {
|
|
|
|
|
static final void guard_LJJ_V(VarHandle handle, Object arg0, long arg1, long arg2, VarHandle.AccessDescriptor ad) throws Throwable {
|
|
|
|
|
if (handle.hasInvokeExactBehavior() && handle.accessModeType(ad.type) != ad.symbolicMethodTypeExact) {
|
|
|
|
|
throw new WrongMethodTypeException("expected " + handle.accessModeType(ad.type) + " but found "
|
|
|
|
|
+ ad.symbolicMethodTypeExact);
|
|
|
|
@ -1306,7 +1306,7 @@ final class VarHandleGuards {
|
|
|
|
|
@ForceInline
|
|
|
|
|
@LambdaForm.Compiled
|
|
|
|
|
@Hidden
|
|
|
|
|
final static boolean guard_LJJJ_Z(VarHandle handle, Object arg0, long arg1, long arg2, long arg3, VarHandle.AccessDescriptor ad) throws Throwable {
|
|
|
|
|
static final boolean guard_LJJJ_Z(VarHandle handle, Object arg0, long arg1, long arg2, long arg3, VarHandle.AccessDescriptor ad) throws Throwable {
|
|
|
|
|
if (handle.hasInvokeExactBehavior() && handle.accessModeType(ad.type) != ad.symbolicMethodTypeExact) {
|
|
|
|
|
throw new WrongMethodTypeException("expected " + handle.accessModeType(ad.type) + " but found "
|
|
|
|
|
+ ad.symbolicMethodTypeExact);
|
|
|
|
@ -1322,7 +1322,7 @@ final class VarHandleGuards {
|
|
|
|
|
@ForceInline
|
|
|
|
|
@LambdaForm.Compiled
|
|
|
|
|
@Hidden
|
|
|
|
|
final static long guard_LJJJ_J(VarHandle handle, Object arg0, long arg1, long arg2, long arg3, VarHandle.AccessDescriptor ad) throws Throwable {
|
|
|
|
|
static final long guard_LJJJ_J(VarHandle handle, Object arg0, long arg1, long arg2, long arg3, VarHandle.AccessDescriptor ad) throws Throwable {
|
|
|
|
|
if (handle.hasInvokeExactBehavior() && handle.accessModeType(ad.type) != ad.symbolicMethodTypeExact) {
|
|
|
|
|
throw new WrongMethodTypeException("expected " + handle.accessModeType(ad.type) + " but found "
|
|
|
|
|
+ ad.symbolicMethodTypeExact);
|
|
|
|
|