()
| 134 | func mask0(n, p uint) instruction { return ^mask1(n, p) } |
| 135 | |
| 136 | func (i instruction) opCode() opCode { return opCode(i >> posOp & (1<<sizeOp - 1)) } |
| 137 | func (i instruction) arg(pos, size uint) int { return int(i >> pos & mask1(size, 0)) } |
| 138 | func (i *instruction) setOpCode(op opCode) { i.setArg(posOp, sizeOp, int(op)) } |
| 139 | func (i *instruction) setArg(pos, size uint, arg int) { |
no test coverage detected