(byte operand)
| 30 | return (byte)-(reg + 1); |
| 31 | } |
| 32 | public static int decodeRegister(byte operand) { return -1 - operand; } |
| 33 | public static byte encodeOffset(int offset) { |
| 34 | if (offset > Byte.MAX_VALUE) |
| 35 | throw new StoneException("too big byte offset"); |
no outgoing calls
no test coverage detected