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

Function luaK_codeABCk

third-party/lua-5.4.6/src/lcode.c:398–403  ·  view source on GitHub ↗

** Format and emit an 'iABC' instruction. (Assertions check consistency ** of parameters versus opcode.) */

Source from the content-addressed store, hash-verified

396** of parameters versus opcode.)
397*/
398int luaK_codeABCk (FuncState *fs, OpCode o, int a, int b, int c, int k) {
399 lua_assert(getOpMode(o) == iABC);
400 lua_assert(a <= MAXARG_A && b <= MAXARG_B &&
401 c <= MAXARG_C && (k & ~1) == 0);
402 return luaK_code(fs, CREATE_ABCk(o, a, b, c, k));
403}
404
405
406/*

Callers 4

condjumpFunction · 0.70
codeABRKFunction · 0.70
finishbinexpvalFunction · 0.70
luaK_setlistFunction · 0.70

Calls 1

luaK_codeFunction · 0.70

Tested by

no test coverage detected