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
|
'use strict';
const { AddrMode } = require('./enum.js');
exports.DAT = function(core, pc, ins) {
// do nothing and die
return [];
}
exports.MOV = function(core, pc, ins) {
if (ins.a.mode === AddrMode.Immediate) {
const dst = core.getValue(pc, ins.b);
dst.b.value = ins.a.value;
} else {
const src = core.getValue(pc, ins.a);
const dstLocation = core.getLocation(pc, ins.b);
// hacky deep copy
core.data[dstLocation] = JSON.parse(JSON.stringify(src));
}
return [core.normalize(pc, 1)];
}
exports.ADD = function(core, pc, ins) {
if (ins.a.mode === AddrMode.Immediate) {
const dst = core.getValue(pc, ins.b);
dst.b.value += ins.a.value;
} else {
const src = core.getValue(pc, ins.a);
const dst = core.getValue(pc, ins.b);
dst.a.value += src.a.value;
dst.b.value += src.b.value;
}
return [core.normalize(pc, 1)];
}
exports.SUB = function(core, pc, ins) {
if (ins.a.mode === AddrMode.Immediate) {
const dst = core.getValue(pc, ins.b);
dst.b.value -= ins.a.value;
} else {
const src = core.getValue(pc, ins.a);
const dst = core.getValue(pc, ins.b);
dst.a.value -= src.a.value;
dst.b.value -= src.b.value;
}
return [core.normalize(pc, 1)];
}
exports.CMP = function(core, pc, ins) {
if (ins.a.mode === AddrMode.Immediate) {
const test = core.getValue(pc, ins.b);
if (test.b.value === ins.a.value) {
return [core.normalize(pc, 2)];
} else {
return [core.normalize(pc, 1)];
}
} else {
const left = core.getValue(pc, ins.a);
const right = core.getValue(pc, ins.b);
if (
// compare opcode
left.opcode === right.opcode &&
// compare a-field
left.a.mode === right.a.mode &&
left.a.value === right.a.value &&
// compare b-field
left.b.mode === right.b.mode &&
left.b.value === right.b.value
) {
return [core.normalize(pc, 2)];
} else {
return [core.normalize(pc, 1)];
}
}
}
exports.SLT = function(core, pc, ins) {
if (ins.a.mode === AddrMode.Immediate) {
const test = core.getValue(pc, ins.b);
if (ins.a.value < test.b.value) {
return [core.normalize(pc, 2)];
} else {
return [core.normalize(pc, 1)];
}
} else {
const left = core.getValue(pc, ins.a);
const right = core.getValue(pc, ins.b);
if (left.b.value < right.b.value) {
return [core.normalize(pc, 2)];
} else {
return [core.normalize(pc, 1)];
}
}
}
exports.JMP = function(core, pc, ins) {
const dstLoc = core.getLocation(pc, ins.a);
return [dstLoc];
}
exports.JMZ = function(core, pc, ins) {
let test
if (ins.b.mode === AddrMode.Immediate) {
test = (ins.b.value === 0);
} else {
const src = core.getValue(pc, ins.b);
test = (src.b.value === 0);
}
if (test) {
return [core.getLocation(pc, ins.a)];
} else {
return [core.normalize(pc, 1)];
}
}
|