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 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352
|
; 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))
)
()
)
(dni stw "STW SrcReg2, SrcReg1, Imm"
(MEMORY-ACCESS USES-FRSR1 USES-FRSR2)
"stw $frsr2,$frsr1,#$imm16"
(+ MSYS_NO OPC_STW IMM_YES frsr1 frsr2 imm16)
(sequence((USI ea) (HI tmp))
(set HI tmp (and imm16 #xffff))
(set ea (and (add SI frsr1 (ext SI tmp)) #xfffffffc))
(set (mem SI ea) frsr2)
)
()
)
; Break Instruction
(dni break "BREAK"
()
"break"
(+ MSYS_NO OPC_BREAK (f-imm 0) (f-uu24 0))
(c-call VOID "do_break" pc)
()
)
; Cache Flush Instruction
(dni iflush "IFLUSH"
((MACH ms1-003,ms2))
"iflush"
(+ MSYS_NO OPC_IFLUSH (f-imm 0) (f-uu24 0))
(nop)
()
)
; MorphoSys Instructions
(dni ldctxt "LDCTXT SRC1, SRC2, r/c, r/c#, context#"
((MACH ms1))
"ldctxt $frsr1,$frsr2,#$rc,#$rcnum,#$contnum"
(+ MSYS_YES MSOPC_LDCTXT (f-uu-2-25 0) frsr1 frsr2 rc rcnum (f-uu-3-11 0)
contnum )
(nop)
()
)
(dni ldfb "LDFB SRC1, byte#"
((MACH ms1))
"ldfb $frsr1,$frsr2,#$imm16z"
(+ MSYS_YES MSOPC_LDFB (f-uu-2-25 0) frsr1 frsr2 imm16z)
(nop)
()
)
(dni stfb "STFB SRC1, SRC2, byte "
((MACH ms1))
"stfb $frsr1,$frsr2,#$imm16z"
(+ MSYS_YES MSOPC_STFB (f-uu-2-25 0) frsr1 frsr2 imm16z)
(nop)
()
)
(dni fbcb "FBCB SRC1, RT/BR1/BR2/CS, B_all, B_r_c, r/c, CB/RB, cell, dup, ctx_disp"
((MACH ms1,ms1-003))
"fbcb $frsr1,#$rbbc,#$ball,#$brc,#$rc1,#$cbrb,#$cell,#$dup,#$ctxdisp"
(+ MSYS_YES MSOPC_FBCB rbbc frsr1 ball brc (f-uu-4-15 0) rc cbrb cell dup ctxdisp)
(nop)
()
)
(dni mfbcb "MFBCB SRC1, RT/BR1/BR2/CS, SRC2, r/c, CB/RB, cell, dup, ctx_disp"
()
"mfbcb $frsr1,#$rbbc,$frsr2,#$rc1,#$cbrb,#$cell,#$dup,#$ctxdisp"
(+ MSYS_YES MSOPC_MFBCB rbbc frsr1 frsr2 (f-uu-4-15 0) rc1 cbrb cell dup ctxdisp)
(nop)
()
)
(dni fbcci "FBCCI SRC1, RT/BR1/BR2/CS, B_all, B_r_c, FB_disp, cell, dup, ctx_disp"
()
"fbcci $frsr1,#$rbbc,#$ball,#$brc,#$fbdisp,#$cell,#$dup,#$ctxdisp"
(+ MSYS_YES MSOPC_FBCCI rbbc frsr1 ball brc fbdisp cell dup ctxdisp)
(nop)
()
)
(dni fbrci "FBRCI SRC1, RT/BR1/BR2/CS, B_all, B_r_c, FB_disp, cell, dup, ctx_disp"
()
"fbrci $frsr1,#$rbbc,#$ball,#$brc,#$fbdisp,#$cell,#$dup,#$ctxdisp"
(+ MSYS_YES MSOPC_FBRCI rbbc frsr1 ball brc fbdisp cell dup ctxdisp)
(nop)
()
)
(dni fbcri "FBCRI SRC1, RT/BR1/BR2/CS, B_all, B_r_c, FB_disp, cell, dup, ctx_disp"
()
"fbcri $frsr1,#$rbbc,#$ball,#$brc,#$fbdisp,#$cell,#$dup,#$ctxdisp"
(+ MSYS_YES MSOPC_FBCRI rbbc frsr1 ball brc fbdisp cell dup ctxdisp)
(nop)
()
)
(dni fbrri "FBRRI SRC1, RT/BR1/BR2/CS, B_all, B_r_c, FB_disp, cell, dup, ctx_disp"
()
"fbrri $frsr1,#$rbbc,#$ball,#$brc,#$fbdisp,#$cell,#$dup,#$ctxdisp"
(+ MSYS_YES MSOPC_FBRRI rbbc frsr1 ball brc fbdisp cell dup ctxdisp)
(nop)
()
)
(dni mfbcci "MFBCCI SRC1, RT/BR1/BR2/CS, SRC2, FB_disp, cell, dup, ctx_disp"
()
"mfbcci $frsr1,#$rbbc,$frsr2,#$fbdisp,#$cell,#$dup,#$ctxdisp"
(+ MSYS_YES MSOPC_MFBCCI rbbc frsr1 frsr2 fbdisp cell dup ctxdisp)
(nop)
()
)
(dni mfbrci "MFBRCI SRC1, RT/BR1/BR2/CS, SRC2, FB_disp, cell, dup, ctx_disp"
()
"mfbrci $frsr1,#$rbbc,$frsr2,#$fbdisp,#$cell,#$dup,#$ctxdisp"
(+ MSYS_YES MSOPC_MFBRCI rbbc frsr1 frsr2 fbdisp cell dup ctxdisp)
(nop)
()
)
(dni mfbcri "MFBCRI SRC1, RT/BR1/BR2/CS, SRC2, FB_disp, cell, dup, ctx_disp"
()
"mfbcri $frsr1,#$rbbc,$frsr2,#$fbdisp,#$cell,#$dup,#$ctxdisp"
(+ MSYS_YES MSOPC_MFBCRI rbbc frsr1 frsr2 fbdisp cell dup ctxdisp)
(nop)
()
)
(dni mfbrri "MFBRRI SRC1, RT/BR1/BR2/CS, SRC2, FB_disp, cell, dup, ctx_disp"
()
"mfbrri $frsr1,#$rbbc,$frsr2,#$fbdisp,#$cell,#$dup,#$ctxdisp"
(+ MSYS_YES MSOPC_MFBRRI rbbc frsr1 frsr2 fbdisp cell dup ctxdisp)
(nop)
()
)
(dni fbcbdr "FBCBDR SRC1, RT/BR1/BR2/CS, SRC2, B_all, B_r_c, r/c, CB/RB, cell, dup, ctx_disp"
()
"fbcbdr $frsr1,#$rbbc,$frsr2,#$ball2,#$brc2,#$rc1,#$cbrb,#$cell,#$dup,#$ctxdisp"
(+ MSYS_YES MSOPC_FBCBDR rbbc frsr1 frsr2 ball2 brc2 rc1 cbrb cell dup ctxdisp)
(nop)
()
)
(dni rcfbcb "RCFBCB RT/BR1/BR2/CS, type, B_all, B_r_c, row#, r/c, CB/RB, cell, dup, ctx_disp"
()
"rcfbcb #$rbbc,#$type,#$ball,#$brc,#$rownum,#$rc1,#$cbrb,#$cell,#$dup,#$ctxdisp"
(+ MSYS_YES MSOPC_RCFBCB rbbc (f-uu-2-23 0) type ball brc (f-uu-1-15 0) rownum rc1 cbrb cell dup ctxdisp)
(nop)
()
)
(dni mrcfbcb "MRCFBCB SRC2, RT/BR1/BR2/CS, type, row#, r/c, CB/RB, cell, dup, ctx_disp"
()
"mrcfbcb $frsr2,#$rbbc,#$type,#$rownum,#$rc1,#$cbrb,#$cell,#$dup,#$ctxdisp"
(+ MSYS_YES MSOPC_MRCFBCB rbbc (f-uu-2-23 0) type frsr2 (f-uu-1-15 0) rownum rc1 cbrb cell dup ctxdisp)
(nop)
()
)
(dni cbcast "CBCAST mask, r/c, ctx_disp "
()
"cbcast #$mask,#$rc2,#$ctxdisp"
(+ MSYS_YES MSOPC_CBCAST mask (f-uu-3-9 0) rc2 ctxdisp)
(nop)
()
)
(dni dupcbcast "DUPCBCAST mask, cell, r/c, ctx_disp "
()
"dupcbcast #$mask,#$cell,#$rc2,#$ctxdisp"
(+ MSYS_YES MSOPC_DUPCBCAST mask cell rc2 ctxdisp)
(nop)
()
)
(dni wfbi "WFBI Bank_address, row#, cell, dup, ctx_disp "
()
"wfbi #$bankaddr,#$rownum1,#$cell,#$dup,#$ctxdisp"
(+ MSYS_YES MSOPC_WFBI bankaddr rownum1 cell dup ctxdisp)
(nop)
()
)
;(dni wfb "WFB SRC1, SRC2, FB_disp, row#, ctx_disp"
; ()
; "wfb $frsr1,$frsr2,#$fbdisp,#$rownum,#$ctxdisp"
; (+ MSYS_YES MSOPC_WFB (f-uu-2-25 0) frsr1 frsr2 fbdisp rownum (f-uu-1-6 0) ctxdisp)
; (nop)
; ()
;)
(dni wfb "WFB, DRC1,SRC2,FB_disp,row#,ctx_disp"
()
"wfb $frsr1,$frsr2,#$fbdisp,#$rownum2,#$ctxdisp"
(+ MSYS_YES MSOPC_WFB (f-uu-2-25 0) frsr1 frsr2 fbdisp rownum2 (f-uu-1-6 0) ctxdisp)
(nop)
()
)
(dni rcrisc "RCRISC DEST, RT/BR1/BR2/CS, SRC1, column#, r/c, CB/RB, cell, dup, ctx_disp"
()
"rcrisc $frdrrr,#$rbbc,$frsr1,#$colnum,#$rc1,#$cbrb,#$cell,#$dup,#$ctxdisp"
(+ MSYS_YES MSOPC_RCRISC rbbc frsr1 (f-uu-1-19 0) colnum frdrrr rc1 cbrb cell dup ctxdisp)
(nop)
()
)
(dni fbcbinc "FBCBINC SRC1, RT/BR1/BR2/CS, Incr_amount, r/c, CB/RB, cell, dup, ctx_disp "
()
"fbcbinc $frsr1,#$rbbc,#$incamt,#$rc1,#$cbrb,#$cell,#$dup,#$ctxdisp"
(+ MSYS_YES MSOPC_FBCBINC rbbc frsr1 incamt rc1 cbrb cell dup ctxdisp)
(nop)
()
)
(dni rcxmode "RCXMODE SRC2, rd, wr, xmode, mask, FB_disp, row#, r/c, ctx_disp"
()
"rcxmode $frsr2,#$rda,#$wr,#$xmode,#$mask1,#$fbdisp,#$rownum2,#$rc2,#$ctxdisp"
(+ MSYS_YES MSOPC_RCXMODE rda wr xmode mask1 frsr2 fbdisp rownum2 rc2 ctxdisp)
(nop)
()
)
(dni interleaver "INTLVR ireg, mode, ireg, i/d, size"
()
"intlvr $frsr1,#$mode,$frsr2,#$id,#$size"
(+ MSYS_YES MSOPC_INTLVR mode frsr1 frsr2 (f-uu-1-15 0) id size)
(nop)
()
)
;; Issue 66262: The documenatation gives the wrong order for
;; the arguments to the WFBINC instruction.
(dni wfbinc "WFBINC type, ccb/rcb, incr, all, c/r, length, rca_row, word, dup, ctxt_disp"
((MACH ms1-003,ms2))
"wfbinc #$rda,#$wr,#$fbincr,#$ball,#$colnum,#$length,#$rownum1,#$rownum2,#$dup,#$ctxdisp"
(+ MSYS_YES MSOPC_WFBINC rda wr fbincr ball colnum length rownum1 rownum2 dup ctxdisp)
(nop)
()
)
(dni mwfbinc "MWFBINC mreg, type, ccb/rcb, incr, length, rca_row, word, dup, ctxt_disp"
((MACH ms1-003,ms2))
"mwfbinc $frsr2,#$rda,#$wr,#$fbincr,#$length,#$rownum1,#$rownum2,#$dup,#$ctxdisp"
(+ MSYS_YES MSOPC_MWFBINC rda wr fbincr frsr2 length rownum1 rownum2 dup ctxdisp)
(nop)
()
)
(dni wfbincr "WFBINCR ireg, type, ccb/rcb, all, c/r, length, rca_row, word, dup, ctxt_disp"
((MACH ms1-003,ms2))
"wfbincr $frsr1,#$rda,#$wr,#$ball,#$colnum,#$length,#$rownum1,#$rownum2,#$dup,#$ctxdisp"
(+ MSYS_YES MSOPC_WFBINCR rda wr frsr1 ball colnum length rownum1 rownum2 dup ctxdisp)
(nop)
()
)
(dni mwfbincr "MWFBINCR ireg, mreg, type, ccb/rcb, length, rca_row, word, dup, ctxt_disp"
((MACH ms1-003,ms2))
"mwfbincr $frsr1,$frsr2,#$rda,#$wr,#$length,#$rownum1,#$rownum2,#$dup,#$ctxdisp"
(+ MSYS_YES MSOPC_MWFBINCR rda wr frsr1 frsr2 length rownum1 rownum2 dup ctxdisp)
(nop)
()
)
(dni fbcbincs "FBCBINCS perm, all, c/r, cbs, incr, ccb/rcb, cdb/rdb, word, dup, ctxt_disp"
((MACH ms1-003,ms2))
"fbcbincs #$perm,#$a23,#$cr,#$cbs,#$incr,#$ccb,#$cdb,#$rownum2,#$dup,#$ctxdisp"
(+ MSYS_YES MSOPC_FBCBINCS perm a23 cr cbs incr ccb cdb rownum2 dup ctxdisp)
(nop)
()
)
(dni mfbcbincs "MFBCBINCS ireg, perm, cbs, incr, ccb/rcb, cdb/rdb, word, dup, ctxt_disp"
((MACH ms1-003,ms2))
"mfbcbincs $frsr1,#$perm,#$cbs,#$incr,#$ccb,#$cdb,#$rownum2,#$dup,#$ctxdisp"
(+ MSYS_YES MSOPC_MFBCBINCS perm frsr1 cbs incr ccb cdb rownum2 dup ctxdisp)
(nop)
()
)
(dni fbcbincrs "FBCBINCRS ireg, perm, all, c/r, cbs, ccb/rcb, cdb/rdb, word, dup, ctxt_disp"
((MACH ms1-003,ms2))
"fbcbincrs $frsr1,#$perm,#$ball,#$colnum,#$cbx,#$ccb,#$cdb,#$rownum2,#$dup,#$ctxdisp"
(+ MSYS_YES MSOPC_FBCBINCRS perm frsr1 ball colnum (f-uu-1-15 0) cbx ccb cdb rownum2 dup ctxdisp)
(nop)
()
)
(dni mfbcbincrs "MFBCBINCRS ireg, mreg, perm, cbs, ccb/rcb, cdb/rdb, word, dup, ctxt_disp"
((MACH ms1-003,ms2))
"mfbcbincrs $frsr1,$frsr2,#$perm,#$cbx,#$ccb,#$cdb,#$rownum2,#$dup,#$ctxdisp"
(+ MSYS_YES MSOPC_MFBCBINCRS perm frsr1 frsr2 (f-uu-1-15 0) cbx ccb cdb rownum2 dup ctxdisp)
(nop)
()
)
; MS2 instructions
(dni loop "LOOP SrcReg1, label"
((MACH ms2) DELAY-SLOT USES-FRSR1)
"loop $frsr1,$loopsize"
(+ MSYS_NO OPC_LOOP IMM_NO frsr1 (f-uu4a 0) (f-uu8 0) loopsize)
(nop) ;; to be filled in
()
)
(dni loopi "LOOPI niter, label"
((MACH ms2) DELAY-SLOT)
"loopi #$imm16l,$loopsize"
(+ MSYS_NO OPC_LOOP IMM_YES imm16l loopsize)
(nop) ;; to be filled in
()
)
(dni dfbc "dfbc cb1sel,cb2sel,cb1inc,cb2inc,dr/c,cr/c,ctxdisp"
((MACH ms2))
"dfbc #$cb1sel,#$cb2sel,#$cb1incr,#$cb2incr,#$rc3,#$rc2,#$ctxdisp"
(+ MSYS_YES MSOPC_LDCTXT cb1sel cb2sel cb1incr cb2incr rc3 rc2 ctxdisp)
(nop)
()
)
(dni dwfb "dwfb cb1sel,cb2sel,cb1inc,cb2inc,cr/c,ctxdisp"
((MACH ms2))
"dwfb #$cb1sel,#$cb2sel,#$cb1incr,#$cb2incr,#$rc2,#$ctxdisp"
(+ MSYS_YES MSOPC_LDFB cb1sel cb2sel cb1incr cb2incr (f-uu1 0) rc2 ctxdisp)
(nop)
()
)
(dni fbwfb "fbwfb cb1sel,cb2sel,cb1inc,cb2inc,r0/1,cr/c,ctxdisp"
((MACH ms2))
"fbwfb #$cb1sel,#$cb2sel,#$cb1incr,#$cb2incr,#$rc3,#$rc2,#$ctxdisp"
(+ MSYS_YES MSOPC_STFB cb1sel cb2sel cb1incr cb2incr rc3 rc2 ctxdisp)
(nop)
()
)
(dni dfbr "dfbr cb1sel,cb2sel,reg,W/O1,W/O2,mode,cr/c,ctxdisp"
((MACH ms2) USES-FRSR2)
"dfbr #$cb1sel,#$cb2sel,$frsr2,#$length,#$rownum1,#$rownum2,#$rc2,#$ctxdisp"
(+ MSYS_YES MSOPC_FBCB cb1sel cb2sel frsr2 length rownum1 rownum2 rc2 ctxdisp)
(nop)
()
)
|