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

Method read

bindings/java/capstone/Systemz.java:38–49  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

36 public OpValue value;
37
38 public void read() {
39 readField("type");
40 if (type == SYSZ_OP_MEM)
41 value.setType(MemType.class);
42 if (type == SYSZ_OP_IMM)
43 value.setType(Long.TYPE);
44 if (type == SYSZ_OP_REG || type == SYSZ_OP_ACREG)
45 value.setType(Integer.TYPE);
46 if (type == SYSZ_OP_INVALID)
47 return;
48 readField("value");
49 }
50
51 @Override
52 public List getFieldOrder() {

Callers

nothing calls this directly

Calls 1

setTypeMethod · 0.80

Tested by

no test coverage detected