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