MCPcopy Create free account
hub / github.com/capstone-engine/capstone / read

Method read

bindings/java/capstone/Ppc.java:48–59  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

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() {

Callers

nothing calls this directly

Calls 1

setTypeMethod · 0.80

Tested by

no test coverage detected