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

Function opCreateABC

opcode.go:221–228  ·  view source on GitHub ↗
(op int, a int, b int, c int)

Source from the content-addressed store, hash-verified

219}
220
221func opCreateABC(op int, a int, b int, c int) uint32 {
222 var inst uint32 = 0
223 opSetOpCode(&inst, op)
224 opSetArgA(&inst, a)
225 opSetArgB(&inst, b)
226 opSetArgC(&inst, c)
227 return inst
228}
229
230func opCreateABx(op int, a int, bx int) uint32 {
231 var inst uint32 = 0

Callers 1

AddABCMethod · 0.85

Calls 4

opSetOpCodeFunction · 0.85
opSetArgAFunction · 0.85
opSetArgBFunction · 0.85
opSetArgCFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…