Note: the gc optimizer cannot inline through multiple function calls. Manually inline for now. func (i instruction) a() int { return i.arg(posA, sizeA) } func (i instruction) b() int { return i.arg(posB, sizeB) } func (i instruction) c() int { return i.arg(posC, sizeC) } func (i instruction) b
()
| 149 | // func (i instruction) sbx() int { return i.bx() - maxArgSBx } |
| 150 | |
| 151 | func (i instruction) a() int { return int(i >> posA & maxArgA) } |
| 152 | func (i instruction) b() int { return int(i >> posB & maxArgB) } |
| 153 | func (i instruction) c() int { return int(i >> posC & maxArgC) } |
| 154 | func (i instruction) bx() int { return int(i >> posBx & maxArgBx) } |
no outgoing calls
no test coverage detected