b4c7f1fef7bf2dcae725967ab021ce3b1db7c6f9
[soc.git] / src / soc / decoder / isa / caller.py
1 """core of the python-based POWER9 simulator
2
3 this is part of a cycle-accurate POWER9 simulator. its primary purpose is
4 not speed, it is for both learning and educational purposes, as well as
5 a method of verifying the HDL.
6
7 related bugs:
8
9 * https://bugs.libre-soc.org/show_bug.cgi?id=424
10 """
11
12 from functools import wraps
13 from copy import copy
14 from soc.decoder.orderedset import OrderedSet
15 from soc.decoder.selectable_int import (FieldSelectableInt, SelectableInt,
16 selectconcat)
17 from soc.decoder.power_enums import (spr_dict, spr_byname, XER_bits,
18 insns, MicrOp)
19 from soc.decoder.helpers import exts, gtu, ltu
20 from soc.consts import PIb, MSRb # big-endian (PowerISA versions)
21
22 from collections import namedtuple
23 import math
24 import sys
25
26 instruction_info = namedtuple('instruction_info',
27 'func read_regs uninit_regs write_regs ' +
28 'special_regs op_fields form asmregs')
29
30 special_sprs = {
31 'LR': 8,
32 'CTR': 9,
33 'TAR': 815,
34 'XER': 1,
35 'VRSAVE': 256}
36
37
38 def swap_order(x, nbytes):
39 x = x.to_bytes(nbytes, byteorder='little')
40 x = int.from_bytes(x, byteorder='big', signed=False)
41 return x
42
43
44 def create_args(reglist, extra=None):
45 args = OrderedSet()
46 for reg in reglist:
47 args.add(reg)
48 args = list(args)
49 if extra:
50 args = [extra] + args
51 return args
52
53
54 class Mem:
55
56 def __init__(self, row_bytes=8, initial_mem=None):
57 self.mem = {}
58 self.bytes_per_word = row_bytes
59 self.word_log2 = math.ceil(math.log2(row_bytes))
60 print("Sim-Mem", initial_mem, self.bytes_per_word, self.word_log2)
61 if not initial_mem:
62 return
63
64 # different types of memory data structures recognised (for convenience)
65 if isinstance(initial_mem, list):
66 initial_mem = (0, initial_mem)
67 if isinstance(initial_mem, tuple):
68 startaddr, mem = initial_mem
69 initial_mem = {}
70 for i, val in enumerate(mem):
71 initial_mem[startaddr + row_bytes*i] = (val, row_bytes)
72
73 for addr, (val, width) in initial_mem.items():
74 #val = swap_order(val, width)
75 self.st(addr, val, width, swap=False)
76
77 def _get_shifter_mask(self, wid, remainder):
78 shifter = ((self.bytes_per_word - wid) - remainder) * \
79 8 # bits per byte
80 # XXX https://bugs.libre-soc.org/show_bug.cgi?id=377
81 # BE/LE mode?
82 shifter = remainder * 8
83 mask = (1 << (wid * 8)) - 1
84 print("width,rem,shift,mask", wid, remainder, hex(shifter), hex(mask))
85 return shifter, mask
86
87 # TODO: Implement ld/st of lesser width
88 def ld(self, address, width=8, swap=True, check_in_mem=False):
89 print("ld from addr 0x{:x} width {:d}".format(address, width))
90 remainder = address & (self.bytes_per_word - 1)
91 address = address >> self.word_log2
92 assert remainder & (width - 1) == 0, "Unaligned access unsupported!"
93 if address in self.mem:
94 val = self.mem[address]
95 elif check_in_mem:
96 return None
97 else:
98 val = 0
99 print("mem @ 0x{:x} rem {:d} : 0x{:x}".format(address, remainder, val))
100
101 if width != self.bytes_per_word:
102 shifter, mask = self._get_shifter_mask(width, remainder)
103 print("masking", hex(val), hex(mask << shifter), shifter)
104 val = val & (mask << shifter)
105 val >>= shifter
106 if swap:
107 val = swap_order(val, width)
108 print("Read 0x{:x} from addr 0x{:x}".format(val, address))
109 return val
110
111 def st(self, addr, v, width=8, swap=True):
112 staddr = addr
113 remainder = addr & (self.bytes_per_word - 1)
114 addr = addr >> self.word_log2
115 print("Writing 0x{:x} to ST 0x{:x} "
116 "memaddr 0x{:x}/{:x}".format(v, staddr, addr, remainder, swap))
117 assert remainder & (width - 1) == 0, "Unaligned access unsupported!"
118 if swap:
119 v = swap_order(v, width)
120 if width != self.bytes_per_word:
121 if addr in self.mem:
122 val = self.mem[addr]
123 else:
124 val = 0
125 shifter, mask = self._get_shifter_mask(width, remainder)
126 val &= ~(mask << shifter)
127 val |= v << shifter
128 self.mem[addr] = val
129 else:
130 self.mem[addr] = v
131 print("mem @ 0x{:x}: 0x{:x}".format(addr, self.mem[addr]))
132
133 def __call__(self, addr, sz):
134 val = self.ld(addr.value, sz, swap=False)
135 print("memread", addr, sz, val)
136 return SelectableInt(val, sz*8)
137
138 def memassign(self, addr, sz, val):
139 print("memassign", addr, sz, val)
140 self.st(addr.value, val.value, sz, swap=False)
141
142
143 class GPR(dict):
144 def __init__(self, decoder, regfile):
145 dict.__init__(self)
146 self.sd = decoder
147 for i in range(32):
148 self[i] = SelectableInt(regfile[i], 64)
149
150 def __call__(self, ridx):
151 return self[ridx]
152
153 def set_form(self, form):
154 self.form = form
155
156 def getz(self, rnum):
157 # rnum = rnum.value # only SelectableInt allowed
158 print("GPR getzero", rnum)
159 if rnum == 0:
160 return SelectableInt(0, 64)
161 return self[rnum]
162
163 def _get_regnum(self, attr):
164 getform = self.sd.sigforms[self.form]
165 rnum = getattr(getform, attr)
166 return rnum
167
168 def ___getitem__(self, attr):
169 print("GPR getitem", attr)
170 rnum = self._get_regnum(attr)
171 return self.regfile[rnum]
172
173 def dump(self):
174 for i in range(0, len(self), 8):
175 s = []
176 for j in range(8):
177 s.append("%08x" % self[i+j].value)
178 s = ' '.join(s)
179 print("reg", "%2d" % i, s)
180
181
182 class PC:
183 def __init__(self, pc_init=0):
184 self.CIA = SelectableInt(pc_init, 64)
185 self.NIA = self.CIA + SelectableInt(4, 64)
186
187 def update(self, namespace):
188 self.CIA = namespace['NIA'].narrow(64)
189 self.NIA = self.CIA + SelectableInt(4, 64)
190 namespace['CIA'] = self.CIA
191 namespace['NIA'] = self.NIA
192
193
194 class SPR(dict):
195 def __init__(self, dec2, initial_sprs={}):
196 self.sd = dec2
197 dict.__init__(self)
198 for key, v in initial_sprs.items():
199 if isinstance(key, SelectableInt):
200 key = key.value
201 key = special_sprs.get(key, key)
202 if isinstance(key, int):
203 info = spr_dict[key]
204 else:
205 info = spr_byname[key]
206 if not isinstance(v, SelectableInt):
207 v = SelectableInt(v, info.length)
208 self[key] = v
209
210 def __getitem__(self, key):
211 print("get spr", key)
212 print("dict", self.items())
213 # if key in special_sprs get the special spr, otherwise return key
214 if isinstance(key, SelectableInt):
215 key = key.value
216 if isinstance(key, int):
217 key = spr_dict[key].SPR
218 key = special_sprs.get(key, key)
219 if key == 'HSRR0': # HACK!
220 key = 'SRR0'
221 if key == 'HSRR1': # HACK!
222 key = 'SRR1'
223 if key in self:
224 res = dict.__getitem__(self, key)
225 else:
226 if isinstance(key, int):
227 info = spr_dict[key]
228 else:
229 info = spr_byname[key]
230 dict.__setitem__(self, key, SelectableInt(0, info.length))
231 res = dict.__getitem__(self, key)
232 print("spr returning", key, res)
233 return res
234
235 def __setitem__(self, key, value):
236 if isinstance(key, SelectableInt):
237 key = key.value
238 if isinstance(key, int):
239 key = spr_dict[key].SPR
240 print("spr key", key)
241 key = special_sprs.get(key, key)
242 if key == 'HSRR0': # HACK!
243 self.__setitem__('SRR0', value)
244 if key == 'HSRR1': # HACK!
245 self.__setitem__('SRR1', value)
246 print("setting spr", key, value)
247 dict.__setitem__(self, key, value)
248
249 def __call__(self, ridx):
250 return self[ridx]
251
252
253 class ISACaller:
254 # decoder2 - an instance of power_decoder2
255 # regfile - a list of initial values for the registers
256 # initial_{etc} - initial values for SPRs, Condition Register, Mem, MSR
257 # respect_pc - tracks the program counter. requires initial_insns
258 def __init__(self, decoder2, regfile, initial_sprs=None, initial_cr=0,
259 initial_mem=None, initial_msr=0,
260 initial_insns=None, respect_pc=False,
261 disassembly=None,
262 initial_pc=0,
263 bigendian=False):
264
265 self.bigendian = bigendian
266 self.halted = False
267 self.respect_pc = respect_pc
268 if initial_sprs is None:
269 initial_sprs = {}
270 if initial_mem is None:
271 initial_mem = {}
272 if initial_insns is None:
273 initial_insns = {}
274 assert self.respect_pc == False, "instructions required to honor pc"
275
276 print("ISACaller insns", respect_pc, initial_insns, disassembly)
277 print("ISACaller initial_msr", initial_msr)
278
279 # "fake program counter" mode (for unit testing)
280 self.fake_pc = 0
281 disasm_start = 0
282 if not respect_pc:
283 if isinstance(initial_mem, tuple):
284 self.fake_pc = initial_mem[0]
285 disasm_start = self.fake_pc
286 else:
287 disasm_start = initial_pc
288
289 # disassembly: we need this for now (not given from the decoder)
290 self.disassembly = {}
291 if disassembly:
292 for i, code in enumerate(disassembly):
293 self.disassembly[i*4 + disasm_start] = code
294
295 # set up registers, instruction memory, data memory, PC, SPRs, MSR
296 self.gpr = GPR(decoder2, regfile)
297 self.mem = Mem(row_bytes=8, initial_mem=initial_mem)
298 self.imem = Mem(row_bytes=4, initial_mem=initial_insns)
299 self.pc = PC()
300 self.spr = SPR(decoder2, initial_sprs)
301 self.msr = SelectableInt(initial_msr, 64) # underlying reg
302
303 # TODO, needed here:
304 # FPR (same as GPR except for FP nums)
305 # 4.2.2 p124 FPSCR (definitely "separate" - not in SPR)
306 # note that mffs, mcrfs, mtfsf "manage" this FPSCR
307 # 2.3.1 CR (and sub-fields CR0..CR6 - CR0 SO comes from XER.SO)
308 # note that mfocrf, mfcr, mtcr, mtocrf, mcrxrx "manage" CRs
309 # -- Done
310 # 2.3.2 LR (actually SPR #8) -- Done
311 # 2.3.3 CTR (actually SPR #9) -- Done
312 # 2.3.4 TAR (actually SPR #815)
313 # 3.2.2 p45 XER (actually SPR #1) -- Done
314 # 3.2.3 p46 p232 VRSAVE (actually SPR #256)
315
316 # create CR then allow portions of it to be "selectable" (below)
317 #rev_cr = int('{:016b}'.format(initial_cr)[::-1], 2)
318 self.cr = SelectableInt(initial_cr, 64) # underlying reg
319 #self.cr = FieldSelectableInt(self._cr, list(range(32, 64)))
320
321 # "undefined", just set to variable-bit-width int (use exts "max")
322 self.undefined = SelectableInt(0, 256) # TODO, not hard-code 256!
323
324 self.namespace = {}
325 self.namespace.update(self.spr)
326 self.namespace.update({'GPR': self.gpr,
327 'MEM': self.mem,
328 'SPR': self.spr,
329 'memassign': self.memassign,
330 'NIA': self.pc.NIA,
331 'CIA': self.pc.CIA,
332 'CR': self.cr,
333 'MSR': self.msr,
334 'undefined': self.undefined,
335 'mode_is_64bit': True,
336 'SO': XER_bits['SO']
337 })
338
339 # update pc to requested start point
340 self.set_pc(initial_pc)
341
342 # field-selectable versions of Condition Register TODO check bitranges?
343 self.crl = []
344 for i in range(8):
345 bits = tuple(range(i*4+32, (i+1)*4+32)) # errr... maybe?
346 _cr = FieldSelectableInt(self.cr, bits)
347 self.crl.append(_cr)
348 self.namespace["CR%d" % i] = _cr
349
350 self.decoder = decoder2.dec
351 self.dec2 = decoder2
352
353 def TRAP(self, trap_addr=0x700, trap_bit=PIb.TRAP):
354 print("TRAP:", hex(trap_addr), hex(self.namespace['MSR'].value))
355 # store CIA(+4?) in SRR0, set NIA to 0x700
356 # store MSR in SRR1, set MSR to um errr something, have to check spec
357 self.spr['SRR0'].value = self.pc.CIA.value
358 self.spr['SRR1'].value = self.namespace['MSR'].value
359 self.trap_nia = SelectableInt(trap_addr, 64)
360 self.spr['SRR1'][trap_bit] = 1 # change *copy* of MSR in SRR1
361
362 # set exception bits. TODO: this should, based on the address
363 # in figure 66 p1065 V3.0B and the table figure 65 p1063 set these
364 # bits appropriately. however it turns out that *for now* in all
365 # cases (all trap_addrs) the exact same thing is needed.
366 self.msr[MSRb.IR] = 0
367 self.msr[MSRb.DR] = 0
368 self.msr[MSRb.FE0] = 0
369 self.msr[MSRb.FE1] = 0
370 self.msr[MSRb.EE] = 0
371 self.msr[MSRb.RI] = 0
372 self.msr[MSRb.SF] = 1
373 self.msr[MSRb.TM] = 0
374 self.msr[MSRb.VEC] = 0
375 self.msr[MSRb.VSX] = 0
376 self.msr[MSRb.PR] = 0
377 self.msr[MSRb.FP] = 0
378 self.msr[MSRb.PMM] = 0
379 self.msr[MSRb.TEs] = 0
380 self.msr[MSRb.TEe] = 0
381 self.msr[MSRb.UND] = 0
382 self.msr[MSRb.LE] = 1
383
384 def memassign(self, ea, sz, val):
385 self.mem.memassign(ea, sz, val)
386
387 def prep_namespace(self, formname, op_fields):
388 # TODO: get field names from form in decoder*1* (not decoder2)
389 # decoder2 is hand-created, and decoder1.sigform is auto-generated
390 # from spec
391 # then "yield" fields only from op_fields rather than hard-coded
392 # list, here.
393 fields = self.decoder.sigforms[formname]
394 for name in op_fields:
395 if name == 'spr':
396 sig = getattr(fields, name.upper())
397 else:
398 sig = getattr(fields, name)
399 val = yield sig
400 # these are all opcode fields involved in index-selection of CR,
401 # and need to do "standard" arithmetic. CR[BA+32] for example
402 # would, if using SelectableInt, only be 5-bit.
403 if name in ['BF', 'BFA', 'BC', 'BA', 'BB', 'BT', 'BI']:
404 self.namespace[name] = val
405 else:
406 self.namespace[name] = SelectableInt(val, sig.width)
407
408 self.namespace['XER'] = self.spr['XER']
409 self.namespace['CA'] = self.spr['XER'][XER_bits['CA']].value
410 self.namespace['CA32'] = self.spr['XER'][XER_bits['CA32']].value
411
412 def handle_carry_(self, inputs, outputs, already_done):
413 inv_a = yield self.dec2.e.do.invert_in
414 if inv_a:
415 inputs[0] = ~inputs[0]
416
417 imm_ok = yield self.dec2.e.do.imm_data.ok
418 if imm_ok:
419 imm = yield self.dec2.e.do.imm_data.data
420 inputs.append(SelectableInt(imm, 64))
421 assert len(outputs) >= 1
422 print("outputs", repr(outputs))
423 if isinstance(outputs, list) or isinstance(outputs, tuple):
424 output = outputs[0]
425 else:
426 output = outputs
427 gts = []
428 for x in inputs:
429 print("gt input", x, output)
430 gt = (gtu(x, output))
431 gts.append(gt)
432 print(gts)
433 cy = 1 if any(gts) else 0
434 print ("CA", cy, gts)
435 if not (1 & already_done):
436 self.spr['XER'][XER_bits['CA']] = cy
437
438 print("inputs", already_done, inputs)
439 # 32 bit carry
440 # ARGH... different for OP_ADD... *sigh*...
441 op = yield self.dec2.e.do.insn_type
442 if op == MicrOp.OP_ADD.value:
443 res32 = (output.value & (1<<32)) != 0
444 a32 = (inputs[0].value & (1<<32)) != 0
445 if len(inputs) >= 2:
446 b32 = (inputs[1].value & (1<<32)) != 0
447 else:
448 b32 = False
449 cy32 = res32 ^ a32 ^ b32
450 print ("CA32 ADD", cy32)
451 else:
452 gts = []
453 for x in inputs:
454 print("input", x, output)
455 print(" x[32:64]", x, x[32:64])
456 print(" o[32:64]", output, output[32:64])
457 gt = (gtu(x[32:64], output[32:64])) == SelectableInt(1, 1)
458 gts.append(gt)
459 cy32 = 1 if any(gts) else 0
460 print ("CA32", cy32, gts)
461 if not (2 & already_done):
462 self.spr['XER'][XER_bits['CA32']] = cy32
463
464 def handle_overflow(self, inputs, outputs, div_overflow):
465 inv_a = yield self.dec2.e.do.invert_in
466 if inv_a:
467 inputs[0] = ~inputs[0]
468
469 imm_ok = yield self.dec2.e.do.imm_data.ok
470 if imm_ok:
471 imm = yield self.dec2.e.do.imm_data.data
472 inputs.append(SelectableInt(imm, 64))
473 assert len(outputs) >= 1
474 print("handle_overflow", inputs, outputs, div_overflow)
475 if len(inputs) < 2 and div_overflow is None:
476 return
477
478 # div overflow is different: it's returned by the pseudo-code
479 # because it's more complex than can be done by analysing the output
480 if div_overflow is not None:
481 ov, ov32 = div_overflow, div_overflow
482 # arithmetic overflow can be done by analysing the input and output
483 elif len(inputs) >= 2:
484 output = outputs[0]
485
486 # OV (64-bit)
487 input_sgn = [exts(x.value, x.bits) < 0 for x in inputs]
488 output_sgn = exts(output.value, output.bits) < 0
489 ov = 1 if input_sgn[0] == input_sgn[1] and \
490 output_sgn != input_sgn[0] else 0
491
492 # OV (32-bit)
493 input32_sgn = [exts(x.value, 32) < 0 for x in inputs]
494 output32_sgn = exts(output.value, 32) < 0
495 ov32 = 1 if input32_sgn[0] == input32_sgn[1] and \
496 output32_sgn != input32_sgn[0] else 0
497
498 self.spr['XER'][XER_bits['OV']] = ov
499 self.spr['XER'][XER_bits['OV32']] = ov32
500 so = self.spr['XER'][XER_bits['SO']]
501 so = so | ov
502 self.spr['XER'][XER_bits['SO']] = so
503
504 def handle_comparison(self, outputs):
505 out = outputs[0]
506 assert isinstance(out, SelectableInt), \
507 "out zero not a SelectableInt %s" % repr(outputs)
508 print("handle_comparison", out.bits, hex(out.value))
509 # TODO - XXX *processor* in 32-bit mode
510 # https://bugs.libre-soc.org/show_bug.cgi?id=424
511 # if is_32bit:
512 # o32 = exts(out.value, 32)
513 # print ("handle_comparison exts 32 bit", hex(o32))
514 out = exts(out.value, out.bits)
515 print("handle_comparison exts", hex(out))
516 zero = SelectableInt(out == 0, 1)
517 positive = SelectableInt(out > 0, 1)
518 negative = SelectableInt(out < 0, 1)
519 SO = self.spr['XER'][XER_bits['SO']]
520 print("handle_comparison SO", SO)
521 cr_field = selectconcat(negative, positive, zero, SO)
522 self.crl[0].eq(cr_field)
523
524 def set_pc(self, pc_val):
525 self.namespace['NIA'] = SelectableInt(pc_val, 64)
526 self.pc.update(self.namespace)
527
528 def setup_one(self):
529 """set up one instruction
530 """
531 if self.respect_pc:
532 pc = self.pc.CIA.value
533 else:
534 pc = self.fake_pc
535 self._pc = pc
536 ins = self.imem.ld(pc, 4, False, True)
537 if ins is None:
538 raise KeyError("no instruction at 0x%x" % pc)
539 print("setup: 0x%x 0x%x %s" % (pc, ins & 0xffffffff, bin(ins)))
540 print("CIA NIA", self.respect_pc, self.pc.CIA.value, self.pc.NIA.value)
541
542 yield self.dec2.dec.raw_opcode_in.eq(ins & 0xffffffff)
543 yield self.dec2.dec.bigendian.eq(self.bigendian)
544 yield self.dec2.state.msr.eq(self.msr.value)
545 yield self.dec2.state.pc.eq(pc)
546
547 def execute_one(self):
548 """execute one instruction
549 """
550 # get the disassembly code for this instruction
551 code = self.disassembly[self._pc]
552 print("sim-execute", hex(self._pc), code)
553 opname = code.split(' ')[0]
554 yield from self.call(opname)
555
556 if not self.respect_pc:
557 self.fake_pc += 4
558 print("execute one, CIA NIA", self.pc.CIA.value, self.pc.NIA.value)
559
560 def get_assembly_name(self):
561 # TODO, asmregs is from the spec, e.g. add RT,RA,RB
562 # see http://bugs.libre-riscv.org/show_bug.cgi?id=282
563 dec_insn = yield self.dec2.e.do.insn
564 asmcode = yield self.dec2.dec.op.asmcode
565 print("get assembly name asmcode", asmcode, hex(dec_insn))
566 asmop = insns.get(asmcode, None)
567 int_op = yield self.dec2.dec.op.internal_op
568
569 # sigh reconstruct the assembly instruction name
570 if hasattr(self.dec2.e.do, "oe"):
571 ov_en = yield self.dec2.e.do.oe.oe
572 ov_ok = yield self.dec2.e.do.oe.ok
573 else:
574 ov_en = False
575 ov_ok = False
576 if hasattr(self.dec2.e.do, "rc"):
577 rc_en = yield self.dec2.e.do.rc.rc
578 rc_ok = yield self.dec2.e.do.rc.ok
579 else:
580 rc_en = False
581 rc_ok = False
582 # grrrr have to special-case MUL op (see DecodeOE)
583 print("ov %d en %d rc %d en %d op %d" % \
584 (ov_ok, ov_en, rc_ok, rc_en, int_op))
585 if int_op in [MicrOp.OP_MUL_H64.value, MicrOp.OP_MUL_H32.value]:
586 print("mul op")
587 if rc_en & rc_ok:
588 asmop += "."
589 else:
590 if not asmop.endswith("."): # don't add "." to "andis."
591 if rc_en & rc_ok:
592 asmop += "."
593 if hasattr(self.dec2.e.do, "lk"):
594 lk = yield self.dec2.e.do.lk
595 if lk:
596 asmop += "l"
597 print("int_op", int_op)
598 if int_op in [MicrOp.OP_B.value, MicrOp.OP_BC.value]:
599 AA = yield self.dec2.dec.fields.FormI.AA[0:-1]
600 print("AA", AA)
601 if AA:
602 asmop += "a"
603 spr_msb = yield from self.get_spr_msb()
604 if int_op == MicrOp.OP_MFCR.value:
605 if spr_msb:
606 asmop = 'mfocrf'
607 else:
608 asmop = 'mfcr'
609 # XXX TODO: for whatever weird reason this doesn't work
610 # https://bugs.libre-soc.org/show_bug.cgi?id=390
611 if int_op == MicrOp.OP_MTCRF.value:
612 if spr_msb:
613 asmop = 'mtocrf'
614 else:
615 asmop = 'mtcrf'
616 return asmop
617
618 def get_spr_msb(self):
619 dec_insn = yield self.dec2.e.do.insn
620 return dec_insn & (1 << 20) != 0 # sigh - XFF.spr[-1]?
621
622 def call(self, name):
623 name = name.strip() # remove spaces if not already done so
624 if self.halted:
625 print("halted - not executing", name)
626 return
627
628 # TODO, asmregs is from the spec, e.g. add RT,RA,RB
629 # see http://bugs.libre-riscv.org/show_bug.cgi?id=282
630 asmop = yield from self.get_assembly_name()
631 print("call", name, asmop)
632
633 # check privileged
634 int_op = yield self.dec2.dec.op.internal_op
635 spr_msb = yield from self.get_spr_msb()
636
637 instr_is_privileged = False
638 if int_op in [MicrOp.OP_ATTN.value,
639 MicrOp.OP_MFMSR.value,
640 MicrOp.OP_MTMSR.value,
641 MicrOp.OP_MTMSRD.value,
642 # TODO: OP_TLBIE
643 MicrOp.OP_RFID.value]:
644 instr_is_privileged = True
645 if int_op in [MicrOp.OP_MFSPR.value,
646 MicrOp.OP_MTSPR.value] and spr_msb:
647 instr_is_privileged = True
648
649 print("is priv", instr_is_privileged, hex(self.msr.value),
650 self.msr[MSRb.PR])
651 # check MSR priv bit and whether op is privileged: if so, throw trap
652 if instr_is_privileged and self.msr[MSRb.PR] == 1:
653 self.TRAP(0x700, PIb.PRIV)
654 self.namespace['NIA'] = self.trap_nia
655 self.pc.update(self.namespace)
656 return
657
658 # check halted condition
659 if name == 'attn':
660 self.halted = True
661 return
662
663 # check illegal instruction
664 illegal = False
665 if name not in ['mtcrf', 'mtocrf']:
666 illegal = name != asmop
667
668 if illegal:
669 print ("illegal", name, asmop)
670 self.TRAP(0x700, PIb.ILLEG)
671 self.namespace['NIA'] = self.trap_nia
672 self.pc.update(self.namespace)
673 print("name %s != %s - calling ILLEGAL trap, PC: %x" %
674 (name, asmop, self.pc.CIA.value))
675 return
676
677 info = self.instrs[name]
678 yield from self.prep_namespace(info.form, info.op_fields)
679
680 # preserve order of register names
681 input_names = create_args(list(info.read_regs) +
682 list(info.uninit_regs))
683 print(input_names)
684
685 # main registers (RT, RA ...)
686 inputs = []
687 for name in input_names:
688 regnum = yield getattr(self.decoder, name)
689 regname = "_" + name
690 self.namespace[regname] = regnum
691 print('reading reg %d' % regnum)
692 inputs.append(self.gpr(regnum))
693
694 # "special" registers
695 for special in info.special_regs:
696 if special in special_sprs:
697 inputs.append(self.spr[special])
698 else:
699 inputs.append(self.namespace[special])
700
701 # clear trap (trap) NIA
702 self.trap_nia = None
703
704 print(inputs)
705 results = info.func(self, *inputs)
706 print(results)
707
708 # "inject" decorator takes namespace from function locals: we need to
709 # overwrite NIA being overwritten (sigh)
710 if self.trap_nia is not None:
711 self.namespace['NIA'] = self.trap_nia
712
713 print("after func", self.namespace['CIA'], self.namespace['NIA'])
714
715 # detect if CA/CA32 already in outputs (sra*, basically)
716 already_done = 0
717 if info.write_regs:
718 output_names = create_args(info.write_regs)
719 for name in output_names:
720 if name == 'CA':
721 already_done |= 1
722 if name == 'CA32':
723 already_done |= 2
724
725 print("carry already done?", bin(already_done))
726 if hasattr(self.dec2.e.do, "outout_carry"):
727 carry_en = yield self.dec2.e.do.output_carry
728 else:
729 carry_en = False
730 if carry_en:
731 yield from self.handle_carry_(inputs, results, already_done)
732
733 # detect if overflow was in return result
734 overflow = None
735 if info.write_regs:
736 for name, output in zip(output_names, results):
737 if name == 'overflow':
738 overflow = output
739
740 if hasattr(self.dec2.e.do, "oe"):
741 ov_en = yield self.dec2.e.do.oe.oe
742 ov_ok = yield self.dec2.e.do.oe.ok
743 else:
744 ov_en = False
745 ov_ok = False
746 print("internal overflow", overflow, ov_en, ov_ok)
747 if ov_en & ov_ok:
748 yield from self.handle_overflow(inputs, results, overflow)
749
750 if hasattr(self.dec2.e.do, "rc"):
751 rc_en = yield self.dec2.e.do.rc.rc
752 else:
753 rc_en = False
754 if rc_en:
755 self.handle_comparison(results)
756
757 # any modified return results?
758 if info.write_regs:
759 for name, output in zip(output_names, results):
760 if name == 'overflow': # ignore, done already (above)
761 continue
762 if isinstance(output, int):
763 output = SelectableInt(output, 256)
764 if name in ['CA', 'CA32']:
765 if carry_en:
766 print("writing %s to XER" % name, output)
767 self.spr['XER'][XER_bits[name]] = output.value
768 else:
769 print("NOT writing %s to XER" % name, output)
770 elif name in info.special_regs:
771 print('writing special %s' % name, output, special_sprs)
772 if name in special_sprs:
773 self.spr[name] = output
774 else:
775 self.namespace[name].eq(output)
776 if name == 'MSR':
777 print('msr written', hex(self.msr.value))
778 else:
779 regnum = yield getattr(self.decoder, name)
780 print('writing reg %d %s' % (regnum, str(output)))
781 if output.bits > 64:
782 output = SelectableInt(output.value, 64)
783 self.gpr[regnum] = output
784
785 print("end of call", self.namespace['CIA'], self.namespace['NIA'])
786 # UPDATE program counter
787 self.pc.update(self.namespace)
788
789
790 def inject():
791 """Decorator factory.
792
793 this decorator will "inject" variables into the function's namespace,
794 from the *dictionary* in self.namespace. it therefore becomes possible
795 to make it look like a whole stack of variables which would otherwise
796 need "self." inserted in front of them (*and* for those variables to be
797 added to the instance) "appear" in the function.
798
799 "self.namespace['SI']" for example becomes accessible as just "SI" but
800 *only* inside the function, when decorated.
801 """
802 def variable_injector(func):
803 @wraps(func)
804 def decorator(*args, **kwargs):
805 try:
806 func_globals = func.__globals__ # Python 2.6+
807 except AttributeError:
808 func_globals = func.func_globals # Earlier versions.
809
810 context = args[0].namespace # variables to be injected
811 saved_values = func_globals.copy() # Shallow copy of dict.
812 func_globals.update(context)
813 result = func(*args, **kwargs)
814 print("globals after", func_globals['CIA'], func_globals['NIA'])
815 print("args[0]", args[0].namespace['CIA'],
816 args[0].namespace['NIA'])
817 args[0].namespace = func_globals
818 #exec (func.__code__, func_globals)
819
820 # finally:
821 # func_globals = saved_values # Undo changes.
822
823 return result
824
825 return decorator
826
827 return variable_injector