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
|
/*
* Copyright (c) 2023-2025 Ian Marco Moffett and the Osmora Team.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* 1. Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* 3. Neither the name of Hyra nor the names of its
* contributors may be used to endorse or promote products derived from
* this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*/
#include <sys/errno.h>
#include <oasm/emit.h>
#include <oasm/log.h>
#include <stdlib.h>
#include <string.h>
static inline void
emit_bytes(struct emit_state *state, void *p, size_t len)
{
write(state->out_fd, p, len);
}
/*
* Convert an IR register to an OSMX64
* valid register value that can be encoded
* into the instruction.
*/
static inline reg_t
ir_to_reg(tt_t ir)
{
switch (ir) {
case TT_X0: return OSMX64_R_X0;
case TT_X1: return OSMX64_R_X1;
case TT_X2: return OSMX64_R_X2;
case TT_X3: return OSMX64_R_X3;
case TT_X4: return OSMX64_R_X4;
case TT_X5: return OSMX64_R_X5;
case TT_X6: return OSMX64_R_X6;
case TT_X7: return OSMX64_R_X7;
case TT_X8: return OSMX64_R_X8;
case TT_X9: return OSMX64_R_X9;
case TT_X10: return OSMX64_R_X10;
case TT_X11: return OSMX64_R_X11;
case TT_X12: return OSMX64_R_X12;
case TT_X13: return OSMX64_R_X13;
case TT_X14: return OSMX64_R_X14;
case TT_X15: return OSMX64_R_X15;
}
return OSMX64_R_BAD;
}
/*
* Encode a MOV instruction
*
* mov [r], [r/imm]
*
* Returns the next token on success,
* otherwise NULL.
*/
static struct oasm_token *
emit_encode_mov(struct emit_state *state, struct oasm_token *tok)
{
inst_t curinst;
reg_t rd;
if (state == NULL || tok == NULL) {
return NULL;
}
/* Next token should be a register */
tok = TAILQ_NEXT(tok, link);
if (tok == NULL) {
return NULL;
}
if (!tok_is_xreg(tok->type)) {
oasm_err("[emit error]: bad 'mov' order\n");
return NULL;
}
rd = ir_to_reg(tok->type);
if (rd == OSMX64_R_BAD) {
oasm_err("[emit error]: got bad reg in 'mov'\n");
return NULL;
}
/* Next token should be an IMM */
tok = TAILQ_NEXT(tok, link);
if (tok == NULL) {
oasm_err("[emit error]: bad 'mov' order\n");
return NULL;
}
if (tok->type != TT_IMM) {
oasm_err("[emit error]: expected <imm>\n");
return NULL;
}
curinst.opcode = OSMX64_MOV_IMM;
curinst.rd = rd;
curinst.imm = tok->imm;
emit_bytes(state, &curinst, sizeof(curinst));
return TAILQ_NEXT(tok, link);
}
/*
* Encode a INC/DEC instruction
*
* inc/dec [r]
*
* Returns the next token on success,
* otherwise NULL.
*/
static struct oasm_token *
emit_encode_incdec(struct emit_state *state, struct oasm_token *tok)
{
inst_t curinst;
reg_t rd;
uint8_t opcode = OSMX64_INC;
char *inst_str = "inc";
if (state == NULL || tok == NULL) {
return NULL;
}
if (tok->type == TT_DEC) {
inst_str = "dec";
opcode = OSMX64_DEC;
}
/* Next token should be a register */
tok = TAILQ_NEXT(tok, link);
if (tok == NULL) {
return NULL;
}
if (!tok_is_xreg(tok->type)) {
oasm_err("[emit error]: bad '%s' order\n", inst_str);
return NULL;
}
rd = ir_to_reg(tok->type);
if (rd == OSMX64_R_BAD) {
oasm_err("[emit error]: got bad reg in '%s'\n", inst_str);
return NULL;
}
curinst.opcode = opcode;
curinst.rd = rd;
curinst.unused = 0;
emit_bytes(state, &curinst, sizeof(curinst));
return TAILQ_NEXT(tok, link);
}
/*
* Encode an ADD instruction
*
* add [r], <imm>
*
* Returns the next token on success,
* otherwise NULL.
*/
static struct oasm_token *
emit_encode_add(struct emit_state *state, struct oasm_token *tok)
{
inst_t curinst;
reg_t rd;
/*
* The next operand must be an X<n>
* register.
*/
tok = TAILQ_NEXT(tok, link);
if (tok == NULL) {
return NULL;
}
if (!tok_is_xreg(tok->type)) {
oasm_err("[emit error]: bad 'add' order\n");
return NULL;
}
/* Get the register and validate it */
rd = ir_to_reg(tok->type);
if (rd == OSMX64_R_BAD) {
oasm_err("[emit error]: got bad reg in 'add'\n");
return NULL;
}
/* The next token should be an <imm> */
tok = TAILQ_NEXT(tok, link);
if (tok == NULL) {
return NULL;
}
if (tok->type != TT_IMM) {
oasm_err("[emit error]: expected <imm> in 'add'\n");
return NULL;
}
curinst.opcode = OSMX64_ADD;
curinst.rd = rd;
curinst.imm = tok->imm;
emit_bytes(state, &curinst, sizeof(curinst));
return TAILQ_NEXT(tok, link);
}
/*
* Encode a HLT instruction
*
* 'hlt' - no operands
*
* Returns the next token on success,
* otherwise NULL.
*/
static struct oasm_token *
emit_encode_hlt(struct emit_state *state, struct oasm_token *tok)
{
inst_t curinst;
curinst.opcode = OSMX64_HLT;
curinst.rd = 0;
curinst.unused = 0;
emit_bytes(state, &curinst, sizeof(curinst));
return TAILQ_NEXT(tok, link);
}
int
emit_osxm64(struct emit_state *state, struct oasm_token *tp)
{
struct oasm_token *toknew;
if (state == NULL || tp == NULL) {
return -EINVAL;
}
/*
* We need to create a copy of the object as the
* caller will likely end up destroying it.
*/
toknew = malloc(sizeof(*toknew));
if (toknew == NULL) {
return -ENOMEM;
}
memcpy(toknew, tp, sizeof(*toknew));
TAILQ_INSERT_TAIL(&state->ir, toknew, link);
return 0;
}
int
emit_init(struct emit_state *state)
{
state->last_token = TT_UNKNOWN;
state->is_init = 1;
TAILQ_INIT(&state->ir);
return 0;
}
int
emit_destroy(struct emit_state *state)
{
struct oasm_token *curtok, *last = NULL;
TAILQ_FOREACH(curtok, &state->ir, link) {
if (last != NULL) {
free(last);
last = NULL;
}
if (curtok->raw != NULL) {
free(curtok->raw);
}
last = curtok;
}
/* Clean up any last objects */
if (last != NULL) {
free(last);
}
return 0;
}
int
emit_process(struct oasm_state *oasm, struct emit_state *emit)
{
struct oasm_token *curtok;
tt_t last_tok;
if (!emit->is_init) {
return -1;
}
emit->out_fd = oasm->out_fd;
curtok = TAILQ_FIRST(&emit->ir);
while (curtok != NULL) {
switch (curtok->type) {
case TT_MOV:
curtok = emit_encode_mov(emit, curtok);
break;
case TT_INC:
case TT_DEC:
curtok = emit_encode_incdec(emit, curtok);
break;
case TT_ADD:
curtok = emit_encode_add(emit, curtok);
break;
case TT_HLT:
curtok = emit_encode_hlt(emit, curtok);
break;
default:
curtok = TAILQ_NEXT(curtok, link);
break;
}
}
return 0;
}
|