()
| 36 | public OpValue value; |
| 37 | |
| 38 | public void read() { |
| 39 | readField("type"); |
| 40 | if (type == XCORE_OP_MEM) |
| 41 | value.setType(MemType.class); |
| 42 | if (type == XCORE_OP_IMM || type == XCORE_OP_REG) |
| 43 | value.setType(Integer.TYPE); |
| 44 | if (type == XCORE_OP_INVALID) |
| 45 | return; |
| 46 | readField("value"); |
| 47 | } |
| 48 | |
| 49 | @Override |
| 50 | public List getFieldOrder() { |