(UnionOpInfo e)
| 140 | public Encoding encoding; |
| 141 | |
| 142 | public OpInfo(UnionOpInfo e) { |
| 143 | prefix = e.prefix; |
| 144 | opcode = e.opcode; |
| 145 | rex = e.rex; |
| 146 | addrSize = e.addr_size; |
| 147 | modrm = e.modrm; |
| 148 | sib = e.sib; |
| 149 | disp = e.disp; |
| 150 | sibIndex = e.sib_index; |
| 151 | sibScale = e.sib_scale; |
| 152 | sibBase = e.sib_base; |
| 153 | xopCC = e.xop_cc; |
| 154 | sseCC = e.sse_cc; |
| 155 | avxCC = e.avx_cc; |
| 156 | avxSae = e.avx_sae > 0; |
| 157 | avxRm = e.avx_rm; |
| 158 | eflags = e.eflags; |
| 159 | op = new Operand[e.op_count]; |
| 160 | for (int i=0; i<e.op_count; i++) |
| 161 | op[i] = e.op[i]; |
| 162 | encoding = e.encoding; |
| 163 | } |
| 164 | } |
| 165 | } |
nothing calls this directly
no outgoing calls
no test coverage detected