pluto-src 0.1.1+0.10.4

Sources of Pluto (Lua 5.4 dialect) and logic to build it.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
/*
** $Id: ltablib.c $
** Library for Table Manipulation
** See Copyright Notice in lua.h
*/

#define ltablib_c
#define LUA_LIB

#include "lprefix.h"


#include <limits.h>
#include <stddef.h>
#include <string.h>

#include "lua.h"

#include "lauxlib.h"
#include "lualib.h"
#include "lstate.h"
#include "ltable.h"


/*
** Operations that an object must define to mimic a table
** (some functions only need some of them)
*/
#define TAB_R	1			/* read */
#define TAB_W	2			/* write */
#define TAB_L	4			/* length */
#define TAB_RW	(TAB_R | TAB_W)		/* read/write */


#define aux_getn(L,n,w)	(checktab(L, n, (w) | TAB_L), luaL_len(L, n))


static int checkfield (lua_State *L, const char *key, int n) {
  lua_pushstring(L, key);
  return (lua_rawget(L, -n) != LUA_TNIL);
}


/*
** Check that 'arg' either is a table or can behave like one (that is,
** has a metatable with the required metamethods)
*/
static void checktab (lua_State *L, int arg, int what) {
  if (lua_type(L, arg) != LUA_TTABLE) {  /* is it not a table? */
    int n = 1;  /* number of elements to pop */
    if (lua_getmetatable(L, arg) &&  /* must have metatable */
        (!(what & TAB_R) || checkfield(L, "__index", ++n)) &&
        (!(what & TAB_W) || checkfield(L, "__newindex", ++n)) &&
        (!(what & TAB_L) || checkfield(L, "__len", ++n))) {
      lua_pop(L, n);  /* pop metatable and tested metamethods */
    }
    else
      luaL_checktype(L, arg, LUA_TTABLE);  /* force an error */
  }
}


static int tinsert (lua_State *L) {
  lua_Integer pos;  /* where to insert new element */
  lua_Integer e = aux_getn(L, 1, TAB_RW);
  e = luaL_intop(+, e, 1);  /* first empty element */
  switch (lua_gettop(L)) {
    case 2: {  /* called with only 2 arguments */
      pos = e;  /* insert new element at the end */
      break;
    }
    case 3: {
      lua_Integer i;
      pos = luaL_checkinteger(L, 2);  /* 2nd argument is the position */
      /* check whether 'pos' is in [1, e] */
      luaL_argcheck(L, (lua_Unsigned)pos - 1u < (lua_Unsigned)e, 2,
                       "position out of bounds");
      for (i = e; i > pos; i--) {  /* move up elements */
        lua_geti(L, 1, i - 1);
        lua_seti(L, 1, i);  /* t[i] = t[i - 1] */
      }
      break;
    }
    default: {
      luaL_error(L, "wrong number of arguments to 'insert'");
    }
  }
  lua_seti(L, 1, pos);  /* t[pos] = v */
  return 0;
}

static int foreach(lua_State* L) {
  luaL_checktype(L, 1, LUA_TTABLE);
  luaL_checktype(L, 2, LUA_TFUNCTION);
  const bool callwithkey = lua_istrue(L, 3);
  lua_pushnil(L);  /* first key */
  while (lua_next(L, 1)) {
    lua_pushvalue(L, 2);  /* function */
    if (callwithkey) {
      lua_pushvalue(L, -3);  /* key */
      lua_pushvalue(L, -3);  /* value */
      lua_call(L, 2, 1);
    }
    else {
      lua_pushvalue(L, -2);  /* value */
      lua_call(L, 1, 1);
    }
    if (!lua_isnil(L, -1))
      return 1;
    lua_pop(L, 2);  /* remove value and result */
  }
  return 0;
}

static int tremove (lua_State *L) {
  lua_Integer size = aux_getn(L, 1, TAB_RW);
  lua_Integer pos = luaL_optinteger(L, 2, size);
  if (pos != size)  /* validate 'pos' if given */
    /* check whether 'pos' is in [1, size + 1] */
    luaL_argcheck(L, (lua_Unsigned)pos - 1u <= (lua_Unsigned)size, 2,
                     "position out of bounds");
#ifndef PLUTO_DISABLE_LENGTH_CACHE
  lua_setcachelen(L, size - 1, 1);
#endif
  lua_geti(L, 1, pos);  /* result = t[pos] */
  for ( ; pos < size; pos++) {
    lua_geti(L, 1, pos + 1);
    lua_seti(L, 1, pos);  /* t[pos] = t[pos + 1] */
  }
  lua_pushnil(L);
  lua_seti(L, 1, pos);  /* remove entry t[pos] */
  return 1;
}


/*
** Copy elements (1[f], ..., 1[e]) into (tt[t], tt[t+1], ...). Whenever
** possible, copy in increasing order, which is better for rehashing.
** "possible" means destination after original range, or smaller
** than origin, or copying to another table.
*/
static int tmove (lua_State *L) {
  lua_Integer f = luaL_checkinteger(L, 2);
  lua_Integer e = luaL_checkinteger(L, 3);
  lua_Integer t = luaL_checkinteger(L, 4);
  int tt = !lua_isnoneornil(L, 5) ? 5 : 1;  /* destination table */
  checktab(L, 1, TAB_R);
  checktab(L, tt, TAB_W);
  if (e >= f) {  /* otherwise, nothing to move */
    lua_Integer n, i;
    luaL_argcheck(L, f > 0 || e < LUA_MAXINTEGER + f, 3,
                  "too many elements to move");
    n = e - f + 1;  /* number of elements to move */
    luaL_argcheck(L, t <= LUA_MAXINTEGER - n + 1, 4,
                  "destination wrap around");
    if (t > e || t <= f || (tt != 1 && !lua_compare(L, 1, tt, LUA_OPEQ))) {
      for (i = 0; i < n; i++) {
        lua_geti(L, 1, f + i);
        lua_seti(L, tt, t + i);
      }
    }
    else {
      for (i = n - 1; i >= 0; i--) {
        lua_geti(L, 1, f + i);
        lua_seti(L, tt, t + i);
      }
    }
  }
  lua_pushvalue(L, tt);  /* return destination table */
  return 1;
}


static void addfield (lua_State *L, luaL_Buffer *b, lua_Integer i) {
  lua_geti(L, 1, i);
  if (l_unlikely(!lua_isstring(L, -1)))
    luaL_error(L, "invalid value (%s) at index %I in table for 'concat'",
                  luaL_typename(L, -1), (LUAI_UACINT)i);
  luaL_addvalue(b);
}


static int tconcat (lua_State *L) {
  luaL_Buffer b;
  lua_Integer last = aux_getn(L, 1, TAB_R);
  size_t lsep;
  const char *sep = luaL_optlstring(L, 2, "", &lsep);
  lua_Integer i = luaL_optinteger(L, 3, 1);
  last = luaL_optinteger(L, 4, last);
  luaL_buffinit(L, &b);
  for (; i < last; i++) {
    addfield(L, &b, i);
    luaL_addlstring(&b, sep, lsep);
  }
  if (i == last)  /* add last value (if interval was not empty) */
    addfield(L, &b, i);
  luaL_pushresult(&b);
  return 1;
}


/*
** {======================================================
** Pack/unpack
** =======================================================
*/

static int tpack (lua_State *L) {
  int i;
  int n = lua_gettop(L);  /* number of elements to pack */
  lua_createtable(L, n, 1);  /* create result table */
  lua_insert(L, 1);  /* put it at index 1 */
  for (i = n; i >= 1; i--)  /* assign elements */
    lua_seti(L, 1, i);
  lua_pushinteger(L, n);
  lua_setfield(L, 1, "n");  /* t.n = number of elements */
  return 1;  /* return table */
}


static int tunpack (lua_State *L) {
  lua_Unsigned n;
  lua_Integer i = luaL_optinteger(L, 2, 1);
  lua_Integer e = luaL_opt(L, luaL_checkinteger, 3, luaL_len(L, 1));
  if (i > e) return 0;  /* empty range */
  n = (lua_Unsigned)e - i;  /* number of elements minus 1 (avoid overflows) */
  if (l_unlikely(n >= (unsigned int)INT_MAX  ||
                 !lua_checkstack(L, (int)(++n))))
    luaL_error(L, "too many results to unpack");
  for (; i < e; i++) {  /* push arg[i..e - 1] (to avoid overflows) */
    lua_geti(L, 1, i);
  }
  lua_geti(L, 1, e);  /* push last element */
  return (int)n;
}

/* }====================================================== */



/*
** {======================================================
** Quicksort
** (based on 'Algorithms in MODULA-3', Robert Sedgewick;
**  Addison-Wesley, 1993.)
** =======================================================
*/


/* type for array indices */
typedef unsigned int IdxT;


/*
** Produce a "random" 'unsigned int' to randomize pivot choice. This
** macro is used only when 'sort' detects a big imbalance in the result
** of a partition. (If you don't want/need this "randomness", ~0 is a
** good choice.)
*/
#if !defined(l_randomizePivot)		/* { */

#include <time.h>

/* size of 'e' measured in number of 'unsigned int's */
#define sof(e)		(sizeof(e) / sizeof(unsigned int))

/*
** Use 'time' and 'clock' as sources of "randomness". Because we don't
** know the types 'clock_t' and 'time_t', we cannot cast them to
** anything without risking overflows. A safe way to use their values
** is to copy them to an array of a known type and use the array values.
*/
static unsigned int l_randomizePivot (void) {
  clock_t c = clock();
  time_t t = time(NULL);
  unsigned int buff[sof(c) + sof(t)];
  unsigned int i, rnd = 0;
  memcpy(buff, &c, sof(c) * sizeof(unsigned int));
  memcpy(buff + sof(c), &t, sof(t) * sizeof(unsigned int));
  for (i = 0; i < sof(buff); i++)
    rnd += buff[i];
  return rnd;
}

#endif					/* } */


/* arrays larger than 'RANLIMIT' may use randomized pivots */
#define RANLIMIT	100u


static void set2 (lua_State *L, IdxT i, IdxT j) {
  lua_seti(L, 1, i);
  lua_seti(L, 1, j);
}


/*
** Return true iff value at stack index 'a' is less than the value at
** index 'b' (according to the order of the sort).
*/
static int sort_comp (lua_State *L, int a, int b) {
  if (lua_isnil(L, 2))  /* no function? */
    return lua_compare(L, a, b, LUA_OPLT);  /* a < b */
  else {  /* function */
    int res;
    lua_pushvalue(L, 2);    /* push function */
    lua_pushvalue(L, a-1);  /* -1 to compensate function */
    lua_pushvalue(L, b-2);  /* -2 to compensate function and 'a' */
    lua_call(L, 2, 1);      /* call function */
    res = lua_toboolean(L, -1);  /* get result */
    lua_pop(L, 1);          /* pop result */
    return res;
  }
}


/*
** Does the partition: Pivot P is at the top of the stack.
** precondition: a[lo] <= P == a[up-1] <= a[up],
** so it only needs to do the partition from lo + 1 to up - 2.
** Pos-condition: a[lo .. i - 1] <= a[i] == P <= a[i + 1 .. up]
** returns 'i'.
*/
static IdxT partition (lua_State *L, IdxT lo, IdxT up) {
  IdxT i = lo;  /* will be incremented before first use */
  IdxT j = up - 1;  /* will be decremented before first use */
  /* loop invariant: a[lo .. i] <= P <= a[j .. up] */
  for (;;) {
    /* next loop: repeat ++i while a[i] < P */
    while ((void)lua_geti(L, 1, ++i), sort_comp(L, -1, -2)) {
      if (l_unlikely(i == up - 1))  /* a[i] < P  but a[up - 1] == P  ?? */
        luaL_error(L, "invalid order function for sorting");
      lua_pop(L, 1);  /* remove a[i] */
    }
    /* after the loop, a[i] >= P and a[lo .. i - 1] < P */
    /* next loop: repeat --j while P < a[j] */
    while ((void)lua_geti(L, 1, --j), sort_comp(L, -3, -1)) {
      if (l_unlikely(j < i))  /* j < i  but  a[j] > P ?? */
        luaL_error(L, "invalid order function for sorting");
      lua_pop(L, 1);  /* remove a[j] */
    }
    /* after the loop, a[j] <= P and a[j + 1 .. up] >= P */
    if (j < i) {  /* no elements out of place? */
      /* a[lo .. i - 1] <= P <= a[j + 1 .. i .. up] */
      lua_pop(L, 1);  /* pop a[j] */
      /* swap pivot (a[up - 1]) with a[i] to satisfy pos-condition */
      set2(L, up - 1, i);
      return i;
    }
    /* otherwise, swap a[i] - a[j] to restore invariant and repeat */
    set2(L, i, j);
  }
}


/*
** Choose an element in the middle (2nd-3th quarters) of [lo,up]
** "randomized" by 'rnd'
*/
static IdxT choosePivot (IdxT lo, IdxT up, unsigned int rnd) {
  IdxT r4 = (up - lo) / 4;  /* range/4 */
  IdxT p = rnd % (r4 * 2) + (lo + r4);
  lua_assert(lo + r4 <= p && p <= up - r4);
  return p;
}


/*
** Quicksort algorithm (recursive function)
*/
static void auxsort (lua_State *L, IdxT lo, IdxT up,
                                   unsigned int rnd) {
  while (lo < up) {  /* loop for tail recursion */
    IdxT p;  /* Pivot index */
    IdxT n;  /* to be used later */
    /* sort elements 'lo', 'p', and 'up' */
    lua_geti(L, 1, lo);
    lua_geti(L, 1, up);
    if (sort_comp(L, -1, -2))  /* a[up] < a[lo]? */
      set2(L, lo, up);  /* swap a[lo] - a[up] */
    else
      lua_pop(L, 2);  /* remove both values */
    if (up - lo == 1)  /* only 2 elements? */
      return;  /* already sorted */
    if (up - lo < RANLIMIT || rnd == 0)  /* small interval or no randomize? */
      p = (lo + up)/2;  /* middle element is a good pivot */
    else  /* for larger intervals, it is worth a random pivot */
      p = choosePivot(lo, up, rnd);
    lua_geti(L, 1, p);
    lua_geti(L, 1, lo);
    if (sort_comp(L, -2, -1))  /* a[p] < a[lo]? */
      set2(L, p, lo);  /* swap a[p] - a[lo] */
    else {
      lua_pop(L, 1);  /* remove a[lo] */
      lua_geti(L, 1, up);
      if (sort_comp(L, -1, -2))  /* a[up] < a[p]? */
        set2(L, p, up);  /* swap a[up] - a[p] */
      else
        lua_pop(L, 2);
    }
    if (up - lo == 2)  /* only 3 elements? */
      return;  /* already sorted */
    lua_geti(L, 1, p);  /* get middle element (Pivot) */
    lua_pushvalue(L, -1);  /* push Pivot */
    lua_geti(L, 1, up - 1);  /* push a[up - 1] */
    set2(L, p, up - 1);  /* swap Pivot (a[p]) with a[up - 1] */
    p = partition(L, lo, up);
    /* a[lo .. p - 1] <= a[p] == P <= a[p + 1 .. up] */
    if (p - lo < up - p) {  /* lower interval is smaller? */
      auxsort(L, lo, p - 1, rnd);  /* call recursively for lower interval */
      n = p - lo;  /* size of smaller interval */
      lo = p + 1;  /* tail call for [p + 1 .. up] (upper interval) */
    }
    else {
      auxsort(L, p + 1, up, rnd);  /* call recursively for upper interval */
      n = up - p;  /* size of smaller interval */
      up = p - 1;  /* tail call for [lo .. p - 1]  (lower interval) */
    }
    if ((up - lo) / 128 > n) /* partition too imbalanced? */
      rnd = l_randomizePivot();  /* try a new randomization */
  }  /* tail call auxsort(L, lo, up, rnd) */
}


/*
** For each key-value pair in the table at -1, assigns it to the table at -2.
** Pops the latter table from the stack.
*/
static void trivialcopy (lua_State* L) {
  lua_pushnil(L);
  /* stack now: newtable, table, key */
  while (lua_next(L, -2)) {
    /* stack now: newtable, table, key, value */
    lua_pushvalue(L, -2);
    lua_pushvalue(L, -2);
    lua_settable(L, -6);
    lua_pop(L, 1);
  }
  lua_pop(L, 1);
}


template <bool make_copy>
static int sort (lua_State *L) {
  if (make_copy) {
    lua_newtable(L);
    lua_pushvalue(L, 1);
    trivialcopy(L);
    lua_replace(L, 1);
  }
  lua_Integer n = aux_getn(L, 1, TAB_RW);
  if (n > 1) {  /* non-trivial interval? */
    luaL_argcheck(L, n < INT_MAX, 1, "array too big");
    if (!lua_isnoneornil(L, 2))  /* is there a 2nd argument? */
      luaL_checktype(L, 2, LUA_TFUNCTION);  /* must be a function */
    lua_settop(L, 2);  /* make sure there are two arguments */
    auxsort(L, 1, (IdxT)n, 0);
  }
  lua_settop(L, 1);
  return 1;
}


static int getn (lua_State *L) {
  lua_pushinteger(L, aux_getn(L, 1, TAB_RW));
  return 1;
}


#ifndef PLUTO_DISABLE_TABLE_FREEZING
static int tfreeze(lua_State* L) {
  luaL_checktype(L, 1, LUA_TTABLE);
  if (lua_gettop(L) > 1) {
    luaL_error(L, "more arguments than expected to table.freeze");
  }
  else {
    lua_freezetable(L, 1);
  }
  return 1;
}


static int tisfrozen (lua_State *L) {
  luaL_checktype(L, 1, LUA_TTABLE);
  lua_pushboolean(L, lua_istablefrozen(L, 1));
  return 1;
}
#endif


static int tcontains (lua_State *L) {
  luaL_checktype(L, 1, LUA_TTABLE);
  luaL_checkany(L, 2);

  lua_pushvalue(L, 1);
  lua_pushnil(L);
  while (lua_next(L, -2)) {
    lua_pushvalue(L, -2);
    if (lua_compare(L, 2, -2, LUA_OPEQ)) {
      lua_pushvalue(L, -1);
      return 1;
    }
    else {
      lua_pop(L, 2);
    }
  }
  
  lua_pop(L, 1);
  lua_pushnil(L);
  return 1;
}


template <bool make_copy>
static int tfilter (lua_State *L) {
  luaL_checktype(L, 1, LUA_TTABLE);
  luaL_checktype(L, 2, LUA_TFUNCTION);
  const bool callwithkey = lua_istrue(L, 3);

  if (make_copy)
    lua_newtable(L);
  lua_pushvalue(L, 1);
  if (make_copy) {
    trivialcopy(L);
  }
  lua_pushnil(L);
  /* stack now: table, key */
  while (lua_next(L, -2)) {
    /* stack now: table, key, value */
    lua_pushvalue(L, 2);
    if (callwithkey) {
      lua_pushvalue(L, -3);
      lua_pushvalue(L, -3);
      lua_call(L, 2, 1);
    }
    else {
      lua_pushvalue(L, -2);
      lua_call(L, 1, 1);
    }
    /* stack now: table, key, value, bKeep */

    const bool bKeep = lua_toboolean(L, -1);
    lua_pop(L, 1);
    /* stack now: table, key, value */
    if (!bKeep) {
      lua_pushvalue(L, -2);
      /* stack now: table, key, value, key */
      lua_pushnil(L);
      /* stack now: table, key, value, key, value */
      lua_settable(L, -5);
      /* stack now: table, key, value */
    }

    lua_pop(L, 1);
    /* stack now: table, key */
  }
  /* stack now: table */
  return 1;
}


template <bool make_copy>
static int tmap (lua_State *L) {
  luaL_checktype(L, 1, LUA_TTABLE);
  luaL_checktype(L, 2, LUA_TFUNCTION);
  const bool callwithkey = lua_istrue(L, 3);

  if (make_copy)
    lua_newtable(L);
  lua_pushvalue(L, 1);
  lua_pushnil(L);
  /* stack now: table, key */
  while (lua_next(L, -2)) {
    /* stack now: table, key, value */
    lua_pushvalue(L, 2);
    if (callwithkey) {
      lua_pushvalue(L, -3);
      lua_pushvalue(L, -3);
      lua_call(L, 2, 1);
    }
    else {
      lua_pushvalue(L, -2);
      lua_call(L, 1, 1);
    }
    /* stack now: table, key, value, mapped_value */
    lua_pushvalue(L, -3);
    lua_pushvalue(L, -2);
    /* stack now: table, key, value, mapped_value, key, mapped_value */
    lua_settable(L, make_copy ? -7 : -6);
    /* stack now: table, key, value, mapped_value */
    lua_pop(L, 2);
    /* stack now: table, key */
  }
  /* stack now: table */
  if (make_copy)
    lua_pop(L, 1);
  return 1;
}


template <bool make_copy>
static int treverse (lua_State *L) {
  luaL_checktype(L, 1, LUA_TTABLE);

  if (make_copy) {
    lua_settop(L, 1);
    lua_newtable(L);
  }
  const lua_Unsigned l = lua_rawlen(L, 1);
  for (lua_Unsigned i = 1; i <= l/2; ++i) {
    lua_pushinteger(L, l - i + 1);
    lua_pushinteger(L, i);
    lua_rawget(L, 1);
    lua_pushinteger(L, i);
    lua_pushinteger(L, l - i + 1);
    lua_rawget(L, 1);
    lua_rawset(L, make_copy ? 2 : 1);
    lua_rawset(L, make_copy ? 2 : 1);
  }
  if (make_copy && (l % 2 != 0)) {
    /* for oddly sized tables, we need to manually copy the element in the middle */
    lua_pushinteger(L, l/2+1);
    lua_pushinteger(L, l/2+1);
    lua_rawget(L, 1);
    lua_rawset(L, 2);
  }
  return 1;
}


TValue *index2value (lua_State *L, int idx);
template <bool make_copy>
static int treorder (lua_State* L) {
  luaL_checktype(L, 1, LUA_TTABLE);
  lua_settop(L, 1);

  if (make_copy)
    lua_newtable(L);

  lua_pushvalue(L, 1); // stack: table
  lua_pushnil(L); // stack: table, key

  lua_Integer idx = 1;
  while (lua_next(L, -2)) { // stack: table, key, value
    if (lua_isinteger(L, -2)) {
      if (!make_copy) {
        if (auto val = lua_tointeger(L, -2); val > idx) {
          lua_pushinteger(L, val); // stack: table, key, value, key
          lua_pushnil(L); // stack: table, key, value, key, value
          lua_settable(L, 1); // stack: table, key, value
        }
      }

      lua_pushinteger(L, idx++); // stack: table, key, value, key
      lua_pushvalue(L, -2); // stack; table, key, value, key, value
      lua_settable(L, make_copy ? 2 : 1); // stack; table, key, value
    }

    lua_pop(L, 1); // stack: table, key
  }
  if (make_copy)
    lua_pop(L, 1);

  luaH_resizearray(L, hvalue(index2value(L, -1)), (unsigned int)idx);
  return 1;
}


static int tsize (lua_State *L) {
  luaL_checktype(L, 1, LUA_TTABLE);
  Table *t = hvalue(index2value(L, 1));

  const bool hashonly = lua_istrue(L, 2);

  unsigned int size = luaH_gethsize(t);
  if (!hashonly)
    size += luaH_realasize(t);

  lua_pushinteger(L, size);
  return 1;
}


static int treduce (lua_State *L) {
  luaL_checktype(L, 1, LUA_TTABLE);
  luaL_checktype(L, 2, LUA_TFUNCTION);

  if (!lua_isnoneornil(L, 3)) {
    lua_pushvalue(L, 3);
  }
  else lua_pushinteger(L, 0);

  lua_pushvalue(L, 1);
  lua_pushnil(L);
  /* stack now: accum, table, key */
  while (lua_next(L, -2)) {
    /* stack now: accum, table, key, value */
    lua_pushvalue(L, 2);
    lua_pushvalue(L, -5);
    /* stack now: accum, table, key, value, func, accum */
    lua_pushvalue(L, -3);
    /* stack now: accum, table, key, value, func, accum, value */
    lua_call(L, 2, 1);
    /* stack now: accum, table, key, value, new_accum */
    lua_replace(L, -5);
    lua_pop(L, 1);
    /* stack now: accum, table, key */
  }
  lua_pop(L, 1);
  return 1;
}


template <bool findindex>
static int tfind (lua_State *L) {
  luaL_checktype(L, 1, LUA_TTABLE);
  luaL_checktype(L, 2, LUA_TFUNCTION);

  lua_pushvalue(L, 1);
  lua_pushnil(L);
  /* stack now: table, key */
  while (lua_next(L, -2)) {
    /* stack now: table, key, value */
    lua_pushvalue(L, 2);
    /* stack now: table, key, value, func */
    lua_pushvalue(L, -2);
    /* stack now: table, key, value, func, value */
    lua_call(L, 1, 1);
    /* stack now: table, key, value, bool */
    if (lua_istrue(L, -1)) {
      lua_pop(L, findindex ? 2 : 1);
      return 1;
    }
    lua_pop(L, 2);
    /* stack now: table, key */
  }
  lua_pop(L, 1);
  lua_pushnil(L);
  return 1;
}


static int checkall (lua_State *L) {
  luaL_checktype(L, 1, LUA_TTABLE);
  luaL_checktype(L, 2, LUA_TFUNCTION);

  lua_pushvalue(L, 1);
  lua_pushnil(L);
  /* stack now: table, key */
  while (lua_next(L, -2)) {
    /* stack now: table, key, value */
    lua_pushvalue(L, 2);
    /* stack now: table, key, value, func */
    lua_pushvalue(L, -2);
    /* stack now: table, key, value, func, value */
    lua_call(L, 1, 1);
    /* stack now: table, key, value, bool */
    if (!lua_istrue(L, -1)) {
      return 1;
    }
    lua_pop(L, 2);
    /* stack now: table, key */
  }
  lua_pop(L, 1);
  lua_pushboolean(L, true);
  return 1;
}


static int tclear (lua_State *L) {
  luaL_checktype(L, 1, LUA_TTABLE);
  luaH_clear(L, hvalue(index2value(L, 1)));
  return 0;
}


static int tback (lua_State *L) {
  getn(L);
  lua_gettable(L, 1);
  return 1;
}


static int modget (lua_State *L) {
  const lua_Integer i = ((luaL_checkinteger(L, 2) - 1) % aux_getn(L, 1, TAB_R)) + 1;
  lua_pushinteger(L, i);
  lua_gettable(L, 1);
  return 1;
}


static int modset (lua_State *L) {
  const lua_Integer i = ((luaL_checkinteger(L, 2) - 1) % aux_getn(L, 1, TAB_W)) + 1;
  lua_pushinteger(L, i);
  lua_pushvalue(L, 3);
  lua_settable(L, 1);
  return 0;
}


static int tkeys (lua_State *L) {
  lua_newtable(L);
  lua_Integer i = 0;
  lua_pushnil(L);
  /* stack now: tKeys, key */
  while (lua_next(L, 1)) {
    /* stack now: tKeys, key, value */
    lua_pop(L, 1);
    /* stack now: tKeys, key */
    lua_pushinteger(L, ++i);
    /* stack now: tKeys, key, index */
    lua_pushvalue(L, -2);
    /* stack now: tKeys, key, index, key */
    lua_settable(L, -4);
    /* stack now: tKeys, key */
  }
  /* stack now: tKeys */
  return 1;
}


static int tcountvalues (lua_State *L) {
  luaL_checktype(L, 1, LUA_TTABLE);
  lua_settop(L, 1);

  lua_newtable(L);
  lua_pushnil(L);
  while (lua_next(L, 1)) { /* og, result, key */
    lua_pushvalue(L, 4); /* push the key, prepare for result[value] */
    lua_gettable(L, 2); /* push result[value] */
    const lua_Integer i = luaL_optinteger(L, -1, 0) + 1; /* start or update count */
    lua_pushvalue(L, 4); /* push the key again */
    lua_pushinteger(L, i); /* push updated count */
    lua_settable(L, 2); /* update result */
    lua_settop(L, 3); /* reset stack to og, result, key */
  }

  return 1;
}


static int tslice (lua_State *L) {
  luaL_checktype(L, 1, LUA_TTABLE);

  const lua_Integer l = luaL_len(L, 1);

  lua_Integer idx_start = luaL_checkinteger(L, 2);
  lua_Integer idx_end = luaL_optinteger(L, 3, l);

  if (idx_start < 0) {
    idx_start = l + idx_start + 1;
  }

  if (idx_end < 0) {
    idx_end = l + idx_end + 1;
  }
  else if (idx_end > l) {
    idx_end = l;
  }

  lua_newtable(L);
  int tabloc = lua_gettop(L);
  lua_Integer idx_result = 1;
  for (lua_Integer i = idx_start; i <= idx_end; ++i) {
    lua_pushinteger(L, i);
    lua_gettable(L, 1);
    if (!lua_isnoneornil(L, -1)) {
      lua_pushinteger(L, idx_result++);
      lua_pushvalue(L, -2);
      lua_settable(L, tabloc);
    }
    else {
      lua_pop(L, 1);
    }
  }

  lua_settop(L, tabloc);

  return 1;
}

static int tchunk (lua_State *L) {
  luaL_checktype(L, 1, LUA_TTABLE);

  const lua_Integer size = luaL_checkinteger(L, 2);

  if (size <= 0) {
    luaL_error(L, "argument 'size' to table.chunk must be greater than zero (got %d)", size);
  }

  lua_pop(L, 1);
  
  lua_Integer chunk_idx = 0;
  lua_Integer subtable_len = 0;

  lua_newtable(L);
  lua_pushnil(L);
  while (lua_next(L, 1)) {
    if (!lua_isnoneornil(L, 4)) { /* stack: og, result, key, value */
      /* push our table to the stack. either by creating a new one, or fetching the latest subtable */
      if (subtable_len % size == 0) { /* if we've reached chunk size or should start creating a new chunk */
        lua_newtable(L); /* create a new table */
        lua_pushinteger(L, ++chunk_idx); /* create its index */
        lua_pushvalue(L, -2); /* copy reference to table */
        lua_settable(L, 2); /* result[chunk_idx] = subtable */
        subtable_len = 0;
      }
      else { /* we should already have a subtable at result[chunk_idx] */
        lua_pushinteger(L, chunk_idx);
        lua_gettable(L, 2); /* push result[chunk_idx] */
      }

      lua_pushinteger(L, ++subtable_len); /* push key for use in chunk */
      lua_pushvalue(L, 4); /* push value from lua_next */
      lua_settable(L, 5); /* chunk[subtable_len] = value */
    }

    lua_settop(L, 3); /* reset stack: og, result, key */
  }

  return 1;
}


/* }====================================================== */


static const luaL_Reg tab_funcs[] = {
  {"chunk", tchunk},
  {"slice", tslice},
  {"countvalues", tcountvalues},
  {"keys", tkeys},
  {"modget", modget},
  {"modset", modset},
  {"back", tback},
  {"clear", tclear},
  {"checkall", checkall},
  {"find", tfind<false>},
  {"findindex", tfind<true>},
  {"findkey", tfind<true>},
  {"reduce", treduce},
  {"size", tsize},
  {"reorder", treorder<false>},
  {"reordered", treorder<true>},
  {"reverse", treverse<false>},
  {"reversed", treverse<true>},
  {"map", tmap<false>},
  {"mapped", tmap<true>},
  {"filter", tfilter<false>},
  {"filtered", tfilter<true>},
  {"foreach", foreach},
  {"contains", tcontains},
#ifndef PLUTO_DISABLE_TABLE_FREEZING
  {"isfrozen", tisfrozen},
  {"freeze", tfreeze},
#endif
  {"concat", tconcat},
  {"insert", tinsert},
  {"pack", tpack},
  {"unpack", tunpack},
  {"remove", tremove},
  {"move", tmove},
  {"sort", sort<false>},
  {"sorted", sort<true>},
  {"getn", getn},
  {NULL, NULL}
};


LUAMOD_API int luaopen_table (lua_State *L) {
  luaL_newlib(L, tab_funcs);

#ifndef PLUTO_DONT_LOAD_ANY_STANDARD_LIBRARY_CODE_WRITTEN_IN_PLUTO
  lua_pushliteral(L, "min");
  luaL_loadstring(L, "return |t| -> table.reduce(t, math.min, math.maxinteger)");
  lua_call(L, 0, 1);
  lua_settable(L, -3);

  lua_pushliteral(L, "max");
  luaL_loadstring(L, "return |t| -> table.reduce(t, math.max, math.mininteger)");
  lua_call(L, 0, 1);
  lua_settable(L, -3);
#endif

  return 1;
}