summaryrefslogtreecommitdiff
path: root/emux64/src/cpu/cpu_cycle.c
blob: b3a8987f5b4aae4e03f1576e5d5d40867471fbd7 (plain)
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
/*
 * Copyright (c) 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 <stdio.h>
#include <errno.h>
#include <stdbool.h>
#include "rom.h"
#include "cpu/cpu.h"

/*
 * Represents arithmetic arguments
 *
 * @dest_reg: Destination register [R]
 * @op1: Operand 1 [IMM]
 * op2: Operand 2 [IMM]
 */
struct arithop {
    uint8_t dest_reg;
    uint64_t op1;
    uint64_t op2;
};

/*
 * Returns true if the register is an
 * X<n> type register
 *
 * @reg: Register to check
 */
static inline bool
reg_is_xn(uint8_t reg)
{
    return reg >= REG_XN_BASE && reg <= REG_XN_LIMIT;
}

/*
 * Fetch an instruction byte from memory
 *
 * @core: Core to fetch for
 * @byte_res: Result is written here
 *
 * XXX: Caller is to increment `core->pc'
 *
 * Returns zero on success
 */
static int
cpu_fetch(struct osmx_core *core, uint8_t *byte_res)
{
    uint8_t *rom;
    size_t rom_len;

    if (core == NULL || byte_res == NULL) {
        printf("fatal: bad arg in %s()\n", __func__);
        return -1;
    }

    if ((rom = g_firmware.buf) == NULL) {
        printf("fatal: ROM is uninitialized\n");
        return -1;
    }

    rom_len = g_firmware.length;
    if (core->pc >= (CPU_BUA_PBASE + rom_len)) {
        printf("fatal: PC outside of ROM\n");
        return -1;
    }

    if (core->pc >= CPU_BUA_PBASE) {
        *byte_res = rom[core->pc - CPU_BUA_PBASE];
    }

    return 0;
}

/*
 * Get a 32-bit value from values @ PC
 */
static int
cpu_fetch32(struct osmx_core *core, uint64_t *res)
{
    uint64_t v = 0;
    uint8_t byte;
    int error;

    if (core == NULL || res == NULL) {
        return -EINVAL;
    }

    for (int i = 0; i < 32; i += 8) {
        error = cpu_fetch(core, &byte);
        if (error < 0) {
            return error;
        }

        v |= (byte << i);
        core->pc++;
    }

    *res = v;
    return 0;
}

/*
 * Get arithmetic parameters
 *
 * @core: Core that is executing
 * @res: Result written here
 *
 * Returns zero on success
 */
static int
cpu_arithop(struct osmx_core *core, struct arithop *res)
{
    uint8_t dest, op1, op2;
    uint64_t op2_val;
    bool op2_is_imm;
    bool op2_is_big;
    int error = 0;

    if (core == NULL || res == NULL) {
        return -EINVAL;
    }

    /* Grab the dest register */
    error = cpu_fetch(core, &dest);
    if (error < 0) {
        return error;
    }

    ++core->pc;

    error = cpu_fetch(core, &op1);
    if (error < 0) {
        return error;
    }

    ++core->pc;

    /*
     * Operand one is 7 bits as the first bit in the
     * byte is used for indicating if the second operand
     * is an immediate value (1) or a register (0)
     */
    op2_is_imm = op1 & 1;
    op1 >>= 1;

    /* Verify the register types */
    if (!reg_is_xn(dest) || dest == 0)
        return -1;
    if (!reg_is_xn(op1))
        return -1;

    if (op2_is_imm) {
        error = cpu_fetch32(core, &op2_val);
    } else {
        op2_val = core->xn[op2 - REG_XN_BASE];
    }

    if (error != 0) {
        return error;
    }

    res->dest_reg = dest;
    res->op1 = core->xn[op1];
    res->op2 = op2_val;
    return 0;
}

static int
cpu_do_add(struct osmx_core *core)
{
    struct arithop ops;
    int error;

    error = cpu_arithop(core, &ops);
    if (error < 0) {
        return error;
    }

    core->xn[ops.dest_reg] = ops.op1 + ops.op2;
    return 0;

}

int
cpu_run(struct osmx_core *core)
{
    uint8_t opcode;
    int error;

    if (core == NULL) {
        return -EINVAL;
    }

    core->run = 1;
    while (core->run) {
        error = cpu_fetch(core, &opcode);
        if (error < 0) {
            printf("cpu: instruction fetch error\n");
            core->run = 0;
            break;
        }

        ++core->pc;

        /* Test opcode cases */
        switch (opcode) {
        case OP_HLT:
            printf("** HALTED **\n");
            core->run = false;
            continue;
        case OP_ADD:
            if (cpu_do_add(core) < 0) {
                core->run = false;
                continue;
            }
            break;
        case OP_NOP:
            break;
        default:
            printf("** INVALID OPCODE **\n");
            break;
        }

        printf("--\n");
        cpu_dump(core);
    }
}