Class InstructionClassifier


  • public class InstructionClassifier
    extends java.lang.Object
    Util for operations involving Instruction.
    • Method Summary

      All Methods Static Methods Concrete Methods 
      Modifier and Type Method Description
      static boolean isInvoke​(byte opcode)  
      static boolean isLongShift​(byte opcode)  
      static boolean isReturn​(byte opcode)  
      static boolean isTypedReturn​(byte opcode)
      Checks if the opcode is nonvoid return.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • InstructionClassifier

        public InstructionClassifier()
    • Method Detail

      • isReturn

        public static boolean isReturn​(byte opcode)
      • isTypedReturn

        public static boolean isTypedReturn​(byte opcode)
        Checks if the opcode is nonvoid return.
      • isInvoke

        public static boolean isInvoke​(byte opcode)
      • isLongShift

        public static boolean isLongShift​(byte opcode)