-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathassembler.cpp
More file actions
226 lines (171 loc) · 5.37 KB
/
assembler.cpp
File metadata and controls
226 lines (171 loc) · 5.37 KB
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
#include "assembler.h"
#include <QList>
#include <QStringList>
#include <QVariant>
#include <QtEndian>
const unsigned int ADD_OP = 0x00;
const unsigned int SUB_OP = 0x00;
const unsigned int ORI_OP = 0x0D;
const unsigned int LW_OP = 0x23;
const unsigned int SW_OP = 0x2B;
const unsigned int BEQ_OP = 0x04;
const unsigned int JMP_OP = 0x02;
const unsigned int OP_SHIFT = 26;
const unsigned int FUNC_SHIFT = 0;
const unsigned int RS_SHIFT = 21;
const unsigned int RT_SHIFT = 16;
const unsigned int RD_SHIFT = 11;
const unsigned int OP_MASK = 0x3F << OP_SHIFT;
const unsigned int ADD_FUNC = 0x20;
const unsigned int SUB_FUNC = 0x22;
const unsigned int NUM_REGISTERS = 32;
namespace CutePathSim
{
QByteArray parseAssembly(QTextStream &assembly)
{
QByteArray result;
while (!assembly.atEnd())
{
unsigned int instruction = 0;
QString line1 = assembly.readLine();
QStringList words = line1.split(' ');
// parse the instruction name
if (words[0] == "ADD")
{
instruction |= ADD_OP << OP_SHIFT;
instruction |= ADD_FUNC << FUNC_SHIFT;
}
else if (words[0] == "SUB")
{
instruction |= SUB_OP << OP_SHIFT;
instruction |= SUB_FUNC << FUNC_SHIFT;
}
else if (words[0] == "ORI")
{
instruction |= ORI_OP << OP_SHIFT;
}
else if (words[0] == "JUMP")
{
instruction |= JMP_OP << OP_SHIFT;
}
else if (words[0] == "LW")
{
instruction |= LW_OP << OP_SHIFT;
}
else if (words[0] == "SW")
{
instruction |= SW_OP << OP_SHIFT;
}
else if (words[0] == "BEQ_OP")
{
instruction |= BEQ_OP << OP_SHIFT;
}
else
{
Q_ASSERT(false); // TODO: throw an exception
return QByteArray();
}
switch((instruction & OP_MASK) >> OP_SHIFT)
{
case ADD_OP:
// case SUB_OP:
{
// parse the register numbers
QRegExp rx("^\\s.\\$(\\d+)\\s.,\\s.\\$(\\d+)\\s.,\\s.\\$(\\d+)\\s.$");
int pos = rx.indexIn(words[1]);
if(pos < 0)
{
Q_ASSERT(false); // TODO: throw an exception
return QByteArray();
}
QStringList registers = rx.capturedTexts();
if(registers.length() != 3)
{
Q_ASSERT(false); // TODO: throw an exception
return QByteArray();
}
unsigned int rd = QVariant(registers[0]).toInt();
if(rd >= NUM_REGISTERS)
{
Q_ASSERT(false); // TODO: throw an exception
return QByteArray();
}
unsigned int rs = QVariant(registers[1]).toInt();
if(rs >= NUM_REGISTERS)
{
Q_ASSERT(false); // TODO: throw an exception
return QByteArray();
}
unsigned int rt = QVariant(registers[2]).toInt();
if(rt >= NUM_REGISTERS)
{
Q_ASSERT(false); // TODO: throw an exception
return QByteArray();
}
instruction |= rd << RD_SHIFT;
instruction |= rs << RS_SHIFT;
instruction |= rt << RT_SHIFT;
}
case ORI_OP:
//Also for LW,SW,BEQ
{
// parse the register numbers
QRegExp rx("^\\s.\\$(\\d+)\\s.,\\s.\\$(\\d+)\\s.,\\s.\\$(\\d+)\\s.$");
int pos = rx.indexIn(words[1]);
if(pos < 0)
{
Q_ASSERT(false); // TODO: throw an exception
return QByteArray();
}
QStringList registers = rx.capturedTexts();
if(registers.length() != 3)
{
Q_ASSERT(false); // TODO: throw an exception
return QByteArray();
}
unsigned int rs = QVariant(registers[0]).toInt();
if(rs >= NUM_REGISTERS)
{
Q_ASSERT(false); // TODO: throw an exception
return QByteArray();
}
unsigned int rt = QVariant(registers[1]).toInt();
if(rt >= NUM_REGISTERS)
{
Q_ASSERT(false); // TODO: throw an exception
return QByteArray();
}
unsigned int IMM16 = QVariant(registers[2]).toInt();
rs |= IMM16;
instruction |= rs << RS_SHIFT;
instruction |= rt << RT_SHIFT;
}
case JMP_OP:
{
// Parse the target value
QRegExp rx("^\\s.\\$(\\d+)\\s.,\\s.\\$(\\d+)\\s.,\\s.\\$(\\d+)\\s.$");
int pos = rx.indexIn(words[1]);
QStringList target = rx.capturedTexts();
if(pos < 0)
{
Q_ASSERT(false); // TODO: throw an exception
return QByteArray();
}
unsigned int jmp = QVariant(target[0]).toInt();
if(target.length() > ((1 << 25) - 1))
{
Q_ASSERT(false);
return QByteArray();
}
instruction |= jmp << FUNC_SHIFT; // Jump function in our case takes the target value and points to
// an arbitrary value that we will set in a register.
}
default:
Q_ASSERT(false); // TODO: throw an exception
return QByteArray();
}
result.append(qToLittleEndian(instruction));
}
return result;
}
}