private static void verifyGet( FrameWithoutBoxing frame, FrameSlot slot, FrameSlotKind accessType) { if (getTag(frame, slot) != (byte) accessType.ordinal()) { DeoptimizeNode.deopt( DeoptimizationAction.InvalidateReprofile, DeoptimizationReason.UnreachedCode); } }
private static void verifySet( FrameWithoutBoxing frame, FrameSlot slot, FrameSlotKind accessType) { setTag(frame, slot, (byte) accessType.ordinal()); }