-
Notifications
You must be signed in to change notification settings - Fork 1
/
bytecode.h
255 lines (240 loc) · 7.37 KB
/
bytecode.h
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
/**
* Copyright 2021 Slawomir Maludzinski
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included
* in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
* OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*/
#ifndef __BYTECODE_H__
#define __BYTECODE_H__
#include "vm_types.h"
typedef struct clause clause;
typedef enum bytecode_type {
BYTECODE_UNKNOWN,
BYTECODE_POP,
BYTECODE_PUT_REF,
BYTECODE_PUT_VAR,
BYTECODE_U_REF,
BYTECODE_U_VAR,
BYTECODE_CHECK,
BYTECODE_PUT_ANON,
BYTECODE_PUT_ATOM,
BYTECODE_PUT_INT,
BYTECODE_PUT_STRUCT,
BYTECODE_PUT_STRUCT_ADDR,
BYTECODE_U_ATOM,
BYTECODE_U_INT,
BYTECODE_U_STRUCT,
BYTECODE_U_STRUCT_ADDR,
BYTECODE_UP,
BYTECODE_BIND,
BYTECODE_SON,
BYTECODE_MARK,
BYTECODE_LAST_MARK,
BYTECODE_CALL,
BYTECODE_CALL_ADDR,
BYTECODE_LAST_CALL,
BYTECODE_LAST_CALL_ADDR,
BYTECODE_PUSH_ENV,
BYTECODE_POP_ENV,
BYTECODE_SET_BTP,
BYTECODE_DEL_BTP,
BYTECODE_TRY,
BYTECODE_PRUNE,
BYTECODE_SET_CUT,
BYTECODE_FAIL,
BYTECODE_INIT,
BYTECODE_HALT,
BYTECODE_NO,
BYTECODE_JUMP,
BYTECODE_LABEL,
BYTECODE_INT_NEG,
BYTECODE_INT_ADD,
BYTECODE_INT_SUB,
BYTECODE_INT_MUL,
BYTECODE_INT_DIV,
BYTECODE_BUILTIN,
BYTECODE_LT,
BYTECODE_GT,
BYTECODE_END
} bytecode_type;
typedef struct bytecode {
bytecode_type type;
unsigned int addr;
union {
struct {
unsigned int index;
} put_ref;
struct {
unsigned int index;
} put_var;
struct {
unsigned int index;
} u_ref;
struct {
unsigned int index;
} u_var;
struct {
unsigned int index;
} check;
struct {
atom_idx_t idx;
} put_atom;
struct {
int value;
} put_int;
struct {
unsigned int n;
union {
pc_ptr addr;
clause * predicate_ref;
};
} put_struct;
struct {
atom_idx_t idx;
} u_atom;
struct {
int value;
} u_int;
struct {
pc_offset offset;
unsigned int n;
union {
pc_ptr addr;
clause * predicate_ref;
};
} u_struct;
struct {
pc_offset offset;
} up;
struct {
unsigned int number;
} son;
struct {
pc_offset offset;
} mark;
struct {
unsigned int size;
} push_env;
struct {
pc_offset offset;
} try;
struct {
unsigned int n;
union {
pc_ptr addr;
clause * predicate_ref;
};
} call;
struct {
unsigned int size;
unsigned int n;
union {
pc_ptr addr;
clause * predicate_ref;
};
} last_call;
struct {
pc_offset offset;
} init;
struct {
unsigned int size;
} halt;
struct {
pc_offset offset;
} jump;
struct {
unsigned int id;
} builtin;
};
} bytecode;
typedef struct bytecode_node {
bytecode value;
struct bytecode_node * next;
} bytecode_node;
typedef struct bytecode_list {
bytecode_node * head;
bytecode_node ** tail;
unsigned int size;
} bytecode_list;
typedef struct bytecode_print_func {
bytecode_type type;
void (*print)(bytecode * value);
} bytecode_print_func;
bytecode * bytecode_new_pop();
void bytecode_delete(bytecode * value);
void bytecode_print_unknown(bytecode * value);
void bytecode_print_pop(bytecode * value);
void bytecode_print_put_ref(bytecode * value);
void bytecode_print_put_var(bytecode * value);
void bytecode_print_u_ref(bytecode * value);
void bytecode_print_u_var(bytecode * value);
void bytecode_print_check(bytecode * value);
void bytecode_print_put_anon(bytecode * value);
void bytecode_print_put_atom(bytecode * value);
void bytecode_print_put_int(bytecode * value);
void bytecode_print_put_struct(bytecode * value);
void bytecode_print_put_struct_addr(bytecode * value);
void bytecode_print_u_atom(bytecode * value);
void bytecode_print_u_int(bytecode * value);
void bytecode_print_u_struct(bytecode * value);
void bytecode_print_u_struct_addr(bytecode * value);
void bytecode_print_up(bytecode * value);
void bytecode_print_bind(bytecode * value);
void bytecode_print_son(bytecode * value);
void bytecode_print_mark(bytecode * value);
void bytecode_print_last_mark(bytecode * value);
void bytecode_print_call(bytecode * value);
void bytecode_print_call_addr(bytecode * value);
void bytecode_print_last_call(bytecode * value);
void bytecode_print_last_call_addr(bytecode * value);
void bytecode_print_push_env(bytecode * value);
void bytecode_print_pop_env(bytecode * value);
void bytecode_print_set_btp(bytecode * value);
void bytecode_print_del_btp(bytecode * value);
void bytecode_print_try(bytecode * value);
void bytecode_print_prune(bytecode * value);
void bytecode_print_set_cut(bytecode * value);
void bytecode_print_fail(bytecode * value);
void bytecode_print_init(bytecode * value);
void bytecode_print_halt(bytecode * value);
void bytecode_print_no(bytecode * value);
void bytecode_print_jump(bytecode * value);
void bytecode_print_label(bytecode * value);
void bytecode_print_int_neg(bytecode * value);
void bytecode_print_int_add(bytecode * value);
void bytecode_print_int_sub(bytecode * value);
void bytecode_print_int_mul(bytecode * value);
void bytecode_print_int_div(bytecode * value);
void bytecode_print_builtin(bytecode * value);
void bytecode_print_lt(bytecode * value);
void bytecode_print_gt(bytecode * value);
void bytecode_print(bytecode * value);
void bytecode_print_test();
const char * bytecode_type_str(bytecode_type type);
bytecode_node * bytecode_node_new();
void bytecode_node_delete(bytecode_node * value);
bytecode_list * bytecode_list_new();
void bytecode_list_delete(bytecode_list * list);
void bytecode_list_set_addr(bytecode_list * list);
bytecode * bytecode_list_add_end(bytecode_list * list, bytecode * value);
void bytecode_list_print(bytecode_list * list);
void bytecode_to_array(bytecode_list * code, bytecode ** code_arr,
unsigned int * code_size);
void bytecode_array_delete(bytecode * code_arr);
void bytecode_array_print(bytecode * code_arr, unsigned int size);
#endif /* __BYTECODE_H__ */