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

Method read

bindings/java/capstone/X86.java:61–72  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

59 public boolean avx_zero_opmask;
60
61 public void read() {
62 super.read();
63 if (type == X86_OP_MEM)
64 value.setType(MemType.class);
65 if (type == X86_OP_IMM)
66 value.setType(Long.TYPE);
67 if (type == X86_OP_REG)
68 value.setType(Integer.TYPE);
69 if (type == X86_OP_INVALID)
70 return;
71 readField("value");
72 }
73
74 @Override
75 public List getFieldOrder() {

Callers

nothing calls this directly

Calls 1

setTypeMethod · 0.80

Tested by

no test coverage detected