MCPcopy Index your code
hub / github.com/yuin/gopher-lua / opGetArgC

Function opGetArgC

opcode.go:197–199  ·  view source on GitHub ↗
(inst uint32)

Source from the content-addressed store, hash-verified

195}
196
197func opGetArgC(inst uint32) int {
198 return int(inst>>9) & 0x1ff
199}
200
201func opSetArgC(inst *uint32, arg int) {
202 *inst = (*inst & 0xfffc01ff) | uint32((arg&0x1ff)<<9)

Callers 2

opToStringFunction · 0.85
patchCodeFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…