(inst *uint32, opcode int)
| 175 | } |
| 176 | |
| 177 | func opSetOpCode(inst *uint32, opcode int) { |
| 178 | *inst = (*inst & 0x3ffffff) | uint32(opcode<<26) |
| 179 | } |
| 180 | |
| 181 | func opGetArgA(inst uint32) int { |
| 182 | return int(inst>>18) & 0xff |
no outgoing calls
no test coverage detected
searching dependent graphs…