aboutsummaryrefslogtreecommitdiffstats
path: root/section_structs.py
blob: f5e29989d5f9ae6f27bd9057fda5578525f329e8 (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
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
# contains the data classes we use to hold the information of a module
class WASM_SECTION(object):
    def __init__(self):
        self.section_id = int()
        self.string = str()
        self.payload_length = int()
        self.is_custom_section = bool()
        self.name_len = int()
        self.name = str()
        self.payload_data = bytes()


class WASM_SEGMENT_INFO:
    def __int__(self):
        self.count = int()
        self.segments = []


class WASM_SEGMENT_INFO_SEGMENT:
    def __init__(self):
        self.name_len = int()
        self.name_data = str()
        self.alignment = int()
        self.flags = int()


class WASM_COMDAT_INFO_SUB:
    def __init__(self):
        self.count = int()
        self.comdats = []


class COMDAT:
    def __init(self):
        self.name_len = int()
        self.name_str = str()
        self.flags = int()
        self.count = int()
        self.comdat_syms = []


class COMDAT_SYM:
    def __init(self):
        self.kind = int()
        self.index = int()


class WASM_COMDAT_KIND:
    WASM_COMDAT_DATA = 0
    WASM_COMDAT_FUNCTION = 1
    WASM_COMDAT_GLOBAL = 2


class WASM_INIT_FUNCS:
    def __init__(self):
        self.count = int()
        self.functions = []


class WASM_SYMBOL_TABLE:
    def __init__(self):
        self.count = int()
        self.syminfo = []


class SYM_INFO:
    def __init__(self):
        self.kind = int()
        self.flags = int()


class SYM_INFO_FLAGS:
    WASM_SYM_BINDING_WEAK = 1
    WASM_SYM_BINDING_LOCAL = 2
    WASM_SYM_VISIBILITY_HIDDEN = 4
    WASM_SYM_UNDEFINED = 16


class Rel_Entry:
    def __int__(self):
        self.type = int()
        self.offset = int()
        self.index = int()


class RelA_Entry:
    def __int__(self):
        self.type = int()
        self.offset = int()
        self.index = int()
        self.addend = int()


class Relocation_Section:
    def __int__(self):
        self.section_id = int()
        self.name_length = int()
        self.name = str()
        self.count = int()
        self.entries = int()


class Func_Type:
    def __init__(self):
        self.form = int()
        self.param_cnt = int()
        self.param_types = []
        self.return_cnt = int()
        self.return_type = []


class Global_Type:
    def __init__(self):
        self.content_type = int()
        self.mutability = int()


class Resizable_Limits:
    def __init__(self):
        self.flags = int()
        self.initial = int()
        self.maximum = int()


class Table_Type:
    def __init__(self):
        self.element_type = int()
        self.limit = Resizable_Limits()


class External_Kind:
    def __init__(self):
        self.Function = 0
        self.Table = 1
        self.Memory = 2
        self.Global = 3


class Memory_Type:
    def __init__(self):
        self.limits = [Resizable_Limits()]


# @DEVI-FIXME-
class Init_Expr:
    pass


class Type_Section:
    def __init__(self):
        self.count = []
        self.func_types = []


class Import_Entry:
    def __init__(self):
        self.module_len = int()
        self.module_str = []
        self.field_len = int()
        self.field_str = []
        self.kind = int()
        self.type = int()


class Import_Section:
    def __init__(self):
        self.count = []
        self.import_entry = []


class Function_Section:
    def __init__(self):
        self.count = []
        self.type_section_index = [int()]


class Table_Section:
    def __init__(self):
        self.count = []
        self.table_types = []


class Memory_Section:
    def __init__(self):
        self.count = []
        # Resizable_Limits
        self.memory_types = []


class Global_Variable:
    def __init__(self):
        self.global_type = Global_Type()
        self.init_expr = []


class Global_Section:
    def __init__(self):
        self.count = []
        # Global_Variable
        self.global_variables = []


class Export_Entry:
    def __init__(self):
        self.field_len = int()
        self.field_str = []
        self.kind = int()
        self.index = int()


class Export_Section:
    def __init__(self):
        self.count = []
        # Export_Entry
        self.export_entries = []


class Start_Section:
    def __init__(self):
        self.function_section_index = []


class Elem_Segment:
    def __init__(self):
        self.index = int()
        self.offset = []
        self.num_elem = int()
        self.elems = []


class Element_Section:
    def __init__(self):
        self.count = []
        # Elem_Segment
        self.elem_segments = []


class Local_Entry:
    def __init__(self):
        self.count = int()
        self.type = int()


class WASM_Ins:
    def __init__(self):
        self.opcode = str()
        self.opcodeint = int()
        self.operands = []


class Func_Body:
    def __init__(self):
        self.body_size = int()
        self.local_count = int()
        # Local_Entry
        self.locals = []
        # WASM_Ins
        self.code = []
        self.end = int()


class Code_Section:
    def __init__(self):
        self.count = []
        # Func_Body
        self.func_bodies = []


class Data_Segment:
    def __init__(self):
        self.index = int()
        self.offset = []
        self.size = int()
        self.data = []


class Data_Section:
    def __init__(self):
        self.count = []
        # Data_Segment
        self.data_segments = []


class Name_Type:
    Module = 0
    Function = 1
    Local = 2


class Name_Section_Entry(object):
    def __init__(self, name_type, name_payload_len, name_payload_data):
        self.name_type = name_type
        self.name_payload_len = name_payload_len
        self.name_payload_data = name_payload_data


class Name_Section(object):
    def __init__(self, name_section_entry):
        self.name_section_entry = []
        self.name_section_entry = name_section_entry


class Module_Name(object):
    def __init__(self, name_len, name_str):
        self.name_len = name_len
        self.name_str = name_str


class Naming(object):
    def __init__(self, index, name_len, name_str):
        self.index = index
        self.name_len = name_len
        self.name_str = name_str


class Name_Map(object):
    def __init__(self, count, naming):
        self.count = count
        self.naming = []
        self.naming = naming


# the module class
class Module:
    def __init__(
        self,
        type_section,
        import_section,
        function_section,
        table_section,
        memory_section,
        global_section,
        export_section,
        start_section,
        element_section,
        code_section,
        data_section,
    ):
        self.type_section = type_section
        self.import_section = import_section
        self.function_section = function_section
        self.table_section = table_section
        self.memory_section = memory_section
        self.global_section = global_section
        self.export_section = export_section
        self.start_section = start_section
        self.element_section = element_section
        self.code_section = code_section
        self.data_section = data_section


"""
class RT_INS_CELL(object):
    def __init__(self):
        label : str
        mnemonic : str
        ops : list
"""