2021-10-29 21:25:12 +01:00
|
|
|
// This file is part of the Luau programming language and is licensed under MIT License; see LICENSE.txt for details
|
|
|
|
// This code is based on Lua 5.x implementation licensed under MIT License; see lua_LICENSE.txt for details
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "lua.h"
|
|
|
|
#include "lcommon.h"
|
|
|
|
|
|
|
|
/*
|
|
|
|
** Union of all collectible objects
|
|
|
|
*/
|
|
|
|
typedef union GCObject GCObject;
|
|
|
|
|
|
|
|
/*
|
2022-01-21 17:00:19 +00:00
|
|
|
** Common Header for all collectible objects (in macro form, to be included in other objects)
|
2021-10-29 21:25:12 +01:00
|
|
|
*/
|
|
|
|
// clang-format off
|
|
|
|
#define CommonHeader \
|
|
|
|
uint8_t tt; uint8_t marked; uint8_t memcat
|
|
|
|
// clang-format on
|
|
|
|
|
|
|
|
/*
|
|
|
|
** Common header in struct form
|
|
|
|
*/
|
|
|
|
typedef struct GCheader
|
|
|
|
{
|
|
|
|
CommonHeader;
|
|
|
|
} GCheader;
|
|
|
|
|
|
|
|
/*
|
|
|
|
** Union of all Lua values
|
|
|
|
*/
|
|
|
|
typedef union
|
|
|
|
{
|
|
|
|
GCObject* gc;
|
|
|
|
void* p;
|
|
|
|
double n;
|
|
|
|
int b;
|
|
|
|
float v[2]; // v[0], v[1] live here; v[2] lives in TValue::extra
|
|
|
|
} Value;
|
|
|
|
|
|
|
|
/*
|
|
|
|
** Tagged Values
|
|
|
|
*/
|
|
|
|
|
|
|
|
typedef struct lua_TValue
|
|
|
|
{
|
|
|
|
Value value;
|
2021-11-22 15:42:33 +00:00
|
|
|
int extra[LUA_EXTRA_SIZE];
|
2021-10-29 21:25:12 +01:00
|
|
|
int tt;
|
|
|
|
} TValue;
|
|
|
|
|
2022-08-04 23:35:33 +01:00
|
|
|
// Macros to test type
|
2021-10-29 21:25:12 +01:00
|
|
|
#define ttisnil(o) (ttype(o) == LUA_TNIL)
|
|
|
|
#define ttisnumber(o) (ttype(o) == LUA_TNUMBER)
|
|
|
|
#define ttisstring(o) (ttype(o) == LUA_TSTRING)
|
|
|
|
#define ttistable(o) (ttype(o) == LUA_TTABLE)
|
|
|
|
#define ttisfunction(o) (ttype(o) == LUA_TFUNCTION)
|
|
|
|
#define ttisboolean(o) (ttype(o) == LUA_TBOOLEAN)
|
|
|
|
#define ttisuserdata(o) (ttype(o) == LUA_TUSERDATA)
|
|
|
|
#define ttisthread(o) (ttype(o) == LUA_TTHREAD)
|
|
|
|
#define ttislightuserdata(o) (ttype(o) == LUA_TLIGHTUSERDATA)
|
|
|
|
#define ttisvector(o) (ttype(o) == LUA_TVECTOR)
|
|
|
|
#define ttisupval(o) (ttype(o) == LUA_TUPVAL)
|
|
|
|
|
2022-08-04 23:35:33 +01:00
|
|
|
// Macros to access values
|
2021-10-29 21:25:12 +01:00
|
|
|
#define ttype(o) ((o)->tt)
|
|
|
|
#define gcvalue(o) check_exp(iscollectable(o), (o)->value.gc)
|
|
|
|
#define pvalue(o) check_exp(ttislightuserdata(o), (o)->value.p)
|
|
|
|
#define nvalue(o) check_exp(ttisnumber(o), (o)->value.n)
|
|
|
|
#define vvalue(o) check_exp(ttisvector(o), (o)->value.v)
|
|
|
|
#define tsvalue(o) check_exp(ttisstring(o), &(o)->value.gc->ts)
|
|
|
|
#define uvalue(o) check_exp(ttisuserdata(o), &(o)->value.gc->u)
|
|
|
|
#define clvalue(o) check_exp(ttisfunction(o), &(o)->value.gc->cl)
|
|
|
|
#define hvalue(o) check_exp(ttistable(o), &(o)->value.gc->h)
|
|
|
|
#define bvalue(o) check_exp(ttisboolean(o), (o)->value.b)
|
|
|
|
#define thvalue(o) check_exp(ttisthread(o), &(o)->value.gc->th)
|
|
|
|
#define upvalue(o) check_exp(ttisupval(o), &(o)->value.gc->uv)
|
|
|
|
|
2021-12-10 22:05:05 +00:00
|
|
|
#define l_isfalse(o) (ttisnil(o) || (ttisboolean(o) && bvalue(o) == 0))
|
2021-10-29 21:25:12 +01:00
|
|
|
|
|
|
|
/*
|
|
|
|
** for internal debug only
|
|
|
|
*/
|
|
|
|
#define checkconsistency(obj) LUAU_ASSERT(!iscollectable(obj) || (ttype(obj) == (obj)->value.gc->gch.tt))
|
|
|
|
|
|
|
|
#define checkliveness(g, obj) LUAU_ASSERT(!iscollectable(obj) || ((ttype(obj) == (obj)->value.gc->gch.tt) && !isdead(g, (obj)->value.gc)))
|
|
|
|
|
2022-08-04 23:35:33 +01:00
|
|
|
// Macros to set values
|
2021-10-29 21:25:12 +01:00
|
|
|
#define setnilvalue(obj) ((obj)->tt = LUA_TNIL)
|
|
|
|
|
|
|
|
#define setnvalue(obj, x) \
|
|
|
|
{ \
|
|
|
|
TValue* i_o = (obj); \
|
|
|
|
i_o->value.n = (x); \
|
|
|
|
i_o->tt = LUA_TNUMBER; \
|
|
|
|
}
|
|
|
|
|
2021-11-22 15:42:33 +00:00
|
|
|
#if LUA_VECTOR_SIZE == 4
|
|
|
|
#define setvvalue(obj, x, y, z, w) \
|
2021-10-29 21:25:12 +01:00
|
|
|
{ \
|
|
|
|
TValue* i_o = (obj); \
|
|
|
|
float* i_v = i_o->value.v; \
|
|
|
|
i_v[0] = (x); \
|
|
|
|
i_v[1] = (y); \
|
|
|
|
i_v[2] = (z); \
|
2021-11-22 15:42:33 +00:00
|
|
|
i_v[3] = (w); \
|
2021-10-29 21:25:12 +01:00
|
|
|
i_o->tt = LUA_TVECTOR; \
|
|
|
|
}
|
2021-11-22 15:42:33 +00:00
|
|
|
#else
|
|
|
|
#define setvvalue(obj, x, y, z, w) \
|
|
|
|
{ \
|
|
|
|
TValue* i_o = (obj); \
|
|
|
|
float* i_v = i_o->value.v; \
|
|
|
|
i_v[0] = (x); \
|
|
|
|
i_v[1] = (y); \
|
|
|
|
i_v[2] = (z); \
|
|
|
|
i_o->tt = LUA_TVECTOR; \
|
|
|
|
}
|
|
|
|
#endif
|
2021-10-29 21:25:12 +01:00
|
|
|
|
|
|
|
#define setpvalue(obj, x) \
|
|
|
|
{ \
|
|
|
|
TValue* i_o = (obj); \
|
|
|
|
i_o->value.p = (x); \
|
|
|
|
i_o->tt = LUA_TLIGHTUSERDATA; \
|
|
|
|
}
|
|
|
|
|
|
|
|
#define setbvalue(obj, x) \
|
|
|
|
{ \
|
|
|
|
TValue* i_o = (obj); \
|
|
|
|
i_o->value.b = (x); \
|
|
|
|
i_o->tt = LUA_TBOOLEAN; \
|
|
|
|
}
|
|
|
|
|
|
|
|
#define setsvalue(L, obj, x) \
|
|
|
|
{ \
|
|
|
|
TValue* i_o = (obj); \
|
|
|
|
i_o->value.gc = cast_to(GCObject*, (x)); \
|
|
|
|
i_o->tt = LUA_TSTRING; \
|
|
|
|
checkliveness(L->global, i_o); \
|
|
|
|
}
|
|
|
|
|
|
|
|
#define setuvalue(L, obj, x) \
|
|
|
|
{ \
|
|
|
|
TValue* i_o = (obj); \
|
|
|
|
i_o->value.gc = cast_to(GCObject*, (x)); \
|
|
|
|
i_o->tt = LUA_TUSERDATA; \
|
|
|
|
checkliveness(L->global, i_o); \
|
|
|
|
}
|
|
|
|
|
|
|
|
#define setthvalue(L, obj, x) \
|
|
|
|
{ \
|
|
|
|
TValue* i_o = (obj); \
|
|
|
|
i_o->value.gc = cast_to(GCObject*, (x)); \
|
|
|
|
i_o->tt = LUA_TTHREAD; \
|
|
|
|
checkliveness(L->global, i_o); \
|
|
|
|
}
|
|
|
|
|
|
|
|
#define setclvalue(L, obj, x) \
|
|
|
|
{ \
|
|
|
|
TValue* i_o = (obj); \
|
|
|
|
i_o->value.gc = cast_to(GCObject*, (x)); \
|
|
|
|
i_o->tt = LUA_TFUNCTION; \
|
|
|
|
checkliveness(L->global, i_o); \
|
|
|
|
}
|
|
|
|
|
|
|
|
#define sethvalue(L, obj, x) \
|
|
|
|
{ \
|
|
|
|
TValue* i_o = (obj); \
|
|
|
|
i_o->value.gc = cast_to(GCObject*, (x)); \
|
|
|
|
i_o->tt = LUA_TTABLE; \
|
|
|
|
checkliveness(L->global, i_o); \
|
|
|
|
}
|
|
|
|
|
|
|
|
#define setptvalue(L, obj, x) \
|
|
|
|
{ \
|
|
|
|
TValue* i_o = (obj); \
|
|
|
|
i_o->value.gc = cast_to(GCObject*, (x)); \
|
|
|
|
i_o->tt = LUA_TPROTO; \
|
|
|
|
checkliveness(L->global, i_o); \
|
|
|
|
}
|
|
|
|
|
|
|
|
#define setupvalue(L, obj, x) \
|
|
|
|
{ \
|
|
|
|
TValue* i_o = (obj); \
|
|
|
|
i_o->value.gc = cast_to(GCObject*, (x)); \
|
|
|
|
i_o->tt = LUA_TUPVAL; \
|
|
|
|
checkliveness(L->global, i_o); \
|
|
|
|
}
|
|
|
|
|
|
|
|
#define setobj(L, obj1, obj2) \
|
|
|
|
{ \
|
|
|
|
const TValue* o2 = (obj2); \
|
|
|
|
TValue* o1 = (obj1); \
|
|
|
|
*o1 = *o2; \
|
|
|
|
checkliveness(L->global, o1); \
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
** different types of sets, according to destination
|
|
|
|
*/
|
|
|
|
|
2022-08-04 23:35:33 +01:00
|
|
|
// from stack to (same) stack
|
2021-10-29 21:25:12 +01:00
|
|
|
#define setobjs2s setobj
|
2022-08-04 23:35:33 +01:00
|
|
|
// to stack (not from same stack)
|
2021-10-29 21:25:12 +01:00
|
|
|
#define setobj2s setobj
|
|
|
|
#define setsvalue2s setsvalue
|
|
|
|
#define sethvalue2s sethvalue
|
|
|
|
#define setptvalue2s setptvalue
|
2022-08-04 23:35:33 +01:00
|
|
|
// from table to same table
|
2021-10-29 21:25:12 +01:00
|
|
|
#define setobjt2t setobj
|
2022-08-04 23:35:33 +01:00
|
|
|
// to table
|
2021-10-29 21:25:12 +01:00
|
|
|
#define setobj2t setobj
|
2022-08-04 23:35:33 +01:00
|
|
|
// to new object
|
2021-10-29 21:25:12 +01:00
|
|
|
#define setobj2n setobj
|
|
|
|
#define setsvalue2n setsvalue
|
|
|
|
|
|
|
|
#define setttype(obj, tt) (ttype(obj) = (tt))
|
|
|
|
|
|
|
|
#define iscollectable(o) (ttype(o) >= LUA_TSTRING)
|
|
|
|
|
2022-08-04 23:35:33 +01:00
|
|
|
typedef TValue* StkId; // index to stack elements
|
2021-10-29 21:25:12 +01:00
|
|
|
|
|
|
|
/*
|
|
|
|
** String headers for string table
|
|
|
|
*/
|
|
|
|
typedef struct TString
|
|
|
|
{
|
|
|
|
CommonHeader;
|
2022-01-21 17:00:19 +00:00
|
|
|
// 1 byte padding
|
2021-10-29 21:25:12 +01:00
|
|
|
|
|
|
|
int16_t atom;
|
2022-01-21 17:00:19 +00:00
|
|
|
// 2 byte padding
|
2021-10-29 21:25:12 +01:00
|
|
|
|
2022-08-25 22:53:50 +01:00
|
|
|
TString* next; // next string in the hash table bucket
|
2022-02-24 23:53:37 +00:00
|
|
|
|
2021-10-29 21:25:12 +01:00
|
|
|
unsigned int hash;
|
|
|
|
unsigned int len;
|
|
|
|
|
|
|
|
char data[1]; // string data is allocated right after the header
|
|
|
|
} TString;
|
|
|
|
|
|
|
|
#define getstr(ts) (ts)->data
|
|
|
|
#define svalue(o) getstr(tsvalue(o))
|
|
|
|
|
|
|
|
typedef struct Udata
|
|
|
|
{
|
|
|
|
CommonHeader;
|
|
|
|
|
|
|
|
uint8_t tag;
|
|
|
|
|
|
|
|
int len;
|
|
|
|
|
|
|
|
struct Table* metatable;
|
|
|
|
|
|
|
|
union
|
|
|
|
{
|
|
|
|
char data[1]; // userdata is allocated right after the header
|
|
|
|
L_Umaxalign dummy; // ensures maximum alignment for data
|
|
|
|
};
|
|
|
|
} Udata;
|
|
|
|
|
|
|
|
/*
|
|
|
|
** Function Prototypes
|
|
|
|
*/
|
|
|
|
// clang-format off
|
|
|
|
typedef struct Proto
|
|
|
|
{
|
|
|
|
CommonHeader;
|
|
|
|
|
|
|
|
|
2022-08-04 23:35:33 +01:00
|
|
|
TValue* k; // constants used by the function
|
|
|
|
Instruction* code; // function bytecode
|
|
|
|
struct Proto** p; // functions defined inside the function
|
|
|
|
uint8_t* lineinfo; // for each instruction, line number as a delta from baseline
|
|
|
|
int* abslineinfo; // baseline line info, one entry for each 1<<linegaplog2 instructions; allocated after lineinfo
|
|
|
|
struct LocVar* locvars; // information about local variables
|
|
|
|
TString** upvalues; // upvalue names
|
2021-10-29 21:25:12 +01:00
|
|
|
TString* source;
|
|
|
|
|
|
|
|
TString* debugname;
|
|
|
|
uint8_t* debuginsn; // a copy of code[] array with just opcodes
|
|
|
|
|
|
|
|
GCObject* gclist;
|
|
|
|
|
|
|
|
|
|
|
|
int sizecode;
|
|
|
|
int sizep;
|
|
|
|
int sizelocvars;
|
|
|
|
int sizeupvalues;
|
|
|
|
int sizek;
|
|
|
|
int sizelineinfo;
|
|
|
|
int linegaplog2;
|
2022-01-07 01:46:53 +00:00
|
|
|
int linedefined;
|
2021-10-29 21:25:12 +01:00
|
|
|
|
|
|
|
|
2022-08-04 23:35:33 +01:00
|
|
|
uint8_t nups; // number of upvalues
|
2021-10-29 21:25:12 +01:00
|
|
|
uint8_t numparams;
|
|
|
|
uint8_t is_vararg;
|
|
|
|
uint8_t maxstacksize;
|
|
|
|
} Proto;
|
|
|
|
// clang-format on
|
|
|
|
|
|
|
|
typedef struct LocVar
|
|
|
|
{
|
|
|
|
TString* varname;
|
2022-08-04 23:35:33 +01:00
|
|
|
int startpc; // first point where variable is active
|
|
|
|
int endpc; // first point where variable is dead
|
|
|
|
uint8_t reg; // register slot, relative to base, where variable is stored
|
2021-10-29 21:25:12 +01:00
|
|
|
} LocVar;
|
|
|
|
|
|
|
|
/*
|
|
|
|
** Upvalues
|
|
|
|
*/
|
|
|
|
|
|
|
|
typedef struct UpVal
|
|
|
|
{
|
|
|
|
CommonHeader;
|
2022-08-25 22:53:50 +01:00
|
|
|
uint8_t markedopen; // set if reachable from an alive thread (only valid during atomic)
|
|
|
|
|
|
|
|
// 4 byte padding (x64)
|
|
|
|
|
2022-08-04 23:35:33 +01:00
|
|
|
TValue* v; // points to stack or to its own value
|
2021-10-29 21:25:12 +01:00
|
|
|
union
|
|
|
|
{
|
2022-08-04 23:35:33 +01:00
|
|
|
TValue value; // the value (when closed)
|
2021-10-29 21:25:12 +01:00
|
|
|
struct
|
2022-01-21 17:00:19 +00:00
|
|
|
{
|
2022-08-04 23:35:33 +01:00
|
|
|
// global double linked list (when open)
|
2021-10-29 21:25:12 +01:00
|
|
|
struct UpVal* prev;
|
|
|
|
struct UpVal* next;
|
2022-01-21 17:00:19 +00:00
|
|
|
|
2022-08-25 22:53:50 +01:00
|
|
|
// thread linked list (when open)
|
2022-02-24 23:53:37 +00:00
|
|
|
struct UpVal* threadnext;
|
2022-08-25 22:53:50 +01:00
|
|
|
} open;
|
2021-10-29 21:25:12 +01:00
|
|
|
} u;
|
|
|
|
} UpVal;
|
|
|
|
|
2022-08-25 22:53:50 +01:00
|
|
|
#define upisopen(up) ((up)->v != &(up)->u.value)
|
|
|
|
|
2021-10-29 21:25:12 +01:00
|
|
|
/*
|
|
|
|
** Closures
|
|
|
|
*/
|
|
|
|
|
|
|
|
typedef struct Closure
|
|
|
|
{
|
|
|
|
CommonHeader;
|
|
|
|
|
|
|
|
uint8_t isC;
|
|
|
|
uint8_t nupvalues;
|
|
|
|
uint8_t stacksize;
|
|
|
|
uint8_t preload;
|
|
|
|
|
|
|
|
GCObject* gclist;
|
|
|
|
struct Table* env;
|
|
|
|
|
|
|
|
union
|
|
|
|
{
|
|
|
|
struct
|
|
|
|
{
|
|
|
|
lua_CFunction f;
|
|
|
|
lua_Continuation cont;
|
|
|
|
const char* debugname;
|
|
|
|
TValue upvals[1];
|
|
|
|
} c;
|
|
|
|
|
|
|
|
struct
|
|
|
|
{
|
|
|
|
struct Proto* p;
|
|
|
|
TValue uprefs[1];
|
|
|
|
} l;
|
|
|
|
};
|
|
|
|
} Closure;
|
|
|
|
|
|
|
|
#define iscfunction(o) (ttype(o) == LUA_TFUNCTION && clvalue(o)->isC)
|
|
|
|
#define isLfunction(o) (ttype(o) == LUA_TFUNCTION && !clvalue(o)->isC)
|
|
|
|
|
|
|
|
/*
|
|
|
|
** Tables
|
|
|
|
*/
|
|
|
|
|
|
|
|
typedef struct TKey
|
|
|
|
{
|
|
|
|
::Value value;
|
2021-11-22 15:42:33 +00:00
|
|
|
int extra[LUA_EXTRA_SIZE];
|
2021-10-29 21:25:12 +01:00
|
|
|
unsigned tt : 4;
|
2022-08-04 23:35:33 +01:00
|
|
|
int next : 28; // for chaining
|
2021-10-29 21:25:12 +01:00
|
|
|
} TKey;
|
|
|
|
|
|
|
|
typedef struct LuaNode
|
|
|
|
{
|
|
|
|
TValue val;
|
|
|
|
TKey key;
|
|
|
|
} LuaNode;
|
|
|
|
|
2022-08-04 23:35:33 +01:00
|
|
|
// copy a value into a key
|
2021-10-29 21:25:12 +01:00
|
|
|
#define setnodekey(L, node, obj) \
|
|
|
|
{ \
|
|
|
|
LuaNode* n_ = (node); \
|
|
|
|
const TValue* i_o = (obj); \
|
|
|
|
n_->key.value = i_o->value; \
|
2021-11-22 15:42:33 +00:00
|
|
|
memcpy(n_->key.extra, i_o->extra, sizeof(n_->key.extra)); \
|
2021-10-29 21:25:12 +01:00
|
|
|
n_->key.tt = i_o->tt; \
|
|
|
|
checkliveness(L->global, i_o); \
|
|
|
|
}
|
|
|
|
|
2022-08-04 23:35:33 +01:00
|
|
|
// copy a value from a key
|
2021-10-29 21:25:12 +01:00
|
|
|
#define getnodekey(L, obj, node) \
|
|
|
|
{ \
|
|
|
|
TValue* i_o = (obj); \
|
|
|
|
const LuaNode* n_ = (node); \
|
|
|
|
i_o->value = n_->key.value; \
|
2021-11-22 15:42:33 +00:00
|
|
|
memcpy(i_o->extra, n_->key.extra, sizeof(i_o->extra)); \
|
2021-10-29 21:25:12 +01:00
|
|
|
i_o->tt = n_->key.tt; \
|
|
|
|
checkliveness(L->global, i_o); \
|
|
|
|
}
|
|
|
|
|
|
|
|
// clang-format off
|
|
|
|
typedef struct Table
|
|
|
|
{
|
|
|
|
CommonHeader;
|
|
|
|
|
|
|
|
|
2022-08-04 23:35:33 +01:00
|
|
|
uint8_t tmcache; // 1<<p means tagmethod(p) is not present
|
|
|
|
uint8_t readonly; // sandboxing feature to prohibit writes to table
|
|
|
|
uint8_t safeenv; // environment doesn't share globals with other scripts
|
|
|
|
uint8_t lsizenode; // log2 of size of `node' array
|
|
|
|
uint8_t nodemask8; // (1<<lsizenode)-1, truncated to 8 bits
|
2021-10-29 21:25:12 +01:00
|
|
|
|
2022-08-04 23:35:33 +01:00
|
|
|
int sizearray; // size of `array' array
|
2021-10-29 21:25:12 +01:00
|
|
|
union
|
|
|
|
{
|
2022-08-04 23:35:33 +01:00
|
|
|
int lastfree; // any free position is before this position
|
|
|
|
int aboundary; // negated 'boundary' of `array' array; iff aboundary < 0
|
2021-10-29 21:25:12 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
struct Table* metatable;
|
2022-08-04 23:35:33 +01:00
|
|
|
TValue* array; // array part
|
2021-10-29 21:25:12 +01:00
|
|
|
LuaNode* node;
|
|
|
|
GCObject* gclist;
|
|
|
|
} Table;
|
|
|
|
// clang-format on
|
|
|
|
|
|
|
|
/*
|
|
|
|
** `module' operation for hashing (size is always a power of 2)
|
|
|
|
*/
|
|
|
|
#define lmod(s, size) (check_exp((size & (size - 1)) == 0, (cast_to(int, (s) & ((size)-1)))))
|
|
|
|
|
|
|
|
#define twoto(x) ((int)(1 << (x)))
|
|
|
|
#define sizenode(t) (twoto((t)->lsizenode))
|
|
|
|
|
|
|
|
#define luaO_nilobject (&luaO_nilobject_)
|
|
|
|
|
|
|
|
LUAI_DATA const TValue luaO_nilobject_;
|
|
|
|
|
|
|
|
#define ceillog2(x) (luaO_log2((x)-1) + 1)
|
|
|
|
|
|
|
|
LUAI_FUNC int luaO_log2(unsigned int x);
|
|
|
|
LUAI_FUNC int luaO_rawequalObj(const TValue* t1, const TValue* t2);
|
|
|
|
LUAI_FUNC int luaO_rawequalKey(const TKey* t1, const TValue* t2);
|
|
|
|
LUAI_FUNC int luaO_str2d(const char* s, double* result);
|
|
|
|
LUAI_FUNC const char* luaO_pushvfstring(lua_State* L, const char* fmt, va_list argp);
|
|
|
|
LUAI_FUNC const char* luaO_pushfstring(lua_State* L, const char* fmt, ...);
|
|
|
|
LUAI_FUNC void luaO_chunkid(char* out, const char* source, size_t len);
|