aboutsummaryrefslogtreecommitdiffstats
path: root/bruiser/luatablegen/W_Import_Section_Entry_tablegen.c
blob: 97ee26ba953d78a61be86c1198da410d2b9139db (plain) (blame)
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
// 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_Import_Section_Entry_tablegen.h"

#include "../wasm.h"

static W_Import_Section_Entry* convert_W_Import_Section_Entry (lua_State* __ls, int index) {
	W_Import_Section_Entry* dummy = (W_Import_Section_Entry*)lua_touserdata(__ls, index);
	if (dummy == NULL) printf("W_Import_Section_Entry:bad user data type.\n");
	return dummy;
}

static W_Import_Section_Entry* check_W_Import_Section_Entry(lua_State* __ls, int index) {
	W_Import_Section_Entry* dummy;
	luaL_checktype(__ls, index, LUA_TUSERDATA);
	dummy = (W_Import_Section_Entry*)luaL_checkudata(__ls, index, "W_Import_Section_Entry");
	if (dummy == NULL) printf("W_Import_Section_Entry:bad user data type.\n");
	return dummy;
}

W_Import_Section_Entry* push_W_Import_Section_Entry(lua_State* __ls) {
	lua_checkstack(__ls, 1);
	W_Import_Section_Entry* dummy = lua_newuserdata(__ls, sizeof(W_Import_Section_Entry));
	luaL_getmetatable(__ls, "W_Import_Section_Entry");
	lua_setmetatable(__ls, -2);
	return dummy;
}

int W_Import_Section_Entry_push_args(lua_State* __ls, W_Import_Section_Entry* _st) {
	lua_checkstack(__ls, 6);
	lua_pushinteger(__ls, _st->module_length);
	lua_pushstring(__ls, _st->module_str);
	lua_pushinteger(__ls, _st->field_len);
	lua_pushstring(__ls, _st->field_str);
	lua_pushinteger(__ls, _st->kind);
	lua_pushlightuserdata(__ls, _st->type);
	return 0;
}

int new_W_Import_Section_Entry(lua_State* __ls) {
	lua_checkstack(__ls, 6);
	varuint32 module_length = luaL_optinteger(__ls,-6,0);
	char* module_str = lua_tostring(__ls,-5);
	varuint32 field_len = luaL_optinteger(__ls,-4,0);
	char* field_str = lua_tostring(__ls,-3);
	enum external_kind_t kind = luaL_optinteger(__ls,-2,0);
	void* type = lua_touserdata(__ls,-1);
	W_Import_Section_Entry* dummy = push_W_Import_Section_Entry(__ls);
	dummy->module_length = module_length;
	dummy->module_str = module_str;
	dummy->field_len = field_len;
	dummy->field_str = field_str;
	dummy->kind = kind;
	dummy->type = type;
	return 1;
}

static int getter_W_Import_Section_Entry_module_length(lua_State* __ls) {
	W_Import_Section_Entry* dummy = check_W_Import_Section_Entry(__ls, 1);
	lua_pop(__ls, -1);
	lua_pushinteger(__ls, dummy->module_length);
	return 1;
}
static int getter_W_Import_Section_Entry_module_str(lua_State* __ls) {
	W_Import_Section_Entry* dummy = check_W_Import_Section_Entry(__ls, 1);
	lua_pop(__ls, -1);
	lua_pushstring(__ls, dummy->module_str);
	return 1;
}
static int getter_W_Import_Section_Entry_field_len(lua_State* __ls) {
	W_Import_Section_Entry* dummy = check_W_Import_Section_Entry(__ls, 1);
	lua_pop(__ls, -1);
	lua_pushinteger(__ls, dummy->field_len);
	return 1;
}
static int getter_W_Import_Section_Entry_field_str(lua_State* __ls) {
	W_Import_Section_Entry* dummy = check_W_Import_Section_Entry(__ls, 1);
	lua_pop(__ls, -1);
	lua_pushstring(__ls, dummy->field_str);
	return 1;
}
static int getter_W_Import_Section_Entry_kind(lua_State* __ls) {
	W_Import_Section_Entry* dummy = check_W_Import_Section_Entry(__ls, 1);
	lua_pop(__ls, -1);
	lua_pushinteger(__ls, dummy->kind);
	return 1;
}
static int getter_W_Import_Section_Entry_type(lua_State* __ls) {
	W_Import_Section_Entry* dummy = check_W_Import_Section_Entry(__ls, 1);
	lua_pop(__ls, -1);
	lua_pushlightuserdata(__ls, dummy->type);
	return 1;
}

static int setter_W_Import_Section_Entry_module_length(lua_State* __ls) {
	W_Import_Section_Entry* dummy = check_W_Import_Section_Entry(__ls, 1);
	dummy->module_length = luaL_checkinteger(__ls, 2);
	lua_settop(__ls, 1);
	return 1;
}
static int setter_W_Import_Section_Entry_module_str(lua_State* __ls) {
	W_Import_Section_Entry* dummy = check_W_Import_Section_Entry(__ls, 1);
	dummy->module_str = luaL_checkstring(__ls, 2);
	lua_settop(__ls, 1);
	return 1;
}
static int setter_W_Import_Section_Entry_field_len(lua_State* __ls) {
	W_Import_Section_Entry* dummy = check_W_Import_Section_Entry(__ls, 1);
	dummy->field_len = luaL_checkinteger(__ls, 2);
	lua_settop(__ls, 1);
	return 1;
}
static int setter_W_Import_Section_Entry_field_str(lua_State* __ls) {
	W_Import_Section_Entry* dummy = check_W_Import_Section_Entry(__ls, 1);
	dummy->field_str = luaL_checkstring(__ls, 2);
	lua_settop(__ls, 1);
	return 1;
}
static int setter_W_Import_Section_Entry_kind(lua_State* __ls) {
	W_Import_Section_Entry* dummy = check_W_Import_Section_Entry(__ls, 1);
	dummy->kind = luaL_checkinteger(__ls, 2);
	lua_settop(__ls, 1);
	return 1;
}
static int setter_W_Import_Section_Entry_type(lua_State* __ls) {
	W_Import_Section_Entry* dummy = check_W_Import_Section_Entry(__ls, 1);
	dummy->type = luaL_checkudata(__ls, 2, "type_t");
	lua_settop(__ls, 1);
	return 1;
}

static const luaL_Reg W_Import_Section_Entry_methods[] = {
	{"new", new_W_Import_Section_Entry},
	{"set_module_length", setter_W_Import_Section_Entry_module_length},
	{"set_module_str", setter_W_Import_Section_Entry_module_str},
	{"set_field_len", setter_W_Import_Section_Entry_field_len},
	{"set_field_str", setter_W_Import_Section_Entry_field_str},
	{"set_kind", setter_W_Import_Section_Entry_kind},
	{"set_type", setter_W_Import_Section_Entry_type},
	{"module_length", getter_W_Import_Section_Entry_module_length},
	{"module_str", getter_W_Import_Section_Entry_module_str},
	{"field_len", getter_W_Import_Section_Entry_field_len},
	{"field_str", getter_W_Import_Section_Entry_field_str},
	{"kind", getter_W_Import_Section_Entry_kind},
	{"type", getter_W_Import_Section_Entry_type},
	{0,0}
};

static const luaL_Reg W_Import_Section_Entry_meta[] = {
	{0, 0}
};

int W_Import_Section_Entry_register(lua_State* __ls) {
	luaL_openlib(__ls, "W_Import_Section_Entry", W_Import_Section_Entry_methods, 0);
	luaL_newmetatable(__ls, "W_Import_Section_Entry");
	luaL_openlib(__ls, 0, W_Import_Section_Entry_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;
}