-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathmt.cpu
1352 lines (1172 loc) · 41.8 KB
/
mt.cpu
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
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
; Morpho Technologies MT Arch description. -*- Scheme -*-
; Copyright 2001, 2007, 2009 Free Software Foundation, Inc.
;
; Contributed by Red Hat Inc; developed under contract from
; Morpho Technologies.
;
; This file is part of the GNU Binutils.
;
; This program is free software; you can redistribute it and/or modify
; it under the terms of the GNU General Public License as published by
; the Free Software Foundation; either version 3 of the License, or
; (at your option) any later version.
;
; This program is distributed in the hope that it will be useful,
; but WITHOUT ANY WARRANTY; without even the implied warranty of
; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
; GNU General Public License for more details.
;
; You should have received a copy of the GNU General Public License
; along with this program; if not, write to the Free Software
; Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
; MA 02110-1301, USA.
(include "simplify.inc")
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; Define The Architecture, Attributes, ISA, CPU, Machine, And Model. ;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
; define-arch must appear first
(define-arch
(name mt) ; name of cpu family
(comment "Morpho Technologies mRISC family")
(default-alignment aligned)
(insn-lsb0? #t)
(machs ms1 ms1-003 ms2)
(isas mt)
)
; Instruction set parameters.
(define-isa
(name mt)
(comment "Morpho Technologies MT ISA")
(default-insn-word-bitsize 32)
(default-insn-bitsize 32)
(base-insn-bitsize 32)
(parallel-insns 2)
)
; Cpu family definitions.
(define-cpu
; cpu names must be distinct from the architecture name and machine names.
(name ms1bf)
(comment "Morpho Technologies mRISC family")
(endian big)
(word-bitsize 32)
)
(define-cpu
; cpu names must be distinct from the architecture name and machine names.
(name ms1-003bf)
(comment "Morpho Technologies mRISC family")
(endian big)
(word-bitsize 32)
)
(define-cpu
; cpu names must be distinct from the architecture name and machine names.
(name ms2bf)
(comment "Morpho Technologies mRISC family")
(endian big)
(word-bitsize 32)
)
(define-mach
(name ms1)
(comment "Morpho Technologies mrisc")
(cpu ms1bf)
(isas mt)
)
(define-mach
(name ms1-003)
(comment "Morpho Technologies mrisc")
(cpu ms1-003bf)
(isas mt)
)
(define-mach
(name ms2)
(comment "Morpho Technologies ms2")
(cpu ms2bf)
(isas mt)
)
; Model descriptions.
; Can probably take the u-exec out. We'll see.
(define-model
(name ms1)
(comment "Morpho Technologies mrisc")
(mach ms1)
(unit u-exec "Execution Unit" ()
1 1 ; issue done
() ; state
() ; inputs
() ; outputs
() ; profile action (default)
)
)
(define-model
(name ms1-003)
(comment "Morpho Technologies mrisc")
(mach ms1-003)
(unit u-exec "Execution Unit" ()
1 1 ; issue done
() ; state
() ; inputs
() ; outputs
() ; profile action (default)
)
)
(define-model
(name ms2)
(comment "Morpho Technologies ms2")
(mach ms2)
(unit u-exec "Execution Unit" ()
1 1 ; issue done
() ; state
() ; inputs
() ; outputs
() ; profile action (default)
)
)
; FIXME: It might simplify things to separate the execute process from the
; one that updates the PC.
;;;;;;;;;;;;;;;;;;;;;;;;
;; Instruction Fields ;;
;;;;;;;;;;;;;;;;;;;;;;;;
; Attributes:
; PCREL-ADDR: pc relative value (for reloc and disassembly purposes)
; ABS-ADDR: absolute address (for reloc and disassembly purposes?)
; RESERVED: bits are not used to decode insn, must be all 0
; RELOC: there is a relocation associated with this field (experiment)
;
; f-msys: Identify a a morphosys insns. 1 if msys, 0 if not.
; f-opc: 6 bit opcode for non-morphosys instructions.
; f-msopc: 6 bit opcode for morphosys instructions.
; f-imm: flag to indicate use of an immediate operand. 1 if yes, 0 if no.
; f-sr1: source resgister 1. (also used for MSYS insns)
; f-sr2: source register 2. (also used for MSYS insns)
; f-dr: destination register when located in bits 19:16.
; f-drrr: destination register when located in bits 15:12. (also for MSYS insns)
; f-imm16: 16 bit immediate value when not an offset.
; f-imm16a: 16 bit immediate value when it's a pc-rel offset.
; f-uu4a: unused 4 bit field.
; f-uu4b: second unsed 4 bit field.
; f-uu1: unused 1 bit field
; f-uu12: unused 12 bit field.
; f-uu16: unused 16 bit field.
; f-uu24: unused 24 bit field.
(dnf f-msys "morphosys insn flag" () 31 1)
(dnf f-opc "opcode field" () 30 6)
(dnf f-imm "immedate flag" () 24 1)
(dnf f-uu24 "unused 24 bits" () 23 24)
(dnf f-sr1 "sr1 register field" (ABS-ADDR) 23 4)
(dnf f-sr2 "sr2 register field" (ABS-ADDR) 19 4)
(dnf f-dr "dr register field" (ABS-ADDR) 19 4)
(dnf f-drrr "drrr register field" (ABS-ADDR) 15 4)
(dnf f-imm16u "unsigned 16 bit immediate" () 15 16)
(df f-imm16s "signed 16 bit immediate" () 15 16 INT ((value pc) (add HI value 0)) ((value pc) (add HI value 0)))
(dnf f-imm16a "pc-rel offset" (PCREL-ADDR) 15 16)
(dnf f-uu4a "unused 4 bit field" () 19 4)
(dnf f-uu4b "unused 4 bit field" () 23 4)
(dnf f-uu12 "unused 12 bit field" () 11 12)
(dnf f-uu8 "unused 8 bit field" () 15 8)
(dnf f-uu16 "unused 16 bit field" () 15 16)
(dnf f-uu1 "unused 1 bit field" () 7 1)
; The following ifields are used exclusively for the MorphoSys instructions.
; In a few cases, a bit field is used for something in addition to what its
; name suggests. For the most part, the names are meaningful though.
(dnf f-msopc "opcode field" () 30 5)
(dnf f-uu-26-25 "unused 26 bits" () 25 26)
(dnf f-mask "mask" () 25 16)
(dnf f-bankaddr "bank address" () 25 13)
(dnf f-rda "rda" () 25 1)
(dnf f-uu-2-25 "unused bits 25 & 24" () 25 2)
(dnf f-rbbc "Omega network configuration" () 25 2)
(dnf f-perm "perm" () 25 2)
(dnf f-mode "mode" () 25 2)
(dnf f-uu-1-24 "testing" () 24 1)
(dnf f-wr "wr" () 24 1)
(dnf f-fbincr "fb incr" () 23 4)
(dnf f-uu-2-23 "unused bits 23 and 22" () 23 2)
(dnf f-xmode "xmode" () 23 1)
(dnf f-a23 "a23" () 23 1)
(dnf f-mask1 "mask1" () 22 3)
(dnf f-cr "cr" () 22 3)
(dnf f-type "type" () 21 2)
(dnf f-incamt "increment amount" () 19 8)
(dnf f-cbs "cbs" () 19 2)
(dnf f-uu-1-19 "unused bit 19" () 19 1)
(dnf f-ball "b_all" () 19 1)
(dnf f-colnum "column number" () 18 3)
(dnf f-brc "b_r_c" () 18 3)
(dnf f-incr "incr" () 17 6)
(dnf f-fbdisp "frame buffer displacement" () 15 6)
(dnf f-uu-4-15 "unused bits 15,14,13,12" () 15 4)
(dnf f-length "length" () 15 3)
(dnf f-uu-1-15 "unused bit 15" () 15 1)
(dnf f-rc "row/column context" () 15 1)
(dnf f-rcnum "starting cell of cntxt mem." () 14 3)
(dnf f-rownum "row number" () 14 3)
(dnf f-cbx "cbx" () 14 3)
(dnf f-id "id" () 14 1)
(dnf f-size "size" () 13 14)
(dnf f-rownum1 "row number" () 12 3)
(dnf f-uu-3-11 "unused 3 bits (11-9)" () 11 3)
(dnf f-rc1 "row/column context" () 11 1)
(dnf f-ccb "ccb" () 11 1)
(dnf f-cbrb "data-bus orientation" () 10 1)
(dnf f-cdb "cdb" () 10 1)
(dnf f-rownum2 "row number" () 9 3)
(dnf f-cell "cell" () 9 3)
(dnf f-uu-3-9 "unused 3 bits (9-7)" () 9 3)
(dnf f-contnum "context number" () 8 9)
(dnf f-uu-1-6 "unused bit 6" () 6 1)
(dnf f-dup "dup" () 6 1)
(dnf f-rc2 "rc2" () 6 1)
(dnf f-ctxdisp "context displacement" () 5 6)
; additional fields in ms2
(dnf f-imm16l "loop count" () 23 16)
(df f-loopo "loop offset" () 7 8 UINT
((value pc) (srl SI value 2))
((value pc) (add SI (sll value 2) 8))
)
(dnf f-cb1sel "cb1 select" () 25 3)
(dnf f-cb2sel "cb2 select" () 22 3)
(dnf f-cb1incr "cb1 increment" (SIGNED) 19 6)
(dnf f-cb2incr "cb2 increment" (SIGNED) 13 6)
(dnf f-rc3 "row/colum context" () 7 1)
; The following is just for a test
(dnf f-msysfrsr2 "sr2 for msys" () 19 4)
(dnf f-brc2 "b_r_c2" () 14 3)
(dnf f-ball2 "b_all2" () 15 1)
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; Enumerations Of Instruction Fields ;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
; insn-msys: bit 31. 1 for Morphosys Insns, 0 if not.
(define-normal-insn-enum insn-msys "msys enums" () MSYS_ f-msys
(NO YES)
)
; insn-opc: bits 30 through 25 . Non-MorphoSys Instructions
; Note - the documentation is wrong for the encoding of the DBNZ
; instruction. It is actually 011110. See Issue 67699.
(define-normal-insn-enum insn-opc "opc enums" () OPC_ f-opc
(ADD ADDU SUB SUBU MUL - - -
AND OR XOR NAND NOR XNOR LDUI -
LSL LSR ASR - - - - -
BRLT BRLE BREQ JMP JAL BRNEQ DBNZ LOOP
LDW STW - - - - - -
- - - - - - - -
EI DI SI RETI BREAK IFLUSH - -
)
)
; insn-msopc: bits 30 through 26 . MorphoSys Instructions
(define-normal-insn-enum insn-msopc "msopc enums" () MSOPC_ f-msopc
(LDCTXT LDFB STFB FBCB MFBCB FBCCI FBRCI FBCRI
FBRRI MFBCCI MFBRCI MFBCRI MFBRRI FBCBDR RCFBCB MRCFBCB
CBCAST DUPCBCAST WFBI WFB RCRISC FBCBINC RCXMODE INTLVR
WFBINC MWFBINC WFBINCR MWFBINCR FBCBINCS MFBCBINCS FBCBINCRS MFBCBINCRS
- - - - - - - -
)
)
; insn-imm: bit 24. Immediate operand indicator.
(define-normal-insn-enum insn-imm "imm enums" () IMM_ f-imm
; This bit specifies whether and immediate operand will be present.
; It's 1 if there is, 0 if there is not.
(NO YES)
)
;;;;;;;;;;;;;;;;
;; Attributes ;;
;;;;;;;;;;;;;;;;
; Might not need this. Keep if for the sim just in case.
;(define-attr
; (for insn)
; (type boolean)
; (name EXT-SKIP-INSN)
; (comment "instruction is a PAGE, LOADL or LOADH instruction")
;)
(define-attr
(for insn)
(type boolean)
(name LOAD-DELAY)
(comment "insn has a load delay")
)
(define-attr
(for insn)
(type boolean)
(name MEMORY-ACCESS)
(comment "insn performs a memory access")
)
(define-attr
(for insn)
(type boolean)
(name AL-INSN)
(comment "insn is an arithmetic or logic insn.")
)
(define-attr
(for insn)
(type boolean)
(name IO-INSN)
(comment "insn performs an I/O operation")
)
(define-attr
(for insn)
(type boolean)
(name BR-INSN)
(comment "insn performs an I/O operation")
)
(define-attr
(for insn)
(type boolean)
(name JAL-HAZARD)
(comment "insn has jal-like hazard")
)
(define-pmacro (define-reg-use-attr regfield)
(define-attr
(for insn)
(type boolean)
(name (.sym "USES-" (.upcase regfield)))
(comment ("insn accesses register operand " regfield))))
(define-reg-use-attr "frdr")
(define-reg-use-attr "frdrrr")
(define-reg-use-attr "frsr1")
(define-reg-use-attr "frsr2")
; Might not need this. Keep it for the sim just in case.
(define-attr
(for insn)
(type boolean)
(name SKIPA)
(comment "instruction is a SKIP instruction")
)
;;;;;;;;;;;;;;;;;;;;;
;; Hardware Pieces ;;
;;;;;;;;;;;;;;;;;;;;;
;(define-pmacro (build-reg-name n) (.splice (.str "$" n) n))
; These are the 16 registers that the chip has. In later versions
; where there will be more registers, this will need to be expanded.
; Note that there are two entries for the registers with two names.
(define-hardware
(name h-spr)
(comment "special-purpose registers")
(type register SI (16))
(indices keyword "" (("R0" 0) ("R1" 1) ("R2" 2) ("R3" 3) ("R4" 4) ("R5" 5)
("R6" 6) ("R7" 7) ("R8" 8) ("R9" 9) ("R10" 10) ("R11" 11) ("R12" 12) ("fp" 12)
("R13" 13) ("sp" 13) ("R14" 14) ("ra" 14) ("R15" 15) ("ira" 15)))
; (get (index) (and (raw-reg h-spr) #xffffffff))
; (set (index value) (set (raw-reg h-spr) (and value #xffffffff)))
)
; This is the program counter.
(dnh h-pc "program counter" (PC PROFILE) (pc) () () ())
(define-keyword
(name msys-syms)
(print-name h-nil)
(prefix "")
(values (DUP 1) (XX 0))
)
;;;;;;;;;;;;;;
;; Operands ;;
;;;;;;;;;;;;;;
(define-operand (name frsr1) (comment "register") (attrs)
(type h-spr) (index f-sr1) )
(define-operand (name frsr2) (comment "register") (attrs)
(type h-spr) (index f-sr2) )
(define-operand (name frdr) (comment "register") (attrs)
(type h-spr) (index f-dr) )
(define-operand (name frdrrr) (comment "register") (attrs)
(type h-spr) (index f-drrr) )
(define-operand (name imm16) (comment "immediate value - sign extd") (attrs)
(type h-sint) (index f-imm16s) (handlers (parse "imm16") (print "dollarhex")))
(define-operand (name imm16z) (comment "immediate value - zero extd") (attrs)
(type h-uint) (index f-imm16u) (handlers (parse "imm16") (print "dollarhex")))
(define-operand (name imm16o) (comment "immediate value") (attrs PCREL-ADDR)
(type h-uint) (index f-imm16s) (handlers (parse "imm16") (print "pcrel")))
; Operands for MorphoSys Instructions
(define-operand (name rc) (comment "rc") (attrs)
(type h-uint) (index f-rc) (handlers (parse "rc") (print "dollarhex")))
(define-operand (name rcnum) (comment "rcnum") (attrs)
(type h-uint) (index f-rcnum) (handlers (print "dollarhex")))
(define-operand (name contnum) (comment "context number") (attrs)
(type h-uint) (index f-contnum) (handlers (print "dollarhex")))
(define-operand (name rbbc) (comment "omega network configuration") (attrs)
(type h-uint) (index f-rbbc) (handlers (parse "rbbc") (print "dollarhex")))
(define-operand (name colnum) (comment "column number") (attrs)
(type h-uint) (index f-colnum) (handlers (print "dollarhex")))
(define-operand (name rownum) (comment "row number") (attrs)
(type h-uint) (index f-rownum) (handlers (print "dollarhex")))
(define-operand (name rownum1) (comment "row number") (attrs)
(type h-uint) (index f-rownum1) (handlers (print "dollarhex")))
(define-operand (name rownum2) (comment "row number") (attrs)
(type h-uint) (index f-rownum2) (handlers (print "dollarhex")))
(define-operand (name rc1) (comment "rc1") (attrs)
(type h-uint) (index f-rc1) (handlers (parse "rc") (print "dollarhex")))
(define-operand (name rc2) (comment "rc2") (attrs)
(type h-uint) (index f-rc2) (handlers (parse "rc") (print "dollarhex")))
(define-operand (name cbrb) (comment "data-bus orientation") (attrs)
(type h-uint) (index f-cbrb) (handlers (parse "cbrb") (print "dollarhex")))
(define-operand (name cell) (comment "cell") (attrs)
(type h-uint) (index f-cell) (handlers (print "dollarhex")))
(define-operand (name dup) (comment "dup") (attrs)
(type h-uint) (index f-dup) (handlers (parse "dup") (print "dollarhex")))
(define-operand (name ctxdisp) (comment "context displacement") (attrs)
(type h-uint) (index f-ctxdisp) (handlers (print "dollarhex")))
(define-operand (name fbdisp) (comment "frame buffer displacement") (attrs)
(type h-uint) (index f-fbdisp) (handlers (print "dollarhex")))
(define-operand (name type) (comment "type") (attrs)
(type h-uint) (index f-type) (handlers (parse "type") (print "dollarhex")))
(define-operand (name mask) (comment "mask") (attrs)
(type h-uint) (index f-mask) (handlers (print "dollarhex")))
(define-operand (name bankaddr) (comment "bank address") (attrs)
(type h-uint) (index f-bankaddr) (handlers (print "dollarhex")))
(define-operand (name incamt) (comment "increment amount") (attrs)
(type h-uint) (index f-incamt) (handlers (print "dollarhex")))
(define-operand (name xmode) (comment "xmode") (attrs)
(type h-uint) (index f-xmode) (handlers (parse "xmode") (print "dollarhex")))
(define-operand (name mask1) (comment "mask1") (attrs)
(type h-uint) (index f-mask1) (handlers (print "dollarhex")))
(define-operand (name ball) (comment "b_all") (attrs)
(type h-uint) (index f-ball) (handlers (parse "ball") (print "dollarhex")))
(define-operand (name brc) (comment "b_r_c") (attrs)
(type h-uint) (index f-brc) (handlers (print "dollarhex")))
(define-operand (name rda) (comment "rd") (attrs)
(type h-uint) (index f-rda) (handlers (print "dollarhex")))
(define-operand (name wr) (comment "wr") (attrs)
(type h-uint) (index f-wr) (handlers (print "dollarhex")))
(define-operand (name ball2) (comment "b_all2") (attrs)
(type h-uint) (index f-ball2) (handlers (parse "ball") (print "dollarhex")))
(define-operand (name brc2) (comment "b_r_c2") (attrs)
(type h-uint) (index f-brc2) (handlers (print "dollarhex")))
(define-operand (name perm) (comment "perm") (attrs)
(type h-uint) (index f-perm) (handlers (print "dollarhex")))
(define-operand (name a23) (comment "a23") (attrs)
(type h-uint) (index f-a23) (handlers (print "dollarhex")))
(define-operand (name cr) (comment "c-r") (attrs)
(type h-uint) (index f-cr) (handlers (print "dollarhex")))
(define-operand (name cbs) (comment "cbs") (attrs)
(type h-uint) (index f-cbs) (handlers (print "dollarhex")))
(define-operand (name incr) (comment "incr") (attrs)
(type h-uint) (index f-incr) (handlers (print "dollarhex")))
(define-operand (name length) (comment "length") (attrs)
(type h-uint) (index f-length) (handlers (print "dollarhex")))
(define-operand (name cbx) (comment "cbx") (attrs)
(type h-uint) (index f-cbx) (handlers (print "dollarhex")))
(define-operand (name ccb) (comment "ccb") (attrs)
(type h-uint) (index f-ccb) (handlers (print "dollarhex")))
(define-operand (name cdb) (comment "cdb") (attrs)
(type h-uint) (index f-cdb) (handlers (print "dollarhex")))
; For the INTLVR insn
(define-operand (name mode) (comment "mode") (attrs)
(type h-uint) (index f-mode) (handlers (print "dollarhex")))
(define-operand (name id) (comment "i/d") (attrs)
(type h-uint) (index f-id) (handlers (print "dollarhex")))
(define-operand (name size) (comment "size") (attrs)
(type h-uint) (index f-size) (handlers (print "dollarhex")))
(define-operand (name fbincr) (comment "fb incr") (attrs)
(type h-uint) (index f-fbincr) (handlers (print "dollarhex")))
; For the ms2 insns
(define-operand (name loopsize) (comment "immediate value")
(attrs (MACH ms2) PCREL-ADDR)
(type h-uint) (index f-loopo) (handlers (parse "loopsize") (print "pcrel")))
(define-operand (name imm16l) (comment "immediate value")
(attrs (MACH ms2))
(type h-uint) (index f-imm16l) (handlers (print "dollarhex")))
(define-operand (name rc3) (comment "rc3") (attrs (MACH ms2))
(type h-uint) (index f-rc3) (handlers (parse "rc") (print "dollarhex")))
(define-operand (name cb1sel) (comment "cb1sel") (attrs (MACH ms2))
(type h-uint) (index f-cb1sel) (handlers (print "dollarhex")))
(define-operand (name cb2sel) (comment "cb2sel") (attrs (MACH ms2))
(type h-uint) (index f-cb2sel) (handlers (print "dollarhex")))
(define-operand (name cb1incr) (comment "cb1incr") (attrs (MACH ms2))
(type h-sint) (index f-cb1incr) (handlers (print "dollarhex")))
(define-operand (name cb2incr) (comment "cb2incr") (attrs (MACH ms2))
(type h-sint) (index f-cb2incr) (handlers (print "dollarhex")))
; Probaby won't need most of these.
(define-pmacro r0 (reg h-spr #x0))
(define-pmacro r1 (reg h-spr #x01))
(define-pmacro r2 (reg h-spr #x02))
(define-pmacro r3 (reg h-spr #x03))
(define-pmacro r4 (reg h-spr #x04))
(define-pmacro r5 (reg h-spr #x05))
(define-pmacro r6 (reg h-spr #x06))
(define-pmacro r7 (reg h-spr #x07))
(define-pmacro r8 (reg h-spr #x08))
(define-pmacro r9 (reg h-spr #x09))
(define-pmacro r10 (reg h-spr #xA))
(define-pmacro r11 (reg h-spr #xB))
(define-pmacro r12 (reg h-spr #xC))
(define-pmacro fp (reg h-spr #xC))
(define-pmacro r13 (reg h-spr #xD))
(define-pmacro sp (reg h-spr #xD))
(define-pmacro r14 (reg h-spr #xE))
(define-pmacro ra (reg h-spr #xE))
(define-pmacro r15 (reg h-spr #xF))
(define-pmacro ira (reg h-spr #xF))
; delayed set
(define-pmacro (dset dest src) (set (delay 1 dest) src))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; Instructions As Defined In the MorphoRisc ISA Document ;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
; Arithmetic Instructions
(dni add "ADD DstReg, SrcReg1, SrcReg2"
(AL-INSN USES-FRDRRR USES-FRSR1 USES-FRSR2)
"add $frdrrr,$frsr1,$frsr2"
(+ MSYS_NO OPC_ADD IMM_NO frsr1 frsr2 frdrrr (f-uu12 0))
(set frdrrr (add SI frsr1 frsr2))
()
)
(dni addu "ADDU DstReg, SrcReg1, SrcReg2"
(AL-INSN USES-FRDRRR USES-FRSR1 USES-FRSR2)
"addu $frdrrr,$frsr1,$frsr2"
(+ MSYS_NO OPC_ADDU IMM_NO frsr1 frsr2 frdrrr (f-uu12 0))
(set frdrrr (add USI frsr1 frsr2))
()
)
(dni addi "ADDI DstReg, SrcReg1 UnsImm"
(AL-INSN USES-FRDR USES-FRSR1)
"addi $frdr,$frsr1,#$imm16"
(+ MSYS_NO OPC_ADD IMM_YES frsr1 frdr imm16)
(sequence((HI tmp))
(set HI tmp (and imm16 #xffff))
(set frdr (add SI frsr1 (ext SI tmp)))
)
()
)
(dni addui "ADDUI DstReg, SrcReg1, UnsImm"
(AL-INSN USES-FRDR USES-FRSR1)
"addui $frdr,$frsr1,#$imm16z"
(+ MSYS_NO OPC_ADDU IMM_YES frsr1 frdr imm16z)
(set frdr (add USI frsr1 (ext USI imm16z)))
()
)
(dni sub "SUB DstReg, SrcReg1, SrcReg2"
(AL-INSN USES-FRDRRR USES-FRSR1 USES-FRSR2)
"sub $frdrrr,$frsr1,$frsr2"
(+ MSYS_NO OPC_SUB IMM_NO frsr1 frsr2 frdrrr (f-uu12 0))
(set frdrrr (sub SI frsr1 frsr2))
()
)
(dni subu "SUBU DstReg, SrcReg1, SrcReg2"
(AL-INSN USES-FRDRRR USES-FRSR1 USES-FRSR2)
"subu $frdrrr,$frsr1,$frsr2"
(+ MSYS_NO OPC_SUBU IMM_NO frsr1 frsr2 frdrrr (f-uu12 0))
(set frdrrr (sub USI frsr1 frsr2))
()
)
(dni subi "SUBI DstReg, SrcReg1, UnsImm"
(AL-INSN USES-FRDR USES-FRSR1)
"subi $frdr,$frsr1,#$imm16"
(+ MSYS_NO OPC_SUB IMM_YES frsr1 frdr imm16)
(sequence((HI tmp))
(set HI tmp (and imm16 #xffff))
(set frdr (sub SI frsr1 (ext SI tmp)))
)
;(set frdr (sub SI frsr1 (ext SI imm16)))
()
)
(dni subui "SUBUI DstReg, SrcReg1, UnsImm"
(AL-INSN USES-FRDR USES-FRSR1)
"subui $frdr,$frsr1,#$imm16z"
(+ MSYS_NO OPC_SUBU IMM_YES frsr1 frdr imm16z)
(set frdr (sub USI frsr1 (ext USI imm16z)))
()
)
(dni mul "MUL DstReg, SrcReg1, SrcReg2"
((MACH ms1-003,ms2) AL-INSN USES-FRDRRR USES-FRSR1 USES-FRSR2)
"mul $frdrrr,$frsr1,$frsr2"
(+ MSYS_NO OPC_MUL IMM_NO frsr1 frsr2 frdrrr (f-uu12 0))
(sequence((HI op1) (HI op2))
(set op1 (and frsr1 #xffff))
(if (or (lt op1 (const -32768)) (gt op1 (const 32767)))
(error "operand out of range")
)
(set op2 (and frsr2 #xffff))
(if (or (lt op2 (const -32768)) (gt op2 (const 32767)))
(error "operand out of range")
)
(set frdrrr (mul SI (ext SI op1) (ext SI op2)))
)
()
)
(dni muli "MULI DstReg, SrcReg1, UnsImm"
((MACH ms1-003,ms2) AL-INSN USES-FRDR USES-FRSR1)
"muli $frdr,$frsr1,#$imm16"
(+ MSYS_NO OPC_MUL IMM_YES frsr1 frdr imm16)
(sequence((HI op1) (HI op2))
(set op1 (and frsr1 #xffff))
(if (or (lt op1 (const -32768)) (gt op1 (const 32767)))
(error "operand out of range")
)
(set op2 (and imm16 #xffff))
(if (eq op1 (const 0))
(error "op1 is 0")
)
(if (eq op2 (const 0))
(error "op2 is 0")
)
(set frdr (mul SI (ext SI op1) (ext SI op2)))
)
()
)
; Logical Instructions
(dni and "AND DstReg, SrcReg1, SrcReg2"
(AL-INSN USES-FRDRRR USES-FRSR1 USES-FRSR2)
"and $frdrrr,$frsr1,$frsr2"
(+ MSYS_NO OPC_AND IMM_NO frsr1 frsr2 frdrrr (f-uu12 0))
(set frdrrr (and frsr1 frsr2))
()
)
(dni andi "ANDI DstReg, SrcReg1, UnsImm"
(AL-INSN USES-FRDR USES-FRSR1)
"andi $frdr,$frsr1,#$imm16z"
(+ MSYS_NO OPC_AND IMM_YES frsr1 frdr imm16z)
(set frdr (and frsr1 (ext USI imm16z)))
()
)
(dni or "OR DstReg, SrcReg1, SrcReg2"
(AL-INSN USES-FRDRRR USES-FRSR1 USES-FRSR2)
"or $frdrrr,$frsr1,$frsr2"
(+ MSYS_NO OPC_OR IMM_NO frsr1 frsr2 frdrrr (f-uu12 0))
(set frdrrr (or frsr1 frsr2))
()
)
(dni nop "nop"
()
"nop"
(+ MSYS_NO OPC_OR IMM_NO (f-uu24 0))
(nop)
()
)
(dni ori "ORI DstReg, SrcReg1, UnsImm"
(AL-INSN USES-FRDR USES-FRSR1)
"ori $frdr,$frsr1,#$imm16z"
(+ MSYS_NO OPC_OR IMM_YES frsr1 frdr imm16z)
(set frdr (or frsr1 (ext USI imm16z)))
()
)
(dni xor "XOR DstReg, SrcReg1, SrcReg2"
(AL-INSN USES-FRDRRR USES-FRSR1 USES-FRSR2)
"xor $frdrrr,$frsr1,$frsr2"
(+ MSYS_NO OPC_XOR IMM_NO frsr1 frsr2 frdrrr (f-uu12 0))
(set frdrrr (xor frsr1 frsr2))
()
)
(dni xori "XORI DstReg, SrcReg1, UnsImm"
(AL-INSN USES-FRDR USES-FRSR1)
"xori $frdr,$frsr1,#$imm16z"
(+ MSYS_NO OPC_XOR IMM_YES frsr1 frdr imm16z)
(set frdr (xor frsr1 (ext USI imm16z)))
()
)
(dni nand "NAND DstReg, SrcReg1, SrcReg2"
(AL-INSN USES-FRDRRR USES-FRSR1 USES-FRSR2)
"nand $frdrrr,$frsr1,$frsr2"
(+ MSYS_NO OPC_NAND IMM_NO frsr1 frsr2 frdrrr (f-uu12 0))
(set frdrrr (inv (and frsr1 frsr2)))
()
)
(dni nandi "NANDI DstReg, SrcReg1, UnsImm"
(AL-INSN USES-FRDR USES-FRSR1)
"nandi $frdr,$frsr1,#$imm16z"
(+ MSYS_NO OPC_NAND IMM_YES frsr1 frdr imm16z)
(set frdr (inv (and frsr1 (ext USI imm16z))))
()
)
(dni nor "NOR DstReg, SrcReg1, SrcReg2"
(AL-INSN USES-FRDRRR USES-FRSR1 USES-FRSR2)
"nor $frdrrr,$frsr1,$frsr2"
(+ MSYS_NO OPC_NOR IMM_NO frsr1 frsr2 frdrrr (f-uu12 0))
(set frdrrr (inv (or frsr1 frsr2)))
()
)
(dni nori "NORI DstReg, SrcReg1, UnsImm"
(AL-INSN USES-FRDR USES-FRSR1)
"nori $frdr,$frsr1,#$imm16z"
(+ MSYS_NO OPC_NOR IMM_YES frsr1 frdr imm16z)
(set frdr (inv (or frsr1 (ext USI imm16z))))
()
)
(dni xnor "XNOR DstReg, SrcReg1, SrcReg2"
(AL-INSN USES-FRDRRR USES-FRSR1 USES-FRSR2)
"xnor $frdrrr,$frsr1,$frsr2"
(+ MSYS_NO OPC_XNOR IMM_NO frsr1 frsr2 frdrrr (f-uu12 0))
(set frdrrr (inv (xor frsr1 frsr2)))
()
)
(dni xnori "XNORI DstReg, SrcReg1, UnsImm"
(AL-INSN USES-FRDR USES-FRSR1)
"xnori $frdr,$frsr1,#$imm16z"
(+ MSYS_NO OPC_XNOR IMM_YES frsr1 frdr imm16z)
(set frdr (inv (xor frsr1 (ext USI imm16z))))
()
)
(dni ldui "LDUI DstReg, UnsImm"
(AL-INSN USES-FRDR)
"ldui $frdr,#$imm16z"
(+ MSYS_NO OPC_LDUI IMM_YES (f-uu4b 0) frdr imm16z)
(set frdr (and (sll imm16z 16) #xffff0000))
()
)
; Shift Instructions
(dni lsl "LSL DstReg, SrcReg1, SrcReg2"
(USES-FRDRRR USES-FRSR1 USES-FRSR2)
"lsl $frdrrr,$frsr1,$frsr2"
(+ MSYS_NO OPC_LSL IMM_NO frsr1 frsr2 frdrrr (f-uu12 0))
(set frdrrr (sll frsr1 frsr2))
()
)
(dni lsli "LSLI DstReg, SrcReg1, UnsImm"
(USES-FRDR USES-FRSR1)
"lsli $frdr,$frsr1,#$imm16"
(+ MSYS_NO OPC_LSL IMM_YES frsr1 frdr imm16)
(set frdr (sll frsr1 imm16))
()
)
(dni lsr "LSR DstReg, SrcReg1, SrcReg2"
(USES-FRDRRR USES-FRSR1 USES-FRSR2)
"lsr $frdrrr,$frsr1,$frsr2"
(+ MSYS_NO OPC_LSR IMM_NO frsr1 frsr2 frdrrr (f-uu12 0))
(set frdrrr (srl frsr1 frsr2))
()
)
(dni lsri "LSRI DstReg, SrcReg1, UnsImm"
(USES-FRDR USES-FRSR1)
"lsri $frdr,$frsr1,#$imm16"
(+ MSYS_NO OPC_LSR IMM_YES frsr1 frdr imm16)
(set frdr (srl frsr1 imm16))
()
)
(dni asr "ASR DstReg, SrcReg1, SrcReg2"
(USES-FRDRRR USES-FRSR1 USES-FRSR2)
"asr $frdrrr,$frsr1,$frsr2"
(+ MSYS_NO OPC_ASR IMM_NO frsr1 frsr2 frdrrr (f-uu12 0))
(set frdrrr (sra frsr1 frsr2))
()
)
(dni asri "ASRI DstReg, SrcReg1, UnsImm"
(USES-FRDR USES-FRSR1)
"asri $frdr,$frsr1,#$imm16"
(+ MSYS_NO OPC_ASR IMM_YES frsr1 frdr imm16)
(set frdr (sra frsr1 imm16))
()
)
; Control Transfer Instructions
(dni brlt "BRLT SrcReg1, SrcReg2, label"
(BR-INSN DELAY-SLOT USES-FRDRRR USES-FRSR1 USES-FRSR2)
"brlt $frsr1,$frsr2,$imm16o"
(+ MSYS_NO OPC_BRLT IMM_YES frsr1 frsr2 imm16o)
(sequence()
(if (lt USI frsr1 frsr2)
(dset pc (add pc (ext SI imm16o))))
)
()
)
(dni brle "BRLE SrcReg1, SrcReg2, label"
(BR-INSN DELAY-SLOT USES-FRSR1 USES-FRSR2)
"brle $frsr1,$frsr2,$imm16o"
(+ MSYS_NO OPC_BRLE IMM_YES frsr1 frsr2 imm16o)
(sequence()
(if (le USI frsr1 frsr2)
(dset pc (add pc (ext SI imm16o))))
)
()
)
(dni breq "BREQ SrcReg1, SrcReg2, label"
(BR-INSN DELAY-SLOT USES-FRSR1 USES-FRSR2)
"breq $frsr1,$frsr2,$imm16o"
(+ MSYS_NO OPC_BREQ IMM_YES frsr1 frsr2 imm16o)
(sequence()
(if (eq USI frsr1 frsr2)
(dset pc (add pc (ext SI imm16o))))
)
()
)
(dni brne "BRNE SrcReg1, SrcReg2, label"
(BR-INSN DELAY-SLOT USES-FRSR1 USES-FRSR2)
"brne $frsr1,$frsr2,$imm16o"
(+ MSYS_NO OPC_BRNEQ IMM_YES frsr1 frsr2 imm16o)
(sequence()
(if (not (eq USI frsr1 frsr2))
(dset pc (add pc (ext SI imm16o))))
)
()
)
(dni jmp "JMP, label"
(DELAY-SLOT BR-INSN)
"jmp $imm16o"
(+ MSYS_NO OPC_JMP IMM_YES (f-uu4b 0) (f-uu4a 0) imm16o)
(dset pc (add pc (ext SI imm16o)))
()
)
(dni jal "JAL DstReg, SrcReg1"
(BR-INSN DELAY-SLOT BR-INSN USES-FRDR USES-FRSR1 JAL-HAZARD)
"jal $frdrrr,$frsr1"
(+ MSYS_NO OPC_JAL IMM_NO frsr1 (f-uu4a 0) frdrrr (f-uu12 0))
(sequence()
(if (eq frsr1 #x0)
(c-call VOID "do_syscall" pc)
(sequence() ; else part. Do non-syscall stuff here.
(dset frdrrr (add pc #x8))
(dset pc frsr1)
)
)
)
()
)
(dni dbnz "DBNZ SrcReg1, label"
((MACH ms1-003,ms2) BR-INSN DELAY-SLOT USES-FRSR1)
"dbnz $frsr1,$imm16o"
(+ MSYS_NO OPC_DBNZ IMM_YES frsr1 (f-uu4a 0) imm16o)
(sequence()
(if (not (eq USI frsr1 0))
(dset pc (add pc (ext SI imm16o))))
)
()
)
; Interrupt Control Instructions
(dni ei "EI - Enable Interrupt Processing"
()
"ei"
(+ MSYS_NO OPC_EI IMM_NO (f-uu4b 0) (f-uu4a 0) (f-uu16 0))
(c-call VOID "enable_interrupts")
()
)
(dni di "DI - Disable Interrupt Processing"
()
"di"
(+ MSYS_NO OPC_DI IMM_NO (f-uu4b 0) (f-uu4a 0) (f-uu16 0))
(c-call VOID "disable_interrupts")
()
)
(dni si "SI - Send software Interrupt"
(DELAY-SLOT BR-INSN USES-FRDR)
"si $frdrrr"
(+ MSYS_NO OPC_SI IMM_NO (f-uu4b 0) (f-uu4a 0) frdrrr (f-uu12 0))
;(sequence()
; (dset frdr (add pc #x4))
; (c-call VOID "do_syscall1" pc)
; ; (dset pc frsr1) Do this later when we have the address.
;)
(sequence()
(set frdrrr (add pc #x4))
(c-call VOID "do_syscall" pc)
; (set pc frsr1) Do this later when we have the address.
)
()
)
(dni reti "RETI SrcReg1"
(DELAY-SLOT BR-INSN USES-FRSR1 JAL-HAZARD)
"reti $frsr1"
(+ MSYS_NO OPC_RETI IMM_NO frsr1 (f-uu4a 0) (f-uu16 0))
(sequence()
(c-call VOID "enable_interrupts")
(dset pc frsr1)
)
()
)
; Memory Access Instructions
(dni ldw "LDW DstReg, SrcReg1, Imm"
(LOAD-DELAY MEMORY-ACCESS USES-FRDR USES-FRSR1)
"ldw $frdr,$frsr1,#$imm16"
(+ MSYS_NO OPC_LDW IMM_YES frsr1 frdr imm16)
(sequence((USI ea) (HI tmp))
(set HI tmp (and imm16 #xffff))
(set ea (and (add SI frsr1 (ext SI tmp)) #xfffffffc))
(set frdr (mem SI ea))
)
()