-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcpu.cpp
77 lines (69 loc) · 2.65 KB
/
cpu.cpp
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
#include "cpuStruct.h"
int main() {
CPU cpu = {"cpu"};
cpu_init(&cpu);
size_t size_bin = 0;
char* bin = read_file_to_buffer_alloc(BIN_FILE_NAME, "rb", &size_bin);
assert(bin);
char* pc = bin;
FILE* cpu_out = fopen(CPU_OUT_FILE, "wb");
assert(cpu_out);
FILE* log = fopen(CPU_LOG_NAME, "wb");
assert(log);
fclose(log);
stack_reopen_log(&cpu.stack, STACK_LOG_NAME, "wb");
int signature = *(int*)pc;
if (signature != SIGNATURE) {
fprintf(stderr, "Error in CPU(%s)\nSignature mismatch SIGNATURE: %d\nActual SIGNATURE: %d.\n", cpu.tag, signature, SIGNATURE);
log = fopen(CPU_LOG_NAME, "ab");
assert(log);
fprintf(log, "Error in CPU(%s)\nSignature mismatch SIGNATURE: %d\nActual SIGNATURE: %d.\n", cpu.tag, signature, SIGNATURE);
fwrite(bin, sizeof(char), size_bin, log);
fprintf(log, "\n");
fclose(log);
assert(signature == SIGNATURE);
}
pc += sizeof(SIGNATURE);
char version = *pc;
if (version != VERSION) {
fprintf(stderr, "Version mismatch. Outdated bin file.\n File VERSION: %d.\nProgram VERSION: %d.\n Compile bin and restart program.\n", version, VERSION);
log = fopen(DEFAULT_STACK_LOG_NAME, "ab");
assert(log);
fprintf(log, "Error in CPU(%s)\nVersion mismatch. Outdated bin file\n File VERSION: %d.\nProgram VERSION: %d.\nCompile bin and restart program.\n", cpu.tag, version, VERSION);
fwrite(bin, sizeof(char), size_bin, log);
fprintf(log, "\n");
fclose(log);
assert(version == VERSION);
}
pc++;
while (*pc != 0) {
cpu_verify(&cpu, __FILE__, __PRETTY_FUNCTION__, __LINE__);
switch (*pc) {
#define DEF_CMD(name, token, scanf_sample, n_arg, instructions, disasm) \
case CMD_##name:\
{\
int arg_v[n_arg] = {};\
for(int i = 0; i < n_arg; i++) {\
arg_v[i] = *((int*)(pc + 1) + i);\
}\
instructions;\
pc += sizeof(int) * n_arg + sizeof(char);\
break;\
}
#include "commands.h"
#undef DEF_CMD
default:
fprintf(log, "\nRuntime ERROR. Unknown command code.\npc = %d [%p]\ncode = %d", pc - bin, pc, *pc);
fprintf(stderr, "\nRuntime ERROR. Unknown command code.\npc = %d [%p]\ncode = %d", pc - bin, pc, *pc);
fclose(cpu_out);
cpu_destruct(&cpu);
free(bin);
abort();
}
cpu_verify(&cpu, __FILE__, __PRETTY_FUNCTION__, __LINE__);
}
fclose(cpu_out);
cpu_destruct(&cpu);
free(bin);
return 0;
}