-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsugarfree.py
318 lines (230 loc) · 7.83 KB
/
sugarfree.py
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
from sys import stderr
signed = lambda x, bits: x if x < (1 << (bits - 1)) else x - (1 << bits)
unsigned = lambda x, bits: x if x >= 0 else (1 << bits) + x
reg_str = lambda r, v: '%#x' % v if r > 0x20 else '$R%d' % r
class Instruction(object):
rd, rs, offset6, offset11 = 0, 0, 0, 0
rd_str, rs_str = '', ''
opcode_map = {}
@classmethod
def register(cls, opcode, instr):
cls.opcode_map[opcode] = instr
return instr
@classmethod
def decode(cls, instr):
opcode = instr >> 11
rd, rs = (instr >> 6) & 0x1F, instr & 0x3F
if opcode == 0xC:
opcode = instr >> 6
decoded = cls.opcode_map[opcode]()
decoded.rd, decoded.rs = rd, rs
decoded.offset11 = instr & 0x7FF
decoded.offset6 = signed(instr & 0x3F, 6)
return decoded
def update_pc(self, cpu):
cpu.pc += 1
def execute(self, cpu):
pass
def __str__(self):
return '%s %s, %s' % (self.__class__.__name__, self.rd_str, self.rs_str)
class Branch(Instruction):
next_pc = None
def update_pc(self, cpu):
cpu.pc = self.next_pc if self.next_pc else cpu.pc + 1
class Conditional(Branch):
def take_branch(self, cpu):
return False
def execute(self, cpu):
self.next_pc = cpu.pc + self.offset6 if self.take_branch(cpu) else None
def __str__(self):
return '%s %s, %d' % (self.__class__.__name__, self.rd_str, self.offset6)
def register_opcode(opcode):
return lambda cls: Instruction.register(opcode, cls)
@register_opcode(0)
class ADDU(Instruction):
def execute(self, cpu):
cpu.rf[self.rd] = (cpu.rd_val + cpu.rs_val) & 0xFFFFFFFF
@register_opcode(1)
class SUBU(Instruction):
def execute(self, cpu):
cpu.rf[self.rd] = unsigned((cpu.rd_val - cpu.rs_val) & 0xFFFFFFFF, 32)
@register_opcode(0x2)
class SLLV(Instruction):
def execute(self, cpu):
cpu.rf[self.rd] <<= (cpu.rs_val & 0x1F)
cpu.rf[self.rd] &= 0xFFFFFFFF
@register_opcode(0x3)
class SRAV(Instruction):
def execute(self, cpu):
cpu.rf[self.rd] >>= (cpu.rs_val & 0x1F)
cpu.rf[self.rd] |= (1 << (cpu.rs_val + 1) - 1) << (31 - cpu.rs_val)
@register_opcode(0x4)
class SRLV(Instruction):
def execute(self, cpu):
cpu.rf[self.rd] >>= (cpu.rs_val & 0x1F)
@register_opcode(0x5)
class AND(Instruction):
def execute(self, cpu):
cpu.rf[self.rd] = cpu.rd_val & cpu.rs_val
@register_opcode(0x6)
class OR(Instruction):
def execute(self, cpu):
cpu.rf[self.rd] = cpu.rd_val | cpu.rs_val
@register_opcode(0x7)
class NOR(Instruction):
def execute(self, cpu):
cpu.rf[self.rd] = ~(cpu.rd_val | cpu.rs_val) & 0xFFFFFFFF
@register_opcode(0x8)
class SLT(Instruction):
def execute(self, cpu):
cpu.rf[self.rd] = 1 if (cpu.rd_val_signed < cpu.rs_val_signed) else 0
@register_opcode(0x9)
class SLTU(Instruction):
def execute(self, cpu):
cpu.rf[self.rd] = 1 if (cpu.rd_val < cpu.rs_val) else 0
@register_opcode(0xA)
class MOV(Instruction):
def execute(self, cpu):
cpu.rf[self.rd] = cpu.rs_val
@register_opcode(0x10)
class BEQZ(Conditional):
def take_branch(self, cpu):
return cpu.rd_val == 0
@register_opcode(0x11)
class BNEQZ(Conditional):
def take_branch(self, cpu):
return cpu.rd_val != 0
@register_opcode(0x12)
class BGTZ(Conditional):
def take_branch(self, cpu):
return not (cpu.rd_val & (1 << 31))
@register_opcode(0x13)
class BLTZ(Conditional):
def take_branch(self, cpu):
return cpu.rd_val & (1 << 31)
@register_opcode(0x16)
class JAL(Branch):
def execute(self, cpu):
self.next_pc = cpu.rs_val
cpu.rf[self.rd] = cpu.pc + 1
def __str__(self):
return '%s %s, %s' % (self.__class__.__name__, self.rd_str, self.rs_str)
@register_opcode(0x17)
class JALR(Branch):
def execute(self, cpu):
self.next_pc = cpu.rs_val
cpu.rf[self.rd] = cpu.pc + 1
def __str__(self):
return '%s %s, %s' % (self.__class__.__name__, self.rd_str, self.rs_str)
@register_opcode(0x18)
class LW(Instruction):
def execute(self, cpu):
cpu.rf[self.rd] = cpu.read_mem(cpu.rs_val)
@register_opcode(0x19)
class LBU(Instruction):
def execute(self, cpu):
cpu.rf[self.rd] = cpu.read_mem(cpu.rs_val, byte=True)
@register_opcode(0x1A)
class SW(Instruction):
def execute(self, cpu):
cpu.write_mem(cpu.rd_val, cpu.rs_val)
@register_opcode(0x1B)
class SBU(Instruction):
def execute(self, cpu):
cpu.write_mem(cpu.rd_val, cpu.rs_val, byte=True)
@register_opcode(0x1C)
class LG(Instruction):
def execute(self, cpu):
cpu.rf[1] = cpu.read_mem(self.offset11)
def __str__(self):
return '%s %#3x' % (self.__class__.__name__, self.offset11)
class Wait(Exception):
pass
@register_opcode(0b0110000000)
class WAIT(Instruction):
def execute(self, cpu):
raise Wait
def __str__(self):
return '%s' % self.__class__.__name__
@register_opcode(0b0110010000)
class BAR(Instruction):
def execute(self, cpu):
cpu.barrier = cpu.rs_val
def __str__(self):
return '%s %s' % (self.__class__.__name__, self.rs_str)
class DEADDEAD(Exception):
pass
class GOODBEEF(Exception):
pass
class SugarFreeCore(object):
def __init__(self):
self.barrier = 0
self.inst_count = 0
self.cycle_count = 0
self.pc = 0
self.rf = [0 for _ in range(0x40)]
self.imem = [0 for _ in range(0x400)]
self.trace_file = None
self.verbose = False
self.check_addr = lambda x: x
self.dmem = [0 for _ in range(0x400)]
def step_once(self):
self.rf[0] = 0
instr = Instruction.decode(self.imem[self.pc])
self.cycle_count += 1
self.rd_val, self.rs_val = self.rf[instr.rd], self.rf[instr.rs]
self.rd_val_signed = signed(self.rf[instr.rd], 32)
self.rs_val_signed = signed(self.rf[instr.rs], 32)
instr.rd_str = reg_str(instr.rd, self.rd_val)
instr.rs_str = reg_str(instr.rs, self.rs_val)
if self.verbose:
print '%8d' % self.cycle_count, '%04x' % self.pc, str(instr).replace(' ', '\t')
# for comparison with provided testbench
try:
instr.execute(self)
if self.trace_file:
self.trace_file.write("%d %d %d %d %d\n" % (
self.cycle_count, self.inst_count, self.pc, self.rs_val, self.rd_val))
instr.update_pc(self)
finally:
self.inst_count += 1
def net_set_reg(self, r, v):
self.cycle_count += 1
self.rf[r] = v
def net_set_pc(self, pc):
self.cycle_count += 1
self.pc = pc
def net_set_dmem(self, addr, val):
self.cycle_count += 1
self.write_mem(addr, val)
def net_set_imem(self, addr, val):
self.cycle_count += 1
self.imem[addr] = val
# default testbench memory behavior
def read_mem(self, addr, byte=False):
self.cycle_count += 1
addr, shift = addr / 4, 24 - (3 - addr % 4) * 8
assert addr < len(self.dmem)
if byte:
return (self.dmem[addr] >> shift) & 0xFF
else:
return self.dmem[addr]
def write_mem(self, addr, val, byte=False):
self.cycle_count += 1
if addr == 0xDEADDEAD:
raise DEADDEAD
elif addr == 0xC0DEC0DE:
print 'CODE %08x' % val
elif addr == 0xC0FFEEEE:
print 'PASS %08x' % val
elif addr == 0x600DBEEF:
print 'DONE'
raise GOODBEEF
else:
addr, shift = addr / 4, 24 - (3 - addr % 4) * 8
assert addr <= len(self.dmem)
if byte:
old_val = self.dmem[addr] & ~(0xFF << shift)
self.dmem[addr] = old_val | (val << shift)
else:
self.dmem[addr] = val