コード例 #1
0
 private static void verifyGet(
     FrameWithoutBoxing frame, FrameSlot slot, FrameSlotKind accessType) {
   if (getTag(frame, slot) != (byte) accessType.ordinal()) {
     DeoptimizeNode.deopt(
         DeoptimizationAction.InvalidateReprofile, DeoptimizationReason.UnreachedCode);
   }
 }
コード例 #2
0
 private static void verifySet(
     FrameWithoutBoxing frame, FrameSlot slot, FrameSlotKind accessType) {
   setTag(frame, slot, (byte) accessType.ordinal());
 }