Coverage Report

Created: 2025-10-13 06:32

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/testdir/build/lua-master/source/lbaselib.c
Line
Count
Source
1
/*
2
** $Id: lbaselib.c $
3
** Basic library
4
** See Copyright Notice in lua.h
5
*/
6
7
#define lbaselib_c
8
#define LUA_LIB
9
10
#include "lprefix.h"
11
12
13
#include <ctype.h>
14
#include <stdio.h>
15
#include <stdlib.h>
16
#include <string.h>
17
18
#include "lua.h"
19
20
#include "lauxlib.h"
21
#include "lualib.h"
22
#include "llimits.h"
23
24
25
74.7k
static int luaB_print (lua_State *L) {
26
74.7k
  int n = lua_gettop(L);  /* number of arguments */
27
74.7k
  int i;
28
169k
  for (i = 1; i <= n; i++) {  /* for each argument */
29
94.3k
    size_t l;
30
94.3k
    const char *s = luaL_tolstring(L, i, &l);  /* convert it to string */
31
94.3k
    if (i > 1)  /* not the first element? */
32
28.9k
      lua_writestring("\t", 1);  /* add a tab before it */
33
94.3k
    lua_writestring(s, l);  /* print it */
34
94.3k
    lua_pop(L, 1);  /* pop result */
35
94.3k
  }
36
74.7k
  lua_writeline();
37
74.7k
  return 0;
38
74.7k
}
39
40
41
/*
42
** Creates a warning with all given arguments.
43
** Check first for errors; otherwise an error may interrupt
44
** the composition of a warning, leaving it unfinished.
45
*/
46
33.8k
static int luaB_warn (lua_State *L) {
47
33.8k
  int n = lua_gettop(L);  /* number of arguments */
48
33.8k
  int i;
49
33.8k
  luaL_checkstring(L, 1);  /* at least one argument */
50
45.2k
  for (i = 2; i <= n; i++)
51
11.3k
    luaL_checkstring(L, i);  /* make sure all arguments are strings */
52
45.2k
  for (i = 1; i < n; i++)  /* compose warning */
53
11.3k
    lua_warning(L, lua_tostring(L, i), 1);
54
33.8k
  lua_warning(L, lua_tostring(L, n), 0);  /* close warning */
55
33.8k
  return 0;
56
33.8k
}
57
58
59
20.6k
#define SPACECHARS  " \f\n\r\t\v"
60
61
15.6k
static const char *b_str2int (const char *s, unsigned base, lua_Integer *pn) {
62
15.6k
  lua_Unsigned n = 0;
63
15.6k
  int neg = 0;
64
15.6k
  s += strspn(s, SPACECHARS);  /* skip initial spaces */
65
15.6k
  if (*s == '-') { s++; neg = 1; }  /* handle sign */
66
14.8k
  else if (*s == '+') s++;
67
15.6k
  if (!isalnum(cast_uchar(*s)))  /* no digit? */
68
3.37k
    return NULL;
69
36.7k
  do {
70
36.7k
    unsigned digit = cast_uint(isdigit(cast_uchar(*s))
71
36.7k
                               ? *s - '0'
72
36.7k
                               : (toupper(cast_uchar(*s)) - 'A') + 10);
73
36.7k
    if (digit >= base) return NULL;  /* invalid numeral */
74
29.3k
    n = n * base + digit;
75
29.3k
    s++;
76
29.3k
  } while (isalnum(cast_uchar(*s)));
77
4.97k
  s += strspn(s, SPACECHARS);  /* skip trailing spaces */
78
4.97k
  *pn = (lua_Integer)((neg) ? (0u - n) : n);
79
4.97k
  return s;
80
12.3k
}
81
82
83
94.9M
static int luaB_tonumber (lua_State *L) {
84
94.9M
  if (lua_isnoneornil(L, 2)) {  /* standard conversion? */
85
94.9M
    if (lua_type(L, 1) == LUA_TNUMBER) {  /* already a number? */
86
5.02M
      lua_settop(L, 1);  /* yes; return it */
87
5.02M
      return 1;
88
5.02M
    }
89
89.9M
    else {
90
89.9M
      size_t l;
91
89.9M
      const char *s = lua_tolstring(L, 1, &l);
92
89.9M
      if (s != NULL && lua_stringtonumber(L, s) == l + 1)
93
705k
        return 1;  /* successful conversion to number */
94
      /* else not a number */
95
89.2M
      luaL_checkany(L, 1);  /* (but there must be some parameter) */
96
89.2M
    }
97
94.9M
  }
98
17.3k
  else {
99
17.3k
    size_t l;
100
17.3k
    const char *s;
101
17.3k
    lua_Integer n = 0;  /* to avoid warnings */
102
17.3k
    lua_Integer base = luaL_checkinteger(L, 2);
103
17.3k
    luaL_checktype(L, 1, LUA_TSTRING);  /* no numbers as strings */
104
17.3k
    s = lua_tolstring(L, 1, &l);
105
17.3k
    luaL_argcheck(L, 2 <= base && base <= 36, 2, "base out of range");
106
17.3k
    if (b_str2int(s, cast_uint(base), &n) == s + l) {
107
4.10k
      lua_pushinteger(L, n);
108
4.10k
      return 1;
109
4.10k
    }  /* else not a number */
110
17.3k
  }  /* else not a number */
111
89.2M
  luaL_pushfail(L);  /* not a number */
112
89.2M
  return 1;
113
94.9M
}
114
115
116
59.0k
static int luaB_error (lua_State *L) {
117
59.0k
  int level = (int)luaL_optinteger(L, 2, 1);
118
59.0k
  lua_settop(L, 1);
119
59.0k
  if (lua_type(L, 1) == LUA_TSTRING && level > 0) {
120
52.4k
    luaL_where(L, level);   /* add extra information */
121
52.4k
    lua_pushvalue(L, 1);
122
52.4k
    lua_concat(L, 2);
123
52.4k
  }
124
59.0k
  return lua_error(L);
125
59.0k
}
126
127
128
76.3k
static int luaB_getmetatable (lua_State *L) {
129
76.3k
  luaL_checkany(L, 1);
130
76.3k
  if (!lua_getmetatable(L, 1)) {
131
17.0k
    lua_pushnil(L);
132
17.0k
    return 1;  /* no metatable */
133
17.0k
  }
134
59.2k
  luaL_getmetafield(L, 1, "__metatable");
135
59.2k
  return 1;  /* returns either __metatable field (if present) or metatable */
136
76.3k
}
137
138
139
1.18M
static int luaB_setmetatable (lua_State *L) {
140
1.18M
  int t = lua_type(L, 2);
141
1.18M
  luaL_checktype(L, 1, LUA_TTABLE);
142
1.18M
  luaL_argexpected(L, t == LUA_TNIL || t == LUA_TTABLE, 2, "nil or table");
143
1.18M
  if (l_unlikely(luaL_getmetafield(L, 1, "__metatable") != LUA_TNIL))
144
0
    return luaL_error(L, "cannot change a protected metatable");
145
1.18M
  lua_settop(L, 2);
146
1.18M
  lua_setmetatable(L, 1);
147
1.18M
  return 1;
148
1.18M
}
149
150
151
6.61k
static int luaB_rawequal (lua_State *L) {
152
6.61k
  luaL_checkany(L, 1);
153
6.61k
  luaL_checkany(L, 2);
154
6.61k
  lua_pushboolean(L, lua_rawequal(L, 1, 2));
155
6.61k
  return 1;
156
6.61k
}
157
158
159
33.6k
static int luaB_rawlen (lua_State *L) {
160
33.6k
  int t = lua_type(L, 1);
161
33.6k
  luaL_argexpected(L, t == LUA_TTABLE || t == LUA_TSTRING, 1,
162
33.6k
                      "table or string");
163
33.6k
  lua_pushinteger(L, l_castU2S(lua_rawlen(L, 1)));
164
33.6k
  return 1;
165
33.6k
}
166
167
168
9.48k
static int luaB_rawget (lua_State *L) {
169
9.48k
  luaL_checktype(L, 1, LUA_TTABLE);
170
9.48k
  luaL_checkany(L, 2);
171
9.48k
  lua_settop(L, 2);
172
9.48k
  lua_rawget(L, 1);
173
9.48k
  return 1;
174
9.48k
}
175
176
411k
static int luaB_rawset (lua_State *L) {
177
411k
  luaL_checktype(L, 1, LUA_TTABLE);
178
411k
  luaL_checkany(L, 2);
179
411k
  luaL_checkany(L, 3);
180
411k
  lua_settop(L, 3);
181
411k
  lua_rawset(L, 1);
182
411k
  return 1;
183
411k
}
184
185
186
1.53M
static int pushmode (lua_State *L, int oldmode) {
187
1.53M
  if (oldmode == -1)
188
0
    luaL_pushfail(L);  /* invalid call to 'lua_gc' */
189
1.53M
  else
190
1.53M
    lua_pushstring(L, (oldmode == LUA_GCINC) ? "incremental"
191
1.53M
                                             : "generational");
192
1.53M
  return 1;
193
1.53M
}
194
195
196
/*
197
** check whether call to 'lua_gc' was valid (not inside a finalizer)
198
*/
199
195k
#define checkvalres(res) { if (res == -1) break; }
200
201
1.92M
static int luaB_collectgarbage (lua_State *L) {
202
1.92M
  static const char *const opts[] = {"stop", "restart", "collect",
203
1.92M
    "count", "step", "isrunning", "generational", "incremental",
204
1.92M
    "param", NULL};
205
1.92M
  static const char optsnum[] = {LUA_GCSTOP, LUA_GCRESTART, LUA_GCCOLLECT,
206
1.92M
    LUA_GCCOUNT, LUA_GCSTEP, LUA_GCISRUNNING, LUA_GCGEN, LUA_GCINC,
207
1.92M
    LUA_GCPARAM};
208
1.92M
  int o = optsnum[luaL_checkoption(L, 1, "collect", opts)];
209
1.92M
  switch (o) {
210
572
    case LUA_GCCOUNT: {
211
572
      int k = lua_gc(L, o);
212
572
      int b = lua_gc(L, LUA_GCCOUNTB);
213
572
      checkvalres(k);
214
572
      lua_pushnumber(L, (lua_Number)k + ((lua_Number)b/1024));
215
572
      return 1;
216
572
    }
217
7.31k
    case LUA_GCSTEP: {
218
7.31k
      lua_Integer n = luaL_optinteger(L, 2, 0);
219
7.31k
      int res = lua_gc(L, o, cast_sizet(n));
220
7.31k
      checkvalres(res);
221
7.31k
      lua_pushboolean(L, res);
222
7.31k
      return 1;
223
7.31k
    }
224
46
    case LUA_GCISRUNNING: {
225
46
      int res = lua_gc(L, o);
226
46
      checkvalres(res);
227
46
      lua_pushboolean(L, res);
228
46
      return 1;
229
46
    }
230
1.53M
    case LUA_GCGEN: {
231
1.53M
      return pushmode(L, lua_gc(L, o));
232
46
    }
233
3.51k
    case LUA_GCINC: {
234
3.51k
      return pushmode(L, lua_gc(L, o));
235
46
    }
236
0
    case LUA_GCPARAM: {
237
0
      static const char *const params[] = {
238
0
        "minormul", "majorminor", "minormajor",
239
0
        "pause", "stepmul", "stepsize", NULL};
240
0
      static const char pnum[] = {
241
0
        LUA_GCPMINORMUL, LUA_GCPMAJORMINOR, LUA_GCPMINORMAJOR,
242
0
        LUA_GCPPAUSE, LUA_GCPSTEPMUL, LUA_GCPSTEPSIZE};
243
0
      int p = pnum[luaL_checkoption(L, 2, NULL, params)];
244
0
      lua_Integer value = luaL_optinteger(L, 3, -1);
245
0
      lua_pushinteger(L, lua_gc(L, o, p, (int)value));
246
0
      return 1;
247
46
    }
248
187k
    default: {
249
187k
      int res = lua_gc(L, o);
250
187k
      checkvalres(res);
251
187k
      lua_pushinteger(L, res);
252
187k
      return 1;
253
187k
    }
254
1.92M
  }
255
0
  luaL_pushfail(L);  /* invalid call (inside a finalizer) */
256
0
  return 1;
257
1.92M
}
258
259
260
135M
static int luaB_type (lua_State *L) {
261
135M
  int t = lua_type(L, 1);
262
135M
  luaL_argcheck(L, t != LUA_TNONE, 1, "value expected");
263
135M
  lua_pushstring(L, lua_typename(L, t));
264
135M
  return 1;
265
135M
}
266
267
268
80.9k
static int luaB_next (lua_State *L) {
269
80.9k
  luaL_checktype(L, 1, LUA_TTABLE);
270
80.9k
  lua_settop(L, 2);  /* create a 2nd argument if there isn't one */
271
80.9k
  if (lua_next(L, 1))
272
65.4k
    return 2;
273
15.4k
  else {
274
15.4k
    lua_pushnil(L);
275
15.4k
    return 1;
276
15.4k
  }
277
80.9k
}
278
279
280
0
static int pairscont (lua_State *L, int status, lua_KContext k) {
281
0
  (void)L; (void)status; (void)k;  /* unused */
282
0
  return 3;
283
0
}
284
285
17.0k
static int luaB_pairs (lua_State *L) {
286
17.0k
  luaL_checkany(L, 1);
287
17.0k
  if (luaL_getmetafield(L, 1, "__pairs") == LUA_TNIL) {  /* no metamethod? */
288
17.0k
    lua_pushcfunction(L, luaB_next);  /* will return generator, */
289
17.0k
    lua_pushvalue(L, 1);  /* state, */
290
17.0k
    lua_pushnil(L);  /* and initial value */
291
17.0k
  }
292
15
  else {
293
15
    lua_pushvalue(L, 1);  /* argument 'self' to metamethod */
294
15
    lua_callk(L, 1, 3, 0, pairscont);  /* get 3 values from metamethod */
295
15
  }
296
17.0k
  return 3;
297
17.0k
}
298
299
300
/*
301
** Traversal function for 'ipairs'
302
*/
303
20.2k
static int ipairsaux (lua_State *L) {
304
20.2k
  lua_Integer i = luaL_checkinteger(L, 2);
305
20.2k
  i = luaL_intop(+, i, 1);
306
20.2k
  lua_pushinteger(L, i);
307
20.2k
  return (lua_geti(L, 1, i) == LUA_TNIL) ? 1 : 2;
308
20.2k
}
309
310
311
/*
312
** 'ipairs' function. Returns 'ipairsaux', given "table", 0.
313
** (The given "table" may not be a table.)
314
*/
315
13.1k
static int luaB_ipairs (lua_State *L) {
316
13.1k
  luaL_checkany(L, 1);
317
13.1k
  lua_pushcfunction(L, ipairsaux);  /* iteration function */
318
13.1k
  lua_pushvalue(L, 1);  /* state */
319
13.1k
  lua_pushinteger(L, 0);  /* initial value */
320
13.1k
  return 3;
321
13.1k
}
322
323
324
8.16M
static int load_aux (lua_State *L, int status, int envidx) {
325
8.16M
  if (l_likely(status == LUA_OK)) {
326
3.14M
    if (envidx != 0) {  /* 'env' parameter? */
327
51.2k
      lua_pushvalue(L, envidx);  /* environment for loaded function */
328
51.2k
      if (!lua_setupvalue(L, -2, 1))  /* set it as 1st upvalue */
329
0
        lua_pop(L, 1);  /* remove 'env' if not used by previous call */
330
51.2k
    }
331
3.14M
    return 1;
332
3.14M
  }
333
5.02M
  else {  /* error (message is on top of the stack) */
334
5.02M
    luaL_pushfail(L);
335
5.02M
    lua_insert(L, -2);  /* put before error message */
336
5.02M
    return 2;  /* return fail plus error message */
337
5.02M
  }
338
8.16M
}
339
340
341
8.20M
static const char *getMode (lua_State *L, int idx) {
342
8.20M
  const char *mode = luaL_optstring(L, idx, "bt");
343
8.20M
  if (strchr(mode, 'B') != NULL)  /* Lua code cannot use fixed buffers */
344
2
    luaL_argerror(L, idx, "invalid mode");
345
8.20M
  return mode;
346
8.20M
}
347
348
349
9.77k
static int luaB_loadfile (lua_State *L) {
350
9.77k
  const char *fname = luaL_optstring(L, 1, NULL);
351
9.77k
  const char *mode = getMode(L, 2);
352
9.77k
  int env = (!lua_isnone(L, 3) ? 3 : 0);  /* 'env' index or 0 if no 'env' */
353
9.77k
  int status = luaL_loadfilex(L, fname, mode);
354
9.77k
  return load_aux(L, status, env);
355
9.77k
}
356
357
358
/*
359
** {======================================================
360
** Generic Read function
361
** =======================================================
362
*/
363
364
365
/*
366
** reserved slot, above all arguments, to hold a copy of the returned
367
** string to avoid it being collected while parsed. 'load' has four
368
** optional arguments (chunk, source name, mode, and environment).
369
*/
370
3.23M
#define RESERVEDSLOT  5
371
372
373
/*
374
** Reader for generic 'load' function: 'lua_load' uses the
375
** stack for internal stuff, so the reader cannot change the
376
** stack top. Instead, it keeps its resulting string in a
377
** reserved slot inside the stack.
378
*/
379
2.87M
static const char *generic_reader (lua_State *L, void *ud, size_t *size) {
380
2.87M
  (void)(ud);  /* not used */
381
2.87M
  luaL_checkstack(L, 2, "too many nested functions");
382
2.87M
  lua_pushvalue(L, 1);  /* get function */
383
2.87M
  lua_call(L, 0, 1);  /* call it */
384
2.87M
  if (lua_isnil(L, -1)) {
385
2.54M
    lua_pop(L, 1);  /* pop result */
386
2.54M
    *size = 0;
387
2.54M
    return NULL;
388
2.54M
  }
389
331k
  else if (l_unlikely(!lua_isstring(L, -1)))
390
172
    luaL_error(L, "reader function must return a string");
391
331k
  lua_replace(L, RESERVEDSLOT);  /* save string in reserved slot */
392
331k
  return lua_tolstring(L, RESERVEDSLOT, size);
393
2.87M
}
394
395
396
8.19M
static int luaB_load (lua_State *L) {
397
8.19M
  int status;
398
8.19M
  size_t l;
399
8.19M
  const char *s = lua_tolstring(L, 1, &l);
400
8.19M
  const char *mode = getMode(L, 3);
401
8.19M
  int env = (!lua_isnone(L, 4) ? 4 : 0);  /* 'env' index or 0 if no 'env' */
402
8.19M
  if (s != NULL) {  /* loading a string? */
403
5.29M
    const char *chunkname = luaL_optstring(L, 2, s);
404
5.29M
    status = luaL_loadbufferx(L, s, l, chunkname, mode);
405
5.29M
  }
406
2.90M
  else {  /* loading from a reader function */
407
2.90M
    const char *chunkname = luaL_optstring(L, 2, "=(load)");
408
2.90M
    luaL_checktype(L, 1, LUA_TFUNCTION);
409
2.90M
    lua_settop(L, RESERVEDSLOT);  /* create reserved slot */
410
2.90M
    status = lua_load(L, generic_reader, NULL, chunkname, mode);
411
2.90M
  }
412
8.19M
  return load_aux(L, status, env);
413
8.19M
}
414
415
/* }====================================================== */
416
417
418
40.0k
static int dofilecont (lua_State *L, int d1, lua_KContext d2) {
419
40.0k
  (void)d1;  (void)d2;  /* only to match 'lua_Kfunction' prototype */
420
40.0k
  return lua_gettop(L) - 1;
421
40.0k
}
422
423
424
63.1k
static int luaB_dofile (lua_State *L) {
425
63.1k
  const char *fname = luaL_optstring(L, 1, NULL);
426
63.1k
  lua_settop(L, 1);
427
63.1k
  if (l_unlikely(luaL_loadfile(L, fname) != LUA_OK))
428
23.0k
    return lua_error(L);
429
40.1k
  lua_callk(L, 0, LUA_MULTRET, 0, dofilecont);
430
40.1k
  return dofilecont(L, 0, 0);
431
63.1k
}
432
433
434
1.06M
static int luaB_assert (lua_State *L) {
435
1.06M
  if (l_likely(lua_toboolean(L, 1)))  /* condition is true? */
436
1.01M
    return lua_gettop(L);  /* return all arguments */
437
46.7k
  else {  /* error */
438
46.7k
    luaL_checkany(L, 1);  /* there must be a condition */
439
46.7k
    lua_remove(L, 1);  /* remove it */
440
46.7k
    lua_pushliteral(L, "assertion failed!");  /* default message */
441
46.7k
    lua_settop(L, 1);  /* leave only message (default if no other one) */
442
46.7k
    return luaB_error(L);  /* call 'error' */
443
46.7k
  }
444
1.06M
}
445
446
447
279k
static int luaB_select (lua_State *L) {
448
279k
  int n = lua_gettop(L);
449
279k
  if (lua_type(L, 1) == LUA_TSTRING && *lua_tostring(L, 1) == '#') {
450
24.5k
    lua_pushinteger(L, n-1);
451
24.5k
    return 1;
452
24.5k
  }
453
255k
  else {
454
255k
    lua_Integer i = luaL_checkinteger(L, 1);
455
255k
    if (i < 0) i = n + i;
456
253k
    else if (i > n) i = n;
457
255k
    luaL_argcheck(L, 1 <= i, 1, "index out of range");
458
255k
    return n - (int)i;
459
255k
  }
460
279k
}
461
462
463
/*
464
** Continuation function for 'pcall' and 'xpcall'. Both functions
465
** already pushed a 'true' before doing the call, so in case of success
466
** 'finishpcall' only has to return everything in the stack minus
467
** 'extra' values (where 'extra' is exactly the number of items to be
468
** ignored).
469
*/
470
2.59M
static int finishpcall (lua_State *L, int status, lua_KContext extra) {
471
2.59M
  if (l_unlikely(status != LUA_OK && status != LUA_YIELD)) {  /* error? */
472
387k
    lua_pushboolean(L, 0);  /* first result (false) */
473
387k
    lua_pushvalue(L, -2);  /* error message */
474
387k
    return 2;  /* return false, msg */
475
387k
  }
476
2.20M
  else
477
2.20M
    return lua_gettop(L) - (int)extra;  /* return all results */
478
2.59M
}
479
480
481
2.46M
static int luaB_pcall (lua_State *L) {
482
2.46M
  int status;
483
2.46M
  luaL_checkany(L, 1);
484
2.46M
  lua_pushboolean(L, 1);  /* first result if no errors */
485
2.46M
  lua_insert(L, 1);  /* put it in place */
486
2.46M
  status = lua_pcallk(L, lua_gettop(L) - 2, LUA_MULTRET, 0, 0, finishpcall);
487
2.46M
  return finishpcall(L, status, 0);
488
2.46M
}
489
490
491
/*
492
** Do a protected call with error handling. After 'lua_rotate', the
493
** stack will have <f, err, true, f, [args...]>; so, the function passes
494
** 2 to 'finishpcall' to skip the 2 first values when returning results.
495
*/
496
828k
static int luaB_xpcall (lua_State *L) {
497
828k
  int status;
498
828k
  int n = lua_gettop(L);
499
828k
  luaL_checktype(L, 2, LUA_TFUNCTION);  /* check error function */
500
828k
  lua_pushboolean(L, 1);  /* first result */
501
828k
  lua_pushvalue(L, 1);  /* function */
502
828k
  lua_rotate(L, 3, 2);  /* move them below function's arguments */
503
828k
  status = lua_pcallk(L, n - 2, LUA_MULTRET, 2, 2, finishpcall);
504
828k
  return finishpcall(L, status, 2);
505
828k
}
506
507
508
4.13M
static int luaB_tostring (lua_State *L) {
509
4.13M
  luaL_checkany(L, 1);
510
4.13M
  luaL_tolstring(L, 1, NULL);
511
4.13M
  return 1;
512
4.13M
}
513
514
515
static const luaL_Reg base_funcs[] = {
516
  {"assert", luaB_assert},
517
  {"collectgarbage", luaB_collectgarbage},
518
  {"dofile", luaB_dofile},
519
  {"error", luaB_error},
520
  {"getmetatable", luaB_getmetatable},
521
  {"ipairs", luaB_ipairs},
522
  {"loadfile", luaB_loadfile},
523
  {"load", luaB_load},
524
  {"next", luaB_next},
525
  {"pairs", luaB_pairs},
526
  {"pcall", luaB_pcall},
527
  {"print", luaB_print},
528
  {"warn", luaB_warn},
529
  {"rawequal", luaB_rawequal},
530
  {"rawlen", luaB_rawlen},
531
  {"rawget", luaB_rawget},
532
  {"rawset", luaB_rawset},
533
  {"select", luaB_select},
534
  {"setmetatable", luaB_setmetatable},
535
  {"tonumber", luaB_tonumber},
536
  {"tostring", luaB_tostring},
537
  {"type", luaB_type},
538
  {"xpcall", luaB_xpcall},
539
  /* placeholders */
540
  {LUA_GNAME, NULL},
541
  {"_VERSION", NULL},
542
  {NULL, NULL}
543
};
544
545
546
26.7k
LUAMOD_API int luaopen_base (lua_State *L) {
547
  /* open lib into global table */
548
26.7k
  lua_pushglobaltable(L);
549
26.7k
  luaL_setfuncs(L, base_funcs, 0);
550
  /* set global _G */
551
26.7k
  lua_pushvalue(L, -1);
552
26.7k
  lua_setfield(L, -2, LUA_GNAME);
553
  /* set global _VERSION */
554
26.7k
  lua_pushliteral(L, LUA_VERSION);
555
26.7k
  lua_setfield(L, -2, "_VERSION");
556
26.7k
  return 1;
557
26.7k
}
558