MCPcopy Create free account
hub / github.com/EmmyLua/EmmyLuaDebugger / luaK_codeABC

Function luaK_codeABC

third-party/lua-5.2.4/src/lcode.c:227–233  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

225
226
227int luaK_codeABC (FuncState *fs, OpCode o, int a, int b, int c) {
228 lua_assert(getOpMode(o) == iABC);
229 lua_assert(getBMode(o) != OpArgN || b == 0);
230 lua_assert(getCMode(o) != OpArgN || c == 0);
231 lua_assert(a <= MAXARG_A && b <= MAXARG_B && c <= MAXARG_C);
232 return luaK_code(fs, CREATE_ABC(o, a, b, c));
233}
234
235
236int luaK_codeABx (FuncState *fs, OpCode o, int a, unsigned int bc) {

Callers 15

recfieldFunction · 0.70
constructorFunction · 0.70
funcargsFunction · 0.70
simpleexpFunction · 0.70
check_conflictFunction · 0.70
forbodyFunction · 0.70
luaK_nilFunction · 0.70
luaK_retFunction · 0.70
condjumpFunction · 0.70
luaK_dischargevarsFunction · 0.70
code_labelFunction · 0.70
discharge2regFunction · 0.70

Calls 1

luaK_codeFunction · 0.70

Tested by

no test coverage detected