MCPcopy Create free account
hub / github.com/TASEmulators/fceux / luaK_codeABC

Function luaK_codeABC

src/lua/src/lcode.c:812–817  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

810
811
812int luaK_codeABC (FuncState *fs, OpCode o, int a, int b, int c) {
813 lua_assert(getOpMode(o) == iABC);
814 lua_assert(getBMode(o) != OpArgN || b == 0);
815 lua_assert(getCMode(o) != OpArgN || c == 0);
816 return luaK_code(fs, CREATE_ABC(o, a, b, c), fs->ls->lastline);
817}
818
819
820int luaK_codeABx (FuncState *fs, OpCode o, int a, unsigned int bc) {

Callers 15

leaveblockFunction · 0.85
pushclosureFunction · 0.85
recfieldFunction · 0.85
constructorFunction · 0.85
funcargsFunction · 0.85
simpleexpFunction · 0.85
check_conflictFunction · 0.85
breakstatFunction · 0.85
forbodyFunction · 0.85
luaK_nilFunction · 0.85
luaK_retFunction · 0.85
condjumpFunction · 0.85

Calls 1

luaK_codeFunction · 0.85

Tested by

no test coverage detected