1 Star 0 Fork 0

Jaesoon/luaEngine

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
lmem.h 4.49 KB
一键复制 编辑 原始数据 按行查看 历史
jaesonzhang 提交于 2024-05-13 21:10 . 注释代码提交
/*
** $Id: lmem.h,v 1.43.1.1 2017/04/19 17:20:42 roberto Exp $
** Interface to Memory Manager
** See Copyright Notice in lua.h
*/
#ifndef lmem_h
#define lmem_h
#include <stddef.h>
#include "llimits.h"
#include "lua.h"
/*
** This macro reallocs a vector 'b' from 'on' to 'n' elements, where
** each element has size 'e'. In case of arithmetic overflow of the
** product 'n'*'e', it raises an error (calling 'luaM_toobig'). Because
** 'e' is always constant, it avoids the runtime division MAX_SIZET/(e).
**
** (The macro is somewhat complex to avoid warnings: The 'sizeof'
** comparison avoids a runtime comparison when overflow cannot occur.
** The compiler should be able to optimize the real test by itself, but
** when it does it, it may give a warning about "comparison is always
** false due to limited range of data type"; the +1 tricks the compiler,
** avoiding this warning but also this optimization.)
*/
#define luaM_reallocv(L, b, on, n, e) \
(((sizeof(n) >= sizeof(size_t) && cast(size_t, (n)) + 1 > MAX_SIZET/(e)) \
? luaM_toobig(L) : cast_void(0)) , \
luaM_realloc_(L, (b), (on)*(e), (n)*(e)))
/*
** Arrays of chars do not need any test
*/
#define luaM_reallocvchar(L, b, on, n) \
cast(char *, luaM_realloc_(L, (b), (on)*sizeof(char), (n)*sizeof(char)))
#define luaM_freemem(L, b, s) luaM_realloc_(L, (b), (s), 0)
#define luaM_free(L, b) luaM_realloc_(L, (b), sizeof(*(b)), 0)
#define luaM_freearray(L, b, n) luaM_realloc_(L, (b), (n)*sizeof(*(b)), 0)
#define luaM_malloc(L, s) luaM_realloc_(L, NULL, 0, (s))
#define luaM_new(L, t) cast(t *, luaM_malloc(L, sizeof(t)))
#define luaM_newvector(L, n, t) \
cast(t *, luaM_reallocv(L, NULL, 0, n, sizeof(t)))
#define luaM_newobject(L, tag, s) luaM_realloc_(L, NULL, tag, (s))
/**
* 这段代码是一个宏定义,用于在 Lua 中动态增长一个向量(也就是数组)。
* 宏 luaM_growvector 用于当当前向量的容量不足以容纳更多元素时,自动扩展向量的大小。下面是对宏中每个部分的解释:
* 1. L:是一个 lua_State * 类型的参数,指向当前的 Lua 状态。
* 2. v:是指向当前向量的指针,其类型是 t *,t 是向量中存储元素的类型。
* 3. nelems:是一个整数,表示当前向量中已有的元素数量。
* 4. size:是一个整数,表示当前向量分配的容量(即可以存储的元素数量)。
* 5. t:是向量中存储元素的类型。
* 6. limit:是一个整数,表示向量容量的最大限制。
* 7. e:是一个表达式,用于在需要增长向量时,创建新的元素的默认值。
* 宏的工作流程如下:
* 首先,检查当前向量中的元素数量 nelems 加一(因为我们要添加一个新元素)是否大于当前向量的容量 size。如果是,说明向量需要增长。
* 如果需要增长,执行 luaM_growaux_ 函数。这个函数负责实际的内存重新分配和向量增长工作。
* 它接收 Lua 状态 L、当前向量 v、指向容量 size 的指针、元素类型 t 的大小、最大限制 limit 和默认值表达式 e。
* cast(t *, luaM_growaux_(L, v, &(size), sizeof(t), limit, e)):这将 luaM_growaux_ 函数的返回值转换为 t * 类型,
* 即向量的元素类型指针类型,并将其赋值给 v。这更新了向量的指针,使其指向新的、更大容量的内存区域。
* luaM_growaux_ 函数可能会根据需要创建一个新的更大的内存块,将旧向量中的元素复制到新内存块中,并使用 e 表达式初始化新增加的空间。
* 这个宏是 Lua 中动态数组管理的一部分,通常用于实现 Lua 表(tables)、栈和其他需要动态增长的数据结构。
* 通过这种方式,Lua 可以有效地管理内存,避免在添加每个元素时都进行显式的内存分配检查。
*/
#define luaM_growvector(L, v, nelems, size, t, limit, e) \
if ((nelems)+1 > (size)) \
((v)=cast(t *, luaM_growaux_(L,v,&(size),sizeof(t),limit,e)))
#define luaM_reallocvector(L, v, oldn, n, t) \
((v)=cast(t *, luaM_reallocv(L, v, oldn, n, sizeof(t))))
LUAI_FUNC l_noret luaM_toobig(lua_State *L);
/* not to be called directly */
LUAI_FUNC void *luaM_realloc_(lua_State *L, void *block, size_t oldsize,
size_t size);
LUAI_FUNC void *luaM_growaux_(lua_State *L, void *block, int *size,
size_t size_elem, int limit,
const char *what);
#endif
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/jaesoon/lua-engine.git
[email protected]:jaesoon/lua-engine.git
jaesoon
lua-engine
luaEngine
master

搜索帮助