diff options
author | bloodstalker <thabogre@gmail.com> | 2018-09-16 17:47:36 +0000 |
---|---|---|
committer | bloodstalker <thabogre@gmail.com> | 2018-09-16 17:47:36 +0000 |
commit | 46e361aa3c52368d09f41028e1359d58fba80aee (patch) | |
tree | 2063762651987457280282fdd98b267edaa200d1 /bruiser/luatablegen/W_Global_Section_tablegen.c | |
parent | [skip ci] (diff) | |
download | mutator-46e361aa3c52368d09f41028e1359d58fba80aee.tar.gz mutator-46e361aa3c52368d09f41028e1359d58fba80aee.zip |
[skip ci]
Diffstat (limited to '')
-rw-r--r-- | bruiser/luatablegen/W_Global_Section_tablegen.c | 104 |
1 files changed, 0 insertions, 104 deletions
diff --git a/bruiser/luatablegen/W_Global_Section_tablegen.c b/bruiser/luatablegen/W_Global_Section_tablegen.c deleted file mode 100644 index 0bb2056..0000000 --- a/bruiser/luatablegen/W_Global_Section_tablegen.c +++ /dev/null @@ -1,104 +0,0 @@ - -// automatically generated by luatablegen -#include "../lua-5.3.4/src/lua.h" -#include "../lua-5.3.4/src/lauxlib.h" -#include "../lua-5.3.4/src/lualib.h" -#include <inttypes.h> -#include <stdbool.h> -#include "./W_Global_Section_tablegen.h" - -#include "../wasm.h" - -static W_Global_Section* convert_W_Global_Section (lua_State* __ls, int index) { - W_Global_Section* dummy = (W_Global_Section*)lua_touserdata(__ls, index); - if (dummy == NULL) printf("W_Global_Section:bad user data type.\n"); - return dummy; -} - -static W_Global_Section* check_W_Global_Section(lua_State* __ls, int index) { - W_Global_Section* dummy; - luaL_checktype(__ls, index, LUA_TUSERDATA); - dummy = (W_Global_Section*)luaL_checkudata(__ls, index, "W_Global_Section"); - if (dummy == NULL) printf("W_Global_Section:bad user data type.\n"); - return dummy; -} - -W_Global_Section* push_W_Global_Section(lua_State* __ls) { - lua_checkstack(__ls, 1); - W_Global_Section* dummy = lua_newuserdata(__ls, sizeof(W_Global_Section)); - luaL_getmetatable(__ls, "W_Global_Section"); - lua_setmetatable(__ls, -2); - return dummy; -} - -int W_Global_Section_push_args(lua_State* __ls, W_Global_Section* _st) { - lua_checkstack(__ls, 2); - lua_pushinteger(__ls, _st->count); - lua_pushlightuserdata(__ls, _st->globals); - return 0; -} - -int new_W_Global_Section(lua_State* __ls) { - lua_checkstack(__ls, 2); - varuint32 count = luaL_optinteger(__ls,-2,0); - W_Global_Entry** globals = lua_touserdata(__ls,-1); - W_Global_Section* dummy = push_W_Global_Section(__ls); - dummy->count = count; - dummy->globals = globals; - return 1; -} - -static int getter_W_Global_Section_count(lua_State* __ls) { - W_Global_Section* dummy = check_W_Global_Section(__ls, 1); - lua_pop(__ls, -1); - lua_pushinteger(__ls, dummy->count); - return 1; -} -static int getter_W_Global_Section_globals(lua_State* __ls) { - W_Global_Section* dummy = check_W_Global_Section(__ls, 1); - lua_pop(__ls, -1); - lua_pushlightuserdata(__ls, dummy->globals); - return 1; -} - -static int setter_W_Global_Section_count(lua_State* __ls) { - W_Global_Section* dummy = check_W_Global_Section(__ls, 1); - dummy->count = luaL_checkinteger(__ls, 2); - lua_settop(__ls, 1); - return 1; -} -static int setter_W_Global_Section_globals(lua_State* __ls) { - W_Global_Section* dummy = check_W_Global_Section(__ls, 1); - dummy->globals = luaL_checkudata(__ls, 2, "globals_t"); - lua_settop(__ls, 1); - return 1; -} - -static const luaL_Reg W_Global_Section_methods[] = { - {"new", new_W_Global_Section}, - {"set_count", setter_W_Global_Section_count}, - {"set_globals", setter_W_Global_Section_globals}, - {"count", getter_W_Global_Section_count}, - {"globals", getter_W_Global_Section_globals}, - {0,0} -}; - -static const luaL_Reg W_Global_Section_meta[] = { - {0, 0} -}; - -int W_Global_Section_register(lua_State* __ls) { - luaL_openlib(__ls, "W_Global_Section", W_Global_Section_methods, 0); - luaL_newmetatable(__ls, "W_Global_Section"); - luaL_openlib(__ls, 0, W_Global_Section_meta, 0); - lua_pushliteral(__ls, "__index"); - lua_pushvalue(__ls, -3); - lua_rawset(__ls, -3); - lua_pushliteral(__ls, "__metatable"); - lua_pushvalue(__ls, -3); - lua_rawset(__ls, -3); - lua_pop(__ls, 1); -return 1; -} - - |