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

Function opGetOpCode

opcode.go:173–175  ·  view source on GitHub ↗
(inst uint32)

Source from the content-addressed store, hash-verified

171}
172
173func opGetOpCode(inst uint32) int {
174 return int(inst >> 26)
175}
176
177func opSetOpCode(inst *uint32, opcode int) {
178 *inst = (*inst & 0x3ffffff) | uint32(opcode<<26)

Callers 10

strMethod · 0.85
initFunction · 0.85
initFunction · 0.85
opToStringFunction · 0.85
PropagateKMVMethod · 0.85
PropagateMVMethod · 0.85
compileLogicalOpExprFunction · 0.85
compileLogicalOpExprAuxFunction · 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…