Coverage Report

Created: 2025-07-18 07:03

/src/testdir/build/lua-master/source/lmem.c
Line
Count
Source (jump to first uncovered line)
1
/*
2
** $Id: lmem.c $
3
** Interface to Memory Manager
4
** See Copyright Notice in lua.h
5
*/
6
7
#define lmem_c
8
#define LUA_CORE
9
10
#include "lprefix.h"
11
12
13
#include <stddef.h>
14
15
#include "lua.h"
16
17
#include "ldebug.h"
18
#include "ldo.h"
19
#include "lgc.h"
20
#include "lmem.h"
21
#include "lobject.h"
22
#include "lstate.h"
23
24
25
26
/*
27
** About the realloc function:
28
** void *frealloc (void *ud, void *ptr, size_t osize, size_t nsize);
29
** ('osize' is the old size, 'nsize' is the new size)
30
**
31
** - frealloc(ud, p, x, 0) frees the block 'p' and returns NULL.
32
** Particularly, frealloc(ud, NULL, 0, 0) does nothing,
33
** which is equivalent to free(NULL) in ISO C.
34
**
35
** - frealloc(ud, NULL, x, s) creates a new block of size 's'
36
** (no matter 'x'). Returns NULL if it cannot create the new block.
37
**
38
** - otherwise, frealloc(ud, b, x, y) reallocates the block 'b' from
39
** size 'x' to size 'y'. Returns NULL if it cannot reallocate the
40
** block to the new size.
41
*/
42
43
44
/*
45
** Macro to call the allocation function.
46
*/
47
761M
#define callfrealloc(g,block,os,ns)    ((*g->frealloc)(g->ud, block, os, ns))
48
49
50
/*
51
** When an allocation fails, it will try again after an emergency
52
** collection, except when it cannot run a collection.  The GC should
53
** not be called while the state is not fully built, as the collector
54
** is not yet fully initialized. Also, it should not be called when
55
** 'gcstopem' is true, because then the interpreter is in the middle of
56
** a collection step.
57
*/
58
0
#define cantryagain(g)  (completestate(g) && !g->gcstopem)
59
60
61
62
63
#if defined(EMERGENCYGCTESTS)
64
/*
65
** First allocation will fail except when freeing a block (frees never
66
** fail) and when it cannot try again; this fail will trigger 'tryagain'
67
** and a full GC cycle at every allocation.
68
*/
69
static void *firsttry (global_State *g, void *block, size_t os, size_t ns) {
70
  if (ns > 0 && cantryagain(g))
71
    return NULL;  /* fail */
72
  else  /* normal allocation */
73
    return callfrealloc(g, block, os, ns);
74
}
75
#else
76
378M
#define firsttry(g,block,os,ns)    callfrealloc(g, block, os, ns)
77
#endif
78
79
80
81
82
83
/*
84
** {==================================================================
85
** Functions to allocate/deallocate arrays for the Parser
86
** ===================================================================
87
*/
88
89
/*
90
** Minimum size for arrays during parsing, to avoid overhead of
91
** reallocating to size 1, then 2, and then 4. All these arrays
92
** will be reallocated to exact sizes or erased when parsing ends.
93
*/
94
96.3M
#define MINSIZEARRAY  4
95
96
97
void *luaM_growaux_ (lua_State *L, void *block, int nelems, int *psize,
98
1.86G
                     unsigned size_elems, int limit, const char *what) {
99
1.86G
  void *newblock;
100
1.86G
  int size = *psize;
101
1.86G
  if (nelems + 1 <= size)  /* does one extra element still fit? */
102
1.80G
    return block;  /* nothing to be done */
103
55.9M
  if (size >= limit / 2) {  /* cannot double it? */
104
26
    if (l_unlikely(size >= limit))  /* cannot grow even a little? */
105
2
      luaG_runerror(L, "too many %s (limit is %d)", what, limit);
106
24
    size = limit;  /* still have at least one free place */
107
24
  }
108
55.9M
  else {
109
55.9M
    size *= 2;
110
55.9M
    if (size < MINSIZEARRAY)
111
40.4M
      size = MINSIZEARRAY;  /* minimum size */
112
55.9M
  }
113
55.9M
  lua_assert(nelems + 1 <= size && size <= limit);
114
  /* 'limit' ensures that multiplication will not overflow */
115
55.9M
  newblock = luaM_saferealloc_(L, block, cast_sizet(*psize) * size_elems,
116
55.9M
                                         cast_sizet(size) * size_elems);
117
55.9M
  *psize = size;  /* update only when everything else is OK */
118
55.9M
  return newblock;
119
55.9M
}
120
121
122
/*
123
** In prototypes, the size of the array is also its number of
124
** elements (to save memory). So, if it cannot shrink an array
125
** to its number of elements, the only option is to raise an
126
** error.
127
*/
128
void *luaM_shrinkvector_ (lua_State *L, void *block, int *size,
129
32.3M
                          int final_n, unsigned size_elem) {
130
32.3M
  void *newblock;
131
32.3M
  size_t oldsize = cast_sizet(*size) * size_elem;
132
32.3M
  size_t newsize = cast_sizet(final_n) * size_elem;
133
32.3M
  lua_assert(newsize <= oldsize);
134
32.3M
  newblock = luaM_saferealloc_(L, block, oldsize, newsize);
135
32.3M
  *size = final_n;
136
32.3M
  return newblock;
137
32.3M
}
138
139
/* }================================================================== */
140
141
142
0
l_noret luaM_toobig (lua_State *L) {
143
0
  luaG_runerror(L, "memory allocation error: block too big");
144
0
}
145
146
147
/*
148
** Free memory
149
*/
150
383M
void luaM_free_ (lua_State *L, void *block, size_t osize) {
151
383M
  global_State *g = G(L);
152
383M
  lua_assert((osize == 0) == (block == NULL));
153
383M
  callfrealloc(g, block, osize, 0);
154
383M
  g->GCdebt += cast(l_mem, osize);
155
383M
}
156
157
158
/*
159
** In case of allocation fail, this function will do an emergency
160
** collection to free some memory and then try the allocation again.
161
*/
162
static void *tryagain (lua_State *L, void *block,
163
0
                       size_t osize, size_t nsize) {
164
0
  global_State *g = G(L);
165
0
  if (cantryagain(g)) {
166
0
    luaC_fullgc(L, 1);  /* try to free some memory... */
167
0
    return callfrealloc(g, block, osize, nsize);  /* try again */
168
0
  }
169
0
  else return NULL;  /* cannot run an emergency collection */
170
0
}
171
172
173
/*
174
** Generic allocation routine.
175
*/
176
116M
void *luaM_realloc_ (lua_State *L, void *block, size_t osize, size_t nsize) {
177
116M
  void *newblock;
178
116M
  global_State *g = G(L);
179
116M
  lua_assert((osize == 0) == (block == NULL));
180
116M
  newblock = firsttry(g, block, osize, nsize);
181
116M
  if (l_unlikely(newblock == NULL && nsize > 0)) {
182
0
    newblock = tryagain(L, block, osize, nsize);
183
0
    if (newblock == NULL)  /* still no memory? */
184
0
      return NULL;  /* do not update 'GCdebt' */
185
0
  }
186
116M
  lua_assert((nsize == 0) == (newblock == NULL));
187
116M
  g->GCdebt -= cast(l_mem, nsize) - cast(l_mem, osize);
188
116M
  return newblock;
189
116M
}
190
191
192
void *luaM_saferealloc_ (lua_State *L, void *block, size_t osize,
193
109M
                                                    size_t nsize) {
194
109M
  void *newblock = luaM_realloc_(L, block, osize, nsize);
195
109M
  if (l_unlikely(newblock == NULL && nsize > 0))  /* allocation failed? */
196
0
    luaM_error(L);
197
109M
  return newblock;
198
109M
}
199
200
201
263M
void *luaM_malloc_ (lua_State *L, size_t size, int tag) {
202
263M
  if (size == 0)
203
1.26M
    return NULL;  /* that's all */
204
262M
  else {
205
262M
    global_State *g = G(L);
206
262M
    void *newblock = firsttry(g, NULL, cast_sizet(tag), size);
207
262M
    if (l_unlikely(newblock == NULL)) {
208
0
      newblock = tryagain(L, NULL, cast_sizet(tag), size);
209
0
      if (newblock == NULL)
210
0
        luaM_error(L);
211
0
    }
212
262M
    g->GCdebt -= cast(l_mem, size);
213
262M
    return newblock;
214
262M
  }
215
263M
}