MCPcopy Create free account
hub / github.com/CppCXY/EmmyLuaCodeStyle / luaK_codeABCk

Function luaK_codeABCk

3rd/lua-5.4.3/src/lcode.c:396–401  ·  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

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

Callers 4

condjumpFunction · 0.85
codeABRKFunction · 0.85
finishbinexpvalFunction · 0.85
luaK_setlistFunction · 0.85

Calls 1

luaK_codeFunction · 0.85

Tested by

no test coverage detected