2 ** $Id: lmem.c,v 1.70.1.1 2007/12/27 13:02:25 roberto Exp $
3 ** Interface to Memory Manager
4 ** See Copyright Notice in lua.h
24 ** About the realloc function:
25 ** void * frealloc (void *ud, void *ptr, size_t osize, size_t nsize);
26 ** (`osize' is the old size, `nsize' is the new size)
28 ** Lua ensures that (ptr == NULL) iff (osize == 0).
30 ** * frealloc(ud, NULL, 0, x) creates a new block of size `x'
32 ** * frealloc(ud, p, x, 0) frees the block `p'
33 ** (in this specific case, frealloc must return NULL).
34 ** particularly, frealloc(ud, NULL, 0, 0) does nothing
35 ** (which is equivalent to free(NULL) in ANSI C)
37 ** frealloc returns NULL if it cannot create or reallocate the area
38 ** (any reallocation to an equal or smaller size cannot fail!)
43 #define MINSIZEARRAY 4
46 void *luaM_growaux_ (lua_State
*L
, void *block
, int *size
, size_t size_elems
,
47 int limit
, const char *errormsg
) {
50 if (*size
>= limit
/2) { /* cannot double it? */
51 if (*size
>= limit
) /* cannot grow even a little? */
52 luaG_runerror(L
, errormsg
);
53 newsize
= limit
; /* still have at least one free place */
57 if (newsize
< MINSIZEARRAY
)
58 newsize
= MINSIZEARRAY
; /* minimum size */
60 newblock
= luaM_reallocv(L
, block
, *size
, newsize
, size_elems
);
61 *size
= newsize
; /* update only when everything else is OK */
66 void *luaM_toobig (lua_State
*L
) {
67 luaG_runerror(L
, "memory allocation error: block too big");
68 return NULL
; /* to avoid warnings */
74 ** generic allocation routine.
76 void *luaM_realloc_ (lua_State
*L
, void *block
, size_t osize
, size_t nsize
) {
77 global_State
*g
= G(L
);
78 lua_assert((osize
== 0) == (block
== NULL
));
79 block
= (*g
->frealloc
)(g
->ud
, block
, osize
, nsize
);
80 if (block
== NULL
&& nsize
> 0)
81 luaD_throw(L
, LUA_ERRMEM
);
82 lua_assert((nsize
== 0) == (block
== NULL
));
83 g
->totalbytes
= (g
->totalbytes
- osize
) + nsize
;