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

Method read

bindings/java/capstone/Xcore.java:38–47  ·  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 == 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() {

Callers

nothing calls this directly

Calls 1

setTypeMethod · 0.80

Tested by

no test coverage detected