()
| 46 | public OpValue value; |
| 47 | |
| 48 | public void read() { |
| 49 | readField("type"); |
| 50 | if (type == PPC_OP_MEM) |
| 51 | value.setType(MemType.class); |
| 52 | if (type == PPC_OP_CRX) |
| 53 | value.setType(CrxType.class); |
| 54 | if (type == PPC_OP_IMM || type == PPC_OP_REG) |
| 55 | value.setType(Integer.TYPE); |
| 56 | if (type == PPC_OP_INVALID) |
| 57 | return; |
| 58 | readField("value"); |
| 59 | } |
| 60 | |
| 61 | @Override |
| 62 | public List getFieldOrder() { |