1 1.1 christos /* Opcode table for m680[012346]0/m6888[12]/m68851/mcf5200. 2 1.11 christos Copyright (C) 1989-2024 Free Software Foundation, Inc. 3 1.1 christos 4 1.1 christos This file is part of the GNU opcodes library. 5 1.1 christos 6 1.1 christos This library is free software; you can redistribute it and/or modify 7 1.1 christos it under the terms of the GNU General Public License as published by 8 1.1 christos the Free Software Foundation; either version 3, or (at your option) 9 1.1 christos any later version. 10 1.1 christos 11 1.1 christos It is distributed in the hope that it will be useful, but WITHOUT 12 1.1 christos ANY WARRANTY; without even the implied warranty of MERCHANTABILITY 13 1.1 christos or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public 14 1.1 christos License for more details. 15 1.1 christos 16 1.1 christos You should have received a copy of the GNU General Public License 17 1.1 christos along with this file; see the file COPYING. If not, write to the 18 1.1 christos Free Software Foundation, 51 Franklin Street - Fifth Floor, Boston, 19 1.1 christos MA 02110-1301, USA. */ 20 1.1 christos 21 1.1 christos #include "sysdep.h" 22 1.1 christos #include "opcode/m68k.h" 23 1.1 christos 24 1.1 christos #define one(x) ((unsigned int) (x) << 16) 25 1.1 christos #define two(x, y) (((unsigned int) (x) << 16) + (y)) 26 1.1 christos 27 1.1 christos /* The assembler requires that all instances of the same mnemonic must 28 1.1 christos be consecutive. If they aren't, the assembler will bomb at 29 1.1 christos runtime. */ 30 1.1 christos 31 1.1 christos /* Format strings consist of pairs of characters. The first describes 32 1.1 christos the type of the operand and the second describes the encoding. 33 1.1 christos include/opcodes/m68k.h describes them in detail. */ 34 1.1 christos 35 1.1 christos const struct m68k_opcode m68k_opcodes[] = 36 1.1 christos { 37 1.1 christos {"abcd", 2, one(0140400), one(0170770), "DsDd", m68000up }, 38 1.1 christos {"abcd", 2, one(0140410), one(0170770), "-s-d", m68000up }, 39 1.1 christos 40 1.1 christos {"addaw", 2, one(0150300), one(0170700), "*wAd", m68000up }, 41 1.1 christos {"addal", 2, one(0150700), one(0170700), "*lAd", m68000up | mcfisa_a }, 42 1.1 christos 43 1.1 christos {"addib", 4, one(0003000), one(0177700), "#b$s", m68000up }, 44 1.1 christos {"addiw", 4, one(0003100), one(0177700), "#w$s", m68000up }, 45 1.1 christos {"addil", 6, one(0003200), one(0177700), "#l$s", m68000up }, 46 1.1 christos {"addil", 6, one(0003200), one(0177700), "#lDs", mcfisa_a }, 47 1.1 christos 48 1.1 christos {"addqb", 2, one(0050000), one(0170700), "Qd$b", m68000up }, 49 1.1 christos {"addqw", 2, one(0050100), one(0170700), "Qd%w", m68000up }, 50 1.1 christos {"addql", 2, one(0050200), one(0170700), "Qd%l", m68000up | mcfisa_a }, 51 1.1 christos 52 1.1 christos /* The add opcode can generate the adda, addi, and addq instructions. */ 53 1.1 christos {"addb", 2, one(0050000), one(0170700), "Qd$b", m68000up }, 54 1.1 christos {"addb", 4, one(0003000), one(0177700), "#b$s", m68000up }, 55 1.1 christos {"addb", 2, one(0150000), one(0170700), ";bDd", m68000up }, 56 1.1 christos {"addb", 2, one(0150400), one(0170700), "Dd~b", m68000up }, 57 1.1 christos {"addw", 2, one(0050100), one(0170700), "Qd%w", m68000up }, 58 1.1 christos {"addw", 2, one(0150300), one(0170700), "*wAd", m68000up }, 59 1.1 christos {"addw", 4, one(0003100), one(0177700), "#w$s", m68000up }, 60 1.1 christos {"addw", 2, one(0150100), one(0170700), "*wDd", m68000up }, 61 1.1 christos {"addw", 2, one(0150500), one(0170700), "Dd~w", m68000up }, 62 1.1 christos {"addl", 2, one(0050200), one(0170700), "Qd%l", m68000up | mcfisa_a }, 63 1.1 christos {"addl", 6, one(0003200), one(0177700), "#l$s", m68000up }, 64 1.1 christos {"addl", 6, one(0003200), one(0177700), "#lDs", mcfisa_a }, 65 1.1 christos {"addl", 2, one(0150700), one(0170700), "*lAd", m68000up | mcfisa_a }, 66 1.1 christos {"addl", 2, one(0150200), one(0170700), "*lDd", m68000up | mcfisa_a }, 67 1.1 christos {"addl", 2, one(0150600), one(0170700), "Dd~l", m68000up | mcfisa_a }, 68 1.1 christos 69 1.1 christos {"addxb", 2, one(0150400), one(0170770), "DsDd", m68000up }, 70 1.1 christos {"addxb", 2, one(0150410), one(0170770), "-s-d", m68000up }, 71 1.1 christos {"addxw", 2, one(0150500), one(0170770), "DsDd", m68000up }, 72 1.1 christos {"addxw", 2, one(0150510), one(0170770), "-s-d", m68000up }, 73 1.1 christos {"addxl", 2, one(0150600), one(0170770), "DsDd", m68000up | mcfisa_a }, 74 1.1 christos {"addxl", 2, one(0150610), one(0170770), "-s-d", m68000up }, 75 1.1 christos 76 1.1 christos {"andib", 4, one(0001000), one(0177700), "#b$s", m68000up }, 77 1.1 christos {"andib", 4, one(0001074), one(0177777), "#bCs", m68000up }, 78 1.1 christos {"andiw", 4, one(0001100), one(0177700), "#w$s", m68000up }, 79 1.1 christos {"andiw", 4, one(0001174), one(0177777), "#wSs", m68000up }, 80 1.1 christos {"andil", 6, one(0001200), one(0177700), "#l$s", m68000up }, 81 1.1 christos {"andil", 6, one(0001200), one(0177700), "#lDs", mcfisa_a }, 82 1.1 christos {"andi", 4, one(0001100), one(0177700), "#w$s", m68000up }, 83 1.1 christos {"andi", 4, one(0001074), one(0177777), "#bCs", m68000up }, 84 1.1 christos {"andi", 4, one(0001174), one(0177777), "#wSs", m68000up }, 85 1.1 christos 86 1.1 christos /* The and opcode can generate the andi instruction. */ 87 1.1 christos {"andb", 4, one(0001000), one(0177700), "#b$s", m68000up }, 88 1.1 christos {"andb", 4, one(0001074), one(0177777), "#bCs", m68000up }, 89 1.1 christos {"andb", 2, one(0140000), one(0170700), ";bDd", m68000up }, 90 1.1 christos {"andb", 2, one(0140400), one(0170700), "Dd~b", m68000up }, 91 1.1 christos {"andw", 4, one(0001100), one(0177700), "#w$s", m68000up }, 92 1.1 christos {"andw", 4, one(0001174), one(0177777), "#wSs", m68000up }, 93 1.1 christos {"andw", 2, one(0140100), one(0170700), ";wDd", m68000up }, 94 1.1 christos {"andw", 2, one(0140500), one(0170700), "Dd~w", m68000up }, 95 1.1 christos {"andl", 6, one(0001200), one(0177700), "#l$s", m68000up }, 96 1.1 christos {"andl", 6, one(0001200), one(0177700), "#lDs", mcfisa_a }, 97 1.1 christos {"andl", 2, one(0140200), one(0170700), ";lDd", m68000up | mcfisa_a }, 98 1.1 christos {"andl", 2, one(0140600), one(0170700), "Dd~l", m68000up | mcfisa_a }, 99 1.1 christos {"and", 4, one(0001100), one(0177700), "#w$w", m68000up }, 100 1.1 christos {"and", 4, one(0001074), one(0177777), "#bCs", m68000up }, 101 1.1 christos {"and", 4, one(0001174), one(0177777), "#wSs", m68000up }, 102 1.1 christos {"and", 2, one(0140100), one(0170700), ";wDd", m68000up }, 103 1.1 christos {"and", 2, one(0140500), one(0170700), "Dd~w", m68000up }, 104 1.1 christos 105 1.1 christos {"aslb", 2, one(0160400), one(0170770), "QdDs", m68000up }, 106 1.1 christos {"aslb", 2, one(0160440), one(0170770), "DdDs", m68000up }, 107 1.1 christos {"aslw", 2, one(0160500), one(0170770), "QdDs", m68000up }, 108 1.1 christos {"aslw", 2, one(0160540), one(0170770), "DdDs", m68000up }, 109 1.1 christos {"aslw", 2, one(0160700), one(0177700), "~s", m68000up }, 110 1.1 christos {"asll", 2, one(0160600), one(0170770), "QdDs", m68000up | mcfisa_a }, 111 1.1 christos {"asll", 2, one(0160640), one(0170770), "DdDs", m68000up | mcfisa_a }, 112 1.1 christos 113 1.1 christos {"asrb", 2, one(0160000), one(0170770), "QdDs", m68000up }, 114 1.1 christos {"asrb", 2, one(0160040), one(0170770), "DdDs", m68000up }, 115 1.1 christos {"asrw", 2, one(0160100), one(0170770), "QdDs", m68000up }, 116 1.1 christos {"asrw", 2, one(0160140), one(0170770), "DdDs", m68000up }, 117 1.1 christos {"asrw", 2, one(0160300), one(0177700), "~s", m68000up }, 118 1.1 christos {"asrl", 2, one(0160200), one(0170770), "QdDs", m68000up | mcfisa_a }, 119 1.1 christos {"asrl", 2, one(0160240), one(0170770), "DdDs", m68000up | mcfisa_a }, 120 1.1 christos 121 1.1 christos {"bhiw", 2, one(0061000), one(0177777), "BW", m68000up | mcfisa_a }, 122 1.1 christos {"blsw", 2, one(0061400), one(0177777), "BW", m68000up | mcfisa_a }, 123 1.1 christos {"bccw", 2, one(0062000), one(0177777), "BW", m68000up | mcfisa_a }, 124 1.1 christos {"bcsw", 2, one(0062400), one(0177777), "BW", m68000up | mcfisa_a }, 125 1.1 christos {"bnew", 2, one(0063000), one(0177777), "BW", m68000up | mcfisa_a }, 126 1.1 christos {"beqw", 2, one(0063400), one(0177777), "BW", m68000up | mcfisa_a }, 127 1.1 christos {"bvcw", 2, one(0064000), one(0177777), "BW", m68000up | mcfisa_a }, 128 1.1 christos {"bvsw", 2, one(0064400), one(0177777), "BW", m68000up | mcfisa_a }, 129 1.1 christos {"bplw", 2, one(0065000), one(0177777), "BW", m68000up | mcfisa_a }, 130 1.1 christos {"bmiw", 2, one(0065400), one(0177777), "BW", m68000up | mcfisa_a }, 131 1.1 christos {"bgew", 2, one(0066000), one(0177777), "BW", m68000up | mcfisa_a }, 132 1.1 christos {"bltw", 2, one(0066400), one(0177777), "BW", m68000up | mcfisa_a }, 133 1.1 christos {"bgtw", 2, one(0067000), one(0177777), "BW", m68000up | mcfisa_a }, 134 1.1 christos {"blew", 2, one(0067400), one(0177777), "BW", m68000up | mcfisa_a }, 135 1.1 christos 136 1.1 christos {"bhil", 2, one(0061377), one(0177777), "BL", m68020up | cpu32 | fido_a | mcfisa_b | mcfisa_c}, 137 1.1 christos {"blsl", 2, one(0061777), one(0177777), "BL", m68020up | cpu32 | fido_a | mcfisa_b | mcfisa_c}, 138 1.1 christos {"bccl", 2, one(0062377), one(0177777), "BL", m68020up | cpu32 | fido_a | mcfisa_b | mcfisa_c}, 139 1.1 christos {"bcsl", 2, one(0062777), one(0177777), "BL", m68020up | cpu32 | fido_a | mcfisa_b | mcfisa_c}, 140 1.1 christos {"bnel", 2, one(0063377), one(0177777), "BL", m68020up | cpu32 | fido_a | mcfisa_b | mcfisa_c}, 141 1.1 christos {"beql", 2, one(0063777), one(0177777), "BL", m68020up | cpu32 | fido_a | mcfisa_b | mcfisa_c}, 142 1.1 christos {"bvcl", 2, one(0064377), one(0177777), "BL", m68020up | cpu32 | fido_a | mcfisa_b | mcfisa_c}, 143 1.1 christos {"bvsl", 2, one(0064777), one(0177777), "BL", m68020up | cpu32 | fido_a | mcfisa_b | mcfisa_c}, 144 1.1 christos {"bpll", 2, one(0065377), one(0177777), "BL", m68020up | cpu32 | fido_a | mcfisa_b | mcfisa_c}, 145 1.1 christos {"bmil", 2, one(0065777), one(0177777), "BL", m68020up | cpu32 | fido_a | mcfisa_b | mcfisa_c}, 146 1.1 christos {"bgel", 2, one(0066377), one(0177777), "BL", m68020up | cpu32 | fido_a | mcfisa_b | mcfisa_c}, 147 1.1 christos {"bltl", 2, one(0066777), one(0177777), "BL", m68020up | cpu32 | fido_a | mcfisa_b | mcfisa_c}, 148 1.1 christos {"bgtl", 2, one(0067377), one(0177777), "BL", m68020up | cpu32 | fido_a | mcfisa_b | mcfisa_c}, 149 1.1 christos {"blel", 2, one(0067777), one(0177777), "BL", m68020up | cpu32 | fido_a | mcfisa_b | mcfisa_c}, 150 1.1 christos 151 1.1 christos {"bhis", 2, one(0061000), one(0177400), "BB", m68000up | mcfisa_a }, 152 1.1 christos {"blss", 2, one(0061400), one(0177400), "BB", m68000up | mcfisa_a }, 153 1.1 christos {"bccs", 2, one(0062000), one(0177400), "BB", m68000up | mcfisa_a }, 154 1.1 christos {"bcss", 2, one(0062400), one(0177400), "BB", m68000up | mcfisa_a }, 155 1.1 christos {"bnes", 2, one(0063000), one(0177400), "BB", m68000up | mcfisa_a }, 156 1.1 christos {"beqs", 2, one(0063400), one(0177400), "BB", m68000up | mcfisa_a }, 157 1.1 christos {"bvcs", 2, one(0064000), one(0177400), "BB", m68000up | mcfisa_a }, 158 1.1 christos {"bvss", 2, one(0064400), one(0177400), "BB", m68000up | mcfisa_a }, 159 1.1 christos {"bpls", 2, one(0065000), one(0177400), "BB", m68000up | mcfisa_a }, 160 1.1 christos {"bmis", 2, one(0065400), one(0177400), "BB", m68000up | mcfisa_a }, 161 1.1 christos {"bges", 2, one(0066000), one(0177400), "BB", m68000up | mcfisa_a }, 162 1.1 christos {"blts", 2, one(0066400), one(0177400), "BB", m68000up | mcfisa_a }, 163 1.1 christos {"bgts", 2, one(0067000), one(0177400), "BB", m68000up | mcfisa_a }, 164 1.1 christos {"bles", 2, one(0067400), one(0177400), "BB", m68000up | mcfisa_a }, 165 1.1 christos 166 1.1 christos {"jhi", 2, one(0061000), one(0177400), "Bg", m68000up | mcfisa_a }, 167 1.1 christos {"jls", 2, one(0061400), one(0177400), "Bg", m68000up | mcfisa_a }, 168 1.1 christos {"jcc", 2, one(0062000), one(0177400), "Bg", m68000up | mcfisa_a }, 169 1.1 christos {"jcs", 2, one(0062400), one(0177400), "Bg", m68000up | mcfisa_a }, 170 1.1 christos {"jne", 2, one(0063000), one(0177400), "Bg", m68000up | mcfisa_a }, 171 1.1 christos {"jeq", 2, one(0063400), one(0177400), "Bg", m68000up | mcfisa_a }, 172 1.1 christos {"jvc", 2, one(0064000), one(0177400), "Bg", m68000up | mcfisa_a }, 173 1.1 christos {"jvs", 2, one(0064400), one(0177400), "Bg", m68000up | mcfisa_a }, 174 1.1 christos {"jpl", 2, one(0065000), one(0177400), "Bg", m68000up | mcfisa_a }, 175 1.1 christos {"jmi", 2, one(0065400), one(0177400), "Bg", m68000up | mcfisa_a }, 176 1.1 christos {"jge", 2, one(0066000), one(0177400), "Bg", m68000up | mcfisa_a }, 177 1.1 christos {"jlt", 2, one(0066400), one(0177400), "Bg", m68000up | mcfisa_a }, 178 1.1 christos {"jgt", 2, one(0067000), one(0177400), "Bg", m68000up | mcfisa_a }, 179 1.1 christos {"jle", 2, one(0067400), one(0177400), "Bg", m68000up | mcfisa_a }, 180 1.1 christos 181 1.1 christos {"bchg", 2, one(0000500), one(0170700), "Dd$s", m68000up | mcfisa_a }, 182 1.1 christos {"bchg", 4, one(0004100), one(0177700), "#b$s", m68000up }, 183 1.1 christos {"bchg", 4, one(0004100), one(0177700), "#bqs", mcfisa_a }, 184 1.1 christos 185 1.1 christos {"bclr", 2, one(0000600), one(0170700), "Dd$s", m68000up | mcfisa_a }, 186 1.1 christos {"bclr", 4, one(0004200), one(0177700), "#b$s", m68000up }, 187 1.1 christos {"bclr", 4, one(0004200), one(0177700), "#bqs", mcfisa_a }, 188 1.1 christos 189 1.1 christos {"bfchg", 4, two(0165300, 0), two(0177700, 0170000), "?sO2O3", m68020up }, 190 1.1 christos {"bfclr", 4, two(0166300, 0), two(0177700, 0170000), "?sO2O3", m68020up }, 191 1.1 christos {"bfexts", 4, two(0165700, 0), two(0177700, 0100000), "/sO2O3D1", m68020up }, 192 1.1 christos {"bfextu", 4, two(0164700, 0), two(0177700, 0100000), "/sO2O3D1", m68020up }, 193 1.1 christos {"bfffo", 4, two(0166700, 0), two(0177700, 0100000), "/sO2O3D1", m68020up }, 194 1.1 christos {"bfins", 4, two(0167700, 0), two(0177700, 0100000), "D1?sO2O3", m68020up }, 195 1.1 christos {"bfset", 4, two(0167300, 0), two(0177700, 0170000), "?sO2O3", m68020up }, 196 1.1 christos {"bftst", 4, two(0164300, 0), two(0177700, 0170000), "/sO2O3", m68020up }, 197 1.1 christos 198 1.1 christos {"bgnd", 2, one(0045372), one(0177777), "", cpu32 | fido_a }, 199 1.1 christos 200 1.1 christos {"bitrev", 2, one(0000300), one(0177770), "Ds", mcfisa_aa | mcfisa_c}, 201 1.1 christos 202 1.1 christos {"bkpt", 2, one(0044110), one(0177770), "ts", m68010up }, 203 1.1 christos 204 1.1 christos {"braw", 2, one(0060000), one(0177777), "BW", m68000up | mcfisa_a }, 205 1.1 christos {"bral", 2, one(0060377), one(0177777), "BL", m68020up | cpu32 | fido_a | mcfisa_b}, 206 1.1 christos {"bras", 2, one(0060000), one(0177400), "BB", m68000up | mcfisa_a }, 207 1.1 christos 208 1.1 christos {"bset", 2, one(0000700), one(0170700), "Dd$s", m68000up | mcfisa_a }, 209 1.1 christos {"bset", 2, one(0000700), one(0170700), "Ddvs", mcfisa_a }, 210 1.1 christos {"bset", 4, one(0004300), one(0177700), "#b$s", m68000up }, 211 1.1 christos {"bset", 4, one(0004300), one(0177700), "#bqs", mcfisa_a }, 212 1.1 christos 213 1.1 christos {"bsrw", 2, one(0060400), one(0177777), "BW", m68000up | mcfisa_a }, 214 1.1 christos {"bsrl", 2, one(0060777), one(0177777), "BL", m68020up | cpu32 | fido_a | mcfisa_b | mcfisa_c}, 215 1.1 christos {"bsrs", 2, one(0060400), one(0177400), "BB", m68000up | mcfisa_a }, 216 1.1 christos 217 1.1 christos {"btst", 2, one(0000400), one(0170700), "Dd;b", m68000up | mcfisa_a }, 218 1.1 christos {"btst", 4, one(0004000), one(0177700), "#b@s", m68000up }, 219 1.1 christos {"btst", 4, one(0004000), one(0177700), "#bqs", mcfisa_a }, 220 1.1 christos 221 1.1 christos {"byterev", 2, one(0001300), one(0177770), "Ds", mcfisa_aa | mcfisa_c}, 222 1.1 christos 223 1.1 christos {"callm", 4, one(0003300), one(0177700), "#b!s", m68020 }, 224 1.1 christos 225 1.1 christos {"cas2w", 6, two(0006374,0), two(0177777,0007070), "D3D6D2D5r1r4", m68020up }, 226 1.1 christos {"cas2w", 6, two(0006374,0), two(0177777,0007070), "D3D6D2D5R1R4", m68020up }, 227 1.1 christos {"cas2l", 6, two(0007374,0), two(0177777,0007070), "D3D6D2D5r1r4", m68020up }, 228 1.1 christos {"cas2l", 6, two(0007374,0), two(0177777,0007070), "D3D6D2D5R1R4", m68020up }, 229 1.1 christos 230 1.1 christos {"casb", 4, two(0005300, 0), two(0177700, 0177070), "D3D2~s", m68020up }, 231 1.1 christos {"casw", 4, two(0006300, 0), two(0177700, 0177070), "D3D2~s", m68020up }, 232 1.1 christos {"casl", 4, two(0007300, 0), two(0177700, 0177070), "D3D2~s", m68020up }, 233 1.1 christos 234 1.1 christos {"chk2b", 4, two(0000300,0004000), two(0177700,07777), "!sR1", m68020up | cpu32 | fido_a }, 235 1.1 christos {"chk2w", 4, two(0001300,0004000), two(0177700,07777), "!sR1", m68020up | cpu32 | fido_a }, 236 1.1 christos {"chk2l", 4, two(0002300,0004000), two(0177700,07777), "!sR1", m68020up | cpu32 | fido_a }, 237 1.1 christos 238 1.10 christos {"chkl", 2, one(0040400), one(0170700), ";lDd", m68020up }, 239 1.1 christos {"chkw", 2, one(0040600), one(0170700), ";wDd", m68000up }, 240 1.1 christos 241 1.1 christos #define SCOPE_LINE (0x1 << 3) 242 1.1 christos #define SCOPE_PAGE (0x2 << 3) 243 1.1 christos #define SCOPE_ALL (0x3 << 3) 244 1.1 christos 245 1.1 christos {"cinva", 2, one(0xf400|SCOPE_ALL), one(0xff38), "ce", m68040up }, 246 1.1 christos {"cinvl", 2, one(0xf400|SCOPE_LINE), one(0xff38), "ceas", m68040up }, 247 1.1 christos {"cinvp", 2, one(0xf400|SCOPE_PAGE), one(0xff38), "ceas", m68040up }, 248 1.1 christos 249 1.1 christos {"cpusha", 2, one(0xf420|SCOPE_ALL), one(0xff38), "ce", m68040up }, 250 1.1 christos {"cpushl", 2, one(0xf420|SCOPE_LINE), one(0xff38), "ceas", m68040up | mcfisa_a }, 251 1.1 christos {"cpushp", 2, one(0xf420|SCOPE_PAGE), one(0xff38), "ceas", m68040up }, 252 1.1 christos 253 1.1 christos #undef SCOPE_LINE 254 1.1 christos #undef SCOPE_PAGE 255 1.1 christos #undef SCOPE_ALL 256 1.1 christos 257 1.1 christos {"clrb", 2, one(0041000), one(0177700), "$s", m68000up | mcfisa_a }, 258 1.1 christos {"clrw", 2, one(0041100), one(0177700), "$s", m68000up | mcfisa_a }, 259 1.1 christos {"clrl", 2, one(0041200), one(0177700), "$s", m68000up | mcfisa_a }, 260 1.1 christos 261 1.1 christos {"cmp2b", 4, two(0000300,0), two(0177700,07777), "!sR1", m68020up | cpu32 | fido_a }, 262 1.1 christos {"cmp2w", 4, two(0001300,0), two(0177700,07777), "!sR1", m68020up | cpu32 | fido_a }, 263 1.1 christos {"cmp2l", 4, two(0002300,0), two(0177700,07777), "!sR1", m68020up | cpu32 | fido_a }, 264 1.1 christos 265 1.1 christos {"cmpaw", 2, one(0130300), one(0170700), "*wAd", m68000up }, 266 1.1 christos {"cmpal", 2, one(0130700), one(0170700), "*lAd", m68000up | mcfisa_a }, 267 1.1 christos 268 1.9 christos {"cmpib", 4, one(0006000), one(0177700), "#b$s", m68000 | m68010 }, 269 1.9 christos {"cmpib", 4, one(0006000), one(0177700), "#b@s", m68020up | cpu32 | fido_a }, 270 1.1 christos {"cmpib", 4, one(0006000), one(0177700), "#bDs", mcfisa_b | mcfisa_c }, 271 1.9 christos {"cmpiw", 4, one(0006100), one(0177700), "#w$s", m68000 | m68010 }, 272 1.9 christos {"cmpiw", 4, one(0006100), one(0177700), "#w@s", m68020up | cpu32 | fido_a }, 273 1.1 christos {"cmpiw", 4, one(0006100), one(0177700), "#wDs", mcfisa_b | mcfisa_c }, 274 1.9 christos {"cmpil", 6, one(0006200), one(0177700), "#l$s", m68000 | m68010 }, 275 1.9 christos {"cmpil", 6, one(0006200), one(0177700), "#l@s", m68020up | cpu32 | fido_a }, 276 1.1 christos {"cmpil", 6, one(0006200), one(0177700), "#lDs", mcfisa_a }, 277 1.1 christos 278 1.1 christos {"cmpmb", 2, one(0130410), one(0170770), "+s+d", m68000up }, 279 1.1 christos {"cmpmw", 2, one(0130510), one(0170770), "+s+d", m68000up }, 280 1.1 christos {"cmpml", 2, one(0130610), one(0170770), "+s+d", m68000up }, 281 1.1 christos 282 1.1 christos /* The cmp opcode can generate the cmpa, cmpm, and cmpi instructions. */ 283 1.9 christos {"cmpb", 4, one(0006000), one(0177700), "#b$s", m68000 | m68010 }, 284 1.9 christos {"cmpb", 4, one(0006000), one(0177700), "#b@s", m68020up | cpu32 | fido_a }, 285 1.1 christos {"cmpb", 4, one(0006000), one(0177700), "#bDs", mcfisa_b | mcfisa_c }, 286 1.1 christos {"cmpb", 2, one(0130410), one(0170770), "+s+d", m68000up }, 287 1.1 christos {"cmpb", 2, one(0130000), one(0170700), ";bDd", m68000up }, 288 1.1 christos {"cmpb", 2, one(0130000), one(0170700), "*bDd", mcfisa_b | mcfisa_c }, 289 1.1 christos {"cmpw", 2, one(0130300), one(0170700), "*wAd", m68000up }, 290 1.9 christos {"cmpw", 4, one(0006100), one(0177700), "#w$s", m68000 | m68010 }, 291 1.9 christos {"cmpw", 4, one(0006100), one(0177700), "#w@s", m68020up | cpu32 | fido_a }, 292 1.1 christos {"cmpw", 4, one(0006100), one(0177700), "#wDs", mcfisa_b | mcfisa_c }, 293 1.1 christos {"cmpw", 2, one(0130510), one(0170770), "+s+d", m68000up }, 294 1.1 christos {"cmpw", 2, one(0130100), one(0170700), "*wDd", m68000up | mcfisa_b | mcfisa_c }, 295 1.1 christos {"cmpl", 2, one(0130700), one(0170700), "*lAd", m68000up | mcfisa_a }, 296 1.9 christos {"cmpl", 6, one(0006200), one(0177700), "#l$s", m68000 | m68010 }, 297 1.9 christos {"cmpl", 6, one(0006200), one(0177700), "#l@s", m68020up | cpu32 | fido_a }, 298 1.1 christos {"cmpl", 6, one(0006200), one(0177700), "#lDs", mcfisa_a }, 299 1.1 christos {"cmpl", 2, one(0130610), one(0170770), "+s+d", m68000up }, 300 1.1 christos {"cmpl", 2, one(0130200), one(0170700), "*lDd", m68000up | mcfisa_a }, 301 1.6 christos 302 1.1 christos {"cp0bcbusy",2, one (0176300), one (01777770), "BW", mcfisa_a}, 303 1.1 christos {"cp1bcbusy",2, one (0177300), one (01777770), "BW", mcfisa_a}, 304 1.1 christos {"cp0nop", 4, two (0176000,0), two (01777477,0170777), "jE", mcfisa_a}, 305 1.1 christos {"cp1nop", 4, two (0177000,0), two (01777477,0170777), "jE", mcfisa_a}, 306 1.1 christos /* These all have 2 opcode words, but no fixed bits in the second 307 1.1 christos word. We use a leading ' ' in the args string to indicate the 308 1.1 christos extra opcode word. */ 309 1.1 christos {"cp0ldb", 6, one (0176000), one (01777700), ".pwR1jEK3", mcfisa_a}, 310 1.1 christos {"cp1ldb", 6, one (0177000), one (01777700), ".pwR1jEK3", mcfisa_a}, 311 1.1 christos {"cp0ldw", 6, one (0176100), one (01777700), ".pwR1jEK3", mcfisa_a}, 312 1.1 christos {"cp1ldw", 6, one (0177100), one (01777700), ".pwR1jEK3", mcfisa_a}, 313 1.1 christos {"cp0ldl", 6, one (0176200), one (01777700), ".pwR1jEK3", mcfisa_a}, 314 1.1 christos {"cp1ldl", 6, one (0177200), one (01777700), ".pwR1jEK3", mcfisa_a}, 315 1.1 christos {"cp0ld", 6, one (0176200), one (01777700), ".pwR1jEK3", mcfisa_a}, 316 1.1 christos {"cp1ld", 6, one (0177200), one (01777700), ".pwR1jEK3", mcfisa_a}, 317 1.1 christos {"cp0stb", 6, one (0176400), one (01777700), ".R1pwjEK3", mcfisa_a}, 318 1.1 christos {"cp1stb", 6, one (0177400), one (01777700), ".R1pwjEK3", mcfisa_a}, 319 1.1 christos {"cp0stw", 6, one (0176500), one (01777700), ".R1pwjEK3", mcfisa_a}, 320 1.1 christos {"cp1stw", 6, one (0177500), one (01777700), ".R1pwjEK3", mcfisa_a}, 321 1.1 christos {"cp0stl", 6, one (0176600), one (01777700), ".R1pwjEK3", mcfisa_a}, 322 1.1 christos {"cp1stl", 6, one (0177600), one (01777700), ".R1pwjEK3", mcfisa_a}, 323 1.1 christos {"cp0st", 6, one (0176600), one (01777700), ".R1pwjEK3", mcfisa_a}, 324 1.1 christos {"cp1st", 6, one (0177600), one (01777700), ".R1pwjEK3", mcfisa_a}, 325 1.6 christos 326 1.1 christos {"dbcc", 2, one(0052310), one(0177770), "DsBw", m68000up }, 327 1.1 christos {"dbcs", 2, one(0052710), one(0177770), "DsBw", m68000up }, 328 1.1 christos {"dbeq", 2, one(0053710), one(0177770), "DsBw", m68000up }, 329 1.1 christos {"dbf", 2, one(0050710), one(0177770), "DsBw", m68000up }, 330 1.1 christos {"dbge", 2, one(0056310), one(0177770), "DsBw", m68000up }, 331 1.1 christos {"dbgt", 2, one(0057310), one(0177770), "DsBw", m68000up }, 332 1.1 christos {"dbhi", 2, one(0051310), one(0177770), "DsBw", m68000up }, 333 1.1 christos {"dble", 2, one(0057710), one(0177770), "DsBw", m68000up }, 334 1.1 christos {"dbls", 2, one(0051710), one(0177770), "DsBw", m68000up }, 335 1.1 christos {"dblt", 2, one(0056710), one(0177770), "DsBw", m68000up }, 336 1.1 christos {"dbmi", 2, one(0055710), one(0177770), "DsBw", m68000up }, 337 1.1 christos {"dbne", 2, one(0053310), one(0177770), "DsBw", m68000up }, 338 1.1 christos {"dbpl", 2, one(0055310), one(0177770), "DsBw", m68000up }, 339 1.1 christos {"dbt", 2, one(0050310), one(0177770), "DsBw", m68000up }, 340 1.1 christos {"dbvc", 2, one(0054310), one(0177770), "DsBw", m68000up }, 341 1.1 christos {"dbvs", 2, one(0054710), one(0177770), "DsBw", m68000up }, 342 1.1 christos 343 1.1 christos {"divsw", 2, one(0100700), one(0170700), ";wDd", m68000up | mcfhwdiv }, 344 1.1 christos 345 1.1 christos {"divsl", 4, two(0046100,0006000),two(0177700,0107770),";lD3D1", m68020up | cpu32 | fido_a }, 346 1.1 christos {"divsl", 4, two(0046100,0004000),two(0177700,0107770),";lDD", m68020up | cpu32 | fido_a }, 347 1.1 christos {"divsl", 4, two(0046100,0004000),two(0177700,0107770),"qsDD", mcfhwdiv }, 348 1.1 christos 349 1.1 christos {"divsll", 4, two(0046100,0004000),two(0177700,0107770),";lD3D1",m68020up | cpu32 | fido_a }, 350 1.1 christos {"divsll", 4, two(0046100,0004000),two(0177700,0107770),";lDD", m68020up | cpu32 | fido_a }, 351 1.1 christos 352 1.1 christos {"divuw", 2, one(0100300), one(0170700), ";wDd", m68000up | mcfhwdiv }, 353 1.1 christos 354 1.1 christos {"divul", 4, two(0046100,0002000),two(0177700,0107770),";lD3D1", m68020up | cpu32 | fido_a }, 355 1.1 christos {"divul", 4, two(0046100,0000000),two(0177700,0107770),";lDD", m68020up | cpu32 | fido_a }, 356 1.1 christos {"divul", 4, two(0046100,0000000),two(0177700,0107770),"qsDD", mcfhwdiv }, 357 1.1 christos 358 1.1 christos {"divull", 4, two(0046100,0000000),two(0177700,0107770),";lD3D1",m68020up | cpu32 | fido_a }, 359 1.1 christos {"divull", 4, two(0046100,0000000),two(0177700,0107770),";lDD", m68020up | cpu32 | fido_a }, 360 1.1 christos 361 1.1 christos {"eorib", 4, one(0005000), one(0177700), "#b$s", m68000up }, 362 1.1 christos {"eorib", 4, one(0005074), one(0177777), "#bCs", m68000up }, 363 1.1 christos {"eoriw", 4, one(0005100), one(0177700), "#w$s", m68000up }, 364 1.1 christos {"eoriw", 4, one(0005174), one(0177777), "#wSs", m68000up }, 365 1.1 christos {"eoril", 6, one(0005200), one(0177700), "#l$s", m68000up }, 366 1.1 christos {"eoril", 6, one(0005200), one(0177700), "#lDs", mcfisa_a }, 367 1.1 christos {"eori", 4, one(0005074), one(0177777), "#bCs", m68000up }, 368 1.1 christos {"eori", 4, one(0005174), one(0177777), "#wSs", m68000up }, 369 1.1 christos {"eori", 4, one(0005100), one(0177700), "#w$s", m68000up }, 370 1.1 christos 371 1.1 christos /* The eor opcode can generate the eori instruction. */ 372 1.1 christos {"eorb", 4, one(0005000), one(0177700), "#b$s", m68000up }, 373 1.1 christos {"eorb", 4, one(0005074), one(0177777), "#bCs", m68000up }, 374 1.1 christos {"eorb", 2, one(0130400), one(0170700), "Dd$s", m68000up }, 375 1.1 christos {"eorw", 4, one(0005100), one(0177700), "#w$s", m68000up }, 376 1.1 christos {"eorw", 4, one(0005174), one(0177777), "#wSs", m68000up }, 377 1.1 christos {"eorw", 2, one(0130500), one(0170700), "Dd$s", m68000up }, 378 1.1 christos {"eorl", 6, one(0005200), one(0177700), "#l$s", m68000up }, 379 1.1 christos {"eorl", 6, one(0005200), one(0177700), "#lDs", mcfisa_a }, 380 1.1 christos {"eorl", 2, one(0130600), one(0170700), "Dd$s", m68000up | mcfisa_a }, 381 1.1 christos {"eor", 4, one(0005074), one(0177777), "#bCs", m68000up }, 382 1.1 christos {"eor", 4, one(0005174), one(0177777), "#wSs", m68000up }, 383 1.1 christos {"eor", 4, one(0005100), one(0177700), "#w$s", m68000up }, 384 1.1 christos {"eor", 2, one(0130500), one(0170700), "Dd$s", m68000up }, 385 1.6 christos 386 1.1 christos {"exg", 2, one(0140500), one(0170770), "DdDs", m68000up }, 387 1.1 christos {"exg", 2, one(0140510), one(0170770), "AdAs", m68000up }, 388 1.1 christos {"exg", 2, one(0140610), one(0170770), "DdAs", m68000up }, 389 1.1 christos {"exg", 2, one(0140610), one(0170770), "AsDd", m68000up }, 390 1.1 christos 391 1.1 christos {"extw", 2, one(0044200), one(0177770), "Ds", m68000up|mcfisa_a }, 392 1.1 christos {"extl", 2, one(0044300), one(0177770), "Ds", m68000up|mcfisa_a }, 393 1.1 christos {"extbl", 2, one(0044700), one(0177770), "Ds", m68020up | cpu32 | fido_a | mcfisa_a }, 394 1.1 christos 395 1.1 christos {"ff1", 2, one(0002300), one(0177770), "Ds", mcfisa_aa | mcfisa_c}, 396 1.1 christos 397 1.1 christos /* float stuff starts here */ 398 1.1 christos 399 1.1 christos {"fabsb", 4, two(0xF000, 0x5818), two(0xF1C0, 0xFC7F), "Ii;bF7", mfloat }, 400 1.1 christos {"fabsb", 4, two(0xF000, 0x5818), two(0xF1C0, 0xFC7F), "IibsF7", cfloat }, 401 1.1 christos {"fabsd", 4, two(0xF000, 0x0018), two(0xF1C0, 0xE07F), "IiF8F7", cfloat }, 402 1.1 christos {"fabsd", 4, two(0xF000, 0x0018), two(0xF1C0, 0xE07F), "IiFt", cfloat }, 403 1.1 christos {"fabsd", 4, two(0xF000, 0x5418), two(0xF1C0, 0xFC7F), "Ii;FF7", mfloat }, 404 1.1 christos {"fabsd", 4, two(0xF000, 0x5418), two(0xF1C0, 0xFC7F), "IiwsF7", cfloat }, 405 1.1 christos {"fabsl", 4, two(0xF000, 0x4018), two(0xF1C0, 0xFC7F), "Ii;lF7", mfloat }, 406 1.1 christos {"fabsl", 4, two(0xF000, 0x4018), two(0xF1C0, 0xFC7F), "IibsF7", cfloat }, 407 1.1 christos {"fabsp", 4, two(0xF000, 0x4C18), two(0xF1C0, 0xFC7F), "Ii;pF7", mfloat }, 408 1.1 christos {"fabss", 4, two(0xF000, 0x4418), two(0xF1C0, 0xFC7F), "Ii;fF7", cfloat }, 409 1.1 christos {"fabss", 4, two(0xF000, 0x4418), two(0xF1C0, 0xFC7F), "Ii;fF7", mfloat }, 410 1.1 christos {"fabsw", 4, two(0xF000, 0x5018), two(0xF1C0, 0xFC7F), "Ii;wF7", mfloat }, 411 1.1 christos {"fabsw", 4, two(0xF000, 0x5018), two(0xF1C0, 0xFC7F), "IibsF7", cfloat }, 412 1.1 christos {"fabsx", 4, two(0xF000, 0x0018), two(0xF1C0, 0xE07F), "IiF8F7", mfloat }, 413 1.1 christos {"fabsx", 4, two(0xF000, 0x4818), two(0xF1C0, 0xFC7F), "Ii;xF7", mfloat }, 414 1.1 christos {"fabsx", 4, two(0xF000, 0x0018), two(0xF1C0, 0xE07F), "IiFt", mfloat }, 415 1.1 christos 416 1.1 christos {"fsabsb", 4, two(0xF000, 0x5858), two(0xF1C0, 0xFC7F), "Ii;bF7", m68040up }, 417 1.1 christos {"fsabsb", 4, two(0xF000, 0x5858), two(0xF1C0, 0xFC7F), "IibsF7", cfloat }, 418 1.1 christos {"fsabsd", 4, two(0xF000, 0x0058), two(0xF1C0, 0xE07F), "IiF8F7", cfloat }, 419 1.1 christos {"fsabsd", 4, two(0xF000, 0x0058), two(0xF1C0, 0xE07F), "IiFt", cfloat }, 420 1.1 christos {"fsabsd", 4, two(0xF000, 0x5458), two(0xF1C0, 0xFC7F), "Ii;FF7", m68040up }, 421 1.1 christos {"fsabsd", 4, two(0xF000, 0x5458), two(0xF1C0, 0xFC7F), "IiwsF7", cfloat }, 422 1.1 christos {"fsabsl", 4, two(0xF000, 0x4058), two(0xF1C0, 0xFC7F), "Ii;lF7", m68040up }, 423 1.1 christos {"fsabsl", 4, two(0xF000, 0x4058), two(0xF1C0, 0xFC7F), "IibsF7", cfloat }, 424 1.1 christos {"fsabsp", 4, two(0xF000, 0x4C58), two(0xF1C0, 0xFC7F), "Ii;pF7", m68040up }, 425 1.1 christos {"fsabss", 4, two(0xF000, 0x4458), two(0xF1C0, 0xFC7F), "IibsF7", cfloat }, 426 1.1 christos {"fsabss", 4, two(0xF000, 0x4458), two(0xF1C0, 0xFC7F), "Ii;fF7", m68040up }, 427 1.1 christos {"fsabsw", 4, two(0xF000, 0x5058), two(0xF1C0, 0xFC7F), "Ii;wF7", m68040up }, 428 1.1 christos {"fsabsw", 4, two(0xF000, 0x5058), two(0xF1C0, 0xFC7F), "IibsF7", cfloat }, 429 1.1 christos {"fsabsx", 4, two(0xF000, 0x0058), two(0xF1C0, 0xE07F), "IiF8F7", m68040up }, 430 1.1 christos {"fsabsx", 4, two(0xF000, 0x4858), two(0xF1C0, 0xFC7F), "Ii;xF7", m68040up }, 431 1.1 christos {"fsabsx", 4, two(0xF000, 0x0058), two(0xF1C0, 0xE07F), "IiFt", m68040up }, 432 1.1 christos 433 1.1 christos {"fdabsb", 4, two(0xF000, 0x585C), two(0xF1C0, 0xFC7F), "IibsF7", cfloat }, 434 1.1 christos {"fdabsb", 4, two(0xF000, 0x585c), two(0xF1C0, 0xFC7F), "Ii;bF7", m68040up}, 435 1.1 christos {"fdabsd", 4, two(0xF000, 0x005C), two(0xF1C0, 0xE07F), "IiF8F7", cfloat }, 436 1.1 christos {"fdabsd", 4, two(0xF000, 0x005C), two(0xF1C0, 0xE07F), "IiFt", cfloat }, 437 1.1 christos {"fdabsd", 4, two(0xF000, 0x545C), two(0xF1C0, 0xFC7F), "IiwsF7", cfloat }, 438 1.1 christos {"fdabsd", 4, two(0xF000, 0x545c), two(0xF1C0, 0xFC7F), "Ii;FF7", m68040up}, 439 1.1 christos {"fdabsl", 4, two(0xF000, 0x405C), two(0xF1C0, 0xFC7F), "IibsF7", cfloat }, 440 1.1 christos {"fdabsl", 4, two(0xF000, 0x405c), two(0xF1C0, 0xFC7F), "Ii;lF7", m68040up}, 441 1.1 christos {"fdabsp", 4, two(0xF000, 0x4C5c), two(0xF1C0, 0xFC7F), "Ii;pF7", m68040up}, 442 1.1 christos {"fdabss", 4, two(0xF000, 0x445C), two(0xF1C0, 0xFC7F), "IibsF7", cfloat }, 443 1.1 christos {"fdabss", 4, two(0xF000, 0x445c), two(0xF1C0, 0xFC7F), "Ii;fF7", m68040up}, 444 1.1 christos {"fdabsw", 4, two(0xF000, 0x505C), two(0xF1C0, 0xFC7F), "IibsF7", cfloat }, 445 1.1 christos {"fdabsw", 4, two(0xF000, 0x505c), two(0xF1C0, 0xFC7F), "Ii;wF7", m68040up}, 446 1.1 christos {"fdabsx", 4, two(0xF000, 0x005c), two(0xF1C0, 0xE07F), "IiF8F7", m68040up}, 447 1.1 christos {"fdabsx", 4, two(0xF000, 0x485c), two(0xF1C0, 0xFC7F), "Ii;xF7", m68040up}, 448 1.1 christos {"fdabsx", 4, two(0xF000, 0x005c), two(0xF1C0, 0xE07F), "IiFt", m68040up}, 449 1.1 christos 450 1.1 christos {"facosb", 4, two(0xF000, 0x581C), two(0xF1C0, 0xFC7F), "Ii;bF7", mfloat }, 451 1.1 christos {"facosd", 4, two(0xF000, 0x541C), two(0xF1C0, 0xFC7F), "Ii;FF7", mfloat }, 452 1.1 christos {"facosl", 4, two(0xF000, 0x401C), two(0xF1C0, 0xFC7F), "Ii;lF7", mfloat }, 453 1.1 christos {"facosp", 4, two(0xF000, 0x4C1C), two(0xF1C0, 0xFC7F), "Ii;pF7", mfloat }, 454 1.1 christos {"facoss", 4, two(0xF000, 0x441C), two(0xF1C0, 0xFC7F), "Ii;fF7", mfloat }, 455 1.1 christos {"facosw", 4, two(0xF000, 0x501C), two(0xF1C0, 0xFC7F), "Ii;wF7", mfloat }, 456 1.1 christos {"facosx", 4, two(0xF000, 0x001C), two(0xF1C0, 0xE07F), "IiF8F7", mfloat }, 457 1.1 christos {"facosx", 4, two(0xF000, 0x481C), two(0xF1C0, 0xFC7F), "Ii;xF7", mfloat }, 458 1.1 christos {"facosx", 4, two(0xF000, 0x001C), two(0xF1C0, 0xE07F), "IiFt", mfloat }, 459 1.1 christos 460 1.1 christos {"faddb", 4, two(0xF000, 0x5822), two(0xF1C0, 0xFC7F), "Ii;bF7", mfloat }, 461 1.1 christos {"faddb", 4, two(0xF000, 0x5822), two(0xF1C0, 0xFC7F), "IibsF7", cfloat }, 462 1.1 christos {"faddd", 4, two(0xF000, 0x0022), two(0xF1C0, 0xE07F), "IiF8F7", cfloat }, 463 1.1 christos {"faddd", 4, two(0xF000, 0x5422), two(0xF1C0, 0xFC7F), "IiwsF7", cfloat }, 464 1.1 christos {"faddd", 4, two(0xF000, 0x5422), two(0xF1C0, 0xFC7F), "Ii;FF7", mfloat }, 465 1.1 christos {"faddd", 4, two(0xF000, 0x5422), two(0xF1C0, 0xFC7F), "IiwsF7", cfloat }, 466 1.1 christos {"faddl", 4, two(0xF000, 0x4022), two(0xF1C0, 0xFC7F), "Ii;lF7", mfloat }, 467 1.1 christos {"faddl", 4, two(0xF000, 0x4022), two(0xF1C0, 0xFC7F), "IibsF7", cfloat }, 468 1.1 christos {"faddp", 4, two(0xF000, 0x4C22), two(0xF1C0, 0xFC7F), "Ii;pF7", mfloat }, 469 1.1 christos {"fadds", 4, two(0xF000, 0x4422), two(0xF1C0, 0xFC7F), "Ii;fF7", mfloat }, 470 1.1 christos {"fadds", 4, two(0xF000, 0x4422), two(0xF1C0, 0xFC7F), "IibsF7", cfloat }, 471 1.1 christos {"faddw", 4, two(0xF000, 0x5022), two(0xF1C0, 0xFC7F), "Ii;wF7", mfloat }, 472 1.1 christos {"faddw", 4, two(0xF000, 0x5022), two(0xF1C0, 0xFC7F), "IibsF7", cfloat }, 473 1.1 christos {"faddx", 4, two(0xF000, 0x0022), two(0xF1C0, 0xE07F), "IiF8F7", mfloat }, 474 1.1 christos {"faddx", 4, two(0xF000, 0x4822), two(0xF1C0, 0xFC7F), "Ii;xF7", mfloat }, 475 1.1 christos 476 1.1 christos {"fsaddb", 4, two(0xF000, 0x5862), two(0xF1C0, 0xFC7F), "Ii;bF7", m68040up }, 477 1.1 christos {"fsaddb", 4, two(0xF000, 0x5862), two(0xF1C0, 0xFC7F), "IibsF7", cfloat }, 478 1.1 christos {"fsaddd", 4, two(0xF000, 0x0062), two(0xF1C0, 0xE07F), "IiF8F7", cfloat }, 479 1.1 christos {"fsaddd", 4, two(0xF000, 0x5462), two(0xF1C0, 0xFC7F), "Ii;FF7", m68040up }, 480 1.1 christos {"fsaddd", 4, two(0xF000, 0x5462), two(0xF1C0, 0xFC7F), "IiwsF7", cfloat }, 481 1.1 christos {"fsaddl", 4, two(0xF000, 0x4062), two(0xF1C0, 0xFC7F), "Ii;lF7", m68040up }, 482 1.1 christos {"fsaddl", 4, two(0xF000, 0x4062), two(0xF1C0, 0xFC7F), "IibsF7", cfloat }, 483 1.1 christos {"fsaddp", 4, two(0xF000, 0x4C62), two(0xF1C0, 0xFC7F), "Ii;pF7", m68040up }, 484 1.1 christos {"fsadds", 4, two(0xF000, 0x4462), two(0xF1C0, 0xFC7F), "Ii;fF7", m68040up }, 485 1.1 christos {"fsadds", 4, two(0xF000, 0x4462), two(0xF1C0, 0xFC7F), "IibsF7", cfloat }, 486 1.1 christos {"fsaddw", 4, two(0xF000, 0x5062), two(0xF1C0, 0xFC7F), "Ii;wF7", m68040up }, 487 1.1 christos {"fsaddw", 4, two(0xF000, 0x5062), two(0xF1C0, 0xFC7F), "IibsF7", cfloat }, 488 1.1 christos {"fsaddx", 4, two(0xF000, 0x0062), two(0xF1C0, 0xE07F), "IiF8F7", m68040up }, 489 1.1 christos {"fsaddx", 4, two(0xF000, 0x4862), two(0xF1C0, 0xFC7F), "Ii;xF7", m68040up }, 490 1.1 christos 491 1.1 christos {"fdaddb", 4, two(0xF000, 0x5866), two(0xF1C0, 0xFC7F), "IibsF7", cfloat }, 492 1.1 christos {"fdaddb", 4, two(0xF000, 0x5866), two(0xF1C0, 0xFC7F), "Ii;bF7", m68040up }, 493 1.1 christos {"fdaddd", 4, two(0xF000, 0x0066), two(0xF1C0, 0xE07F), "IiF8F7", cfloat }, 494 1.1 christos {"fdaddd", 4, two(0xF000, 0x5466), two(0xF1C0, 0xFC7F), "IibsF7", cfloat }, 495 1.1 christos {"fdaddd", 4, two(0xF000, 0x5466), two(0xF1C0, 0xFC7F), "Ii;FF7", m68040up }, 496 1.1 christos {"fdaddl", 4, two(0xF000, 0x4066), two(0xF1C0, 0xFC7F), "IibsF7", cfloat }, 497 1.1 christos {"fdaddl", 4, two(0xF000, 0x4066), two(0xF1C0, 0xFC7F), "Ii;lF7", m68040up }, 498 1.1 christos {"fdaddp", 4, two(0xF000, 0x4C66), two(0xF1C0, 0xFC7F), "Ii;pF7", m68040up }, 499 1.1 christos {"fdadds", 4, two(0xF000, 0x4466), two(0xF1C0, 0xFC7F), "Ii;fF7", m68040up }, 500 1.1 christos {"fdadds", 4, two(0xF000, 0x4466), two(0xF1C0, 0xFC7F), "IibsF7", cfloat }, 501 1.1 christos {"fdaddw", 4, two(0xF000, 0x5066), two(0xF1C0, 0xFC7F), "IibsF7", cfloat }, 502 1.1 christos {"fdaddw", 4, two(0xF000, 0x5066), two(0xF1C0, 0xFC7F), "Ii;wF7", m68040up }, 503 1.1 christos {"fdaddx", 4, two(0xF000, 0x0066), two(0xF1C0, 0xE07F), "IiF8F7", m68040up }, 504 1.1 christos {"fdaddx", 4, two(0xF000, 0x4866), two(0xF1C0, 0xFC7F), "Ii;xF7", m68040up }, 505 1.1 christos 506 1.1 christos {"fasinb", 4, two(0xF000, 0x580C), two(0xF1C0, 0xFC7F), "Ii;bF7", mfloat }, 507 1.1 christos {"fasind", 4, two(0xF000, 0x540C), two(0xF1C0, 0xFC7F), "Ii;FF7", mfloat }, 508 1.1 christos {"fasinl", 4, two(0xF000, 0x400C), two(0xF1C0, 0xFC7F), "Ii;lF7", mfloat }, 509 1.1 christos {"fasinp", 4, two(0xF000, 0x4C0C), two(0xF1C0, 0xFC7F), "Ii;pF7", mfloat }, 510 1.1 christos {"fasins", 4, two(0xF000, 0x440C), two(0xF1C0, 0xFC7F), "Ii;fF7", mfloat }, 511 1.1 christos {"fasinw", 4, two(0xF000, 0x500C), two(0xF1C0, 0xFC7F), "Ii;wF7", mfloat }, 512 1.1 christos {"fasinx", 4, two(0xF000, 0x000C), two(0xF1C0, 0xE07F), "IiF8F7", mfloat }, 513 1.1 christos {"fasinx", 4, two(0xF000, 0x480C), two(0xF1C0, 0xFC7F), "Ii;xF7", mfloat }, 514 1.1 christos {"fasinx", 4, two(0xF000, 0x000C), two(0xF1C0, 0xE07F), "IiFt", mfloat }, 515 1.1 christos 516 1.1 christos {"fatanb", 4, two(0xF000, 0x580A), two(0xF1C0, 0xFC7F), "Ii;bF7", mfloat }, 517 1.1 christos {"fatand", 4, two(0xF000, 0x540A), two(0xF1C0, 0xFC7F), "Ii;FF7", mfloat }, 518 1.1 christos {"fatanl", 4, two(0xF000, 0x400A), two(0xF1C0, 0xFC7F), "Ii;lF7", mfloat }, 519 1.1 christos {"fatanp", 4, two(0xF000, 0x4C0A), two(0xF1C0, 0xFC7F), "Ii;pF7", mfloat }, 520 1.1 christos {"fatans", 4, two(0xF000, 0x440A), two(0xF1C0, 0xFC7F), "Ii;fF7", mfloat }, 521 1.1 christos {"fatanw", 4, two(0xF000, 0x500A), two(0xF1C0, 0xFC7F), "Ii;wF7", mfloat }, 522 1.1 christos {"fatanx", 4, two(0xF000, 0x000A), two(0xF1C0, 0xE07F), "IiF8F7", mfloat }, 523 1.1 christos {"fatanx", 4, two(0xF000, 0x480A), two(0xF1C0, 0xFC7F), "Ii;xF7", mfloat }, 524 1.1 christos {"fatanx", 4, two(0xF000, 0x000A), two(0xF1C0, 0xE07F), "IiFt", mfloat }, 525 1.1 christos 526 1.1 christos {"fatanhb", 4, two(0xF000, 0x580D), two(0xF1C0, 0xFC7F), "Ii;bF7", mfloat }, 527 1.1 christos {"fatanhd", 4, two(0xF000, 0x540D), two(0xF1C0, 0xFC7F), "Ii;FF7", mfloat }, 528 1.1 christos {"fatanhl", 4, two(0xF000, 0x400D), two(0xF1C0, 0xFC7F), "Ii;lF7", mfloat }, 529 1.1 christos {"fatanhp", 4, two(0xF000, 0x4C0D), two(0xF1C0, 0xFC7F), "Ii;pF7", mfloat }, 530 1.1 christos {"fatanhs", 4, two(0xF000, 0x440D), two(0xF1C0, 0xFC7F), "Ii;fF7", mfloat }, 531 1.1 christos {"fatanhw", 4, two(0xF000, 0x500D), two(0xF1C0, 0xFC7F), "Ii;wF7", mfloat }, 532 1.1 christos {"fatanhx", 4, two(0xF000, 0x000D), two(0xF1C0, 0xE07F), "IiF8F7", mfloat }, 533 1.1 christos {"fatanhx", 4, two(0xF000, 0x480D), two(0xF1C0, 0xFC7F), "Ii;xF7", mfloat }, 534 1.1 christos {"fatanhx", 4, two(0xF000, 0x000D), two(0xF1C0, 0xE07F), "IiFt", mfloat }, 535 1.1 christos 536 1.1 christos /* This is the same as `fbf .+2'. */ 537 1.1 christos {"fnop", 4, two(0xF280, 0x0000), two(0xFFFF, 0xFFFF), "Ii", mfloat | cfloat }, 538 1.1 christos 539 1.1 christos {"fbeq", 2, one(0xF081), one(0xF1FF), "IdBW", mfloat | cfloat }, 540 1.1 christos {"fbf", 2, one(0xF080), one(0xF1FF), "IdBW", mfloat | cfloat }, 541 1.1 christos {"fbge", 2, one(0xF093), one(0xF1FF), "IdBW", mfloat | cfloat }, 542 1.1 christos {"fbgl", 2, one(0xF096), one(0xF1FF), "IdBW", mfloat | cfloat }, 543 1.1 christos {"fbgle", 2, one(0xF097), one(0xF1FF), "IdBW", mfloat | cfloat }, 544 1.1 christos {"fbgt", 2, one(0xF092), one(0xF1FF), "IdBW", mfloat | cfloat }, 545 1.1 christos {"fble", 2, one(0xF095), one(0xF1FF), "IdBW", mfloat | cfloat }, 546 1.1 christos {"fblt", 2, one(0xF094), one(0xF1FF), "IdBW", mfloat | cfloat }, 547 1.1 christos {"fbne", 2, one(0xF08E), one(0xF1FF), "IdBW", mfloat | cfloat }, 548 1.1 christos {"fbnge", 2, one(0xF09C), one(0xF1FF), "IdBW", mfloat | cfloat }, 549 1.1 christos {"fbngl", 2, one(0xF099), one(0xF1FF), "IdBW", mfloat | cfloat }, 550 1.1 christos {"fbngle", 2, one(0xF098), one(0xF1FF), "IdBW", mfloat | cfloat }, 551 1.1 christos {"fbngt", 2, one(0xF09D), one(0xF1FF), "IdBW", mfloat | cfloat }, 552 1.1 christos {"fbnle", 2, one(0xF09A), one(0xF1FF), "IdBW", mfloat | cfloat }, 553 1.1 christos {"fbnlt", 2, one(0xF09B), one(0xF1FF), "IdBW", mfloat | cfloat }, 554 1.1 christos {"fboge", 2, one(0xF083), one(0xF1FF), "IdBW", mfloat | cfloat }, 555 1.1 christos {"fbogl", 2, one(0xF086), one(0xF1FF), "IdBW", mfloat | cfloat }, 556 1.1 christos {"fbogt", 2, one(0xF082), one(0xF1FF), "IdBW", mfloat | cfloat }, 557 1.1 christos {"fbole", 2, one(0xF085), one(0xF1FF), "IdBW", mfloat | cfloat }, 558 1.1 christos {"fbolt", 2, one(0xF084), one(0xF1FF), "IdBW", mfloat | cfloat }, 559 1.1 christos {"fbor", 2, one(0xF087), one(0xF1FF), "IdBW", mfloat | cfloat }, 560 1.1 christos {"fbseq", 2, one(0xF091), one(0xF1FF), "IdBW", mfloat | cfloat }, 561 1.1 christos {"fbsf", 2, one(0xF090), one(0xF1FF), "IdBW", mfloat | cfloat }, 562 1.1 christos {"fbsne", 2, one(0xF09E), one(0xF1FF), "IdBW", mfloat | cfloat }, 563 1.1 christos {"fbst", 2, one(0xF09F), one(0xF1FF), "IdBW", mfloat | cfloat }, 564 1.1 christos {"fbt", 2, one(0xF08F), one(0xF1FF), "IdBW", mfloat | cfloat }, 565 1.1 christos {"fbueq", 2, one(0xF089), one(0xF1FF), "IdBW", mfloat | cfloat }, 566 1.1 christos {"fbuge", 2, one(0xF08B), one(0xF1FF), "IdBW", mfloat | cfloat }, 567 1.1 christos {"fbugt", 2, one(0xF08A), one(0xF1FF), "IdBW", mfloat | cfloat }, 568 1.1 christos {"fbule", 2, one(0xF08D), one(0xF1FF), "IdBW", mfloat | cfloat }, 569 1.1 christos {"fbult", 2, one(0xF08C), one(0xF1FF), "IdBW", mfloat | cfloat }, 570 1.1 christos {"fbun", 2, one(0xF088), one(0xF1FF), "IdBW", mfloat | cfloat }, 571 1.1 christos 572 1.1 christos {"fbeql", 2, one(0xF0C1), one(0xF1FF), "IdBC", mfloat | cfloat }, 573 1.1 christos {"fbfl", 2, one(0xF0C0), one(0xF1FF), "IdBC", mfloat | cfloat }, 574 1.1 christos {"fbgel", 2, one(0xF0D3), one(0xF1FF), "IdBC", mfloat | cfloat }, 575 1.1 christos {"fbgll", 2, one(0xF0D6), one(0xF1FF), "IdBC", mfloat | cfloat }, 576 1.1 christos {"fbglel", 2, one(0xF0D7), one(0xF1FF), "IdBC", mfloat | cfloat }, 577 1.1 christos {"fbgtl", 2, one(0xF0D2), one(0xF1FF), "IdBC", mfloat | cfloat }, 578 1.1 christos {"fblel", 2, one(0xF0D5), one(0xF1FF), "IdBC", mfloat | cfloat }, 579 1.1 christos {"fbltl", 2, one(0xF0D4), one(0xF1FF), "IdBC", mfloat | cfloat }, 580 1.1 christos {"fbnel", 2, one(0xF0CE), one(0xF1FF), "IdBC", mfloat | cfloat }, 581 1.1 christos {"fbngel", 2, one(0xF0DC), one(0xF1FF), "IdBC", mfloat | cfloat }, 582 1.1 christos {"fbngll", 2, one(0xF0D9), one(0xF1FF), "IdBC", mfloat | cfloat }, 583 1.1 christos {"fbnglel", 2, one(0xF0D8), one(0xF1FF), "IdBC", mfloat | cfloat }, 584 1.1 christos {"fbngtl", 2, one(0xF0DD), one(0xF1FF), "IdBC", mfloat | cfloat }, 585 1.1 christos {"fbnlel", 2, one(0xF0DA), one(0xF1FF), "IdBC", mfloat | cfloat }, 586 1.1 christos {"fbnltl", 2, one(0xF0DB), one(0xF1FF), "IdBC", mfloat | cfloat }, 587 1.1 christos {"fbogel", 2, one(0xF0C3), one(0xF1FF), "IdBC", mfloat | cfloat }, 588 1.1 christos {"fbogll", 2, one(0xF0C6), one(0xF1FF), "IdBC", mfloat | cfloat }, 589 1.1 christos {"fbogtl", 2, one(0xF0C2), one(0xF1FF), "IdBC", mfloat | cfloat }, 590 1.1 christos {"fbolel", 2, one(0xF0C5), one(0xF1FF), "IdBC", mfloat | cfloat }, 591 1.1 christos {"fboltl", 2, one(0xF0C4), one(0xF1FF), "IdBC", mfloat | cfloat }, 592 1.1 christos {"fborl", 2, one(0xF0C7), one(0xF1FF), "IdBC", mfloat | cfloat }, 593 1.1 christos {"fbseql", 2, one(0xF0D1), one(0xF1FF), "IdBC", mfloat | cfloat }, 594 1.1 christos {"fbsfl", 2, one(0xF0D0), one(0xF1FF), "IdBC", mfloat | cfloat }, 595 1.1 christos {"fbsnel", 2, one(0xF0DE), one(0xF1FF), "IdBC", mfloat | cfloat }, 596 1.1 christos {"fbstl", 2, one(0xF0DF), one(0xF1FF), "IdBC", mfloat | cfloat }, 597 1.1 christos {"fbtl", 2, one(0xF0CF), one(0xF1FF), "IdBC", mfloat | cfloat }, 598 1.1 christos {"fbueql", 2, one(0xF0C9), one(0xF1FF), "IdBC", mfloat | cfloat }, 599 1.1 christos {"fbugel", 2, one(0xF0CB), one(0xF1FF), "IdBC", mfloat | cfloat }, 600 1.1 christos {"fbugtl", 2, one(0xF0CA), one(0xF1FF), "IdBC", mfloat | cfloat }, 601 1.1 christos {"fbulel", 2, one(0xF0CD), one(0xF1FF), "IdBC", mfloat | cfloat }, 602 1.1 christos {"fbultl", 2, one(0xF0CC), one(0xF1FF), "IdBC", mfloat | cfloat }, 603 1.1 christos {"fbunl", 2, one(0xF0C8), one(0xF1FF), "IdBC", mfloat | cfloat }, 604 1.1 christos 605 1.1 christos {"fjeq", 2, one(0xF081), one(0xF1BF), "IdBc", mfloat | cfloat }, 606 1.1 christos {"fjf", 2, one(0xF080), one(0xF1BF), "IdBc", mfloat | cfloat }, 607 1.1 christos {"fjge", 2, one(0xF093), one(0xF1BF), "IdBc", mfloat | cfloat }, 608 1.1 christos {"fjgl", 2, one(0xF096), one(0xF1BF), "IdBc", mfloat | cfloat }, 609 1.1 christos {"fjgle", 2, one(0xF097), one(0xF1BF), "IdBc", mfloat | cfloat }, 610 1.1 christos {"fjgt", 2, one(0xF092), one(0xF1BF), "IdBc", mfloat | cfloat }, 611 1.1 christos {"fjle", 2, one(0xF095), one(0xF1BF), "IdBc", mfloat | cfloat }, 612 1.1 christos {"fjlt", 2, one(0xF094), one(0xF1BF), "IdBc", mfloat | cfloat }, 613 1.1 christos {"fjne", 2, one(0xF08E), one(0xF1BF), "IdBc", mfloat | cfloat }, 614 1.1 christos {"fjnge", 2, one(0xF09C), one(0xF1BF), "IdBc", mfloat | cfloat }, 615 1.1 christos {"fjngl", 2, one(0xF099), one(0xF1BF), "IdBc", mfloat | cfloat }, 616 1.1 christos {"fjngle", 2, one(0xF098), one(0xF1BF), "IdBc", mfloat | cfloat }, 617 1.1 christos {"fjngt", 2, one(0xF09D), one(0xF1BF), "IdBc", mfloat | cfloat }, 618 1.1 christos {"fjnle", 2, one(0xF09A), one(0xF1BF), "IdBc", mfloat | cfloat }, 619 1.1 christos {"fjnlt", 2, one(0xF09B), one(0xF1BF), "IdBc", mfloat | cfloat }, 620 1.1 christos {"fjoge", 2, one(0xF083), one(0xF1BF), "IdBc", mfloat | cfloat }, 621 1.1 christos {"fjogl", 2, one(0xF086), one(0xF1BF), "IdBc", mfloat | cfloat }, 622 1.1 christos {"fjogt", 2, one(0xF082), one(0xF1BF), "IdBc", mfloat | cfloat }, 623 1.1 christos {"fjole", 2, one(0xF085), one(0xF1BF), "IdBc", mfloat | cfloat }, 624 1.1 christos {"fjolt", 2, one(0xF084), one(0xF1BF), "IdBc", mfloat | cfloat }, 625 1.1 christos {"fjor", 2, one(0xF087), one(0xF1BF), "IdBc", mfloat | cfloat }, 626 1.1 christos {"fjseq", 2, one(0xF091), one(0xF1BF), "IdBc", mfloat | cfloat }, 627 1.1 christos {"fjsf", 2, one(0xF090), one(0xF1BF), "IdBc", mfloat | cfloat }, 628 1.1 christos {"fjsne", 2, one(0xF09E), one(0xF1BF), "IdBc", mfloat | cfloat }, 629 1.1 christos {"fjst", 2, one(0xF09F), one(0xF1BF), "IdBc", mfloat | cfloat }, 630 1.1 christos {"fjt", 2, one(0xF08F), one(0xF1BF), "IdBc", mfloat | cfloat }, 631 1.1 christos {"fjueq", 2, one(0xF089), one(0xF1BF), "IdBc", mfloat | cfloat }, 632 1.1 christos {"fjuge", 2, one(0xF08B), one(0xF1BF), "IdBc", mfloat | cfloat }, 633 1.1 christos {"fjugt", 2, one(0xF08A), one(0xF1BF), "IdBc", mfloat | cfloat }, 634 1.1 christos {"fjule", 2, one(0xF08D), one(0xF1BF), "IdBc", mfloat | cfloat }, 635 1.1 christos {"fjult", 2, one(0xF08C), one(0xF1BF), "IdBc", mfloat | cfloat }, 636 1.1 christos {"fjun", 2, one(0xF088), one(0xF1BF), "IdBc", mfloat | cfloat }, 637 1.1 christos 638 1.1 christos {"fcmpb", 4, two(0xF000, 0x5838), two(0xF1C0, 0xFC7F), "IibsF7", cfloat }, 639 1.1 christos {"fcmpb", 4, two(0xF000, 0x5838), two(0xF1C0, 0xFC7F), "Ii;bF7", mfloat }, 640 1.1 christos {"fcmpd", 4, two(0xF000, 0x5438), two(0xF1C0, 0xFC7F), "Ii;FF7", mfloat }, 641 1.1 christos {"fcmpd", 4, two(0xF000, 0x5438), two(0xF1C0, 0xFC7F), "IiwsF7", cfloat }, 642 1.1 christos {"fcmpd", 4, two(0xF000, 0x0038), two(0xF1C0, 0xE07F), "IiF8F7", cfloat }, 643 1.1 christos {"fcmpl", 4, two(0xF000, 0x4038), two(0xF1C0, 0xFC7F), "Ii;lF7", mfloat }, 644 1.1 christos {"fcmpl", 4, two(0xF000, 0x4038), two(0xF1C0, 0xFC7F), "IibsF7", cfloat }, 645 1.1 christos {"fcmpp", 4, two(0xF000, 0x4C38), two(0xF1C0, 0xFC7F), "Ii;pF7", mfloat }, 646 1.1 christos {"fcmps", 4, two(0xF000, 0x4438), two(0xF1C0, 0xFC7F), "Ii;fF7", mfloat }, 647 1.1 christos {"fcmps", 4, two(0xF000, 0x4438), two(0xF1C0, 0xFC7F), "IibsF7", cfloat }, 648 1.1 christos {"fcmpw", 4, two(0xF000, 0x5038), two(0xF1C0, 0xFC7F), "Ii;wF7", mfloat }, 649 1.1 christos {"fcmpw", 4, two(0xF000, 0x5038), two(0xF1C0, 0xFC7F), "IibsF7", cfloat }, 650 1.1 christos {"fcmpx", 4, two(0xF000, 0x0038), two(0xF1C0, 0xE07F), "IiF8F7", mfloat }, 651 1.1 christos {"fcmpx", 4, two(0xF000, 0x4838), two(0xF1C0, 0xFC7F), "Ii;xF7", mfloat }, 652 1.1 christos 653 1.1 christos {"fcosb", 4, two(0xF000, 0x581D), two(0xF1C0, 0xFC7F), "Ii;bF7", mfloat }, 654 1.1 christos {"fcosd", 4, two(0xF000, 0x541D), two(0xF1C0, 0xFC7F), "Ii;FF7", mfloat }, 655 1.1 christos {"fcosl", 4, two(0xF000, 0x401D), two(0xF1C0, 0xFC7F), "Ii;lF7", mfloat }, 656 1.1 christos {"fcosp", 4, two(0xF000, 0x4C1D), two(0xF1C0, 0xFC7F), "Ii;pF7", mfloat }, 657 1.1 christos {"fcoss", 4, two(0xF000, 0x441D), two(0xF1C0, 0xFC7F), "Ii;fF7", mfloat }, 658 1.1 christos {"fcosw", 4, two(0xF000, 0x501D), two(0xF1C0, 0xFC7F), "Ii;wF7", mfloat }, 659 1.1 christos {"fcosx", 4, two(0xF000, 0x001D), two(0xF1C0, 0xE07F), "IiF8F7", mfloat }, 660 1.1 christos {"fcosx", 4, two(0xF000, 0x481D), two(0xF1C0, 0xFC7F), "Ii;xF7", mfloat }, 661 1.1 christos {"fcosx", 4, two(0xF000, 0x001D), two(0xF1C0, 0xE07F), "IiFt", mfloat }, 662 1.1 christos 663 1.1 christos {"fcoshb", 4, two(0xF000, 0x5819), two(0xF1C0, 0xFC7F), "Ii;bF7", mfloat }, 664 1.1 christos {"fcoshd", 4, two(0xF000, 0x5419), two(0xF1C0, 0xFC7F), "Ii;FF7", mfloat }, 665 1.1 christos {"fcoshl", 4, two(0xF000, 0x4019), two(0xF1C0, 0xFC7F), "Ii;lF7", mfloat }, 666 1.1 christos {"fcoshp", 4, two(0xF000, 0x4C19), two(0xF1C0, 0xFC7F), "Ii;pF7", mfloat }, 667 1.1 christos {"fcoshs", 4, two(0xF000, 0x4419), two(0xF1C0, 0xFC7F), "Ii;fF7", mfloat }, 668 1.1 christos {"fcoshw", 4, two(0xF000, 0x5019), two(0xF1C0, 0xFC7F), "Ii;wF7", mfloat }, 669 1.1 christos {"fcoshx", 4, two(0xF000, 0x0019), two(0xF1C0, 0xE07F), "IiF8F7", mfloat }, 670 1.1 christos {"fcoshx", 4, two(0xF000, 0x4819), two(0xF1C0, 0xFC7F), "Ii;xF7", mfloat }, 671 1.1 christos {"fcoshx", 4, two(0xF000, 0x0019), two(0xF1C0, 0xE07F), "IiFt", mfloat }, 672 1.1 christos 673 1.1 christos {"fdbeq", 4, two(0xF048, 0x0001), two(0xF1F8, 0xFFFF), "IiDsBw", mfloat }, 674 1.1 christos {"fdbf", 4, two(0xF048, 0x0000), two(0xF1F8, 0xFFFF), "IiDsBw", mfloat }, 675 1.1 christos {"fdbge", 4, two(0xF048, 0x0013), two(0xF1F8, 0xFFFF), "IiDsBw", mfloat }, 676 1.1 christos {"fdbgl", 4, two(0xF048, 0x0016), two(0xF1F8, 0xFFFF), "IiDsBw", mfloat }, 677 1.1 christos {"fdbgle", 4, two(0xF048, 0x0017), two(0xF1F8, 0xFFFF), "IiDsBw", mfloat }, 678 1.1 christos {"fdbgt", 4, two(0xF048, 0x0012), two(0xF1F8, 0xFFFF), "IiDsBw", mfloat }, 679 1.1 christos {"fdble", 4, two(0xF048, 0x0015), two(0xF1F8, 0xFFFF), "IiDsBw", mfloat }, 680 1.1 christos {"fdblt", 4, two(0xF048, 0x0014), two(0xF1F8, 0xFFFF), "IiDsBw", mfloat }, 681 1.1 christos {"fdbne", 4, two(0xF048, 0x000E), two(0xF1F8, 0xFFFF), "IiDsBw", mfloat }, 682 1.1 christos {"fdbnge", 4, two(0xF048, 0x001C), two(0xF1F8, 0xFFFF), "IiDsBw", mfloat }, 683 1.1 christos {"fdbngl", 4, two(0xF048, 0x0019), two(0xF1F8, 0xFFFF), "IiDsBw", mfloat }, 684 1.1 christos {"fdbngle", 4, two(0xF048, 0x0018), two(0xF1F8, 0xFFFF), "IiDsBw", mfloat }, 685 1.1 christos {"fdbngt", 4, two(0xF048, 0x001D), two(0xF1F8, 0xFFFF), "IiDsBw", mfloat }, 686 1.1 christos {"fdbnle", 4, two(0xF048, 0x001A), two(0xF1F8, 0xFFFF), "IiDsBw", mfloat }, 687 1.1 christos {"fdbnlt", 4, two(0xF048, 0x001B), two(0xF1F8, 0xFFFF), "IiDsBw", mfloat }, 688 1.1 christos {"fdboge", 4, two(0xF048, 0x0003), two(0xF1F8, 0xFFFF), "IiDsBw", mfloat }, 689 1.1 christos {"fdbogl", 4, two(0xF048, 0x0006), two(0xF1F8, 0xFFFF), "IiDsBw", mfloat }, 690 1.1 christos {"fdbogt", 4, two(0xF048, 0x0002), two(0xF1F8, 0xFFFF), "IiDsBw", mfloat }, 691 1.1 christos {"fdbole", 4, two(0xF048, 0x0005), two(0xF1F8, 0xFFFF), "IiDsBw", mfloat }, 692 1.1 christos {"fdbolt", 4, two(0xF048, 0x0004), two(0xF1F8, 0xFFFF), "IiDsBw", mfloat }, 693 1.1 christos {"fdbor", 4, two(0xF048, 0x0007), two(0xF1F8, 0xFFFF), "IiDsBw", mfloat }, 694 1.1 christos {"fdbseq", 4, two(0xF048, 0x0011), two(0xF1F8, 0xFFFF), "IiDsBw", mfloat }, 695 1.1 christos {"fdbsf", 4, two(0xF048, 0x0010), two(0xF1F8, 0xFFFF), "IiDsBw", mfloat }, 696 1.1 christos {"fdbsne", 4, two(0xF048, 0x001E), two(0xF1F8, 0xFFFF), "IiDsBw", mfloat }, 697 1.1 christos {"fdbst", 4, two(0xF048, 0x001F), two(0xF1F8, 0xFFFF), "IiDsBw", mfloat }, 698 1.1 christos {"fdbt", 4, two(0xF048, 0x000F), two(0xF1F8, 0xFFFF), "IiDsBw", mfloat }, 699 1.1 christos {"fdbueq", 4, two(0xF048, 0x0009), two(0xF1F8, 0xFFFF), "IiDsBw", mfloat }, 700 1.1 christos {"fdbuge", 4, two(0xF048, 0x000B), two(0xF1F8, 0xFFFF), "IiDsBw", mfloat }, 701 1.1 christos {"fdbugt", 4, two(0xF048, 0x000A), two(0xF1F8, 0xFFFF), "IiDsBw", mfloat }, 702 1.1 christos {"fdbule", 4, two(0xF048, 0x000D), two(0xF1F8, 0xFFFF), "IiDsBw", mfloat }, 703 1.1 christos {"fdbult", 4, two(0xF048, 0x000C), two(0xF1F8, 0xFFFF), "IiDsBw", mfloat }, 704 1.1 christos {"fdbun", 4, two(0xF048, 0x0008), two(0xF1F8, 0xFFFF), "IiDsBw", mfloat }, 705 1.1 christos 706 1.1 christos {"fdivb", 4, two(0xF000, 0x5820), two(0xF1C0, 0xFC7F), "Ii;bF7", mfloat }, 707 1.1 christos {"fdivb", 4, two(0xF000, 0x5820), two(0xF1C0, 0xFC7F), "IibsF7", cfloat }, 708 1.1 christos {"fdivd", 4, two(0xF000, 0x0020), two(0xF1C0, 0xE07F), "IiF8F7", cfloat }, 709 1.1 christos {"fdivd", 4, two(0xF000, 0x5420), two(0xF1C0, 0xFC7F), "Ii;FF7", mfloat }, 710 1.1 christos {"fdivd", 4, two(0xF000, 0x5420), two(0xF1C0, 0xFC7F), "IiwsF7", cfloat }, 711 1.1 christos {"fdivl", 4, two(0xF000, 0x4020), two(0xF1C0, 0xFC7F), "Ii;lF7", mfloat }, 712 1.1 christos {"fdivl", 4, two(0xF000, 0x4020), two(0xF1C0, 0xFC7F), "IibsF7", cfloat }, 713 1.1 christos {"fdivp", 4, two(0xF000, 0x4C20), two(0xF1C0, 0xFC7F), "Ii;pF7", mfloat }, 714 1.1 christos {"fdivs", 4, two(0xF000, 0x4420), two(0xF1C0, 0xFC7F), "Ii;fF7", mfloat }, 715 1.1 christos {"fdivs", 4, two(0xF000, 0x4420), two(0xF1C0, 0xFC7F), "IibsF7", cfloat }, 716 1.1 christos {"fdivw", 4, two(0xF000, 0x5020), two(0xF1C0, 0xFC7F), "Ii;wF7", mfloat }, 717 1.1 christos {"fdivw", 4, two(0xF000, 0x5020), two(0xF1C0, 0xFC7F), "IibsF7", cfloat }, 718 1.1 christos {"fdivx", 4, two(0xF000, 0x0020), two(0xF1C0, 0xE07F), "IiF8F7", mfloat }, 719 1.1 christos {"fdivx", 4, two(0xF000, 0x4820), two(0xF1C0, 0xFC7F), "Ii;xF7", mfloat }, 720 1.1 christos 721 1.1 christos {"fsdivb", 4, two(0xF000, 0x5860), two(0xF1C0, 0xFC7F), "Ii;bF7", m68040up }, 722 1.1 christos {"fsdivb", 4, two(0xF000, 0x5860), two(0xF1C0, 0xFC7F), "IibsF7", cfloat }, 723 1.1 christos {"fsdivd", 4, two(0xF000, 0x0060), two(0xF1C0, 0xE07F), "IiF8F7", cfloat }, 724 1.1 christos {"fsdivd", 4, two(0xF000, 0x5460), two(0xF1C0, 0xFC7F), "Ii;FF7", m68040up }, 725 1.1 christos {"fsdivd", 4, two(0xF000, 0x5460), two(0xF1C0, 0xFC7F), "IiwsF7", cfloat }, 726 1.1 christos {"fsdivl", 4, two(0xF000, 0x4060), two(0xF1C0, 0xFC7F), "Ii;lF7", m68040up }, 727 1.1 christos {"fsdivl", 4, two(0xF000, 0x4060), two(0xF1C0, 0xFC7F), "IibsF7", cfloat }, 728 1.1 christos {"fsdivp", 4, two(0xF000, 0x4C60), two(0xF1C0, 0xFC7F), "Ii;pF7", m68040up }, 729 1.1 christos {"fsdivs", 4, two(0xF000, 0x4460), two(0xF1C0, 0xFC7F), "Ii;fF7", m68040up }, 730 1.1 christos {"fsdivs", 4, two(0xF000, 0x4460), two(0xF1C0, 0xFC7F), "IibsF7", cfloat }, 731 1.1 christos {"fsdivw", 4, two(0xF000, 0x5060), two(0xF1C0, 0xFC7F), "Ii;wF7", m68040up }, 732 1.1 christos {"fsdivw", 4, two(0xF000, 0x5060), two(0xF1C0, 0xFC7F), "IibsF7", cfloat }, 733 1.1 christos {"fsdivx", 4, two(0xF000, 0x0060), two(0xF1C0, 0xE07F), "IiF8F7", m68040up }, 734 1.1 christos {"fsdivx", 4, two(0xF000, 0x4860), two(0xF1C0, 0xFC7F), "Ii;xF7", m68040up }, 735 1.1 christos 736 1.1 christos {"fddivb", 4, two(0xF000, 0x5864), two(0xF1C0, 0xFC7F), "Ii;bF7", m68040up }, 737 1.1 christos {"fddivb", 4, two(0xF000, 0x5864), two(0xF1C0, 0xFC7F), "IibsF7", cfloat }, 738 1.1 christos {"fddivd", 4, two(0xF000, 0x0064), two(0xF1C0, 0xE07F), "IiF8F7", cfloat }, 739 1.1 christos {"fddivd", 4, two(0xF000, 0x5464), two(0xF1C0, 0xFC7F), "Ii;FF7", m68040up }, 740 1.1 christos {"fddivd", 4, two(0xF000, 0x5464), two(0xF1C0, 0xFC7F), "IiwsF7", cfloat }, 741 1.1 christos {"fddivl", 4, two(0xF000, 0x4064), two(0xF1C0, 0xFC7F), "Ii;lF7", m68040up }, 742 1.1 christos {"fddivl", 4, two(0xF000, 0x4064), two(0xF1C0, 0xFC7F), "IibsF7", cfloat }, 743 1.1 christos {"fddivp", 4, two(0xF000, 0x4C64), two(0xF1C0, 0xFC7F), "Ii;pF7", m68040up }, 744 1.1 christos {"fddivs", 4, two(0xF000, 0x4464), two(0xF1C0, 0xFC7F), "Ii;fF7", m68040up }, 745 1.1 christos {"fddivs", 4, two(0xF000, 0x4464), two(0xF1C0, 0xFC7F), "IibsF7", cfloat }, 746 1.1 christos {"fddivw", 4, two(0xF000, 0x5064), two(0xF1C0, 0xFC7F), "Ii;wF7", m68040up }, 747 1.1 christos {"fddivw", 4, two(0xF000, 0x5064), two(0xF1C0, 0xFC7F), "IibsF7", cfloat }, 748 1.1 christos {"fddivx", 4, two(0xF000, 0x0064), two(0xF1C0, 0xE07F), "IiF8F7", m68040up }, 749 1.1 christos {"fddivx", 4, two(0xF000, 0x4864), two(0xF1C0, 0xFC7F), "Ii;xF7", m68040up }, 750 1.1 christos 751 1.1 christos {"fetoxb", 4, two(0xF000, 0x5810), two(0xF1C0, 0xFC7F), "Ii;bF7", mfloat }, 752 1.1 christos {"fetoxd", 4, two(0xF000, 0x5410), two(0xF1C0, 0xFC7F), "Ii;FF7", mfloat }, 753 1.1 christos {"fetoxl", 4, two(0xF000, 0x4010), two(0xF1C0, 0xFC7F), "Ii;lF7", mfloat }, 754 1.1 christos {"fetoxp", 4, two(0xF000, 0x4C10), two(0xF1C0, 0xFC7F), "Ii;pF7", mfloat }, 755 1.1 christos {"fetoxs", 4, two(0xF000, 0x4410), two(0xF1C0, 0xFC7F), "Ii;fF7", mfloat }, 756 1.1 christos {"fetoxw", 4, two(0xF000, 0x5010), two(0xF1C0, 0xFC7F), "Ii;wF7", mfloat }, 757 1.1 christos {"fetoxx", 4, two(0xF000, 0x0010), two(0xF1C0, 0xE07F), "IiF8F7", mfloat }, 758 1.1 christos {"fetoxx", 4, two(0xF000, 0x4810), two(0xF1C0, 0xFC7F), "Ii;xF7", mfloat }, 759 1.1 christos {"fetoxx", 4, two(0xF000, 0x0010), two(0xF1C0, 0xE07F), "IiFt", mfloat }, 760 1.1 christos 761 1.1 christos {"fetoxm1b", 4, two(0xF000, 0x5808), two(0xF1C0, 0xFC7F), "Ii;bF7", mfloat }, 762 1.1 christos {"fetoxm1d", 4, two(0xF000, 0x5408), two(0xF1C0, 0xFC7F), "Ii;FF7", mfloat }, 763 1.1 christos {"fetoxm1l", 4, two(0xF000, 0x4008), two(0xF1C0, 0xFC7F), "Ii;lF7", mfloat }, 764 1.1 christos {"fetoxm1p", 4, two(0xF000, 0x4C08), two(0xF1C0, 0xFC7F), "Ii;pF7", mfloat }, 765 1.1 christos {"fetoxm1s", 4, two(0xF000, 0x4408), two(0xF1C0, 0xFC7F), "Ii;fF7", mfloat }, 766 1.1 christos {"fetoxm1w", 4, two(0xF000, 0x5008), two(0xF1C0, 0xFC7F), "Ii;wF7", mfloat }, 767 1.1 christos {"fetoxm1x", 4, two(0xF000, 0x0008), two(0xF1C0, 0xE07F), "IiF8F7", mfloat }, 768 1.1 christos {"fetoxm1x", 4, two(0xF000, 0x4808), two(0xF1C0, 0xFC7F), "Ii;xF7", mfloat }, 769 1.1 christos {"fetoxm1x", 4, two(0xF000, 0x0008), two(0xF1C0, 0xE07F), "IiFt", mfloat }, 770 1.1 christos 771 1.1 christos {"fgetexpb", 4, two(0xF000, 0x581E), two(0xF1C0, 0xFC7F), "Ii;bF7", mfloat }, 772 1.1 christos {"fgetexpd", 4, two(0xF000, 0x541E), two(0xF1C0, 0xFC7F), "Ii;FF7", mfloat }, 773 1.1 christos {"fgetexpl", 4, two(0xF000, 0x401E), two(0xF1C0, 0xFC7F), "Ii;lF7", mfloat }, 774 1.1 christos {"fgetexpp", 4, two(0xF000, 0x4C1E), two(0xF1C0, 0xFC7F), "Ii;pF7", mfloat }, 775 1.1 christos {"fgetexps", 4, two(0xF000, 0x441E), two(0xF1C0, 0xFC7F), "Ii;fF7", mfloat }, 776 1.1 christos {"fgetexpw", 4, two(0xF000, 0x501E), two(0xF1C0, 0xFC7F), "Ii;wF7", mfloat }, 777 1.1 christos {"fgetexpx", 4, two(0xF000, 0x001E), two(0xF1C0, 0xE07F), "IiF8F7", mfloat }, 778 1.1 christos {"fgetexpx", 4, two(0xF000, 0x481E), two(0xF1C0, 0xFC7F), "Ii;xF7", mfloat }, 779 1.1 christos {"fgetexpx", 4, two(0xF000, 0x001E), two(0xF1C0, 0xE07F), "IiFt", mfloat }, 780 1.1 christos 781 1.1 christos {"fgetmanb", 4, two(0xF000, 0x581F), two(0xF1C0, 0xFC7F), "Ii;bF7", mfloat }, 782 1.1 christos {"fgetmand", 4, two(0xF000, 0x541F), two(0xF1C0, 0xFC7F), "Ii;FF7", mfloat }, 783 1.1 christos {"fgetmanl", 4, two(0xF000, 0x401F), two(0xF1C0, 0xFC7F), "Ii;lF7", mfloat }, 784 1.1 christos {"fgetmanp", 4, two(0xF000, 0x4C1F), two(0xF1C0, 0xFC7F), "Ii;pF7", mfloat }, 785 1.1 christos {"fgetmans", 4, two(0xF000, 0x441F), two(0xF1C0, 0xFC7F), "Ii;fF7", mfloat }, 786 1.1 christos {"fgetmanw", 4, two(0xF000, 0x501F), two(0xF1C0, 0xFC7F), "Ii;wF7", mfloat }, 787 1.1 christos {"fgetmanx", 4, two(0xF000, 0x001F), two(0xF1C0, 0xE07F), "IiF8F7", mfloat }, 788 1.1 christos {"fgetmanx", 4, two(0xF000, 0x481F), two(0xF1C0, 0xFC7F), "Ii;xF7", mfloat }, 789 1.1 christos {"fgetmanx", 4, two(0xF000, 0x001F), two(0xF1C0, 0xE07F), "IiFt", mfloat }, 790 1.1 christos 791 1.1 christos {"fintb", 4, two(0xF000, 0x5801), two(0xF1C0, 0xFC7F), "Ii;bF7", mfloat }, 792 1.1 christos {"fintb", 4, two(0xF000, 0x5801), two(0xF1C0, 0xFC7F), "IibsF7", cfloat }, 793 1.1 christos {"fintd", 4, two(0xF000, 0x0001), two(0xF1C0, 0xE07F), "IiF8F7", cfloat }, 794 1.1 christos {"fintd", 4, two(0xF000, 0x0001), two(0xF1C0, 0xE07F), "IiFt", cfloat }, 795 1.1 christos {"fintd", 4, two(0xF000, 0x5401), two(0xF1C0, 0xFC7F), "Ii;FF7", mfloat }, 796 1.1 christos {"fintd", 4, two(0xF000, 0x5401), two(0xF1C0, 0xFC7F), "IiwsF7", cfloat }, 797 1.1 christos {"fintl", 4, two(0xF000, 0x4001), two(0xF1C0, 0xFC7F), "Ii;lF7", mfloat }, 798 1.1 christos {"fintl", 4, two(0xF000, 0x4001), two(0xF1C0, 0xFC7F), "IibsF7", cfloat }, 799 1.1 christos {"fintp", 4, two(0xF000, 0x4C01), two(0xF1C0, 0xFC7F), "Ii;pF7", mfloat }, 800 1.1 christos {"fints", 4, two(0xF000, 0x4401), two(0xF1C0, 0xFC7F), "Ii;fF7", mfloat }, 801 1.1 christos {"fints", 4, two(0xF000, 0x4401), two(0xF1C0, 0xFC7F), "IibsF7", cfloat }, 802 1.1 christos {"fintw", 4, two(0xF000, 0x5001), two(0xF1C0, 0xFC7F), "Ii;wF7", mfloat }, 803 1.1 christos {"fintw", 4, two(0xF000, 0x5001), two(0xF1C0, 0xFC7F), "IibsF7", cfloat }, 804 1.1 christos {"fintx", 4, two(0xF000, 0x0001), two(0xF1C0, 0xE07F), "IiF8F7", mfloat }, 805 1.1 christos {"fintx", 4, two(0xF000, 0x4801), two(0xF1C0, 0xFC7F), "Ii;xF7", mfloat }, 806 1.1 christos {"fintx", 4, two(0xF000, 0x0001), two(0xF1C0, 0xE07F), "IiFt", mfloat }, 807 1.1 christos 808 1.1 christos {"fintrzb", 4, two(0xF000, 0x5803), two(0xF1C0, 0xFC7F), "Ii;bF7", mfloat }, 809 1.1 christos {"fintrzb", 4, two(0xF000, 0x5803), two(0xF1C0, 0xFC7F), "IibsF7", cfloat }, 810 1.1 christos {"fintrzd", 4, two(0xF000, 0x0003), two(0xF1C0, 0xE07F), "IiF8F7", cfloat }, 811 1.1 christos {"fintrzd", 4, two(0xF000, 0x0003), two(0xF1C0, 0xE07F), "IiFt", cfloat }, 812 1.1 christos {"fintrzd", 4, two(0xF000, 0x5403), two(0xF1C0, 0xFC7F), "Ii;FF7", mfloat }, 813 1.1 christos {"fintrzd", 4, two(0xF000, 0x5403), two(0xF1C0, 0xFC7F), "IiwsF7", cfloat }, 814 1.1 christos {"fintrzl", 4, two(0xF000, 0x4003), two(0xF1C0, 0xFC7F), "Ii;lF7", mfloat }, 815 1.1 christos {"fintrzl", 4, two(0xF000, 0x4003), two(0xF1C0, 0xFC7F), "IibsF7", cfloat }, 816 1.1 christos {"fintrzp", 4, two(0xF000, 0x4C03), two(0xF1C0, 0xFC7F), "Ii;pF7", mfloat }, 817 1.1 christos {"fintrzs", 4, two(0xF000, 0x4403), two(0xF1C0, 0xFC7F), "Ii;fF7", mfloat }, 818 1.1 christos {"fintrzs", 4, two(0xF000, 0x4403), two(0xF1C0, 0xFC7F), "IibsF7", cfloat }, 819 1.1 christos {"fintrzw", 4, two(0xF000, 0x5003), two(0xF1C0, 0xFC7F), "Ii;wF7", mfloat }, 820 1.1 christos {"fintrzw", 4, two(0xF000, 0x5003), two(0xF1C0, 0xFC7F), "IibsF7", cfloat }, 821 1.1 christos {"fintrzx", 4, two(0xF000, 0x0003), two(0xF1C0, 0xE07F), "IiF8F7", mfloat }, 822 1.1 christos {"fintrzx", 4, two(0xF000, 0x4803), two(0xF1C0, 0xFC7F), "Ii;xF7", mfloat }, 823 1.1 christos {"fintrzx", 4, two(0xF000, 0x0003), two(0xF1C0, 0xE07F), "IiFt", mfloat }, 824 1.1 christos 825 1.1 christos {"flog10b", 4, two(0xF000, 0x5815), two(0xF1C0, 0xFC7F), "Ii;bF7", mfloat }, 826 1.1 christos {"flog10d", 4, two(0xF000, 0x5415), two(0xF1C0, 0xFC7F), "Ii;FF7", mfloat }, 827 1.1 christos {"flog10l", 4, two(0xF000, 0x4015), two(0xF1C0, 0xFC7F), "Ii;lF7", mfloat }, 828 1.1 christos {"flog10p", 4, two(0xF000, 0x4C15), two(0xF1C0, 0xFC7F), "Ii;pF7", mfloat }, 829 1.1 christos {"flog10s", 4, two(0xF000, 0x4415), two(0xF1C0, 0xFC7F), "Ii;fF7", mfloat }, 830 1.1 christos {"flog10w", 4, two(0xF000, 0x5015), two(0xF1C0, 0xFC7F), "Ii;wF7", mfloat }, 831 1.1 christos {"flog10x", 4, two(0xF000, 0x0015), two(0xF1C0, 0xE07F), "IiF8F7", mfloat }, 832 1.1 christos {"flog10x", 4, two(0xF000, 0x4815), two(0xF1C0, 0xFC7F), "Ii;xF7", mfloat }, 833 1.1 christos {"flog10x", 4, two(0xF000, 0x0015), two(0xF1C0, 0xE07F), "IiFt", mfloat }, 834 1.1 christos 835 1.1 christos {"flog2b", 4, two(0xF000, 0x5816), two(0xF1C0, 0xFC7F), "Ii;bF7", mfloat }, 836 1.1 christos {"flog2d", 4, two(0xF000, 0x5416), two(0xF1C0, 0xFC7F), "Ii;FF7", mfloat }, 837 1.1 christos {"flog2l", 4, two(0xF000, 0x4016), two(0xF1C0, 0xFC7F), "Ii;lF7", mfloat }, 838 1.1 christos {"flog2p", 4, two(0xF000, 0x4C16), two(0xF1C0, 0xFC7F), "Ii;pF7", mfloat }, 839 1.1 christos {"flog2s", 4, two(0xF000, 0x4416), two(0xF1C0, 0xFC7F), "Ii;fF7", mfloat }, 840 1.1 christos {"flog2w", 4, two(0xF000, 0x5016), two(0xF1C0, 0xFC7F), "Ii;wF7", mfloat }, 841 1.1 christos {"flog2x", 4, two(0xF000, 0x0016), two(0xF1C0, 0xE07F), "IiF8F7", mfloat }, 842 1.1 christos {"flog2x", 4, two(0xF000, 0x4816), two(0xF1C0, 0xFC7F), "Ii;xF7", mfloat }, 843 1.1 christos {"flog2x", 4, two(0xF000, 0x0016), two(0xF1C0, 0xE07F), "IiFt", mfloat }, 844 1.1 christos 845 1.1 christos {"flognb", 4, two(0xF000, 0x5814), two(0xF1C0, 0xFC7F), "Ii;bF7", mfloat }, 846 1.1 christos {"flognd", 4, two(0xF000, 0x5414), two(0xF1C0, 0xFC7F), "Ii;FF7", mfloat }, 847 1.1 christos {"flognl", 4, two(0xF000, 0x4014), two(0xF1C0, 0xFC7F), "Ii;lF7", mfloat }, 848 1.1 christos {"flognp", 4, two(0xF000, 0x4C14), two(0xF1C0, 0xFC7F), "Ii;pF7", mfloat }, 849 1.1 christos {"flogns", 4, two(0xF000, 0x4414), two(0xF1C0, 0xFC7F), "Ii;fF7", mfloat }, 850 1.1 christos {"flognw", 4, two(0xF000, 0x5014), two(0xF1C0, 0xFC7F), "Ii;wF7", mfloat }, 851 1.1 christos {"flognx", 4, two(0xF000, 0x0014), two(0xF1C0, 0xE07F), "IiF8F7", mfloat }, 852 1.1 christos {"flognx", 4, two(0xF000, 0x4814), two(0xF1C0, 0xFC7F), "Ii;xF7", mfloat }, 853 1.1 christos {"flognx", 4, two(0xF000, 0x0014), two(0xF1C0, 0xE07F), "IiFt", mfloat }, 854 1.1 christos 855 1.1 christos {"flognp1b", 4, two(0xF000, 0x5806), two(0xF1C0, 0xFC7F), "Ii;bF7", mfloat }, 856 1.1 christos {"flognp1d", 4, two(0xF000, 0x5406), two(0xF1C0, 0xFC7F), "Ii;FF7", mfloat }, 857 1.1 christos {"flognp1l", 4, two(0xF000, 0x4006), two(0xF1C0, 0xFC7F), "Ii;lF7", mfloat }, 858 1.1 christos {"flognp1p", 4, two(0xF000, 0x4C06), two(0xF1C0, 0xFC7F), "Ii;pF7", mfloat }, 859 1.1 christos {"flognp1s", 4, two(0xF000, 0x4406), two(0xF1C0, 0xFC7F), "Ii;fF7", mfloat }, 860 1.1 christos {"flognp1w", 4, two(0xF000, 0x5006), two(0xF1C0, 0xFC7F), "Ii;wF7", mfloat }, 861 1.1 christos {"flognp1x", 4, two(0xF000, 0x0006), two(0xF1C0, 0xE07F), "IiF8F7", mfloat }, 862 1.1 christos {"flognp1x", 4, two(0xF000, 0x4806), two(0xF1C0, 0xFC7F), "Ii;xF7", mfloat }, 863 1.1 christos {"flognp1x", 4, two(0xF000, 0x0006), two(0xF1C0, 0xE07F), "IiFt", mfloat }, 864 1.1 christos 865 1.1 christos {"fmodb", 4, two(0xF000, 0x5821), two(0xF1C0, 0xFC7F), "Ii;bF7", mfloat }, 866 1.1 christos {"fmodd", 4, two(0xF000, 0x5421), two(0xF1C0, 0xFC7F), "Ii;FF7", mfloat }, 867 1.1 christos {"fmodl", 4, two(0xF000, 0x4021), two(0xF1C0, 0xFC7F), "Ii;lF7", mfloat }, 868 1.1 christos {"fmodp", 4, two(0xF000, 0x4C21), two(0xF1C0, 0xFC7F), "Ii;pF7", mfloat }, 869 1.1 christos {"fmods", 4, two(0xF000, 0x4421), two(0xF1C0, 0xFC7F), "Ii;fF7", mfloat }, 870 1.1 christos {"fmodw", 4, two(0xF000, 0x5021), two(0xF1C0, 0xFC7F), "Ii;wF7", mfloat }, 871 1.1 christos {"fmodx", 4, two(0xF000, 0x0021), two(0xF1C0, 0xE07F), "IiF8F7", mfloat }, 872 1.1 christos {"fmodx", 4, two(0xF000, 0x4821), two(0xF1C0, 0xFC7F), "Ii;xF7", mfloat }, 873 1.1 christos 874 1.1 christos {"fmoveb", 4, two(0xF000, 0x5800), two(0xF1C0, 0xFC7F), "IibsF7", cfloat }, 875 1.1 christos {"fmoveb", 4, two(0xF000, 0x7800), two(0xF1C0, 0xFC7F), "IiF7bs", cfloat }, 876 1.1 christos {"fmoveb", 4, two(0xF000, 0x5800), two(0xF1C0, 0xFC7F), "Ii;bF7", mfloat }, 877 1.1 christos {"fmoveb", 4, two(0xF000, 0x7800), two(0xF1C0, 0xFC7F), "IiF7$b", mfloat }, 878 1.1 christos {"fmoved", 4, two(0xF000, 0x5400), two(0xF1C0, 0xFC7F), "Ii;FF7", mfloat }, 879 1.1 christos {"fmoved", 4, two(0xF000, 0x7400), two(0xF1C0, 0xFC7F), "IiF7~F", mfloat }, 880 1.1 christos {"fmoved", 4, two(0xF000, 0x0000), two(0xF1C0, 0xE07F), "IiF8F7", cfloat }, 881 1.1 christos {"fmoved", 4, two(0xF000, 0x5400), two(0xF1C0, 0xFC7F), "IiwsF7", cfloat }, 882 1.1 christos {"fmoved", 4, two(0xF000, 0x7400), two(0xF1C0, 0xFC7F), "IiF7ws", cfloat }, 883 1.1 christos {"fmovel", 4, two(0xF000, 0x4000), two(0xF1C0, 0xFC7F), "Ii;lF7", mfloat }, 884 1.1 christos {"fmovel", 4, two(0xF000, 0x6000), two(0xF1C0, 0xFC7F), "IiF7$l", mfloat }, 885 1.1 christos /* FIXME: the next two variants should not permit moving an address 886 1.1 christos register to anything but the floating point instruction register. */ 887 1.1 christos {"fmovel", 4, two(0xF000, 0xA000), two(0xF1C0, 0xE3FF), "Iis8%s", mfloat }, 888 1.1 christos {"fmovel", 4, two(0xF000, 0x8000), two(0xF1C0, 0xE3FF), "Ii*ls8", mfloat }, 889 1.1 christos {"fmovel", 4, two(0xF000, 0x4000), two(0xF1C0, 0xFC7F), "IibsF7", cfloat }, 890 1.1 christos {"fmovel", 4, two(0xF000, 0x6000), two(0xF1C0, 0xFC7F), "IiF7bs", cfloat }, 891 1.1 christos /* Move the FP control registers. */ 892 1.1 christos {"fmovel", 4, two(0xF000, 0xA000), two(0xF1C0, 0xE3FF), "Iis8ps", cfloat }, 893 1.1 christos {"fmovel", 4, two(0xF000, 0x8000), two(0xF1C0, 0xE3FF), "Iibss8", cfloat }, 894 1.1 christos {"fmovep", 4, two(0xF000, 0x4C00), two(0xF1C0, 0xFC7F), "Ii;pF7", mfloat }, 895 1.1 christos {"fmovep", 4, two(0xF000, 0x6C00), two(0xF1C0, 0xFC00), "IiF7~pkC", mfloat }, 896 1.1 christos {"fmovep", 4, two(0xF000, 0x7C00), two(0xF1C0, 0xFC0F), "IiF7~pDk", mfloat }, 897 1.1 christos {"fmoves", 4, two(0xF000, 0x4400), two(0xF1C0, 0xFC7F), "Ii;fF7", mfloat }, 898 1.1 christos {"fmoves", 4, two(0xF000, 0x6400), two(0xF1C0, 0xFC7F), "IiF7$f", mfloat }, 899 1.1 christos {"fmoves", 4, two(0xF000, 0x4400), two(0xF1C0, 0xFC7F), "IibsF7", cfloat }, 900 1.1 christos {"fmoves", 4, two(0xF000, 0x6400), two(0xF1C0, 0xFC7F), "IiF7qs", cfloat }, 901 1.1 christos {"fmovew", 4, two(0xF000, 0x5000), two(0xF1C0, 0xFC7F), "Ii;wF7", mfloat }, 902 1.1 christos {"fmovew", 4, two(0xF000, 0x7000), two(0xF1C0, 0xFC7F), "IiF7$w", mfloat }, 903 1.1 christos {"fmovew", 4, two(0xF000, 0x5000), two(0xF1C0, 0xFC7F), "IibsF7", cfloat }, 904 1.1 christos {"fmovew", 4, two(0xF000, 0x7000), two(0xF1C0, 0xFC7F), "IiF7qs", cfloat }, 905 1.1 christos {"fmovex", 4, two(0xF000, 0x0000), two(0xF1FF, 0xE07F), "IiF8F7", mfloat }, 906 1.1 christos {"fmovex", 4, two(0xF000, 0x4800), two(0xF1C0, 0xFC7F), "Ii;xF7", mfloat }, 907 1.1 christos {"fmovex", 4, two(0xF000, 0x6800), two(0xF1C0, 0xFC7F), "IiF7~x", mfloat }, 908 1.1 christos 909 1.1 christos {"fsmoveb", 4, two(0xF000, 0x5840), two(0xF1C0, 0xFC7F), "Ii;bF7", m68040up }, 910 1.1 christos {"fsmoveb", 4, two(0xF000, 0x5840), two(0xF1C0, 0xFC7F), "IibsF7", cfloat }, 911 1.1 christos {"fsmoveb", 4, two(0xF000, 0x7840), two(0xF1C0, 0xFC7F), "IiF7qs", cfloat }, 912 1.1 christos {"fsmoved", 4, two(0xF000, 0x0040), two(0xF1C0, 0xE07F), "IiF8F7", cfloat }, 913 1.1 christos {"fsmoved", 4, two(0xF000, 0x5440), two(0xF1C0, 0xFC7F), "Ii;FF7", m68040up }, 914 1.1 christos {"fsmoved", 4, two(0xF000, 0x5440), two(0xF1C0, 0xFC7F), "IiwsF7", cfloat }, 915 1.1 christos {"fsmoved", 4, two(0xF000, 0x7440), two(0xF1C0, 0xFC7F), "IiF7ws", cfloat }, 916 1.1 christos {"fsmovel", 4, two(0xF000, 0x4040), two(0xF1C0, 0xFC7F), "Ii;lF7", m68040up }, 917 1.1 christos {"fsmovel", 4, two(0xF000, 0x4040), two(0xF1C0, 0xFC7F), "IibsF7", cfloat }, 918 1.1 christos {"fsmovel", 4, two(0xF000, 0x6040), two(0xF1C0, 0xFC7F), "IiF7qs", cfloat }, 919 1.1 christos {"fsmoves", 4, two(0xF000, 0x4440), two(0xF1C0, 0xFC7F), "Ii;fF7", m68040up }, 920 1.1 christos {"fsmoves", 4, two(0xF000, 0x4440), two(0xF1C0, 0xFC7F), "IibsF7", cfloat }, 921 1.1 christos {"fsmoves", 4, two(0xF000, 0x6440), two(0xF1C0, 0xFC7F), "IiF7qs", cfloat }, 922 1.1 christos {"fsmovew", 4, two(0xF000, 0x5040), two(0xF1C0, 0xFC7F), "Ii;wF7", m68040up }, 923 1.1 christos {"fsmovew", 4, two(0xF000, 0x5040), two(0xF1C0, 0xFC7F), "IibsF7", cfloat }, 924 1.1 christos {"fsmovew", 4, two(0xF000, 0x7040), two(0xF1C0, 0xFC7F), "IiF7qs", cfloat }, 925 1.1 christos {"fsmovex", 4, two(0xF000, 0x0040), two(0xF1C0, 0xE07F), "IiF8F7", m68040up }, 926 1.1 christos {"fsmovex", 4, two(0xF000, 0x4840), two(0xF1C0, 0xFC7F), "Ii;xF7", m68040up }, 927 1.1 christos {"fsmovep", 4, two(0xF000, 0x4C40), two(0xF1C0, 0xFC7F), "Ii;pF7", m68040up }, 928 1.1 christos 929 1.1 christos {"fdmoveb", 4, two(0xF000, 0x5844), two(0xF1C0, 0xFC7F), "Ii;bF7", m68040up }, 930 1.1 christos {"fdmoveb", 4, two(0xF000, 0x5844), two(0xF1C0, 0xFC7F), "IibsF7", cfloat }, 931 1.1 christos {"fdmoveb", 4, two(0xF000, 0x7844), two(0xF1C0, 0xFC7F), "IiF7qs", cfloat }, 932 1.1 christos {"fdmoved", 4, two(0xF000, 0x0044), two(0xF1C0, 0xE07F), "IiF8F7", cfloat }, 933 1.1 christos {"fdmoved", 4, two(0xF000, 0x5444), two(0xF1C0, 0xFC7F), "Ii;FF7", m68040up }, 934 1.1 christos {"fdmoved", 4, two(0xF000, 0x5444), two(0xF1C0, 0xFC7F), "IiwsF7", cfloat }, 935 1.1 christos {"fdmoved", 4, two(0xF000, 0x7444), two(0xF1C0, 0xFC7F), "IiF7qs", cfloat }, 936 1.1 christos {"fdmovel", 4, two(0xF000, 0x4044), two(0xF1C0, 0xFC7F), "Ii;lF7", m68040up }, 937 1.1 christos {"fdmovel", 4, two(0xF000, 0x4044), two(0xF1C0, 0xFC7F), "IibsF7", cfloat }, 938 1.1 christos {"fdmovel", 4, two(0xF000, 0x6044), two(0xF1C0, 0xFC7F), "IiF7qs", cfloat }, 939 1.1 christos {"fdmoves", 4, two(0xF000, 0x4444), two(0xF1C0, 0xFC7F), "Ii;fF7", m68040up }, 940 1.1 christos {"fdmoves", 4, two(0xF000, 0x4444), two(0xF1C0, 0xFC7F), "IibsF7", cfloat }, 941 1.1 christos {"fdmoves", 4, two(0xF000, 0x6444), two(0xF1C0, 0xFC7F), "IiF7qs", cfloat }, 942 1.1 christos {"fdmovew", 4, two(0xF000, 0x5044), two(0xF1C0, 0xFC7F), "Ii;wF7", m68040up }, 943 1.1 christos {"fdmovew", 4, two(0xF000, 0x5044), two(0xF1C0, 0xFC7F), "IibsF7", cfloat }, 944 1.1 christos {"fdmovew", 4, two(0xF000, 0x7044), two(0xF1C0, 0xFC7F), "IiF7qs", cfloat }, 945 1.1 christos {"fdmovex", 4, two(0xF000, 0x0044), two(0xF1C0, 0xE07F), "IiF8F7", m68040up }, 946 1.1 christos {"fdmovex", 4, two(0xF000, 0x4844), two(0xF1C0, 0xFC7F), "Ii;xF7", m68040up }, 947 1.1 christos {"fdmovep", 4, two(0xF000, 0x4C44), two(0xF1C0, 0xFC7F), "Ii;pF7", m68040up }, 948 1.1 christos 949 1.1 christos {"fmovecrx", 4, two(0xF000, 0x5C00), two(0xF1FF, 0xFC00), "Ii#CF7", mfloat }, 950 1.1 christos 951 1.1 christos {"fmovemd", 4, two(0xF000, 0xD000), two(0xF1C0, 0xFF00), "Iizsl3", cfloat }, 952 1.1 christos {"fmovemd", 4, two(0xF000, 0xD000), two(0xF1C0, 0xFF00), "Iizs#3", cfloat }, 953 1.1 christos {"fmovemd", 4, two(0xF000, 0xF000), two(0xF1C0, 0xFF00), "Iil3ys", cfloat }, 954 1.1 christos {"fmovemd", 4, two(0xF000, 0xF000), two(0xF1C0, 0xFF00), "Ii#3ys", cfloat }, 955 1.1 christos 956 1.1 christos {"fmovemx", 4, two(0xF000, 0xF800), two(0xF1C0, 0xFF8F), "IiDk&s", mfloat }, 957 1.1 christos {"fmovemx", 4, two(0xF020, 0xE800), two(0xF1F8, 0xFF8F), "IiDk-s", mfloat }, 958 1.1 christos {"fmovemx", 4, two(0xF000, 0xD800), two(0xF1C0, 0xFF8F), "Ii&sDk", mfloat }, 959 1.1 christos {"fmovemx", 4, two(0xF018, 0xD800), two(0xF1F8, 0xFF8F), "Ii+sDk", mfloat }, 960 1.1 christos {"fmovemx", 4, two(0xF000, 0xF000), two(0xF1C0, 0xFF00), "Idl3&s", mfloat }, 961 1.1 christos {"fmovemx", 4, two(0xF000, 0xF000), two(0xF1C0, 0xFF00), "Id#3&s", mfloat }, 962 1.1 christos {"fmovemx", 4, two(0xF000, 0xD000), two(0xF1C0, 0xFF00), "Id&sl3", mfloat }, 963 1.1 christos {"fmovemx", 4, two(0xF000, 0xD000), two(0xF1C0, 0xFF00), "Id&s#3", mfloat }, 964 1.1 christos {"fmovemx", 4, two(0xF020, 0xE000), two(0xF1F8, 0xFF00), "IdL3-s", mfloat }, 965 1.1 christos {"fmovemx", 4, two(0xF020, 0xE000), two(0xF1F8, 0xFF00), "Id#3-s", mfloat }, 966 1.1 christos {"fmovemx", 4, two(0xF018, 0xD000), two(0xF1F8, 0xFF00), "Id+sl3", mfloat }, 967 1.1 christos {"fmovemx", 4, two(0xF018, 0xD000), two(0xF1F8, 0xFF00), "Id+s#3", mfloat }, 968 1.1 christos 969 1.1 christos {"fmoveml", 4, two(0xF000, 0xA000), two(0xF1C0, 0xE3FF), "Iis8%s", mfloat }, 970 1.1 christos {"fmoveml", 4, two(0xF000, 0xA000), two(0xF1C0, 0xE3FF), "IiL8~s", mfloat }, 971 1.1 christos /* FIXME: In the next instruction, we should only permit %dn if the 972 1.1 christos target is a single register. We should only permit %an if the 973 1.1 christos target is a single %fpiar. */ 974 1.1 christos {"fmoveml", 4, two(0xF000, 0x8000), two(0xF1C0, 0xE3FF), "Ii*lL8", mfloat }, 975 1.1 christos 976 1.1 christos {"fmovem", 4, two(0xF000, 0xD000), two(0xF1C0, 0xFF00), "Iizsl3", cfloat }, 977 1.1 christos {"fmovem", 4, two(0xF000, 0xD000), two(0xF1C0, 0xFF00), "Iizs#3", cfloat }, 978 1.1 christos {"fmovem", 4, two(0xF000, 0xF000), two(0xF1C0, 0xFF00), "Iil3ys", cfloat }, 979 1.1 christos {"fmovem", 4, two(0xF000, 0xF000), two(0xF1C0, 0xFF00), "Ii#3ys", cfloat }, 980 1.1 christos 981 1.1 christos {"fmovem", 4, two(0xF020, 0xE000), two(0xF1F8, 0xFF00), "IdL3-s", mfloat }, 982 1.1 christos {"fmovem", 4, two(0xF000, 0xF000), two(0xF1C0, 0xFF00), "Idl3&s", mfloat }, 983 1.1 christos {"fmovem", 4, two(0xF018, 0xD000), two(0xF1F8, 0xFF00), "Id+sl3", mfloat }, 984 1.1 christos {"fmovem", 4, two(0xF000, 0xD000), two(0xF1C0, 0xFF00), "Id&sl3", mfloat }, 985 1.1 christos {"fmovem", 4, two(0xF020, 0xE000), two(0xF1F8, 0xFF00), "Id#3-s", mfloat }, 986 1.1 christos {"fmovem", 4, two(0xF020, 0xE800), two(0xF1F8, 0xFF8F), "IiDk-s", mfloat }, 987 1.1 christos {"fmovem", 4, two(0xF000, 0xF000), two(0xF1C0, 0xFF00), "Id#3&s", mfloat }, 988 1.1 christos {"fmovem", 4, two(0xF000, 0xF800), two(0xF1C0, 0xFF8F), "IiDk&s", mfloat }, 989 1.1 christos {"fmovem", 4, two(0xF018, 0xD000), two(0xF1F8, 0xFF00), "Id+s#3", mfloat }, 990 1.1 christos {"fmovem", 4, two(0xF018, 0xD800), two(0xF1F8, 0xFF8F), "Ii+sDk", mfloat }, 991 1.1 christos {"fmovem", 4, two(0xF000, 0xD000), two(0xF1C0, 0xFF00), "Id&s#3", mfloat }, 992 1.1 christos {"fmovem", 4, two(0xF000, 0xD800), two(0xF1C0, 0xFF8F), "Ii&sDk", mfloat }, 993 1.1 christos {"fmovem", 4, two(0xF000, 0xA000), two(0xF1C0, 0xE3FF), "Iis8%s", mfloat }, 994 1.1 christos {"fmovem", 4, two(0xF000, 0x8000), two(0xF1C0, 0xE3FF), "Ii*ss8", mfloat }, 995 1.1 christos {"fmovem", 4, two(0xF000, 0xA000), two(0xF1C0, 0xE3FF), "IiL8~s", mfloat }, 996 1.1 christos {"fmovem", 4, two(0xF000, 0x8000), two(0xF2C0, 0xE3FF), "Ii*sL8", mfloat }, 997 1.1 christos 998 1.1 christos {"fmulb", 4, two(0xF000, 0x5823), two(0xF1C0, 0xFC7F), "Ii;bF7", mfloat }, 999 1.1 christos {"fmulb", 4, two(0xF000, 0x5823), two(0xF1C0, 0xFC7F), "IibsF7", cfloat }, 1000 1.1 christos {"fmuld", 4, two(0xF000, 0x0023), two(0xF1C0, 0xE07F), "IiF8F7", cfloat }, 1001 1.1 christos {"fmuld", 4, two(0xF000, 0x5423), two(0xF1C0, 0xFC7F), "Ii;FF7", mfloat }, 1002 1.1 christos {"fmuld", 4, two(0xF000, 0x5423), two(0xF1C0, 0xFC7F), "IiwsF7", cfloat }, 1003 1.1 christos {"fmull", 4, two(0xF000, 0x4023), two(0xF1C0, 0xFC7F), "Ii;lF7", mfloat }, 1004 1.1 christos {"fmull", 4, two(0xF000, 0x4023), two(0xF1C0, 0xFC7F), "IibsF7", cfloat }, 1005 1.1 christos {"fmulp", 4, two(0xF000, 0x4C23), two(0xF1C0, 0xFC7F), "Ii;pF7", mfloat }, 1006 1.1 christos {"fmuls", 4, two(0xF000, 0x4423), two(0xF1C0, 0xFC7F), "Ii;fF7", mfloat }, 1007 1.1 christos {"fmuls", 4, two(0xF000, 0x4423), two(0xF1C0, 0xFC7F), "IibsF7", cfloat }, 1008 1.1 christos {"fmulw", 4, two(0xF000, 0x5023), two(0xF1C0, 0xFC7F), "Ii;wF7", mfloat }, 1009 1.1 christos {"fmulw", 4, two(0xF000, 0x5023), two(0xF1C0, 0xFC7F), "IibsF7", cfloat }, 1010 1.1 christos {"fmulx", 4, two(0xF000, 0x0023), two(0xF1C0, 0xE07F), "IiF8F7", mfloat }, 1011 1.1 christos {"fmulx", 4, two(0xF000, 0x4823), two(0xF1C0, 0xFC7F), "Ii;xF7", mfloat }, 1012 1.1 christos 1013 1.1 christos {"fsmulb", 4, two(0xF000, 0x5863), two(0xF1C0, 0xFC7F), "Ii;bF7", m68040up }, 1014 1.1 christos {"fsmulb", 4, two(0xF000, 0x5863), two(0xF1C0, 0xFC7F), "IibsF7", cfloat }, 1015 1.1 christos {"fsmuld", 4, two(0xF000, 0x0063), two(0xF1C0, 0xE07F), "IiF8F7", cfloat }, 1016 1.1 christos {"fsmuld", 4, two(0xF000, 0x5463), two(0xF1C0, 0xFC7F), "Ii;FF7", m68040up }, 1017 1.1 christos {"fsmuld", 4, two(0xF000, 0x5463), two(0xF1C0, 0xFC7F), "IiwsF7", cfloat }, 1018 1.1 christos {"fsmull", 4, two(0xF000, 0x4063), two(0xF1C0, 0xFC7F), "Ii;lF7", m68040up }, 1019 1.1 christos {"fsmull", 4, two(0xF000, 0x4063), two(0xF1C0, 0xFC7F), "IibsF7", cfloat }, 1020 1.1 christos {"fsmulp", 4, two(0xF000, 0x4C63), two(0xF1C0, 0xFC7F), "Ii;pF7", m68040up }, 1021 1.1 christos {"fsmuls", 4, two(0xF000, 0x4463), two(0xF1C0, 0xFC7F), "Ii;fF7", m68040up }, 1022 1.1 christos {"fsmuls", 4, two(0xF000, 0x4463), two(0xF1C0, 0xFC7F), "IibsF7", cfloat }, 1023 1.1 christos {"fsmulw", 4, two(0xF000, 0x5063), two(0xF1C0, 0xFC7F), "Ii;wF7", m68040up }, 1024 1.1 christos {"fsmulw", 4, two(0xF000, 0x5063), two(0xF1C0, 0xFC7F), "IibsF7", cfloat }, 1025 1.1 christos {"fsmulx", 4, two(0xF000, 0x0063), two(0xF1C0, 0xE07F), "IiF8F7", m68040up }, 1026 1.1 christos {"fsmulx", 4, two(0xF000, 0x4863), two(0xF1C0, 0xFC7F), "Ii;xF7", m68040up }, 1027 1.1 christos 1028 1.1 christos {"fdmulb", 4, two(0xF000, 0x5867), two(0xF1C0, 0xFC7F), "Ii;bF7", m68040up }, 1029 1.1 christos {"fdmulb", 4, two(0xF000, 0x5867), two(0xF1C0, 0xFC7F), "IibsF7", cfloat }, 1030 1.1 christos {"fdmuld", 4, two(0xF000, 0x0067), two(0xF1C0, 0xE07F), "IiF8F7", cfloat }, 1031 1.1 christos {"fdmuld", 4, two(0xF000, 0x5467), two(0xF1C0, 0xFC7F), "Ii;FF7", m68040up }, 1032 1.1 christos {"fdmuld", 4, two(0xF000, 0x5467), two(0xF1C0, 0xFC7F), "IiwsF7", cfloat }, 1033 1.1 christos {"fdmull", 4, two(0xF000, 0x4067), two(0xF1C0, 0xFC7F), "Ii;lF7", m68040up }, 1034 1.1 christos {"fdmull", 4, two(0xF000, 0x4067), two(0xF1C0, 0xFC7F), "IibsF7", cfloat }, 1035 1.1 christos {"fdmulp", 4, two(0xF000, 0x4C67), two(0xF1C0, 0xFC7F), "Ii;pF7", m68040up }, 1036 1.1 christos {"fdmuls", 4, two(0xF000, 0x4467), two(0xF1C0, 0xFC7F), "Ii;fF7", m68040up }, 1037 1.1 christos {"fdmuls", 4, two(0xF000, 0x4467), two(0xF1C0, 0xFC7F), "IibsF7", cfloat }, 1038 1.1 christos {"fdmulw", 4, two(0xF000, 0x5067), two(0xF1C0, 0xFC7F), "Ii;wF7", m68040up }, 1039 1.1 christos {"fdmulw", 4, two(0xF000, 0x5067), two(0xF1C0, 0xFC7F), "IibsF7", cfloat }, 1040 1.1 christos {"fdmulx", 4, two(0xF000, 0x0067), two(0xF1C0, 0xE07F), "IiF8F7", m68040up }, 1041 1.1 christos {"fdmulx", 4, two(0xF000, 0x4867), two(0xF1C0, 0xFC7F), "Ii;xF7", m68040up }, 1042 1.1 christos 1043 1.1 christos {"fnegb", 4, two(0xF000, 0x581A), two(0xF1C0, 0xFC7F), "Ii;bF7", mfloat }, 1044 1.1 christos {"fnegb", 4, two(0xF000, 0x581A), two(0xF1C0, 0xFC7F), "IibsF7", cfloat }, 1045 1.1 christos {"fnegd", 4, two(0xF000, 0x001A), two(0xF1C0, 0xE07F), "IiF8F7", cfloat }, 1046 1.1 christos {"fnegd", 4, two(0xF000, 0x001A), two(0xF1C0, 0xE07F), "IiFt", cfloat }, 1047 1.1 christos {"fnegd", 4, two(0xF000, 0x541A), two(0xF1C0, 0xFC7F), "Ii;FF7", mfloat }, 1048 1.1 christos {"fnegd", 4, two(0xF000, 0x541A), two(0xF1C0, 0xFC7F), "IiwsF7", cfloat }, 1049 1.1 christos {"fnegl", 4, two(0xF000, 0x401A), two(0xF1C0, 0xFC7F), "Ii;lF7", mfloat }, 1050 1.1 christos {"fnegl", 4, two(0xF000, 0x401A), two(0xF1C0, 0xFC7F), "IibsF7", cfloat }, 1051 1.1 christos {"fnegp", 4, two(0xF000, 0x4C1A), two(0xF1C0, 0xFC7F), "Ii;pF7", mfloat }, 1052 1.1 christos {"fnegs", 4, two(0xF000, 0x441A), two(0xF1C0, 0xFC7F), "Ii;fF7", mfloat }, 1053 1.1 christos {"fnegs", 4, two(0xF000, 0x441A), two(0xF1C0, 0xFC7F), "IibsF7", cfloat }, 1054 1.1 christos {"fnegw", 4, two(0xF000, 0x501A), two(0xF1C0, 0xFC7F), "Ii;wF7", mfloat }, 1055 1.1 christos {"fnegw", 4, two(0xF000, 0x501A), two(0xF1C0, 0xFC7F), "IibsF7", cfloat }, 1056 1.1 christos {"fnegx", 4, two(0xF000, 0x001A), two(0xF1C0, 0xE07F), "IiF8F7", mfloat }, 1057 1.1 christos {"fnegx", 4, two(0xF000, 0x481A), two(0xF1C0, 0xFC7F), "Ii;xF7", mfloat }, 1058 1.1 christos {"fnegx", 4, two(0xF000, 0x001A), two(0xF1C0, 0xE07F), "IiFt", mfloat }, 1059 1.1 christos 1060 1.1 christos {"fsnegb", 4, two(0xF000, 0x585A), two(0xF1C0, 0xFC7F), "Ii;bF7", m68040up }, 1061 1.1 christos {"fsnegb", 4, two(0xF000, 0x585A), two(0xF1C0, 0xFC7F), "IibsF7", cfloat }, 1062 1.1 christos {"fsnegd", 4, two(0xF000, 0x005A), two(0xF1C0, 0xE07F), "IiF8F7", cfloat }, 1063 1.1 christos {"fsnegd", 4, two(0xF000, 0x005A), two(0xF1C0, 0xE07F), "IiFt", cfloat }, 1064 1.1 christos {"fsnegd", 4, two(0xF000, 0x545A), two(0xF1C0, 0xFC7F), "Ii;FF7", m68040up }, 1065 1.1 christos {"fsnegd", 4, two(0xF000, 0x545A), two(0xF1C0, 0xFC7F), "IiwsF7", cfloat }, 1066 1.1 christos {"fsnegl", 4, two(0xF000, 0x405A), two(0xF1C0, 0xFC7F), "Ii;lF7", m68040up }, 1067 1.1 christos {"fsnegl", 4, two(0xF000, 0x405A), two(0xF1C0, 0xFC7F), "IibsF7", cfloat }, 1068 1.1 christos {"fsnegp", 4, two(0xF000, 0x4C5A), two(0xF1C0, 0xFC7F), "Ii;pF7", m68040up }, 1069 1.1 christos {"fsnegs", 4, two(0xF000, 0x445A), two(0xF1C0, 0xFC7F), "Ii;fF7", m68040up }, 1070 1.1 christos {"fsnegs", 4, two(0xF000, 0x445A), two(0xF1C0, 0xFC7F), "IibsF7", cfloat }, 1071 1.1 christos {"fsnegw", 4, two(0xF000, 0x505A), two(0xF1C0, 0xFC7F), "Ii;wF7", m68040up }, 1072 1.1 christos {"fsnegw", 4, two(0xF000, 0x505A), two(0xF1C0, 0xFC7F), "IibsF7", cfloat }, 1073 1.1 christos {"fsnegx", 4, two(0xF000, 0x005A), two(0xF1C0, 0xE07F), "IiF8F7", m68040up }, 1074 1.1 christos {"fsnegx", 4, two(0xF000, 0x485A), two(0xF1C0, 0xFC7F), "Ii;xF7", m68040up }, 1075 1.1 christos {"fsnegx", 4, two(0xF000, 0x005A), two(0xF1C0, 0xE07F), "IiFt", m68040up }, 1076 1.1 christos 1077 1.1 christos {"fdnegb", 4, two(0xF000, 0x585E), two(0xF1C0, 0xFC7F), "Ii;bF7", m68040up }, 1078 1.1 christos {"fdnegb", 4, two(0xF000, 0x585E), two(0xF1C0, 0xFC7F), "IibsF7", cfloat }, 1079 1.1 christos {"fdnegd", 4, two(0xF000, 0x005E), two(0xF1C0, 0xE07F), "IiF8F7", cfloat }, 1080 1.1 christos {"fdnegd", 4, two(0xF000, 0x005E), two(0xF1C0, 0xE07F), "IiFt", cfloat }, 1081 1.1 christos {"fdnegd", 4, two(0xF000, 0x545E), two(0xF1C0, 0xFC7F), "Ii;FF7", m68040up }, 1082 1.1 christos {"fdnegd", 4, two(0xF000, 0x545E), two(0xF1C0, 0xFC7F), "IiwsF7", cfloat }, 1083 1.1 christos {"fdnegl", 4, two(0xF000, 0x405E), two(0xF1C0, 0xFC7F), "Ii;lF7", m68040up }, 1084 1.1 christos {"fdnegl", 4, two(0xF000, 0x405E), two(0xF1C0, 0xFC7F), "IibsF7", cfloat }, 1085 1.1 christos {"fdnegp", 4, two(0xF000, 0x4C5E), two(0xF1C0, 0xFC7F), "Ii;pF7", m68040up }, 1086 1.1 christos {"fdnegs", 4, two(0xF000, 0x445E), two(0xF1C0, 0xFC7F), "Ii;fF7", m68040up }, 1087 1.1 christos {"fdnegs", 4, two(0xF000, 0x445E), two(0xF1C0, 0xFC7F), "IibsF7", cfloat }, 1088 1.1 christos {"fdnegw", 4, two(0xF000, 0x505E), two(0xF1C0, 0xFC7F), "Ii;wF7", m68040up }, 1089 1.1 christos {"fdnegw", 4, two(0xF000, 0x505E), two(0xF1C0, 0xFC7F), "IibsF7", cfloat }, 1090 1.1 christos {"fdnegx", 4, two(0xF000, 0x005E), two(0xF1C0, 0xE07F), "IiF8F7", m68040up }, 1091 1.1 christos {"fdnegx", 4, two(0xF000, 0x485E), two(0xF1C0, 0xFC7F), "Ii;xF7", m68040up }, 1092 1.1 christos {"fdnegx", 4, two(0xF000, 0x005E), two(0xF1C0, 0xE07F), "IiFt", m68040up }, 1093 1.1 christos 1094 1.1 christos {"fremb", 4, two(0xF000, 0x5825), two(0xF1C0, 0xFC7F), "Ii;bF7", mfloat }, 1095 1.1 christos {"fremd", 4, two(0xF000, 0x5425), two(0xF1C0, 0xFC7F), "Ii;FF7", mfloat }, 1096 1.1 christos {"freml", 4, two(0xF000, 0x4025), two(0xF1C0, 0xFC7F), "Ii;lF7", mfloat }, 1097 1.1 christos {"fremp", 4, two(0xF000, 0x4C25), two(0xF1C0, 0xFC7F), "Ii;pF7", mfloat }, 1098 1.1 christos {"frems", 4, two(0xF000, 0x4425), two(0xF1C0, 0xFC7F), "Ii;fF7", mfloat }, 1099 1.1 christos {"fremw", 4, two(0xF000, 0x5025), two(0xF1C0, 0xFC7F), "Ii;wF7", mfloat }, 1100 1.1 christos {"fremx", 4, two(0xF000, 0x0025), two(0xF1C0, 0xE07F), "IiF8F7", mfloat }, 1101 1.1 christos {"fremx", 4, two(0xF000, 0x4825), two(0xF1C0, 0xFC7F), "Ii;xF7", mfloat }, 1102 1.1 christos 1103 1.1 christos {"frestore", 2, one(0xF140), one(0xF1C0), "Id<s", mfloat }, 1104 1.1 christos {"frestore", 2, one(0xF140), one(0xF1C0), "Idys", cfloat }, 1105 1.1 christos 1106 1.1 christos {"fsave", 2, one(0xF100), one(0xF1C0), "Id>s", mfloat }, 1107 1.1 christos {"fsave", 2, one(0xF100), one(0xF1C0), "Idzs", cfloat }, 1108 1.1 christos 1109 1.1 christos {"fscaleb", 4, two(0xF000, 0x5826), two(0xF1C0, 0xFC7F), "Ii;bF7", mfloat }, 1110 1.1 christos {"fscaled", 4, two(0xF000, 0x5426), two(0xF1C0, 0xFC7F), "Ii;FF7", mfloat }, 1111 1.1 christos {"fscalel", 4, two(0xF000, 0x4026), two(0xF1C0, 0xFC7F), "Ii;lF7", mfloat }, 1112 1.1 christos {"fscalep", 4, two(0xF000, 0x4C26), two(0xF1C0, 0xFC7F), "Ii;pF7", mfloat }, 1113 1.1 christos {"fscales", 4, two(0xF000, 0x4426), two(0xF1C0, 0xFC7F), "Ii;fF7", mfloat }, 1114 1.1 christos {"fscalew", 4, two(0xF000, 0x5026), two(0xF1C0, 0xFC7F), "Ii;wF7", mfloat }, 1115 1.1 christos {"fscalex", 4, two(0xF000, 0x0026), two(0xF1C0, 0xE07F), "IiF8F7", mfloat }, 1116 1.1 christos {"fscalex", 4, two(0xF000, 0x4826), two(0xF1C0, 0xFC7F), "Ii;xF7", mfloat }, 1117 1.1 christos 1118 1.1 christos /* $ is necessary to prevent the assembler from using PC-relative. 1119 1.1 christos If @ were used, "label: fseq label" could produce "ftrapeq", 2, 1120 1.1 christos because "label" became "pc@label". */ 1121 1.1 christos {"fseq", 4, two(0xF040, 0x0001), two(0xF1C0, 0xFFFF), "Ii$s", mfloat }, 1122 1.1 christos {"fsf", 4, two(0xF040, 0x0000), two(0xF1C0, 0xFFFF), "Ii$s", mfloat }, 1123 1.1 christos {"fsge", 4, two(0xF040, 0x0013), two(0xF1C0, 0xFFFF), "Ii$s", mfloat }, 1124 1.1 christos {"fsgl", 4, two(0xF040, 0x0016), two(0xF1C0, 0xFFFF), "Ii$s", mfloat }, 1125 1.1 christos {"fsgle", 4, two(0xF040, 0x0017), two(0xF1C0, 0xFFFF), "Ii$s", mfloat }, 1126 1.1 christos {"fsgt", 4, two(0xF040, 0x0012), two(0xF1C0, 0xFFFF), "Ii$s", mfloat }, 1127 1.1 christos {"fsle", 4, two(0xF040, 0x0015), two(0xF1C0, 0xFFFF), "Ii$s", mfloat }, 1128 1.1 christos {"fslt", 4, two(0xF040, 0x0014), two(0xF1C0, 0xFFFF), "Ii$s", mfloat }, 1129 1.1 christos {"fsne", 4, two(0xF040, 0x000E), two(0xF1C0, 0xFFFF), "Ii$s", mfloat }, 1130 1.1 christos {"fsnge", 4, two(0xF040, 0x001C), two(0xF1C0, 0xFFFF), "Ii$s", mfloat }, 1131 1.1 christos {"fsngl", 4, two(0xF040, 0x0019), two(0xF1C0, 0xFFFF), "Ii$s", mfloat }, 1132 1.1 christos {"fsngle", 4, two(0xF040, 0x0018), two(0xF1C0, 0xFFFF), "Ii$s", mfloat }, 1133 1.1 christos {"fsngt", 4, two(0xF040, 0x001D), two(0xF1C0, 0xFFFF), "Ii$s", mfloat }, 1134 1.1 christos {"fsnle", 4, two(0xF040, 0x001A), two(0xF1C0, 0xFFFF), "Ii$s", mfloat }, 1135 1.1 christos {"fsnlt", 4, two(0xF040, 0x001B), two(0xF1C0, 0xFFFF), "Ii$s", mfloat }, 1136 1.1 christos {"fsoge", 4, two(0xF040, 0x0003), two(0xF1C0, 0xFFFF), "Ii$s", mfloat }, 1137 1.1 christos {"fsogl", 4, two(0xF040, 0x0006), two(0xF1C0, 0xFFFF), "Ii$s", mfloat }, 1138 1.1 christos {"fsogt", 4, two(0xF040, 0x0002), two(0xF1C0, 0xFFFF), "Ii$s", mfloat }, 1139 1.1 christos {"fsole", 4, two(0xF040, 0x0005), two(0xF1C0, 0xFFFF), "Ii$s", mfloat }, 1140 1.1 christos {"fsolt", 4, two(0xF040, 0x0004), two(0xF1C0, 0xFFFF), "Ii$s", mfloat }, 1141 1.1 christos {"fsor", 4, two(0xF040, 0x0007), two(0xF1C0, 0xFFFF), "Ii$s", mfloat }, 1142 1.1 christos {"fsseq", 4, two(0xF040, 0x0011), two(0xF1C0, 0xFFFF), "Ii$s", mfloat }, 1143 1.1 christos {"fssf", 4, two(0xF040, 0x0010), two(0xF1C0, 0xFFFF), "Ii$s", mfloat }, 1144 1.1 christos {"fssne", 4, two(0xF040, 0x001E), two(0xF1C0, 0xFFFF), "Ii$s", mfloat }, 1145 1.1 christos {"fsst", 4, two(0xF040, 0x001F), two(0xF1C0, 0xFFFF), "Ii$s", mfloat }, 1146 1.1 christos {"fst", 4, two(0xF040, 0x000F), two(0xF1C0, 0xFFFF), "Ii$s", mfloat }, 1147 1.1 christos {"fsueq", 4, two(0xF040, 0x0009), two(0xF1C0, 0xFFFF), "Ii$s", mfloat }, 1148 1.1 christos {"fsuge", 4, two(0xF040, 0x000B), two(0xF1C0, 0xFFFF), "Ii$s", mfloat }, 1149 1.1 christos {"fsugt", 4, two(0xF040, 0x000A), two(0xF1C0, 0xFFFF), "Ii$s", mfloat }, 1150 1.1 christos {"fsule", 4, two(0xF040, 0x000D), two(0xF1C0, 0xFFFF), "Ii$s", mfloat }, 1151 1.1 christos {"fsult", 4, two(0xF040, 0x000C), two(0xF1C0, 0xFFFF), "Ii$s", mfloat }, 1152 1.1 christos {"fsun", 4, two(0xF040, 0x0008), two(0xF1C0, 0xFFFF), "Ii$s", mfloat }, 1153 1.1 christos 1154 1.1 christos {"fsgldivb", 4, two(0xF000, 0x5824), two(0xF1C0, 0xFC7F), "Ii;bF7", mfloat }, 1155 1.1 christos {"fsgldivd", 4, two(0xF000, 0x5424), two(0xF1C0, 0xFC7F), "Ii;FF7", mfloat }, 1156 1.1 christos {"fsgldivl", 4, two(0xF000, 0x4024), two(0xF1C0, 0xFC7F), "Ii;lF7", mfloat }, 1157 1.1 christos {"fsgldivp", 4, two(0xF000, 0x4C24), two(0xF1C0, 0xFC7F), "Ii;pF7", mfloat }, 1158 1.1 christos {"fsgldivs", 4, two(0xF000, 0x4424), two(0xF1C0, 0xFC7F), "Ii;fF7", mfloat }, 1159 1.1 christos {"fsgldivw", 4, two(0xF000, 0x5024), two(0xF1C0, 0xFC7F), "Ii;wF7", mfloat }, 1160 1.1 christos {"fsgldivx", 4, two(0xF000, 0x0024), two(0xF1C0, 0xE07F), "IiF8F7", mfloat }, 1161 1.1 christos {"fsgldivx", 4, two(0xF000, 0x4824), two(0xF1C0, 0xFC7F), "Ii;xF7", mfloat }, 1162 1.1 christos {"fsgldivx", 4, two(0xF000, 0x0024), two(0xF1C0, 0xE07F), "IiFt", mfloat }, 1163 1.1 christos 1164 1.1 christos {"fsglmulb", 4, two(0xF000, 0x5827), two(0xF1C0, 0xFC7F), "Ii;bF7", mfloat }, 1165 1.1 christos {"fsglmuld", 4, two(0xF000, 0x5427), two(0xF1C0, 0xFC7F), "Ii;FF7", mfloat }, 1166 1.1 christos {"fsglmull", 4, two(0xF000, 0x4027), two(0xF1C0, 0xFC7F), "Ii;lF7", mfloat }, 1167 1.1 christos {"fsglmulp", 4, two(0xF000, 0x4C27), two(0xF1C0, 0xFC7F), "Ii;pF7", mfloat }, 1168 1.1 christos {"fsglmuls", 4, two(0xF000, 0x4427), two(0xF1C0, 0xFC7F), "Ii;fF7", mfloat }, 1169 1.1 christos {"fsglmulw", 4, two(0xF000, 0x5027), two(0xF1C0, 0xFC7F), "Ii;wF7", mfloat }, 1170 1.1 christos {"fsglmulx", 4, two(0xF000, 0x0027), two(0xF1C0, 0xE07F), "IiF8F7", mfloat }, 1171 1.1 christos {"fsglmulx", 4, two(0xF000, 0x4827), two(0xF1C0, 0xFC7F), "Ii;xF7", mfloat }, 1172 1.1 christos {"fsglmulx", 4, two(0xF000, 0x0027), two(0xF1C0, 0xE07F), "IiFt", mfloat }, 1173 1.1 christos 1174 1.1 christos {"fsinb", 4, two(0xF000, 0x580E), two(0xF1C0, 0xFC7F), "Ii;bF7", mfloat }, 1175 1.1 christos {"fsind", 4, two(0xF000, 0x540E), two(0xF1C0, 0xFC7F), "Ii;FF7", mfloat }, 1176 1.1 christos {"fsinl", 4, two(0xF000, 0x400E), two(0xF1C0, 0xFC7F), "Ii;lF7", mfloat }, 1177 1.1 christos {"fsinp", 4, two(0xF000, 0x4C0E), two(0xF1C0, 0xFC7F), "Ii;pF7", mfloat }, 1178 1.1 christos {"fsins", 4, two(0xF000, 0x440E), two(0xF1C0, 0xFC7F), "Ii;fF7", mfloat }, 1179 1.1 christos {"fsinw", 4, two(0xF000, 0x500E), two(0xF1C0, 0xFC7F), "Ii;wF7", mfloat }, 1180 1.1 christos {"fsinx", 4, two(0xF000, 0x000E), two(0xF1C0, 0xE07F), "IiF8F7", mfloat }, 1181 1.1 christos {"fsinx", 4, two(0xF000, 0x480E), two(0xF1C0, 0xFC7F), "Ii;xF7", mfloat }, 1182 1.1 christos {"fsinx", 4, two(0xF000, 0x000E), two(0xF1C0, 0xE07F), "IiFt", mfloat }, 1183 1.1 christos 1184 1.1 christos {"fsincosb", 4, two(0xF000, 0x5830), two(0xF1C0, 0xFC78), "Ii;bF3F7", mfloat }, 1185 1.1 christos {"fsincosd", 4, two(0xF000, 0x5430), two(0xF1C0, 0xFC78), "Ii;FF3F7", mfloat }, 1186 1.1 christos {"fsincosl", 4, two(0xF000, 0x4030), two(0xF1C0, 0xFC78), "Ii;lF3F7", mfloat }, 1187 1.1 christos {"fsincosp", 4, two(0xF000, 0x4C30), two(0xF1C0, 0xFC78), "Ii;pF3F7", mfloat }, 1188 1.1 christos {"fsincoss", 4, two(0xF000, 0x4430), two(0xF1C0, 0xFC78), "Ii;fF3F7", mfloat }, 1189 1.1 christos {"fsincosw", 4, two(0xF000, 0x5030), two(0xF1C0, 0xFC78), "Ii;wF3F7", mfloat }, 1190 1.1 christos {"fsincosx", 4, two(0xF000, 0x0030), two(0xF1C0, 0xE078), "IiF8F3F7", mfloat }, 1191 1.1 christos {"fsincosx", 4, two(0xF000, 0x4830), two(0xF1C0, 0xFC78), "Ii;xF3F7", mfloat }, 1192 1.1 christos 1193 1.1 christos {"fsinhb", 4, two(0xF000, 0x5802), two(0xF1C0, 0xFC7F), "Ii;bF7", mfloat }, 1194 1.1 christos {"fsinhd", 4, two(0xF000, 0x5402), two(0xF1C0, 0xFC7F), "Ii;FF7", mfloat }, 1195 1.1 christos {"fsinhl", 4, two(0xF000, 0x4002), two(0xF1C0, 0xFC7F), "Ii;lF7", mfloat }, 1196 1.1 christos {"fsinhp", 4, two(0xF000, 0x4C02), two(0xF1C0, 0xFC7F), "Ii;pF7", mfloat }, 1197 1.1 christos {"fsinhs", 4, two(0xF000, 0x4402), two(0xF1C0, 0xFC7F), "Ii;fF7", mfloat }, 1198 1.1 christos {"fsinhw", 4, two(0xF000, 0x5002), two(0xF1C0, 0xFC7F), "Ii;wF7", mfloat }, 1199 1.1 christos {"fsinhx", 4, two(0xF000, 0x0002), two(0xF1C0, 0xE07F), "IiF8F7", mfloat }, 1200 1.1 christos {"fsinhx", 4, two(0xF000, 0x4802), two(0xF1C0, 0xFC7F), "Ii;xF7", mfloat }, 1201 1.1 christos {"fsinhx", 4, two(0xF000, 0x0002), two(0xF1C0, 0xE07F), "IiFt", mfloat }, 1202 1.1 christos 1203 1.1 christos {"fsqrtb", 4, two(0xF000, 0x5804), two(0xF1C0, 0xFC7F), "Ii;bF7", mfloat }, 1204 1.1 christos {"fsqrtb", 4, two(0xF000, 0x5804), two(0xF1C0, 0xFC7F), "IibsF7", cfloat }, 1205 1.1 christos {"fsqrtd", 4, two(0xF000, 0x0004), two(0xF1C0, 0xE07F), "IiF8F7", cfloat }, 1206 1.1 christos {"fsqrtd", 4, two(0xF000, 0x0004), two(0xF1C0, 0xE07F), "IiFt", cfloat }, 1207 1.1 christos {"fsqrtd", 4, two(0xF000, 0x5404), two(0xF1C0, 0xFC7F), "Ii;FF7", mfloat }, 1208 1.1 christos {"fsqrtd", 4, two(0xF000, 0x5404), two(0xF1C0, 0xFC7F), "IiwsF7", cfloat }, 1209 1.1 christos {"fsqrtl", 4, two(0xF000, 0x4004), two(0xF1C0, 0xFC7F), "Ii;lF7", mfloat }, 1210 1.1 christos {"fsqrtl", 4, two(0xF000, 0x4004), two(0xF1C0, 0xFC7F), "IibsF7", cfloat }, 1211 1.1 christos {"fsqrtp", 4, two(0xF000, 0x4C04), two(0xF1C0, 0xFC7F), "Ii;pF7", mfloat }, 1212 1.1 christos {"fsqrts", 4, two(0xF000, 0x4404), two(0xF1C0, 0xFC7F), "Ii;fF7", mfloat }, 1213 1.1 christos {"fsqrts", 4, two(0xF000, 0x4404), two(0xF1C0, 0xFC7F), "IibsF7", cfloat }, 1214 1.1 christos {"fsqrtw", 4, two(0xF000, 0x5004), two(0xF1C0, 0xFC7F), "Ii;wF7", mfloat }, 1215 1.1 christos {"fsqrtw", 4, two(0xF000, 0x5004), two(0xF1C0, 0xFC7F), "IibsF7", cfloat }, 1216 1.1 christos {"fsqrtx", 4, two(0xF000, 0x0004), two(0xF1C0, 0xE07F), "IiF8F7", mfloat }, 1217 1.1 christos {"fsqrtx", 4, two(0xF000, 0x4804), two(0xF1C0, 0xFC7F), "Ii;xF7", mfloat }, 1218 1.1 christos {"fsqrtx", 4, two(0xF000, 0x0004), two(0xF1C0, 0xE07F), "IiFt", mfloat }, 1219 1.1 christos 1220 1.1 christos {"fssqrtb", 4, two(0xF000, 0x5841), two(0xF1C0, 0xFC7F), "Ii;bF7", m68040up }, 1221 1.1 christos {"fssqrtb", 4, two(0xF000, 0x5841), two(0xF1C0, 0xFC7F), "IibsF7", cfloat }, 1222 1.1 christos {"fssqrtd", 4, two(0xF000, 0x0041), two(0xF1C0, 0xE07F), "IiF8F7", cfloat }, 1223 1.1 christos {"fssqrtd", 4, two(0xF000, 0x0041), two(0xF1C0, 0xE07F), "IiFt", cfloat }, 1224 1.1 christos {"fssqrtd", 4, two(0xF000, 0x5441), two(0xF1C0, 0xFC7F), "Ii;FF7", m68040up }, 1225 1.1 christos {"fssqrtd", 4, two(0xF000, 0x5441), two(0xF1C0, 0xFC7F), "IiwsF7", cfloat }, 1226 1.1 christos {"fssqrtl", 4, two(0xF000, 0x4041), two(0xF1C0, 0xFC7F), "Ii;lF7", m68040up }, 1227 1.1 christos {"fssqrtl", 4, two(0xF000, 0x4041), two(0xF1C0, 0xFC7F), "IibsF7", cfloat }, 1228 1.1 christos {"fssqrtp", 4, two(0xF000, 0x4C41), two(0xF1C0, 0xFC7F), "Ii;pF7", m68040up }, 1229 1.1 christos {"fssqrts", 4, two(0xF000, 0x4441), two(0xF1C0, 0xFC7F), "Ii;fF7", m68040up }, 1230 1.1 christos {"fssqrts", 4, two(0xF000, 0x4441), two(0xF1C0, 0xFC7F), "IibsF7", cfloat }, 1231 1.1 christos {"fssqrtw", 4, two(0xF000, 0x5041), two(0xF1C0, 0xFC7F), "Ii;wF7", m68040up }, 1232 1.1 christos {"fssqrtw", 4, two(0xF000, 0x5041), two(0xF1C0, 0xFC7F), "IibsF7", cfloat }, 1233 1.1 christos {"fssqrtx", 4, two(0xF000, 0x0041), two(0xF1C0, 0xE07F), "IiF8F7", m68040up }, 1234 1.1 christos {"fssqrtx", 4, two(0xF000, 0x4841), two(0xF1C0, 0xFC7F), "Ii;xF7", m68040up }, 1235 1.1 christos {"fssqrtx", 4, two(0xF000, 0x0041), two(0xF1C0, 0xE07F), "IiFt", m68040up }, 1236 1.1 christos 1237 1.1 christos {"fdsqrtb", 4, two(0xF000, 0x5845), two(0xF1C0, 0xFC7F), "Ii;bF7", m68040up }, 1238 1.1 christos {"fdsqrtb", 4, two(0xF000, 0x5845), two(0xF1C0, 0xFC7F), "IibsF7", cfloat }, 1239 1.1 christos {"fdsqrtd", 4, two(0xF000, 0x0045), two(0xF1C0, 0xE07F), "IiF8F7", cfloat }, 1240 1.1 christos {"fdsqrtd", 4, two(0xF000, 0x0045), two(0xF1C0, 0xE07F), "IiFt", cfloat }, 1241 1.1 christos {"fdsqrtd", 4, two(0xF000, 0x5445), two(0xF1C0, 0xFC7F), "Ii;FF7", m68040up }, 1242 1.1 christos {"fdsqrtd", 4, two(0xF000, 0x5445), two(0xF1C0, 0xFC7F), "IiwsF7", cfloat }, 1243 1.1 christos {"fdsqrtl", 4, two(0xF000, 0x4045), two(0xF1C0, 0xFC7F), "Ii;lF7", m68040up }, 1244 1.1 christos {"fdsqrtl", 4, two(0xF000, 0x4045), two(0xF1C0, 0xFC7F), "IibsF7", cfloat }, 1245 1.1 christos {"fdsqrtp", 4, two(0xF000, 0x4C45), two(0xF1C0, 0xFC7F), "Ii;pF7", m68040up }, 1246 1.1 christos {"fdsqrts", 4, two(0xF000, 0x4445), two(0xF1C0, 0xFC7F), "Ii;fF7", m68040up }, 1247 1.1 christos {"fdsqrts", 4, two(0xF000, 0x4445), two(0xF1C0, 0xFC7F), "IibsF7", cfloat }, 1248 1.1 christos {"fdsqrtw", 4, two(0xF000, 0x5045), two(0xF1C0, 0xFC7F), "Ii;wF7", m68040up }, 1249 1.1 christos {"fdsqrtw", 4, two(0xF000, 0x5045), two(0xF1C0, 0xFC7F), "IibsF7", cfloat }, 1250 1.1 christos {"fdsqrtx", 4, two(0xF000, 0x0045), two(0xF1C0, 0xE07F), "IiF8F7", m68040up }, 1251 1.1 christos {"fdsqrtx", 4, two(0xF000, 0x4845), two(0xF1C0, 0xFC7F), "Ii;xF7", m68040up }, 1252 1.1 christos {"fdsqrtx", 4, two(0xF000, 0x0045), two(0xF1C0, 0xE07F), "IiFt", m68040up }, 1253 1.1 christos 1254 1.1 christos {"fsubb", 4, two(0xF000, 0x5828), two(0xF1C0, 0xFC7F), "Ii;bF7", mfloat }, 1255 1.1 christos {"fsubb", 4, two(0xF000, 0x5828), two(0xF1C0, 0xFC7F), "IibsF7", cfloat }, 1256 1.1 christos {"fsubd", 4, two(0xF000, 0x0028), two(0xF1C0, 0xE07F), "IiF8F7", cfloat }, 1257 1.1 christos {"fsubd", 4, two(0xF000, 0x5428), two(0xF1C0, 0xFC7F), "Ii;FF7", mfloat }, 1258 1.1 christos {"fsubd", 4, two(0xF000, 0x5428), two(0xF1C0, 0xFC7F), "IiwsF7", cfloat }, 1259 1.1 christos {"fsubl", 4, two(0xF000, 0x4028), two(0xF1C0, 0xFC7F), "Ii;lF7", mfloat }, 1260 1.1 christos {"fsubl", 4, two(0xF000, 0x4028), two(0xF1C0, 0xFC7F), "IibsF7", cfloat }, 1261 1.1 christos {"fsubp", 4, two(0xF000, 0x4C28), two(0xF1C0, 0xFC7F), "Ii;pF7", mfloat }, 1262 1.1 christos {"fsubs", 4, two(0xF000, 0x4428), two(0xF1C0, 0xFC7F), "Ii;fF7", mfloat }, 1263 1.1 christos {"fsubs", 4, two(0xF000, 0x4428), two(0xF1C0, 0xFC7F), "IibsF7", cfloat }, 1264 1.1 christos {"fsubw", 4, two(0xF000, 0x5028), two(0xF1C0, 0xFC7F), "Ii;wF7", mfloat }, 1265 1.1 christos {"fsubw", 4, two(0xF000, 0x5028), two(0xF1C0, 0xFC7F), "IibsF7", cfloat }, 1266 1.1 christos {"fsubx", 4, two(0xF000, 0x0028), two(0xF1C0, 0xE07F), "IiF8F7", mfloat }, 1267 1.1 christos {"fsubx", 4, two(0xF000, 0x4828), two(0xF1C0, 0xFC7F), "Ii;xF7", mfloat }, 1268 1.1 christos {"fsubx", 4, two(0xF000, 0x0028), two(0xF1C0, 0xE07F), "IiFt", mfloat }, 1269 1.1 christos 1270 1.1 christos {"fssubb", 4, two(0xF000, 0x5868), two(0xF1C0, 0xFC7F), "IibsF7", cfloat }, 1271 1.1 christos {"fssubb", 4, two(0xF000, 0x5868), two(0xF1C0, 0xFC7F), "Ii;bF7", m68040up }, 1272 1.1 christos {"fssubd", 4, two(0xF000, 0x0068), two(0xF1C0, 0xE07F), "IiF8F7", cfloat }, 1273 1.1 christos {"fssubd", 4, two(0xF000, 0x5468), two(0xF1C0, 0xFC7F), "Ii;FF7", m68040up }, 1274 1.1 christos {"fssubd", 4, two(0xF000, 0x5468), two(0xF1C0, 0xFC7F), "IiwsF7", cfloat }, 1275 1.1 christos {"fssubl", 4, two(0xF000, 0x4068), two(0xF1C0, 0xFC7F), "Ii;lF7", m68040up }, 1276 1.1 christos {"fssubl", 4, two(0xF000, 0x4068), two(0xF1C0, 0xFC7F), "IibsF7", cfloat }, 1277 1.1 christos {"fssubp", 4, two(0xF000, 0x4C68), two(0xF1C0, 0xFC7F), "Ii;pF7", m68040up }, 1278 1.1 christos {"fssubs", 4, two(0xF000, 0x4468), two(0xF1C0, 0xFC7F), "Ii;fF7", m68040up }, 1279 1.1 christos {"fssubs", 4, two(0xF000, 0x4468), two(0xF1C0, 0xFC7F), "IibsF7", cfloat }, 1280 1.1 christos {"fssubw", 4, two(0xF000, 0x5068), two(0xF1C0, 0xFC7F), "Ii;wF7", m68040up }, 1281 1.1 christos {"fssubw", 4, two(0xF000, 0x5068), two(0xF1C0, 0xFC7F), "IibsF7", cfloat }, 1282 1.1 christos {"fssubx", 4, two(0xF000, 0x0068), two(0xF1C0, 0xE07F), "IiF8F7", m68040up }, 1283 1.1 christos {"fssubx", 4, two(0xF000, 0x4868), two(0xF1C0, 0xFC7F), "Ii;xF7", m68040up }, 1284 1.1 christos {"fssubx", 4, two(0xF000, 0x0068), two(0xF1C0, 0xE07F), "IiFt", m68040up }, 1285 1.1 christos 1286 1.1 christos {"fdsubb", 4, two(0xF000, 0x586c), two(0xF1C0, 0xFC7F), "IibsF7", cfloat }, 1287 1.1 christos {"fdsubb", 4, two(0xF000, 0x586c), two(0xF1C0, 0xFC7F), "Ii;bF7", m68040up }, 1288 1.1 christos {"fdsubd", 4, two(0xF000, 0x006c), two(0xF1C0, 0xE07F), "IiF8F7", cfloat }, 1289 1.1 christos {"fdsubd", 4, two(0xF000, 0x546c), two(0xF1C0, 0xFC7F), "IiwsF7", cfloat }, 1290 1.1 christos {"fdsubd", 4, two(0xF000, 0x546c), two(0xF1C0, 0xFC7F), "Ii;FF7", m68040up }, 1291 1.1 christos {"fdsubl", 4, two(0xF000, 0x406c), two(0xF1C0, 0xFC7F), "IibsF7", cfloat }, 1292 1.1 christos {"fdsubl", 4, two(0xF000, 0x406c), two(0xF1C0, 0xFC7F), "Ii;lF7", m68040up }, 1293 1.1 christos {"fdsubp", 4, two(0xF000, 0x4C6c), two(0xF1C0, 0xFC7F), "Ii;pF7", m68040up }, 1294 1.1 christos {"fdsubs", 4, two(0xF000, 0x446c), two(0xF1C0, 0xFC7F), "IibsF7", cfloat }, 1295 1.1 christos {"fdsubs", 4, two(0xF000, 0x446c), two(0xF1C0, 0xFC7F), "Ii;fF7", m68040up }, 1296 1.1 christos {"fdsubw", 4, two(0xF000, 0x506c), two(0xF1C0, 0xFC7F), "IibsF7", cfloat }, 1297 1.1 christos {"fdsubw", 4, two(0xF000, 0x506c), two(0xF1C0, 0xFC7F), "Ii;wF7", m68040up }, 1298 1.1 christos {"fdsubx", 4, two(0xF000, 0x006c), two(0xF1C0, 0xE07F), "IiF8F7", m68040up }, 1299 1.1 christos {"fdsubx", 4, two(0xF000, 0x486c), two(0xF1C0, 0xFC7F), "Ii;xF7", m68040up }, 1300 1.1 christos {"fdsubx", 4, two(0xF000, 0x006c), two(0xF1C0, 0xE07F), "IiFt", m68040up }, 1301 1.1 christos 1302 1.1 christos {"ftanb", 4, two(0xF000, 0x580F), two(0xF1C0, 0xFC7F), "Ii;bF7", mfloat }, 1303 1.1 christos {"ftand", 4, two(0xF000, 0x540F), two(0xF1C0, 0xFC7F), "Ii;FF7", mfloat }, 1304 1.1 christos {"ftanl", 4, two(0xF000, 0x400F), two(0xF1C0, 0xFC7F), "Ii;lF7", mfloat }, 1305 1.1 christos {"ftanp", 4, two(0xF000, 0x4C0F), two(0xF1C0, 0xFC7F), "Ii;pF7", mfloat }, 1306 1.1 christos {"ftans", 4, two(0xF000, 0x440F), two(0xF1C0, 0xFC7F), "Ii;fF7", mfloat }, 1307 1.1 christos {"ftanw", 4, two(0xF000, 0x500F), two(0xF1C0, 0xFC7F), "Ii;wF7", mfloat }, 1308 1.1 christos {"ftanx", 4, two(0xF000, 0x000F), two(0xF1C0, 0xE07F), "IiF8F7", mfloat }, 1309 1.1 christos {"ftanx", 4, two(0xF000, 0x480F), two(0xF1C0, 0xFC7F), "Ii;xF7", mfloat }, 1310 1.1 christos {"ftanx", 4, two(0xF000, 0x000F), two(0xF1C0, 0xE07F), "IiFt", mfloat }, 1311 1.1 christos 1312 1.1 christos {"ftanhb", 4, two(0xF000, 0x5809), two(0xF1C0, 0xFC7F), "Ii;bF7", mfloat }, 1313 1.1 christos {"ftanhd", 4, two(0xF000, 0x5409), two(0xF1C0, 0xFC7F), "Ii;FF7", mfloat }, 1314 1.1 christos {"ftanhl", 4, two(0xF000, 0x4009), two(0xF1C0, 0xFC7F), "Ii;lF7", mfloat }, 1315 1.1 christos {"ftanhp", 4, two(0xF000, 0x4C09), two(0xF1C0, 0xFC7F), "Ii;pF7", mfloat }, 1316 1.1 christos {"ftanhs", 4, two(0xF000, 0x4409), two(0xF1C0, 0xFC7F), "Ii;fF7", mfloat }, 1317 1.1 christos {"ftanhw", 4, two(0xF000, 0x5009), two(0xF1C0, 0xFC7F), "Ii;wF7", mfloat }, 1318 1.1 christos {"ftanhx", 4, two(0xF000, 0x0009), two(0xF1C0, 0xE07F), "IiF8F7", mfloat }, 1319 1.1 christos {"ftanhx", 4, two(0xF000, 0x4809), two(0xF1C0, 0xFC7F), "Ii;xF7", mfloat }, 1320 1.1 christos {"ftanhx", 4, two(0xF000, 0x0009), two(0xF1C0, 0xE07F), "IiFt", mfloat }, 1321 1.1 christos 1322 1.1 christos {"ftentoxb", 4, two(0xF000, 0x5812), two(0xF1C0, 0xFC7F), "Ii;bF7", mfloat }, 1323 1.1 christos {"ftentoxd", 4, two(0xF000, 0x5412), two(0xF1C0, 0xFC7F), "Ii;FF7", mfloat }, 1324 1.1 christos {"ftentoxl", 4, two(0xF000, 0x4012), two(0xF1C0, 0xFC7F), "Ii;lF7", mfloat }, 1325 1.1 christos {"ftentoxp", 4, two(0xF000, 0x4C12), two(0xF1C0, 0xFC7F), "Ii;pF7", mfloat }, 1326 1.1 christos {"ftentoxs", 4, two(0xF000, 0x4412), two(0xF1C0, 0xFC7F), "Ii;fF7", mfloat }, 1327 1.1 christos {"ftentoxw", 4, two(0xF000, 0x5012), two(0xF1C0, 0xFC7F), "Ii;wF7", mfloat }, 1328 1.1 christos {"ftentoxx", 4, two(0xF000, 0x0012), two(0xF1C0, 0xE07F), "IiF8F7", mfloat }, 1329 1.1 christos {"ftentoxx", 4, two(0xF000, 0x4812), two(0xF1C0, 0xFC7F), "Ii;xF7", mfloat }, 1330 1.1 christos {"ftentoxx", 4, two(0xF000, 0x0012), two(0xF1C0, 0xE07F), "IiFt", mfloat }, 1331 1.1 christos 1332 1.1 christos {"ftrapeq", 4, two(0xF07C, 0x0001), two(0xF1FF, 0xFFFF), "Ii", mfloat }, 1333 1.1 christos {"ftrapf", 4, two(0xF07C, 0x0000), two(0xF1FF, 0xFFFF), "Ii", mfloat }, 1334 1.1 christos {"ftrapge", 4, two(0xF07C, 0x0013), two(0xF1FF, 0xFFFF), "Ii", mfloat }, 1335 1.1 christos {"ftrapgl", 4, two(0xF07C, 0x0016), two(0xF1FF, 0xFFFF), "Ii", mfloat }, 1336 1.1 christos {"ftrapgle", 4, two(0xF07C, 0x0017), two(0xF1FF, 0xFFFF), "Ii", mfloat }, 1337 1.1 christos {"ftrapgt", 4, two(0xF07C, 0x0012), two(0xF1FF, 0xFFFF), "Ii", mfloat }, 1338 1.1 christos {"ftraple", 4, two(0xF07C, 0x0015), two(0xF1FF, 0xFFFF), "Ii", mfloat }, 1339 1.1 christos {"ftraplt", 4, two(0xF07C, 0x0014), two(0xF1FF, 0xFFFF), "Ii", mfloat }, 1340 1.1 christos {"ftrapne", 4, two(0xF07C, 0x000E), two(0xF1FF, 0xFFFF), "Ii", mfloat }, 1341 1.1 christos {"ftrapnge", 4, two(0xF07C, 0x001C), two(0xF1FF, 0xFFFF), "Ii", mfloat }, 1342 1.1 christos {"ftrapngl", 4, two(0xF07C, 0x0019), two(0xF1FF, 0xFFFF), "Ii", mfloat }, 1343 1.1 christos {"ftrapngle", 4,two(0xF07C, 0x0018), two(0xF1FF, 0xFFFF), "Ii", mfloat }, 1344 1.1 christos {"ftrapngt", 4, two(0xF07C, 0x001D), two(0xF1FF, 0xFFFF), "Ii", mfloat }, 1345 1.1 christos {"ftrapnle", 4, two(0xF07C, 0x001A), two(0xF1FF, 0xFFFF), "Ii", mfloat }, 1346 1.1 christos {"ftrapnlt", 4, two(0xF07C, 0x001B), two(0xF1FF, 0xFFFF), "Ii", mfloat }, 1347 1.1 christos {"ftrapoge", 4, two(0xF07C, 0x0003), two(0xF1FF, 0xFFFF), "Ii", mfloat }, 1348 1.1 christos {"ftrapogl", 4, two(0xF07C, 0x0006), two(0xF1FF, 0xFFFF), "Ii", mfloat }, 1349 1.1 christos {"ftrapogt", 4, two(0xF07C, 0x0002), two(0xF1FF, 0xFFFF), "Ii", mfloat }, 1350 1.1 christos {"ftrapole", 4, two(0xF07C, 0x0005), two(0xF1FF, 0xFFFF), "Ii", mfloat }, 1351 1.1 christos {"ftrapolt", 4, two(0xF07C, 0x0004), two(0xF1FF, 0xFFFF), "Ii", mfloat }, 1352 1.1 christos {"ftrapor", 4, two(0xF07C, 0x0007), two(0xF1FF, 0xFFFF), "Ii", mfloat }, 1353 1.1 christos {"ftrapseq", 4, two(0xF07C, 0x0011), two(0xF1FF, 0xFFFF), "Ii", mfloat }, 1354 1.1 christos {"ftrapsf", 4, two(0xF07C, 0x0010), two(0xF1FF, 0xFFFF), "Ii", mfloat }, 1355 1.1 christos {"ftrapsne", 4, two(0xF07C, 0x001E), two(0xF1FF, 0xFFFF), "Ii", mfloat }, 1356 1.1 christos {"ftrapst", 4, two(0xF07C, 0x001F), two(0xF1FF, 0xFFFF), "Ii", mfloat }, 1357 1.1 christos {"ftrapt", 4, two(0xF07C, 0x000F), two(0xF1FF, 0xFFFF), "Ii", mfloat }, 1358 1.1 christos {"ftrapueq", 4, two(0xF07C, 0x0009), two(0xF1FF, 0xFFFF), "Ii", mfloat }, 1359 1.1 christos {"ftrapuge", 4, two(0xF07C, 0x000B), two(0xF1FF, 0xFFFF), "Ii", mfloat }, 1360 1.1 christos {"ftrapugt", 4, two(0xF07C, 0x000A), two(0xF1FF, 0xFFFF), "Ii", mfloat }, 1361 1.1 christos {"ftrapule", 4, two(0xF07C, 0x000D), two(0xF1FF, 0xFFFF), "Ii", mfloat }, 1362 1.1 christos {"ftrapult", 4, two(0xF07C, 0x000C), two(0xF1FF, 0xFFFF), "Ii", mfloat }, 1363 1.1 christos {"ftrapun", 4, two(0xF07C, 0x0008), two(0xF1FF, 0xFFFF), "Ii", mfloat }, 1364 1.1 christos 1365 1.1 christos {"ftrapeqw", 4, two(0xF07A, 0x0001), two(0xF1FF, 0xFFFF), "Ii^w", mfloat }, 1366 1.1 christos {"ftrapfw", 4, two(0xF07A, 0x0000), two(0xF1FF, 0xFFFF), "Ii^w", mfloat }, 1367 1.1 christos {"ftrapgew", 4, two(0xF07A, 0x0013), two(0xF1FF, 0xFFFF), "Ii^w", mfloat }, 1368 1.1 christos {"ftrapglw", 4, two(0xF07A, 0x0016), two(0xF1FF, 0xFFFF), "Ii^w", mfloat }, 1369 1.1 christos {"ftrapglew", 4,two(0xF07A, 0x0017), two(0xF1FF, 0xFFFF), "Ii^w", mfloat }, 1370 1.1 christos {"ftrapgtw", 4, two(0xF07A, 0x0012), two(0xF1FF, 0xFFFF), "Ii^w", mfloat }, 1371 1.1 christos {"ftraplew", 4, two(0xF07A, 0x0015), two(0xF1FF, 0xFFFF), "Ii^w", mfloat }, 1372 1.1 christos {"ftrapltw", 4, two(0xF07A, 0x0014), two(0xF1FF, 0xFFFF), "Ii^w", mfloat }, 1373 1.1 christos {"ftrapnew", 4, two(0xF07A, 0x000E), two(0xF1FF, 0xFFFF), "Ii^w", mfloat }, 1374 1.1 christos {"ftrapngew", 4,two(0xF07A, 0x001C), two(0xF1FF, 0xFFFF), "Ii^w", mfloat }, 1375 1.1 christos {"ftrapnglw", 4,two(0xF07A, 0x0019), two(0xF1FF, 0xFFFF), "Ii^w", mfloat }, 1376 1.1 christos {"ftrapnglew", 4,two(0xF07A, 0x0018), two(0xF1FF, 0xFFFF), "Ii^w", mfloat }, 1377 1.1 christos {"ftrapngtw", 4,two(0xF07A, 0x001D), two(0xF1FF, 0xFFFF), "Ii^w", mfloat }, 1378 1.1 christos {"ftrapnlew", 4,two(0xF07A, 0x001A), two(0xF1FF, 0xFFFF), "Ii^w", mfloat }, 1379 1.1 christos {"ftrapnltw", 4,two(0xF07A, 0x001B), two(0xF1FF, 0xFFFF), "Ii^w", mfloat }, 1380 1.1 christos {"ftrapogew", 4,two(0xF07A, 0x0003), two(0xF1FF, 0xFFFF), "Ii^w", mfloat }, 1381 1.1 christos {"ftrapoglw", 4,two(0xF07A, 0x0006), two(0xF1FF, 0xFFFF), "Ii^w", mfloat }, 1382 1.1 christos {"ftrapogtw", 4,two(0xF07A, 0x0002), two(0xF1FF, 0xFFFF), "Ii^w", mfloat }, 1383 1.1 christos {"ftrapolew", 4,two(0xF07A, 0x0005), two(0xF1FF, 0xFFFF), "Ii^w", mfloat }, 1384 1.1 christos {"ftrapoltw", 4,two(0xF07A, 0x0004), two(0xF1FF, 0xFFFF), "Ii^w", mfloat }, 1385 1.1 christos {"ftraporw", 4, two(0xF07A, 0x0007), two(0xF1FF, 0xFFFF), "Ii^w", mfloat }, 1386 1.1 christos {"ftrapseqw", 4,two(0xF07A, 0x0011), two(0xF1FF, 0xFFFF), "Ii^w", mfloat }, 1387 1.1 christos {"ftrapsfw", 4, two(0xF07A, 0x0010), two(0xF1FF, 0xFFFF), "Ii^w", mfloat }, 1388 1.1 christos {"ftrapsnew", 4,two(0xF07A, 0x001E), two(0xF1FF, 0xFFFF), "Ii^w", mfloat }, 1389 1.1 christos {"ftrapstw", 4, two(0xF07A, 0x001F), two(0xF1FF, 0xFFFF), "Ii^w", mfloat }, 1390 1.1 christos {"ftraptw", 4, two(0xF07A, 0x000F), two(0xF1FF, 0xFFFF), "Ii^w", mfloat }, 1391 1.1 christos {"ftrapueqw", 4,two(0xF07A, 0x0009), two(0xF1FF, 0xFFFF), "Ii^w", mfloat }, 1392 1.1 christos {"ftrapugew", 4,two(0xF07A, 0x000B), two(0xF1FF, 0xFFFF), "Ii^w", mfloat }, 1393 1.1 christos {"ftrapugtw", 4,two(0xF07A, 0x000A), two(0xF1FF, 0xFFFF), "Ii^w", mfloat }, 1394 1.1 christos {"ftrapulew", 4,two(0xF07A, 0x000D), two(0xF1FF, 0xFFFF), "Ii^w", mfloat }, 1395 1.1 christos {"ftrapultw", 4,two(0xF07A, 0x000C), two(0xF1FF, 0xFFFF), "Ii^w", mfloat }, 1396 1.1 christos {"ftrapunw", 4, two(0xF07A, 0x0008), two(0xF1FF, 0xFFFF), "Ii^w", mfloat }, 1397 1.1 christos 1398 1.1 christos {"ftrapeql", 4, two(0xF07B, 0x0001), two(0xF1FF, 0xFFFF), "Ii^l", mfloat }, 1399 1.1 christos {"ftrapfl", 4, two(0xF07B, 0x0000), two(0xF1FF, 0xFFFF), "Ii^l", mfloat }, 1400 1.1 christos {"ftrapgel", 4, two(0xF07B, 0x0013), two(0xF1FF, 0xFFFF), "Ii^l", mfloat }, 1401 1.1 christos {"ftrapgll", 4, two(0xF07B, 0x0016), two(0xF1FF, 0xFFFF), "Ii^l", mfloat }, 1402 1.1 christos {"ftrapglel", 4,two(0xF07B, 0x0017), two(0xF1FF, 0xFFFF), "Ii^l", mfloat }, 1403 1.1 christos {"ftrapgtl", 4, two(0xF07B, 0x0012), two(0xF1FF, 0xFFFF), "Ii^l", mfloat }, 1404 1.1 christos {"ftraplel", 4, two(0xF07B, 0x0015), two(0xF1FF, 0xFFFF), "Ii^l", mfloat }, 1405 1.1 christos {"ftrapltl", 4, two(0xF07B, 0x0014), two(0xF1FF, 0xFFFF), "Ii^l", mfloat }, 1406 1.1 christos {"ftrapnel", 4, two(0xF07B, 0x000E), two(0xF1FF, 0xFFFF), "Ii^l", mfloat }, 1407 1.1 christos {"ftrapngel", 4,two(0xF07B, 0x001C), two(0xF1FF, 0xFFFF), "Ii^l", mfloat }, 1408 1.1 christos {"ftrapngll", 4,two(0xF07B, 0x0019), two(0xF1FF, 0xFFFF), "Ii^l", mfloat }, 1409 1.1 christos {"ftrapnglel", 4,two(0xF07B, 0x0018), two(0xF1FF, 0xFFFF), "Ii^l", mfloat }, 1410 1.1 christos {"ftrapngtl", 4,two(0xF07B, 0x001D), two(0xF1FF, 0xFFFF), "Ii^l", mfloat }, 1411 1.1 christos {"ftrapnlel", 4,two(0xF07B, 0x001A), two(0xF1FF, 0xFFFF), "Ii^l", mfloat }, 1412 1.1 christos {"ftrapnltl", 4,two(0xF07B, 0x001B), two(0xF1FF, 0xFFFF), "Ii^l", mfloat }, 1413 1.1 christos {"ftrapogel", 4,two(0xF07B, 0x0003), two(0xF1FF, 0xFFFF), "Ii^l", mfloat }, 1414 1.1 christos {"ftrapogll", 4,two(0xF07B, 0x0006), two(0xF1FF, 0xFFFF), "Ii^l", mfloat }, 1415 1.1 christos {"ftrapogtl", 4,two(0xF07B, 0x0002), two(0xF1FF, 0xFFFF), "Ii^l", mfloat }, 1416 1.1 christos {"ftrapolel", 4,two(0xF07B, 0x0005), two(0xF1FF, 0xFFFF), "Ii^l", mfloat }, 1417 1.1 christos {"ftrapoltl", 4,two(0xF07B, 0x0004), two(0xF1FF, 0xFFFF), "Ii^l", mfloat }, 1418 1.1 christos {"ftraporl", 4, two(0xF07B, 0x0007), two(0xF1FF, 0xFFFF), "Ii^l", mfloat }, 1419 1.1 christos {"ftrapseql", 4,two(0xF07B, 0x0011), two(0xF1FF, 0xFFFF), "Ii^l", mfloat }, 1420 1.1 christos {"ftrapsfl", 4, two(0xF07B, 0x0010), two(0xF1FF, 0xFFFF), "Ii^l", mfloat }, 1421 1.1 christos {"ftrapsnel", 4,two(0xF07B, 0x001E), two(0xF1FF, 0xFFFF), "Ii^l", mfloat }, 1422 1.1 christos {"ftrapstl", 4, two(0xF07B, 0x001F), two(0xF1FF, 0xFFFF), "Ii^l", mfloat }, 1423 1.1 christos {"ftraptl", 4, two(0xF07B, 0x000F), two(0xF1FF, 0xFFFF), "Ii^l", mfloat }, 1424 1.1 christos {"ftrapueql", 4,two(0xF07B, 0x0009), two(0xF1FF, 0xFFFF), "Ii^l", mfloat }, 1425 1.1 christos {"ftrapugel", 4,two(0xF07B, 0x000B), two(0xF1FF, 0xFFFF), "Ii^l", mfloat }, 1426 1.1 christos {"ftrapugtl", 4,two(0xF07B, 0x000A), two(0xF1FF, 0xFFFF), "Ii^l", mfloat }, 1427 1.1 christos {"ftrapulel", 4,two(0xF07B, 0x000D), two(0xF1FF, 0xFFFF), "Ii^l", mfloat }, 1428 1.1 christos {"ftrapultl", 4,two(0xF07B, 0x000C), two(0xF1FF, 0xFFFF), "Ii^l", mfloat }, 1429 1.1 christos {"ftrapunl", 4, two(0xF07B, 0x0008), two(0xF1FF, 0xFFFF), "Ii^l", mfloat }, 1430 1.1 christos 1431 1.1 christos {"ftstb", 4, two(0xF000, 0x583A), two(0xF1C0, 0xFC7F), "Ii;b", mfloat }, 1432 1.1 christos {"ftstb", 4, two(0xF000, 0x583A), two(0xF1C0, 0xFC7F), "Iibs", cfloat }, 1433 1.1 christos {"ftstd", 4, two(0xF000, 0x003A), two(0xF1C0, 0xE07F), "IiF8", cfloat }, 1434 1.1 christos {"ftstd", 4, two(0xF000, 0x543A), two(0xF1C0, 0xFC7F), "Ii;F", mfloat }, 1435 1.1 christos {"ftstd", 4, two(0xF000, 0x543A), two(0xF1C0, 0xFC7F), "Iibs", cfloat }, 1436 1.1 christos {"ftstl", 4, two(0xF000, 0x403A), two(0xF1C0, 0xFC7F), "Ii;l", mfloat }, 1437 1.1 christos {"ftstl", 4, two(0xF000, 0x403A), two(0xF1C0, 0xFC7F), "Iibs", cfloat }, 1438 1.1 christos {"ftstp", 4, two(0xF000, 0x4C3A), two(0xF1C0, 0xFC7F), "Ii;p", mfloat }, 1439 1.1 christos {"ftsts", 4, two(0xF000, 0x443A), two(0xF1C0, 0xFC7F), "Ii;f", mfloat }, 1440 1.1 christos {"ftsts", 4, two(0xF000, 0x443A), two(0xF1C0, 0xFC7F), "Iibs", cfloat }, 1441 1.1 christos {"ftstw", 4, two(0xF000, 0x503A), two(0xF1C0, 0xFC7F), "Ii;w", mfloat }, 1442 1.1 christos {"ftstw", 4, two(0xF000, 0x503A), two(0xF1C0, 0xFC7F), "Iibs", cfloat }, 1443 1.1 christos {"ftstx", 4, two(0xF000, 0x003A), two(0xF1C0, 0xE07F), "IiF8", mfloat }, 1444 1.1 christos {"ftstx", 4, two(0xF000, 0x483A), two(0xF1C0, 0xFC7F), "Ii;x", mfloat }, 1445 1.1 christos 1446 1.1 christos {"ftwotoxb", 4, two(0xF000, 0x5811), two(0xF1C0, 0xFC7F), "Ii;bF7", mfloat }, 1447 1.1 christos {"ftwotoxd", 4, two(0xF000, 0x5411), two(0xF1C0, 0xFC7F), "Ii;FF7", mfloat }, 1448 1.1 christos {"ftwotoxl", 4, two(0xF000, 0x4011), two(0xF1C0, 0xFC7F), "Ii;lF7", mfloat }, 1449 1.1 christos {"ftwotoxp", 4, two(0xF000, 0x4C11), two(0xF1C0, 0xFC7F), "Ii;pF7", mfloat }, 1450 1.1 christos {"ftwotoxs", 4, two(0xF000, 0x4411), two(0xF1C0, 0xFC7F), "Ii;fF7", mfloat }, 1451 1.1 christos {"ftwotoxw", 4, two(0xF000, 0x5011), two(0xF1C0, 0xFC7F), "Ii;wF7", mfloat }, 1452 1.1 christos {"ftwotoxx", 4, two(0xF000, 0x0011), two(0xF1C0, 0xE07F), "IiF8F7", mfloat }, 1453 1.1 christos {"ftwotoxx", 4, two(0xF000, 0x4811), two(0xF1C0, 0xFC7F), "Ii;xF7", mfloat }, 1454 1.1 christos {"ftwotoxx", 4, two(0xF000, 0x0011), two(0xF1C0, 0xE07F), "IiFt", mfloat }, 1455 1.1 christos 1456 1.1 christos {"halt", 2, one(0045310), one(0177777), "", m68060 | mcfisa_a }, 1457 1.1 christos 1458 1.1 christos {"illegal", 2, one(0045374), one(0177777), "", m68000up | mcfisa_a }, 1459 1.1 christos {"intouch", 2, one(0xf428), one(0xfff8), "As", mcfisa_b | mcfisa_c }, 1460 1.1 christos 1461 1.1 christos {"jmp", 2, one(0047300), one(0177700), "!s", m68000up | mcfisa_a }, 1462 1.1 christos 1463 1.1 christos {"jra", 2, one(0060000), one(0177400), "Bb", m68000up | mcfisa_a }, 1464 1.1 christos {"jra", 2, one(0047300), one(0177700), "!s", m68000up | mcfisa_a }, 1465 1.1 christos 1466 1.1 christos {"jsr", 2, one(0047200), one(0177700), "!s", m68000up | mcfisa_a }, 1467 1.1 christos 1468 1.1 christos {"jbsr", 2, one(0060400), one(0177400), "Bs", m68000up | mcfisa_a }, 1469 1.1 christos {"jbsr", 2, one(0047200), one(0177700), "!s", m68000up | mcfisa_a }, 1470 1.1 christos 1471 1.1 christos {"lea", 2, one(0040700), one(0170700), "!sAd", m68000up | mcfisa_a }, 1472 1.1 christos 1473 1.1 christos {"lpstop", 6, two(0174000,0000700),two(0177777,0177777),"#w", cpu32 | fido_a | m68060 }, 1474 1.1 christos 1475 1.1 christos {"linkw", 4, one(0047120), one(0177770), "As#w", m68000up | mcfisa_a }, 1476 1.1 christos {"linkl", 6, one(0044010), one(0177770), "As#l", m68020up | cpu32 | fido_a }, 1477 1.1 christos {"link", 4, one(0047120), one(0177770), "As#W", m68000up | mcfisa_a }, 1478 1.1 christos {"link", 6, one(0044010), one(0177770), "As#l", m68020up | cpu32 | fido_a }, 1479 1.1 christos 1480 1.1 christos {"lslb", 2, one(0160410), one(0170770), "QdDs", m68000up }, 1481 1.1 christos {"lslb", 2, one(0160450), one(0170770), "DdDs", m68000up }, 1482 1.1 christos {"lslw", 2, one(0160510), one(0170770), "QdDs", m68000up }, 1483 1.1 christos {"lslw", 2, one(0160550), one(0170770), "DdDs", m68000up }, 1484 1.1 christos {"lslw", 2, one(0161700), one(0177700), "~s", m68000up }, 1485 1.1 christos {"lsll", 2, one(0160610), one(0170770), "QdDs", m68000up | mcfisa_a }, 1486 1.1 christos {"lsll", 2, one(0160650), one(0170770), "DdDs", m68000up | mcfisa_a }, 1487 1.1 christos 1488 1.1 christos {"lsrb", 2, one(0160010), one(0170770), "QdDs", m68000up }, 1489 1.1 christos {"lsrb", 2, one(0160050), one(0170770), "DdDs", m68000up }, 1490 1.1 christos {"lsrw", 2, one(0160110), one(0170770), "QdDs", m68000up }, 1491 1.1 christos {"lsrw", 2, one(0160150), one(0170770), "DdDs", m68000up }, 1492 1.1 christos {"lsrw", 2, one(0161300), one(0177700), "~s", m68000up }, 1493 1.1 christos {"lsrl", 2, one(0160210), one(0170770), "QdDs", m68000up | mcfisa_a }, 1494 1.1 christos {"lsrl", 2, one(0160250), one(0170770), "DdDs", m68000up | mcfisa_a }, 1495 1.1 christos 1496 1.1 christos {"macw", 4, two(0xa080, 0x0000), two(0xf180, 0x0910), "uNuoiI4/Rn", mcfmac }, 1497 1.1 christos {"macw", 4, two(0xa080, 0x0200), two(0xf180, 0x0910), "uNuoMh4/Rn", mcfmac }, 1498 1.1 christos {"macw", 4, two(0xa080, 0x0000), two(0xf180, 0x0f10), "uNuo4/Rn", mcfmac }, 1499 1.1 christos {"macw", 4, two(0xa000, 0x0000), two(0xf1b0, 0x0900), "uMumiI", mcfmac }, 1500 1.1 christos {"macw", 4, two(0xa000, 0x0200), two(0xf1b0, 0x0900), "uMumMh", mcfmac }, 1501 1.1 christos {"macw", 4, two(0xa000, 0x0000), two(0xf1b0, 0x0f00), "uMum", mcfmac }, 1502 1.1 christos 1503 1.1 christos {"macw", 4, two(0xa000, 0x0000), two(0xf100, 0x0900), "uNuoiI4/RneG", mcfemac },/* Ry,Rx,SF,<ea>,accX. */ 1504 1.1 christos {"macw", 4, two(0xa000, 0x0200), two(0xf100, 0x0900), "uNuoMh4/RneG", mcfemac },/* Ry,Rx,+1/-1,<ea>,accX. */ 1505 1.1 christos {"macw", 4, two(0xa000, 0x0000), two(0xf100, 0x0f00), "uNuo4/RneG", mcfemac },/* Ry,Rx,<ea>,accX. */ 1506 1.1 christos {"macw", 4, two(0xa000, 0x0000), two(0xf130, 0x0900), "uMumiIeH", mcfemac },/* Ry,Rx,SF,accX. */ 1507 1.1 christos {"macw", 4, two(0xa000, 0x0200), two(0xf130, 0x0900), "uMumMheH", mcfemac },/* Ry,Rx,+1/-1,accX. */ 1508 1.1 christos {"macw", 4, two(0xa000, 0x0000), two(0xf130, 0x0f00), "uMumeH", mcfemac }, /* Ry,Rx,accX. */ 1509 1.1 christos 1510 1.8 christos {"macw", 4, two(0xa080, 0x0000), two(0xf180, 0x0910), "uNuoiI4/Rn", mcfemac }, 1511 1.8 christos {"macw", 4, two(0xa080, 0x0200), two(0xf180, 0x0910), "uNuoMh4/Rn", mcfemac }, 1512 1.8 christos {"macw", 4, two(0xa080, 0x0000), two(0xf180, 0x0f10), "uNuo4/Rn", mcfemac }, 1513 1.8 christos {"macw", 4, two(0xa000, 0x0000), two(0xf1b0, 0x0910), "uMumiI", mcfemac }, 1514 1.8 christos {"macw", 4, two(0xa000, 0x0200), two(0xf1b0, 0x0910), "uMumMh", mcfemac }, 1515 1.8 christos {"macw", 4, two(0xa000, 0x0000), two(0xf1b0, 0x0f10), "uMum", mcfemac }, 1516 1.8 christos 1517 1.1 christos {"macl", 4, two(0xa080, 0x0800), two(0xf180, 0x0910), "RNRoiI4/Rn", mcfmac }, 1518 1.1 christos {"macl", 4, two(0xa080, 0x0a00), two(0xf180, 0x0910), "RNRoMh4/Rn", mcfmac }, 1519 1.1 christos {"macl", 4, two(0xa080, 0x0800), two(0xf180, 0x0f10), "RNRo4/Rn", mcfmac }, 1520 1.1 christos {"macl", 4, two(0xa000, 0x0800), two(0xf1b0, 0x0b00), "RMRmiI", mcfmac }, 1521 1.1 christos {"macl", 4, two(0xa000, 0x0a00), two(0xf1b0, 0x0b00), "RMRmMh", mcfmac }, 1522 1.1 christos {"macl", 4, two(0xa000, 0x0800), two(0xf1b0, 0x0900), "RMRm", mcfmac }, 1523 1.1 christos 1524 1.1 christos {"macl", 4, two(0xa000, 0x0800), two(0xf100, 0x0900), "R3R1iI4/RneG", mcfemac }, 1525 1.1 christos {"macl", 4, two(0xa000, 0x0a00), two(0xf100, 0x0900), "R3R1Mh4/RneG", mcfemac }, 1526 1.1 christos {"macl", 4, two(0xa000, 0x0800), two(0xf100, 0x0f00), "R3R14/RneG", mcfemac }, 1527 1.1 christos {"macl", 4, two(0xa000, 0x0800), two(0xf130, 0x0900), "RMRmiIeH", mcfemac }, 1528 1.1 christos {"macl", 4, two(0xa000, 0x0a00), two(0xf130, 0x0900), "RMRmMheH", mcfemac }, 1529 1.1 christos {"macl", 4, two(0xa000, 0x0800), two(0xf130, 0x0f00), "RMRmeH", mcfemac }, 1530 1.1 christos 1531 1.8 christos {"macl", 4, two(0xa080, 0x0800), two(0xf180, 0x0910), "RNRoiI4/Rn", mcfemac }, 1532 1.8 christos {"macl", 4, two(0xa080, 0x0a00), two(0xf180, 0x0910), "RNRoMh4/Rn", mcfemac }, 1533 1.8 christos {"macl", 4, two(0xa080, 0x0800), two(0xf180, 0x0f10), "RNRo4/Rn", mcfemac }, 1534 1.8 christos {"macl", 4, two(0xa000, 0x0800), two(0xf1b0, 0x0b10), "RMRmiI", mcfemac }, 1535 1.8 christos {"macl", 4, two(0xa000, 0x0a00), two(0xf1b0, 0x0b10), "RMRmMh", mcfemac }, 1536 1.8 christos {"macl", 4, two(0xa000, 0x0800), two(0xf1b0, 0x0910), "RMRm", mcfemac }, 1537 1.8 christos 1538 1.1 christos /* NOTE: The mcf5200 family programmer's reference manual does not 1539 1.1 christos indicate the byte form of the movea instruction is invalid (as it 1540 1.1 christos is on 68000 family cpus). However, experiments on the 5202 yeild 1541 1.1 christos unexpected results. The value is copied, but it is not sign extended 1542 1.1 christos (as is done with movea.w) and the top three bytes in the address 1543 1.1 christos register are not disturbed. I don't know if this is the intended 1544 1.1 christos behavior --- it could be a hole in instruction decoding (Motorola 1545 1.1 christos decided not to trap all invalid instructions for performance reasons) 1546 1.1 christos --- but I suspect that it is not. 1547 1.1 christos 1548 1.1 christos I reported this to Motorola ISD Technical Communications Support, 1549 1.1 christos which replied that other coldfire assemblers reject movea.b. For 1550 1.1 christos this reason I've decided to not allow moveab. 1551 1.1 christos 1552 1.1 christos jtc (at) cygnus.com - 97/01/24. */ 1553 1.1 christos 1554 1.1 christos {"moveal", 2, one(0020100), one(0170700), "*lAd", m68000up | mcfisa_a }, 1555 1.1 christos {"moveaw", 2, one(0030100), one(0170700), "*wAd", m68000up | mcfisa_a }, 1556 1.1 christos 1557 1.1 christos {"movclrl", 2, one(0xA1C0), one(0xf9f0), "eFRs", mcfemac }, 1558 1.1 christos 1559 1.1 christos {"movec", 4, one(0047173), one(0177777), "R1Jj", m68010up | mcfisa_a }, 1560 1.1 christos {"movec", 4, one(0047173), one(0177777), "R1#j", m68010up | mcfisa_a }, 1561 1.1 christos {"movec", 4, one(0047172), one(0177777), "JjR1", m68010up }, 1562 1.1 christos {"movec", 4, one(0047172), one(0177777), "#jR1", m68010up }, 1563 1.1 christos 1564 1.1 christos {"movemw", 4, one(0044200), one(0177700), "Lw&s", m68000up }, 1565 1.1 christos {"movemw", 4, one(0044240), one(0177770), "lw-s", m68000up }, 1566 1.1 christos {"movemw", 4, one(0044200), one(0177700), "#w>s", m68000up }, 1567 1.1 christos {"movemw", 4, one(0046200), one(0177700), "<sLw", m68000up }, 1568 1.1 christos {"movemw", 4, one(0046200), one(0177700), "<s#w", m68000up }, 1569 1.1 christos {"moveml", 4, one(0044300), one(0177700), "Lw&s", m68000up }, 1570 1.1 christos {"moveml", 4, one(0044340), one(0177770), "lw-s", m68000up }, 1571 1.1 christos {"moveml", 4, one(0044300), one(0177700), "#w>s", m68000up }, 1572 1.1 christos {"moveml", 4, one(0046300), one(0177700), "<sLw", m68000up }, 1573 1.1 christos {"moveml", 4, one(0046300), one(0177700), "<s#w", m68000up }, 1574 1.1 christos {"moveml", 4, one(0044300), one(0177700), "Lwys", mcfisa_a }, 1575 1.1 christos {"moveml", 4, one(0044300), one(0177700), "#wys", mcfisa_a }, 1576 1.1 christos {"moveml", 4, one(0046300), one(0177700), "ysLw", mcfisa_a }, 1577 1.1 christos {"moveml", 4, one(0046300), one(0177700), "ys#w", mcfisa_a }, 1578 1.1 christos 1579 1.1 christos {"movepw", 2, one(0000410), one(0170770), "dsDd", m68000up }, 1580 1.1 christos {"movepw", 2, one(0000610), one(0170770), "Ddds", m68000up }, 1581 1.1 christos {"movepl", 2, one(0000510), one(0170770), "dsDd", m68000up }, 1582 1.1 christos {"movepl", 2, one(0000710), one(0170770), "Ddds", m68000up }, 1583 1.1 christos 1584 1.1 christos {"moveq", 2, one(0070000), one(0170400), "MsDd", m68000up | mcfisa_a }, 1585 1.1 christos {"moveq", 2, one(0070000), one(0170400), "#BDd", m68000up | mcfisa_a }, 1586 1.1 christos 1587 1.1 christos /* The move opcode can generate the movea and moveq instructions. */ 1588 1.1 christos {"moveb", 2, one(0010000), one(0170000), ";b$d", m68000up }, 1589 1.1 christos {"moveb", 2, one(0010000), one(0170070), "Ds$d", mcfisa_a }, 1590 1.1 christos {"moveb", 2, one(0010020), one(0170070), "as$d", mcfisa_a }, 1591 1.1 christos {"moveb", 2, one(0010030), one(0170070), "+s$d", mcfisa_a }, 1592 1.1 christos {"moveb", 2, one(0010040), one(0170070), "-s$d", mcfisa_a }, 1593 1.1 christos {"moveb", 2, one(0010000), one(0170000), "nsqd", mcfisa_a }, 1594 1.1 christos {"moveb", 2, one(0010000), one(0170700), "obDd", mcfisa_a }, 1595 1.1 christos {"moveb", 2, one(0010200), one(0170700), "obad", mcfisa_a }, 1596 1.1 christos {"moveb", 2, one(0010300), one(0170700), "ob+d", mcfisa_a }, 1597 1.1 christos {"moveb", 2, one(0010400), one(0170700), "ob-d", mcfisa_a }, 1598 1.6 christos {"moveb", 2, one(0010074), one(0170077), "#bpd", mcfisa_b | mcfisa_c }, 1599 1.1 christos 1600 1.1 christos {"movew", 2, one(0030000), one(0170000), "*w%d", m68000up }, 1601 1.1 christos {"movew", 2, one(0030000), one(0170000), "ms%d", mcfisa_a }, 1602 1.1 christos {"movew", 2, one(0030000), one(0170000), "nspd", mcfisa_a }, 1603 1.1 christos {"movew", 2, one(0030000), one(0170000), "owmd", mcfisa_a }, 1604 1.6 christos {"movew", 2, one(0030074), one(0170077), "#wpd", mcfisa_b | mcfisa_c }, 1605 1.1 christos {"movew", 2, one(0040300), one(0177700), "Ss$s", m68000up }, 1606 1.1 christos {"movew", 2, one(0040300), one(0177770), "SsDs", mcfisa_a }, 1607 1.1 christos {"movew", 2, one(0041300), one(0177700), "Cs$s", m68010up }, 1608 1.1 christos {"movew", 2, one(0041300), one(0177770), "CsDs", mcfisa_a }, 1609 1.1 christos {"movew", 2, one(0042300), one(0177700), ";wCd", m68000up }, 1610 1.1 christos {"movew", 2, one(0042300), one(0177770), "DsCd", mcfisa_a }, 1611 1.1 christos {"movew", 4, one(0042374), one(0177777), "#wCd", mcfisa_a }, 1612 1.1 christos {"movew", 2, one(0043300), one(0177700), ";wSd", m68000up }, 1613 1.1 christos {"movew", 2, one(0043300), one(0177770), "DsSd", mcfisa_a }, 1614 1.1 christos {"movew", 4, one(0043374), one(0177777), "#wSd", mcfisa_a }, 1615 1.1 christos 1616 1.1 christos {"movel", 2, one(0070000), one(0170400), "MsDd", m68000up | mcfisa_a }, 1617 1.1 christos {"movel", 2, one(0020000), one(0170000), "*l%d", m68000up }, 1618 1.1 christos {"movel", 2, one(0020000), one(0170000), "ms%d", mcfisa_a }, 1619 1.1 christos {"movel", 2, one(0020000), one(0170000), "nspd", mcfisa_a }, 1620 1.1 christos {"movel", 2, one(0020000), one(0170000), "olmd", mcfisa_a }, 1621 1.1 christos {"movel", 2, one(0047140), one(0177770), "AsUd", m68000up | mcfusp }, 1622 1.1 christos {"movel", 2, one(0047150), one(0177770), "UdAs", m68000up | mcfusp }, 1623 1.1 christos {"movel", 2, one(0120600), one(0177760), "EsRs", mcfmac }, 1624 1.1 christos {"movel", 2, one(0120400), one(0177760), "RsEs", mcfmac }, 1625 1.1 christos {"movel", 6, one(0120474), one(0177777), "#lEs", mcfmac }, 1626 1.1 christos {"movel", 2, one(0124600), one(0177760), "GsRs", mcfmac }, 1627 1.1 christos {"movel", 2, one(0124400), one(0177760), "RsGs", mcfmac }, 1628 1.1 christos {"movel", 6, one(0124474), one(0177777), "#lGs", mcfmac }, 1629 1.1 christos {"movel", 2, one(0126600), one(0177760), "HsRs", mcfmac }, 1630 1.1 christos {"movel", 2, one(0126400), one(0177760), "RsHs", mcfmac }, 1631 1.1 christos {"movel", 6, one(0126474), one(0177777), "#lHs", mcfmac }, 1632 1.1 christos {"movel", 2, one(0124700), one(0177777), "GsCs", mcfmac }, 1633 1.1 christos 1634 1.1 christos {"movel", 2, one(0xa180), one(0xf9f0), "eFRs", mcfemac }, /* ACCx,Rx. */ 1635 1.1 christos {"movel", 2, one(0xab80), one(0xfbf0), "g]Rs", mcfemac }, /* ACCEXTx,Rx. */ 1636 1.1 christos {"movel", 2, one(0xa980), one(0xfff0), "G-Rs", mcfemac }, /* macsr,Rx. */ 1637 1.1 christos {"movel", 2, one(0xad80), one(0xfff0), "H-Rs", mcfemac }, /* mask,Rx. */ 1638 1.1 christos {"movel", 2, one(0xa110), one(0xf9fc), "efeF", mcfemac }, /* ACCy,ACCx. */ 1639 1.1 christos {"movel", 2, one(0xa9c0), one(0xffff), "G-C-", mcfemac }, /* macsr,ccr. */ 1640 1.1 christos {"movel", 2, one(0xa100), one(0xf9f0), "RseF", mcfemac }, /* Rx,ACCx. */ 1641 1.1 christos {"movel", 6, one(0xa13c), one(0xf9ff), "#leF", mcfemac }, /* #,ACCx. */ 1642 1.1 christos {"movel", 2, one(0xab00), one(0xfbc0), "Rsg]", mcfemac }, /* Rx,ACCEXTx. */ 1643 1.1 christos {"movel", 6, one(0xab3c), one(0xfbff), "#lg]", mcfemac }, /* #,ACCEXTx. */ 1644 1.10 christos {"movel", 2, one(0xa900), one(0xfff0), "RsG-", mcfemac }, /* Rx,macsr. */ 1645 1.1 christos {"movel", 6, one(0xa93c), one(0xffff), "#lG-", mcfemac }, /* #,macsr. */ 1646 1.10 christos {"movel", 2, one(0xad00), one(0xfff0), "RsH-", mcfemac }, /* Rx,mask. */ 1647 1.1 christos {"movel", 6, one(0xad3c), one(0xffff), "#lH-", mcfemac }, /* #,mask. */ 1648 1.1 christos 1649 1.1 christos {"move", 2, one(0030000), one(0170000), "*w%d", m68000up }, 1650 1.1 christos {"move", 2, one(0030000), one(0170000), "ms%d", mcfisa_a }, 1651 1.1 christos {"move", 2, one(0030000), one(0170000), "nspd", mcfisa_a }, 1652 1.1 christos {"move", 2, one(0030000), one(0170000), "owmd", mcfisa_a }, 1653 1.6 christos {"move", 2, one(0030074), one(0170077), "#wpd", mcfisa_b | mcfisa_c }, 1654 1.1 christos {"move", 2, one(0040300), one(0177700), "Ss$s", m68000up }, 1655 1.1 christos {"move", 2, one(0040300), one(0177770), "SsDs", mcfisa_a }, 1656 1.1 christos {"move", 2, one(0041300), one(0177700), "Cs$s", m68010up }, 1657 1.1 christos {"move", 2, one(0041300), one(0177770), "CsDs", mcfisa_a }, 1658 1.1 christos {"move", 2, one(0042300), one(0177700), ";wCd", m68000up }, 1659 1.1 christos {"move", 2, one(0042300), one(0177700), "DsCd", mcfisa_a }, 1660 1.1 christos {"move", 4, one(0042374), one(0177777), "#wCd", mcfisa_a }, 1661 1.1 christos {"move", 2, one(0043300), one(0177700), ";wSd", m68000up }, 1662 1.1 christos {"move", 2, one(0043300), one(0177700), "DsSd", mcfisa_a }, 1663 1.1 christos {"move", 4, one(0043374), one(0177777), "#wSd", mcfisa_a }, 1664 1.1 christos 1665 1.1 christos {"move", 2, one(0047140), one(0177770), "AsUd", m68000up }, 1666 1.1 christos {"move", 2, one(0047150), one(0177770), "UdAs", m68000up }, 1667 1.1 christos 1668 1.1 christos {"mov3ql", 2, one(0120500), one(0170700), "xd%s", mcfisa_b | mcfisa_c }, 1669 1.1 christos {"mvsb", 2, one(0070400), one(0170700), "*bDd", mcfisa_b | mcfisa_c }, 1670 1.1 christos {"mvsw", 2, one(0070500), one(0170700), "*wDd", mcfisa_b | mcfisa_c }, 1671 1.1 christos {"mvzb", 2, one(0070600), one(0170700), "*bDd", mcfisa_b | mcfisa_c }, 1672 1.1 christos {"mvzw", 2, one(0070700), one(0170700), "*wDd", mcfisa_b | mcfisa_c }, 1673 1.1 christos 1674 1.1 christos {"movesb", 4, two(0007000, 0), two(0177700, 07777), "~sR1", m68010up }, 1675 1.1 christos {"movesb", 4, two(0007000, 04000), two(0177700, 07777), "R1~s", m68010up }, 1676 1.1 christos {"movesw", 4, two(0007100, 0), two(0177700, 07777), "~sR1", m68010up }, 1677 1.1 christos {"movesw", 4, two(0007100, 04000), two(0177700, 07777), "R1~s", m68010up }, 1678 1.1 christos {"movesl", 4, two(0007200, 0), two(0177700, 07777), "~sR1", m68010up }, 1679 1.1 christos {"movesl", 4, two(0007200, 04000), two(0177700, 07777), "R1~s", m68010up }, 1680 1.1 christos 1681 1.1 christos {"move16", 4, two(0xf620, 0x8000), two(0xfff8, 0x8fff), "+s+1", m68040up }, 1682 1.1 christos {"move16", 2, one(0xf600), one(0xfff8), "+s_L", m68040up }, 1683 1.1 christos {"move16", 2, one(0xf608), one(0xfff8), "_L+s", m68040up }, 1684 1.1 christos {"move16", 2, one(0xf610), one(0xfff8), "as_L", m68040up }, 1685 1.1 christos {"move16", 2, one(0xf618), one(0xfff8), "_Las", m68040up }, 1686 1.1 christos 1687 1.1 christos {"msacw", 4, two(0xa080, 0x0100), two(0xf180, 0x0910), "uNuoiI4/Rn", mcfmac }, 1688 1.1 christos {"msacw", 4, two(0xa080, 0x0300), two(0xf180, 0x0910), "uNuoMh4/Rn", mcfmac }, 1689 1.1 christos {"msacw", 4, two(0xa080, 0x0100), two(0xf180, 0x0f10), "uNuo4/Rn", mcfmac }, 1690 1.1 christos {"msacw", 4, two(0xa000, 0x0100), two(0xf1b0, 0x0900), "uMumiI", mcfmac }, 1691 1.1 christos {"msacw", 4, two(0xa000, 0x0300), two(0xf1b0, 0x0900), "uMumMh", mcfmac }, 1692 1.1 christos {"msacw", 4, two(0xa000, 0x0100), two(0xf1b0, 0x0f00), "uMum", mcfmac }, 1693 1.1 christos 1694 1.1 christos {"msacw", 4, two(0xa000, 0x0100), two(0xf100, 0x0900), "uNuoiI4/RneG", mcfemac },/* Ry,Rx,SF,<ea>,accX. */ 1695 1.1 christos {"msacw", 4, two(0xa000, 0x0300), two(0xf100, 0x0900), "uNuoMh4/RneG", mcfemac },/* Ry,Rx,+1/-1,<ea>,accX. */ 1696 1.1 christos {"msacw", 4, two(0xa000, 0x0100), two(0xf100, 0x0f00), "uNuo4/RneG", mcfemac },/* Ry,Rx,<ea>,accX. */ 1697 1.1 christos {"msacw", 4, two(0xa000, 0x0100), two(0xf130, 0x0900), "uMumiIeH", mcfemac },/* Ry,Rx,SF,accX. */ 1698 1.1 christos {"msacw", 4, two(0xa000, 0x0300), two(0xf130, 0x0900), "uMumMheH", mcfemac },/* Ry,Rx,+1/-1,accX. */ 1699 1.1 christos {"msacw", 4, two(0xa000, 0x0100), two(0xf130, 0x0f00), "uMumeH", mcfemac }, /* Ry,Rx,accX. */ 1700 1.1 christos 1701 1.1 christos {"msacl", 4, two(0xa080, 0x0900), two(0xf180, 0x0910), "RNRoiI4/Rn", mcfmac }, 1702 1.1 christos {"msacl", 4, two(0xa080, 0x0b00), two(0xf180, 0x0910), "RNRoMh4/Rn", mcfmac }, 1703 1.1 christos {"msacl", 4, two(0xa080, 0x0900), two(0xf180, 0x0f10), "RNRo4/Rn", mcfmac }, 1704 1.1 christos {"msacl", 4, two(0xa000, 0x0900), two(0xf1b0, 0x0b00), "RMRmiI", mcfmac }, 1705 1.1 christos {"msacl", 4, two(0xa000, 0x0b00), two(0xf1b0, 0x0b00), "RMRmMh", mcfmac }, 1706 1.1 christos {"msacl", 4, two(0xa000, 0x0900), two(0xf1b0, 0x0900), "RMRm", mcfmac }, 1707 1.1 christos 1708 1.1 christos {"msacl", 4, two(0xa000, 0x0900), two(0xf100, 0x0900), "R3R1iI4/RneG", mcfemac }, 1709 1.1 christos {"msacl", 4, two(0xa000, 0x0b00), two(0xf100, 0x0900), "R3R1Mh4/RneG", mcfemac }, 1710 1.1 christos {"msacl", 4, two(0xa000, 0x0900), two(0xf100, 0x0f00), "R3R14/RneG", mcfemac }, 1711 1.1 christos {"msacl", 4, two(0xa000, 0x0900), two(0xf130, 0x0900), "RMRmiIeH", mcfemac }, 1712 1.1 christos {"msacl", 4, two(0xa000, 0x0b00), two(0xf130, 0x0900), "RMRmMheH", mcfemac }, 1713 1.1 christos {"msacl", 4, two(0xa000, 0x0900), two(0xf130, 0x0f00), "RMRmeH", mcfemac }, 1714 1.1 christos 1715 1.1 christos {"mulsw", 2, one(0140700), one(0170700), ";wDd", m68000up|mcfisa_a }, 1716 1.1 christos {"mulsl", 4, two(0046000,004000), two(0177700,0107770), ";lD1", m68020up | cpu32 | fido_a }, 1717 1.1 christos {"mulsl", 4, two(0046000,004000), two(0177700,0107770), "qsD1", mcfisa_a }, 1718 1.1 christos {"mulsl", 4, two(0046000,006000), two(0177700,0107770), ";lD3D1",m68020up | cpu32 | fido_a }, 1719 1.1 christos 1720 1.1 christos {"muluw", 2, one(0140300), one(0170700), ";wDd", m68000up|mcfisa_a }, 1721 1.1 christos {"mulul", 4, two(0046000,000000), two(0177700,0107770), ";lD1", m68020up | cpu32 | fido_a }, 1722 1.1 christos {"mulul", 4, two(0046000,000000), two(0177700,0107770), "qsD1", mcfisa_a }, 1723 1.1 christos {"mulul", 4, two(0046000,002000), two(0177700,0107770), ";lD3D1",m68020up | cpu32 | fido_a }, 1724 1.1 christos 1725 1.1 christos {"nbcd", 2, one(0044000), one(0177700), "$s", m68000up }, 1726 1.1 christos 1727 1.1 christos {"negb", 2, one(0042000), one(0177700), "$s", m68000up }, 1728 1.1 christos {"negw", 2, one(0042100), one(0177700), "$s", m68000up }, 1729 1.1 christos {"negl", 2, one(0042200), one(0177700), "$s", m68000up }, 1730 1.1 christos {"negl", 2, one(0042200), one(0177700), "Ds", mcfisa_a}, 1731 1.1 christos 1732 1.1 christos {"negxb", 2, one(0040000), one(0177700), "$s", m68000up }, 1733 1.1 christos {"negxw", 2, one(0040100), one(0177700), "$s", m68000up }, 1734 1.1 christos {"negxl", 2, one(0040200), one(0177700), "$s", m68000up }, 1735 1.1 christos {"negxl", 2, one(0040200), one(0177700), "Ds", mcfisa_a}, 1736 1.1 christos 1737 1.1 christos {"nop", 2, one(0047161), one(0177777), "", m68000up | mcfisa_a}, 1738 1.1 christos 1739 1.1 christos {"notb", 2, one(0043000), one(0177700), "$s", m68000up }, 1740 1.1 christos {"notw", 2, one(0043100), one(0177700), "$s", m68000up }, 1741 1.1 christos {"notl", 2, one(0043200), one(0177700), "$s", m68000up }, 1742 1.1 christos {"notl", 2, one(0043200), one(0177700), "Ds", mcfisa_a}, 1743 1.1 christos 1744 1.1 christos {"orib", 4, one(0000000), one(0177700), "#b$s", m68000up }, 1745 1.1 christos {"orib", 4, one(0000074), one(0177777), "#bCs", m68000up }, 1746 1.1 christos {"oriw", 4, one(0000100), one(0177700), "#w$s", m68000up }, 1747 1.1 christos {"oriw", 4, one(0000174), one(0177777), "#wSs", m68000up }, 1748 1.1 christos {"oril", 6, one(0000200), one(0177700), "#l$s", m68000up }, 1749 1.1 christos {"oril", 6, one(0000200), one(0177700), "#lDs", mcfisa_a }, 1750 1.1 christos {"ori", 4, one(0000074), one(0177777), "#bCs", m68000up }, 1751 1.1 christos {"ori", 4, one(0000100), one(0177700), "#w$s", m68000up }, 1752 1.1 christos {"ori", 4, one(0000174), one(0177777), "#wSs", m68000up }, 1753 1.1 christos 1754 1.1 christos /* The or opcode can generate the ori instruction. */ 1755 1.1 christos {"orb", 4, one(0000000), one(0177700), "#b$s", m68000up }, 1756 1.1 christos {"orb", 4, one(0000074), one(0177777), "#bCs", m68000up }, 1757 1.1 christos {"orb", 2, one(0100000), one(0170700), ";bDd", m68000up }, 1758 1.1 christos {"orb", 2, one(0100400), one(0170700), "Dd~s", m68000up }, 1759 1.1 christos {"orw", 4, one(0000100), one(0177700), "#w$s", m68000up }, 1760 1.1 christos {"orw", 4, one(0000174), one(0177777), "#wSs", m68000up }, 1761 1.1 christos {"orw", 2, one(0100100), one(0170700), ";wDd", m68000up }, 1762 1.1 christos {"orw", 2, one(0100500), one(0170700), "Dd~s", m68000up }, 1763 1.1 christos {"orl", 6, one(0000200), one(0177700), "#l$s", m68000up }, 1764 1.1 christos {"orl", 6, one(0000200), one(0177700), "#lDs", mcfisa_a }, 1765 1.1 christos {"orl", 2, one(0100200), one(0170700), ";lDd", m68000up | mcfisa_a }, 1766 1.1 christos {"orl", 2, one(0100600), one(0170700), "Dd~s", m68000up | mcfisa_a }, 1767 1.1 christos {"or", 4, one(0000074), one(0177777), "#bCs", m68000up }, 1768 1.1 christos {"or", 4, one(0000100), one(0177700), "#w$s", m68000up }, 1769 1.1 christos {"or", 4, one(0000174), one(0177777), "#wSs", m68000up }, 1770 1.1 christos {"or", 2, one(0100100), one(0170700), ";wDd", m68000up }, 1771 1.1 christos {"or", 2, one(0100500), one(0170700), "Dd~s", m68000up }, 1772 1.1 christos 1773 1.1 christos {"pack", 4, one(0100500), one(0170770), "DsDd#w", m68020up }, 1774 1.1 christos {"pack", 4, one(0100510), one(0170770), "-s-d#w", m68020up }, 1775 1.1 christos 1776 1.1 christos {"pbac", 2, one(0xf087), one(0xffbf), "Bc", m68851 }, 1777 1.1 christos {"pbacw", 2, one(0xf087), one(0xffff), "BW", m68851 }, 1778 1.1 christos {"pbas", 2, one(0xf086), one(0xffbf), "Bc", m68851 }, 1779 1.1 christos {"pbasw", 2, one(0xf086), one(0xffff), "BW", m68851 }, 1780 1.1 christos {"pbbc", 2, one(0xf081), one(0xffbf), "Bc", m68851 }, 1781 1.1 christos {"pbbcw", 2, one(0xf081), one(0xffff), "BW", m68851 }, 1782 1.1 christos {"pbbs", 2, one(0xf080), one(0xffbf), "Bc", m68851 }, 1783 1.1 christos {"pbbsw", 2, one(0xf080), one(0xffff), "BW", m68851 }, 1784 1.1 christos {"pbcc", 2, one(0xf08f), one(0xffbf), "Bc", m68851 }, 1785 1.1 christos {"pbccw", 2, one(0xf08f), one(0xffff), "BW", m68851 }, 1786 1.1 christos {"pbcs", 2, one(0xf08e), one(0xffbf), "Bc", m68851 }, 1787 1.1 christos {"pbcsw", 2, one(0xf08e), one(0xffff), "BW", m68851 }, 1788 1.1 christos {"pbgc", 2, one(0xf08d), one(0xffbf), "Bc", m68851 }, 1789 1.1 christos {"pbgcw", 2, one(0xf08d), one(0xffff), "BW", m68851 }, 1790 1.1 christos {"pbgs", 2, one(0xf08c), one(0xffbf), "Bc", m68851 }, 1791 1.1 christos {"pbgsw", 2, one(0xf08c), one(0xffff), "BW", m68851 }, 1792 1.1 christos {"pbic", 2, one(0xf08b), one(0xffbf), "Bc", m68851 }, 1793 1.1 christos {"pbicw", 2, one(0xf08b), one(0xffff), "BW", m68851 }, 1794 1.1 christos {"pbis", 2, one(0xf08a), one(0xffbf), "Bc", m68851 }, 1795 1.1 christos {"pbisw", 2, one(0xf08a), one(0xffff), "BW", m68851 }, 1796 1.1 christos {"pblc", 2, one(0xf083), one(0xffbf), "Bc", m68851 }, 1797 1.1 christos {"pblcw", 2, one(0xf083), one(0xffff), "BW", m68851 }, 1798 1.1 christos {"pbls", 2, one(0xf082), one(0xffbf), "Bc", m68851 }, 1799 1.1 christos {"pblsw", 2, one(0xf082), one(0xffff), "BW", m68851 }, 1800 1.1 christos {"pbsc", 2, one(0xf085), one(0xffbf), "Bc", m68851 }, 1801 1.1 christos {"pbscw", 2, one(0xf085), one(0xffff), "BW", m68851 }, 1802 1.1 christos {"pbss", 2, one(0xf084), one(0xffbf), "Bc", m68851 }, 1803 1.1 christos {"pbssw", 2, one(0xf084), one(0xffff), "BW", m68851 }, 1804 1.1 christos {"pbwc", 2, one(0xf089), one(0xffbf), "Bc", m68851 }, 1805 1.1 christos {"pbwcw", 2, one(0xf089), one(0xffff), "BW", m68851 }, 1806 1.1 christos {"pbws", 2, one(0xf088), one(0xffbf), "Bc", m68851 }, 1807 1.1 christos {"pbwsw", 2, one(0xf088), one(0xffff), "BW", m68851 }, 1808 1.1 christos 1809 1.1 christos {"pdbac", 4, two(0xf048, 0x0007), two(0xfff8, 0xffff), "DsBw", m68851 }, 1810 1.1 christos {"pdbas", 4, two(0xf048, 0x0006), two(0xfff8, 0xffff), "DsBw", m68851 }, 1811 1.1 christos {"pdbbc", 4, two(0xf048, 0x0001), two(0xfff8, 0xffff), "DsBw", m68851 }, 1812 1.1 christos {"pdbbs", 4, two(0xf048, 0x0000), two(0xfff8, 0xffff), "DsBw", m68851 }, 1813 1.1 christos {"pdbcc", 4, two(0xf048, 0x000f), two(0xfff8, 0xffff), "DsBw", m68851 }, 1814 1.1 christos {"pdbcs", 4, two(0xf048, 0x000e), two(0xfff8, 0xffff), "DsBw", m68851 }, 1815 1.1 christos {"pdbgc", 4, two(0xf048, 0x000d), two(0xfff8, 0xffff), "DsBw", m68851 }, 1816 1.1 christos {"pdbgs", 4, two(0xf048, 0x000c), two(0xfff8, 0xffff), "DsBw", m68851 }, 1817 1.1 christos {"pdbic", 4, two(0xf048, 0x000b), two(0xfff8, 0xffff), "DsBw", m68851 }, 1818 1.1 christos {"pdbis", 4, two(0xf048, 0x000a), two(0xfff8, 0xffff), "DsBw", m68851 }, 1819 1.1 christos {"pdblc", 4, two(0xf048, 0x0003), two(0xfff8, 0xffff), "DsBw", m68851 }, 1820 1.1 christos {"pdbls", 4, two(0xf048, 0x0002), two(0xfff8, 0xffff), "DsBw", m68851 }, 1821 1.1 christos {"pdbsc", 4, two(0xf048, 0x0005), two(0xfff8, 0xffff), "DsBw", m68851 }, 1822 1.1 christos {"pdbss", 4, two(0xf048, 0x0004), two(0xfff8, 0xffff), "DsBw", m68851 }, 1823 1.1 christos {"pdbwc", 4, two(0xf048, 0x0009), two(0xfff8, 0xffff), "DsBw", m68851 }, 1824 1.1 christos {"pdbws", 4, two(0xf048, 0x0008), two(0xfff8, 0xffff), "DsBw", m68851 }, 1825 1.1 christos 1826 1.1 christos {"pea", 2, one(0044100), one(0177700), "!s", m68000up|mcfisa_a }, 1827 1.1 christos 1828 1.1 christos {"pflusha", 2, one(0xf518), one(0xfff8), "", m68040up }, 1829 1.1 christos {"pflusha", 4, two(0xf000,0x2400), two(0xffff,0xffff), "", m68030 | m68851 }, 1830 1.1 christos 1831 1.1 christos {"pflush", 4, two(0xf000,0x3010), two(0xffc0,0xfe10), "T3T9", m68030|m68851 }, 1832 1.1 christos {"pflush", 4, two(0xf000,0x3810), two(0xffc0,0xfe10), "T3T9&s", m68030|m68851 }, 1833 1.1 christos {"pflush", 4, two(0xf000,0x3008), two(0xffc0,0xfe18), "D3T9", m68030|m68851 }, 1834 1.1 christos {"pflush", 4, two(0xf000,0x3808), two(0xffc0,0xfe18), "D3T9&s", m68030|m68851 }, 1835 1.1 christos {"pflush", 4, two(0xf000,0x3000), two(0xffc0,0xfe1e), "f3T9", m68030|m68851 }, 1836 1.1 christos {"pflush", 4, two(0xf000,0x3800), two(0xffc0,0xfe1e), "f3T9&s", m68030|m68851 }, 1837 1.1 christos {"pflush", 2, one(0xf508), one(0xfff8), "as", m68040up }, 1838 1.1 christos {"pflush", 2, one(0xf508), one(0xfff8), "As", m68040up }, 1839 1.1 christos 1840 1.1 christos {"pflushan", 2, one(0xf510), one(0xfff8), "", m68040up }, 1841 1.1 christos {"pflushn", 2, one(0xf500), one(0xfff8), "as", m68040up }, 1842 1.1 christos {"pflushn", 2, one(0xf500), one(0xfff8), "As", m68040up }, 1843 1.1 christos 1844 1.1 christos {"pflushr", 4, two(0xf000, 0xa000), two(0xffc0, 0xffff), "|s", m68851 }, 1845 1.1 christos 1846 1.1 christos {"pflushs", 4, two(0xf000, 0x3410), two(0xfff8, 0xfe10), "T3T9", m68851 }, 1847 1.1 christos {"pflushs", 4, two(0xf000, 0x3c10), two(0xfff8, 0xfe10), "T3T9&s", m68851 }, 1848 1.1 christos {"pflushs", 4, two(0xf000, 0x3408), two(0xfff8, 0xfe18), "D3T9", m68851 }, 1849 1.1 christos {"pflushs", 4, two(0xf000, 0x3c08), two(0xfff8, 0xfe18), "D3T9&s", m68851 }, 1850 1.1 christos {"pflushs", 4, two(0xf000, 0x3400), two(0xfff8, 0xfe1e), "f3T9", m68851 }, 1851 1.1 christos {"pflushs", 4, two(0xf000, 0x3c00), two(0xfff8, 0xfe1e), "f3T9&s", m68851 }, 1852 1.1 christos 1853 1.1 christos {"ploadr", 4, two(0xf000,0x2210), two(0xffc0,0xfff0), "T3&s", m68030|m68851 }, 1854 1.1 christos {"ploadr", 4, two(0xf000,0x2208), two(0xffc0,0xfff8), "D3&s", m68030|m68851 }, 1855 1.1 christos {"ploadr", 4, two(0xf000,0x2200), two(0xffc0,0xfffe), "f3&s", m68030|m68851 }, 1856 1.1 christos {"ploadw", 4, two(0xf000,0x2010), two(0xffc0,0xfff0), "T3&s", m68030|m68851 }, 1857 1.1 christos {"ploadw", 4, two(0xf000,0x2008), two(0xffc0,0xfff8), "D3&s", m68030|m68851 }, 1858 1.1 christos {"ploadw", 4, two(0xf000,0x2000), two(0xffc0,0xfffe), "f3&s", m68030|m68851 }, 1859 1.1 christos 1860 1.1 christos {"plpar", 2, one(0xf5c8), one(0xfff8), "as", m68060 }, 1861 1.1 christos {"plpaw", 2, one(0xf588), one(0xfff8), "as", m68060 }, 1862 1.1 christos 1863 1.1 christos {"pmove", 4, two(0xf000,0x4000), two(0xffc0,0xffff), "*l08", m68030|m68851 }, 1864 1.1 christos {"pmove", 4, two(0xf000,0x5c00), two(0xffc0,0xffff), "*w18", m68851 }, 1865 1.1 christos {"pmove", 4, two(0xf000,0x4000), two(0xffc0,0xe3ff), "*b28", m68851 }, 1866 1.1 christos {"pmove", 4, two(0xf000,0x4200), two(0xffc0,0xffff), "08%s", m68030|m68851 }, 1867 1.1 christos {"pmove", 4, two(0xf000,0x5e00), two(0xffc0,0xffff), "18%s", m68851 }, 1868 1.1 christos {"pmove", 4, two(0xf000,0x4200), two(0xffc0,0xe3ff), "28%s", m68851 }, 1869 1.1 christos {"pmove", 4, two(0xf000,0x4000), two(0xffc0,0xe3ff), "|sW8", m68030|m68851 }, 1870 1.1 christos {"pmove", 4, two(0xf000,0x4200), two(0xffc0,0xe3ff), "W8~s", m68030|m68851 }, 1871 1.1 christos {"pmove", 4, two(0xf000,0x6000), two(0xffc0,0xffff), "*wY8", m68030|m68851 }, 1872 1.1 christos {"pmove", 4, two(0xf000,0x6200), two(0xffc0,0xffff), "Y8%s", m68030|m68851 }, 1873 1.1 christos {"pmove", 4, two(0xf000,0x6600), two(0xffc0,0xffff), "Z8%s", m68851 }, 1874 1.1 christos {"pmove", 4, two(0xf000,0x6000), two(0xffc0,0xe3e3), "*wX3", m68851 }, 1875 1.1 christos {"pmove", 4, two(0xf000,0x6200), two(0xffc0,0xe3e3), "X3%s", m68851 }, 1876 1.1 christos {"pmove", 4, two(0xf000,0x0800), two(0xffc0,0xfbff), "*l38", m68030 }, 1877 1.1 christos {"pmove", 4, two(0xf000,0x0a00), two(0xffc0,0xfbff), "38%s", m68030 }, 1878 1.1 christos 1879 1.1 christos {"pmovefd", 4, two(0xf000, 0x4100), two(0xffc0, 0xe3ff), "*l08", m68030 }, 1880 1.1 christos {"pmovefd", 4, two(0xf000, 0x4100), two(0xffc0, 0xe3ff), "|sW8", m68030 }, 1881 1.1 christos {"pmovefd", 4, two(0xf000, 0x0900), two(0xffc0, 0xfbff), "*l38", m68030 }, 1882 1.1 christos 1883 1.1 christos {"prestore", 2, one(0xf140), one(0xffc0), "<s", m68851 }, 1884 1.1 christos 1885 1.1 christos {"psave", 2, one(0xf100), one(0xffc0), ">s", m68851 }, 1886 1.1 christos 1887 1.1 christos {"psac", 4, two(0xf040, 0x0007), two(0xffc0, 0xffff), "$s", m68851 }, 1888 1.1 christos {"psas", 4, two(0xf040, 0x0006), two(0xffc0, 0xffff), "$s", m68851 }, 1889 1.1 christos {"psbc", 4, two(0xf040, 0x0001), two(0xffc0, 0xffff), "$s", m68851 }, 1890 1.1 christos {"psbs", 4, two(0xf040, 0x0000), two(0xffc0, 0xffff), "$s", m68851 }, 1891 1.1 christos {"pscc", 4, two(0xf040, 0x000f), two(0xffc0, 0xffff), "$s", m68851 }, 1892 1.1 christos {"pscs", 4, two(0xf040, 0x000e), two(0xffc0, 0xffff), "$s", m68851 }, 1893 1.1 christos {"psgc", 4, two(0xf040, 0x000d), two(0xffc0, 0xffff), "$s", m68851 }, 1894 1.1 christos {"psgs", 4, two(0xf040, 0x000c), two(0xffc0, 0xffff), "$s", m68851 }, 1895 1.1 christos {"psic", 4, two(0xf040, 0x000b), two(0xffc0, 0xffff), "$s", m68851 }, 1896 1.1 christos {"psis", 4, two(0xf040, 0x000a), two(0xffc0, 0xffff), "$s", m68851 }, 1897 1.1 christos {"pslc", 4, two(0xf040, 0x0003), two(0xffc0, 0xffff), "$s", m68851 }, 1898 1.1 christos {"psls", 4, two(0xf040, 0x0002), two(0xffc0, 0xffff), "$s", m68851 }, 1899 1.1 christos {"pssc", 4, two(0xf040, 0x0005), two(0xffc0, 0xffff), "$s", m68851 }, 1900 1.1 christos {"psss", 4, two(0xf040, 0x0004), two(0xffc0, 0xffff), "$s", m68851 }, 1901 1.1 christos {"pswc", 4, two(0xf040, 0x0009), two(0xffc0, 0xffff), "$s", m68851 }, 1902 1.1 christos {"psws", 4, two(0xf040, 0x0008), two(0xffc0, 0xffff), "$s", m68851 }, 1903 1.1 christos 1904 1.1 christos {"ptestr", 4, two(0xf000,0x8210), two(0xffc0, 0xe3f0), "T3&st8", m68030|m68851 }, 1905 1.1 christos {"ptestr", 4, two(0xf000,0x8310), two(0xffc0,0xe310), "T3&st8A9", m68030|m68851 }, 1906 1.1 christos {"ptestr", 4, two(0xf000,0x8208), two(0xffc0,0xe3f8), "D3&st8", m68030|m68851 }, 1907 1.1 christos {"ptestr", 4, two(0xf000,0x8308), two(0xffc0,0xe318), "D3&st8A9", m68030|m68851 }, 1908 1.1 christos {"ptestr", 4, two(0xf000,0x8200), two(0xffc0,0xe3fe), "f3&st8", m68030|m68851 }, 1909 1.1 christos {"ptestr", 4, two(0xf000,0x8300), two(0xffc0,0xe31e), "f3&st8A9", m68030|m68851 }, 1910 1.1 christos {"ptestr", 2, one(0xf568), one(0xfff8), "as", m68040 }, 1911 1.1 christos 1912 1.1 christos {"ptestw", 4, two(0xf000,0x8010), two(0xffc0,0xe3f0), "T3&st8", m68030|m68851 }, 1913 1.1 christos {"ptestw", 4, two(0xf000,0x8110), two(0xffc0,0xe310), "T3&st8A9", m68030|m68851 }, 1914 1.1 christos {"ptestw", 4, two(0xf000,0x8008), two(0xffc0,0xe3f8), "D3&st8", m68030|m68851 }, 1915 1.1 christos {"ptestw", 4, two(0xf000,0x8108), two(0xffc0,0xe318), "D3&st8A9", m68030|m68851 }, 1916 1.1 christos {"ptestw", 4, two(0xf000,0x8000), two(0xffc0,0xe3fe), "f3&st8", m68030|m68851 }, 1917 1.1 christos {"ptestw", 4, two(0xf000,0x8100), two(0xffc0,0xe31e), "f3&st8A9", m68030|m68851 }, 1918 1.1 christos {"ptestw", 2, one(0xf548), one(0xfff8), "as", m68040 }, 1919 1.1 christos 1920 1.1 christos {"ptrapacw", 6, two(0xf07a, 0x0007), two(0xffff, 0xffff), "#w", m68851 }, 1921 1.1 christos {"ptrapacl", 6, two(0xf07b, 0x0007), two(0xffff, 0xffff), "#l", m68851 }, 1922 1.1 christos {"ptrapac", 4, two(0xf07c, 0x0007), two(0xffff, 0xffff), "", m68851 }, 1923 1.1 christos 1924 1.1 christos {"ptrapasw", 6, two(0xf07a, 0x0006), two(0xffff, 0xffff), "#w", m68851 }, 1925 1.1 christos {"ptrapasl", 6, two(0xf07b, 0x0006), two(0xffff, 0xffff), "#l", m68851 }, 1926 1.1 christos {"ptrapas", 4, two(0xf07c, 0x0006), two(0xffff, 0xffff), "", m68851 }, 1927 1.1 christos 1928 1.1 christos {"ptrapbcw", 6, two(0xf07a, 0x0001), two(0xffff, 0xffff), "#w", m68851 }, 1929 1.1 christos {"ptrapbcl", 6, two(0xf07b, 0x0001), two(0xffff, 0xffff), "#l", m68851 }, 1930 1.1 christos {"ptrapbc", 4, two(0xf07c, 0x0001), two(0xffff, 0xffff), "", m68851 }, 1931 1.1 christos 1932 1.1 christos {"ptrapbsw", 6, two(0xf07a, 0x0000), two(0xffff, 0xffff), "#w", m68851 }, 1933 1.1 christos {"ptrapbsl", 6, two(0xf07b, 0x0000), two(0xffff, 0xffff), "#l", m68851 }, 1934 1.1 christos {"ptrapbs", 4, two(0xf07c, 0x0000), two(0xffff, 0xffff), "", m68851 }, 1935 1.1 christos 1936 1.1 christos {"ptrapccw", 6, two(0xf07a, 0x000f), two(0xffff, 0xffff), "#w", m68851 }, 1937 1.1 christos {"ptrapccl", 6, two(0xf07b, 0x000f), two(0xffff, 0xffff), "#l", m68851 }, 1938 1.1 christos {"ptrapcc", 4, two(0xf07c, 0x000f), two(0xffff, 0xffff), "", m68851 }, 1939 1.1 christos 1940 1.1 christos {"ptrapcsw", 6, two(0xf07a, 0x000e), two(0xffff, 0xffff), "#w", m68851 }, 1941 1.1 christos {"ptrapcsl", 6, two(0xf07b, 0x000e), two(0xffff, 0xffff), "#l", m68851 }, 1942 1.1 christos {"ptrapcs", 4, two(0xf07c, 0x000e), two(0xffff, 0xffff), "", m68851 }, 1943 1.1 christos 1944 1.1 christos {"ptrapgcw", 6, two(0xf07a, 0x000d), two(0xffff, 0xffff), "#w", m68851 }, 1945 1.1 christos {"ptrapgcl", 6, two(0xf07b, 0x000d), two(0xffff, 0xffff), "#l", m68851 }, 1946 1.1 christos {"ptrapgc", 4, two(0xf07c, 0x000d), two(0xffff, 0xffff), "", m68851 }, 1947 1.1 christos 1948 1.1 christos {"ptrapgsw", 6, two(0xf07a, 0x000c), two(0xffff, 0xffff), "#w", m68851 }, 1949 1.1 christos {"ptrapgsl", 6, two(0xf07b, 0x000c), two(0xffff, 0xffff), "#l", m68851 }, 1950 1.1 christos {"ptrapgs", 4, two(0xf07c, 0x000c), two(0xffff, 0xffff), "", m68851 }, 1951 1.1 christos 1952 1.1 christos {"ptrapicw", 6, two(0xf07a, 0x000b), two(0xffff, 0xffff), "#w", m68851 }, 1953 1.1 christos {"ptrapicl", 6, two(0xf07b, 0x000b), two(0xffff, 0xffff), "#l", m68851 }, 1954 1.1 christos {"ptrapic", 4, two(0xf07c, 0x000b), two(0xffff, 0xffff), "", m68851 }, 1955 1.1 christos 1956 1.1 christos {"ptrapisw", 6, two(0xf07a, 0x000a), two(0xffff, 0xffff), "#w", m68851 }, 1957 1.1 christos {"ptrapisl", 6, two(0xf07b, 0x000a), two(0xffff, 0xffff), "#l", m68851 }, 1958 1.1 christos {"ptrapis", 4, two(0xf07c, 0x000a), two(0xffff, 0xffff), "", m68851 }, 1959 1.1 christos 1960 1.1 christos {"ptraplcw", 6, two(0xf07a, 0x0003), two(0xffff, 0xffff), "#w", m68851 }, 1961 1.1 christos {"ptraplcl", 6, two(0xf07b, 0x0003), two(0xffff, 0xffff), "#l", m68851 }, 1962 1.1 christos {"ptraplc", 4, two(0xf07c, 0x0003), two(0xffff, 0xffff), "", m68851 }, 1963 1.1 christos 1964 1.1 christos {"ptraplsw", 6, two(0xf07a, 0x0002), two(0xffff, 0xffff), "#w", m68851 }, 1965 1.1 christos {"ptraplsl", 6, two(0xf07b, 0x0002), two(0xffff, 0xffff), "#l", m68851 }, 1966 1.1 christos {"ptrapls", 4, two(0xf07c, 0x0002), two(0xffff, 0xffff), "", m68851 }, 1967 1.1 christos 1968 1.1 christos {"ptrapscw", 6, two(0xf07a, 0x0005), two(0xffff, 0xffff), "#w", m68851 }, 1969 1.1 christos {"ptrapscl", 6, two(0xf07b, 0x0005), two(0xffff, 0xffff), "#l", m68851 }, 1970 1.1 christos {"ptrapsc", 4, two(0xf07c, 0x0005), two(0xffff, 0xffff), "", m68851 }, 1971 1.1 christos 1972 1.1 christos {"ptrapssw", 6, two(0xf07a, 0x0004), two(0xffff, 0xffff), "#w", m68851 }, 1973 1.1 christos {"ptrapssl", 6, two(0xf07b, 0x0004), two(0xffff, 0xffff), "#l", m68851 }, 1974 1.1 christos {"ptrapss", 4, two(0xf07c, 0x0004), two(0xffff, 0xffff), "", m68851 }, 1975 1.1 christos 1976 1.1 christos {"ptrapwcw", 6, two(0xf07a, 0x0009), two(0xffff, 0xffff), "#w", m68851 }, 1977 1.1 christos {"ptrapwcl", 6, two(0xf07b, 0x0009), two(0xffff, 0xffff), "#l", m68851 }, 1978 1.1 christos {"ptrapwc", 4, two(0xf07c, 0x0009), two(0xffff, 0xffff), "", m68851 }, 1979 1.1 christos 1980 1.1 christos {"ptrapwsw", 6, two(0xf07a, 0x0008), two(0xffff, 0xffff), "#w", m68851 }, 1981 1.1 christos {"ptrapwsl", 6, two(0xf07b, 0x0008), two(0xffff, 0xffff), "#l", m68851 }, 1982 1.1 christos {"ptrapws", 4, two(0xf07c, 0x0008), two(0xffff, 0xffff), "", m68851 }, 1983 1.1 christos 1984 1.1 christos {"pulse", 2, one(0045314), one(0177777), "", m68060 | mcfisa_a }, 1985 1.1 christos 1986 1.1 christos {"pvalid", 4, two(0xf000, 0x2800), two(0xffc0, 0xffff), "Vs&s", m68851 }, 1987 1.1 christos {"pvalid", 4, two(0xf000, 0x2c00), two(0xffc0, 0xfff8), "A3&s", m68851 }, 1988 1.1 christos 1989 1.1 christos /* FIXME: don't allow Dw==Dx. */ 1990 1.1 christos {"remsl", 4, two(0x4c40, 0x0800), two(0xffc0, 0x8ff8), "qsD3D1", mcfhwdiv }, 1991 1.1 christos {"remul", 4, two(0x4c40, 0x0000), two(0xffc0, 0x8ff8), "qsD3D1", mcfhwdiv }, 1992 1.1 christos 1993 1.1 christos {"reset", 2, one(0047160), one(0177777), "", m68000up }, 1994 1.1 christos 1995 1.1 christos {"rolb", 2, one(0160430), one(0170770), "QdDs", m68000up }, 1996 1.1 christos {"rolb", 2, one(0160470), one(0170770), "DdDs", m68000up }, 1997 1.1 christos {"rolw", 2, one(0160530), one(0170770), "QdDs", m68000up }, 1998 1.1 christos {"rolw", 2, one(0160570), one(0170770), "DdDs", m68000up }, 1999 1.1 christos {"rolw", 2, one(0163700), one(0177700), "~s", m68000up }, 2000 1.1 christos {"roll", 2, one(0160630), one(0170770), "QdDs", m68000up }, 2001 1.1 christos {"roll", 2, one(0160670), one(0170770), "DdDs", m68000up }, 2002 1.1 christos 2003 1.1 christos {"rorb", 2, one(0160030), one(0170770), "QdDs", m68000up }, 2004 1.1 christos {"rorb", 2, one(0160070), one(0170770), "DdDs", m68000up }, 2005 1.1 christos {"rorw", 2, one(0160130), one(0170770), "QdDs", m68000up }, 2006 1.1 christos {"rorw", 2, one(0160170), one(0170770), "DdDs", m68000up }, 2007 1.1 christos {"rorw", 2, one(0163300), one(0177700), "~s", m68000up }, 2008 1.1 christos {"rorl", 2, one(0160230), one(0170770), "QdDs", m68000up }, 2009 1.1 christos {"rorl", 2, one(0160270), one(0170770), "DdDs", m68000up }, 2010 1.1 christos 2011 1.1 christos {"roxlb", 2, one(0160420), one(0170770), "QdDs", m68000up }, 2012 1.1 christos {"roxlb", 2, one(0160460), one(0170770), "DdDs", m68000up }, 2013 1.1 christos {"roxlw", 2, one(0160520), one(0170770), "QdDs", m68000up }, 2014 1.1 christos {"roxlw", 2, one(0160560), one(0170770), "DdDs", m68000up }, 2015 1.1 christos {"roxlw", 2, one(0162700), one(0177700), "~s", m68000up }, 2016 1.1 christos {"roxll", 2, one(0160620), one(0170770), "QdDs", m68000up }, 2017 1.1 christos {"roxll", 2, one(0160660), one(0170770), "DdDs", m68000up }, 2018 1.1 christos 2019 1.1 christos {"roxrb", 2, one(0160020), one(0170770), "QdDs", m68000up }, 2020 1.1 christos {"roxrb", 2, one(0160060), one(0170770), "DdDs", m68000up }, 2021 1.1 christos {"roxrw", 2, one(0160120), one(0170770), "QdDs", m68000up }, 2022 1.1 christos {"roxrw", 2, one(0160160), one(0170770), "DdDs", m68000up }, 2023 1.1 christos {"roxrw", 2, one(0162300), one(0177700), "~s", m68000up }, 2024 1.1 christos {"roxrl", 2, one(0160220), one(0170770), "QdDs", m68000up }, 2025 1.1 christos {"roxrl", 2, one(0160260), one(0170770), "DdDs", m68000up }, 2026 1.1 christos 2027 1.1 christos {"rtd", 4, one(0047164), one(0177777), "#w", m68010up }, 2028 1.6 christos 2029 1.1 christos {"rte", 2, one(0047163), one(0177777), "", m68000up | mcfisa_a }, 2030 1.6 christos 2031 1.1 christos {"rtm", 2, one(0003300), one(0177760), "Rs", m68020 }, 2032 1.6 christos 2033 1.1 christos {"rtr", 2, one(0047167), one(0177777), "", m68000up }, 2034 1.6 christos 2035 1.1 christos {"rts", 2, one(0047165), one(0177777), "", m68000up | mcfisa_a }, 2036 1.1 christos 2037 1.1 christos {"satsl", 2, one(0046200), one(0177770), "Ds", mcfisa_b | mcfisa_c }, 2038 1.1 christos 2039 1.1 christos {"sbcd", 2, one(0100400), one(0170770), "DsDd", m68000up }, 2040 1.1 christos {"sbcd", 2, one(0100410), one(0170770), "-s-d", m68000up }, 2041 1.6 christos 2042 1.1 christos {"stldsr", 6, two(0x40e7, 0x46fc), two(0xffff, 0xffff), "#w", mcfisa_aa | mcfisa_c }, 2043 1.6 christos 2044 1.1 christos /* Traps have to come before conditional sets, as they have a more 2045 1.1 christos specific opcode. */ 2046 1.1 christos {"trapcc", 2, one(0052374), one(0177777), "", m68020up | cpu32 | fido_a }, 2047 1.1 christos {"trapcs", 2, one(0052774), one(0177777), "", m68020up | cpu32 | fido_a }, 2048 1.1 christos {"trapeq", 2, one(0053774), one(0177777), "", m68020up | cpu32 | fido_a }, 2049 1.1 christos {"tpf", 2, one(0050774), one(0177777), "", mcfisa_a }, 2050 1.1 christos {"trapf", 2, one(0050774), one(0177777), "", m68020up | cpu32 | fido_a | mcfisa_a }, 2051 1.1 christos {"trapge", 2, one(0056374), one(0177777), "", m68020up | cpu32 | fido_a }, 2052 1.1 christos {"trapgt", 2, one(0057374), one(0177777), "", m68020up | cpu32 | fido_a }, 2053 1.1 christos {"traphi", 2, one(0051374), one(0177777), "", m68020up | cpu32 | fido_a }, 2054 1.1 christos {"traple", 2, one(0057774), one(0177777), "", m68020up | cpu32 | fido_a }, 2055 1.1 christos {"trapls", 2, one(0051774), one(0177777), "", m68020up | cpu32 | fido_a }, 2056 1.1 christos {"traplt", 2, one(0056774), one(0177777), "", m68020up | cpu32 | fido_a }, 2057 1.1 christos {"trapmi", 2, one(0055774), one(0177777), "", m68020up | cpu32 | fido_a }, 2058 1.1 christos {"trapne", 2, one(0053374), one(0177777), "", m68020up | cpu32 | fido_a }, 2059 1.1 christos {"trappl", 2, one(0055374), one(0177777), "", m68020up | cpu32 | fido_a }, 2060 1.1 christos {"trapt", 2, one(0050374), one(0177777), "", m68020up | cpu32 | fido_a }, 2061 1.1 christos {"trapvc", 2, one(0054374), one(0177777), "", m68020up | cpu32 | fido_a }, 2062 1.1 christos {"trapvs", 2, one(0054774), one(0177777), "", m68020up | cpu32 | fido_a }, 2063 1.1 christos 2064 1.1 christos {"trapccw", 4, one(0052372), one(0177777), "#w", m68020up | cpu32 | fido_a }, 2065 1.1 christos {"trapcsw", 4, one(0052772), one(0177777), "#w", m68020up | cpu32 | fido_a }, 2066 1.1 christos {"trapeqw", 4, one(0053772), one(0177777), "#w", m68020up | cpu32 | fido_a }, 2067 1.1 christos {"tpfw", 4, one(0050772), one(0177777), "#w", mcfisa_a}, 2068 1.1 christos {"trapfw", 4, one(0050772), one(0177777), "#w", m68020up | cpu32 | fido_a | mcfisa_a}, 2069 1.1 christos {"trapgew", 4, one(0056372), one(0177777), "#w", m68020up | cpu32 | fido_a }, 2070 1.1 christos {"trapgtw", 4, one(0057372), one(0177777), "#w", m68020up | cpu32 | fido_a }, 2071 1.1 christos {"traphiw", 4, one(0051372), one(0177777), "#w", m68020up | cpu32 | fido_a }, 2072 1.1 christos {"traplew", 4, one(0057772), one(0177777), "#w", m68020up | cpu32 | fido_a }, 2073 1.1 christos {"traplsw", 4, one(0051772), one(0177777), "#w", m68020up | cpu32 | fido_a }, 2074 1.1 christos {"trapltw", 4, one(0056772), one(0177777), "#w", m68020up | cpu32 | fido_a }, 2075 1.1 christos {"trapmiw", 4, one(0055772), one(0177777), "#w", m68020up | cpu32 | fido_a }, 2076 1.1 christos {"trapnew", 4, one(0053372), one(0177777), "#w", m68020up | cpu32 | fido_a }, 2077 1.1 christos {"trapplw", 4, one(0055372), one(0177777), "#w", m68020up | cpu32 | fido_a }, 2078 1.1 christos {"traptw", 4, one(0050372), one(0177777), "#w", m68020up | cpu32 | fido_a }, 2079 1.1 christos {"trapvcw", 4, one(0054372), one(0177777), "#w", m68020up | cpu32 | fido_a }, 2080 1.1 christos {"trapvsw", 4, one(0054772), one(0177777), "#w", m68020up | cpu32 | fido_a }, 2081 1.1 christos 2082 1.1 christos {"trapccl", 6, one(0052373), one(0177777), "#l", m68020up | cpu32 | fido_a }, 2083 1.1 christos {"trapcsl", 6, one(0052773), one(0177777), "#l", m68020up | cpu32 | fido_a }, 2084 1.1 christos {"trapeql", 6, one(0053773), one(0177777), "#l", m68020up | cpu32 | fido_a }, 2085 1.1 christos {"tpfl", 6, one(0050773), one(0177777), "#l", mcfisa_a}, 2086 1.1 christos {"trapfl", 6, one(0050773), one(0177777), "#l", m68020up | cpu32 | fido_a | mcfisa_a}, 2087 1.1 christos {"trapgel", 6, one(0056373), one(0177777), "#l", m68020up | cpu32 | fido_a }, 2088 1.1 christos {"trapgtl", 6, one(0057373), one(0177777), "#l", m68020up | cpu32 | fido_a }, 2089 1.1 christos {"traphil", 6, one(0051373), one(0177777), "#l", m68020up | cpu32 | fido_a }, 2090 1.1 christos {"traplel", 6, one(0057773), one(0177777), "#l", m68020up | cpu32 | fido_a }, 2091 1.1 christos {"traplsl", 6, one(0051773), one(0177777), "#l", m68020up | cpu32 | fido_a }, 2092 1.1 christos {"trapltl", 6, one(0056773), one(0177777), "#l", m68020up | cpu32 | fido_a }, 2093 1.1 christos {"trapmil", 6, one(0055773), one(0177777), "#l", m68020up | cpu32 | fido_a }, 2094 1.1 christos {"trapnel", 6, one(0053373), one(0177777), "#l", m68020up | cpu32 | fido_a }, 2095 1.1 christos {"trappll", 6, one(0055373), one(0177777), "#l", m68020up | cpu32 | fido_a }, 2096 1.1 christos {"traptl", 6, one(0050373), one(0177777), "#l", m68020up | cpu32 | fido_a }, 2097 1.1 christos {"trapvcl", 6, one(0054373), one(0177777), "#l", m68020up | cpu32 | fido_a }, 2098 1.1 christos {"trapvsl", 6, one(0054773), one(0177777), "#l", m68020up | cpu32 | fido_a }, 2099 1.1 christos 2100 1.1 christos {"trapv", 2, one(0047166), one(0177777), "", m68000up }, 2101 1.1 christos 2102 1.1 christos {"scc", 2, one(0052300), one(0177700), "$s", m68000up }, 2103 1.1 christos {"scc", 2, one(0052300), one(0177700), "Ds", mcfisa_a }, 2104 1.1 christos {"scs", 2, one(0052700), one(0177700), "$s", m68000up }, 2105 1.1 christos {"scs", 2, one(0052700), one(0177700), "Ds", mcfisa_a }, 2106 1.1 christos {"seq", 2, one(0053700), one(0177700), "$s", m68000up }, 2107 1.1 christos {"seq", 2, one(0053700), one(0177700), "Ds", mcfisa_a }, 2108 1.1 christos {"sf", 2, one(0050700), one(0177700), "$s", m68000up }, 2109 1.1 christos {"sf", 2, one(0050700), one(0177700), "Ds", mcfisa_a }, 2110 1.1 christos {"sge", 2, one(0056300), one(0177700), "$s", m68000up }, 2111 1.1 christos {"sge", 2, one(0056300), one(0177700), "Ds", mcfisa_a }, 2112 1.1 christos {"sgt", 2, one(0057300), one(0177700), "$s", m68000up }, 2113 1.1 christos {"sgt", 2, one(0057300), one(0177700), "Ds", mcfisa_a }, 2114 1.1 christos {"shi", 2, one(0051300), one(0177700), "$s", m68000up }, 2115 1.1 christos {"shi", 2, one(0051300), one(0177700), "Ds", mcfisa_a }, 2116 1.1 christos {"sle", 2, one(0057700), one(0177700), "$s", m68000up }, 2117 1.1 christos {"sle", 2, one(0057700), one(0177700), "Ds", mcfisa_a }, 2118 1.1 christos {"sls", 2, one(0051700), one(0177700), "$s", m68000up }, 2119 1.1 christos {"sls", 2, one(0051700), one(0177700), "Ds", mcfisa_a }, 2120 1.1 christos {"slt", 2, one(0056700), one(0177700), "$s", m68000up }, 2121 1.1 christos {"slt", 2, one(0056700), one(0177700), "Ds", mcfisa_a }, 2122 1.1 christos {"smi", 2, one(0055700), one(0177700), "$s", m68000up }, 2123 1.1 christos {"smi", 2, one(0055700), one(0177700), "Ds", mcfisa_a }, 2124 1.1 christos {"sne", 2, one(0053300), one(0177700), "$s", m68000up }, 2125 1.1 christos {"sne", 2, one(0053300), one(0177770), "Ds", mcfisa_a }, 2126 1.1 christos {"spl", 2, one(0055300), one(0177700), "$s", m68000up }, 2127 1.1 christos {"spl", 2, one(0055300), one(0177770), "Ds", mcfisa_a }, 2128 1.1 christos {"st", 2, one(0050300), one(0177700), "$s", m68000up }, 2129 1.1 christos {"st", 2, one(0050300), one(0177770), "Ds", mcfisa_a }, 2130 1.1 christos {"svc", 2, one(0054300), one(0177700), "$s", m68000up }, 2131 1.1 christos {"svc", 2, one(0054300), one(0177770), "Ds", mcfisa_a }, 2132 1.1 christos {"svs", 2, one(0054700), one(0177700), "$s", m68000up }, 2133 1.1 christos {"svs", 2, one(0054700), one(0177770), "Ds", mcfisa_a }, 2134 1.1 christos 2135 1.1 christos {"sleep", 2, one(0047170), one(0177777), "", fido_a }, 2136 1.1 christos 2137 1.1 christos {"stop", 4, one(0047162), one(0177777), "#w", m68000up | mcfisa_a }, 2138 1.1 christos 2139 1.1 christos {"strldsr", 4, two(0040347,0043374), two(0177777,0177777), "#w", mcfisa_aa}, 2140 1.1 christos 2141 1.1 christos {"subal", 2, one(0110700), one(0170700), "*lAd", m68000up | mcfisa_a }, 2142 1.1 christos {"subaw", 2, one(0110300), one(0170700), "*wAd", m68000up }, 2143 1.1 christos 2144 1.1 christos {"subib", 4, one(0002000), one(0177700), "#b$s", m68000up }, 2145 1.1 christos {"subiw", 4, one(0002100), one(0177700), "#w$s", m68000up }, 2146 1.1 christos {"subil", 6, one(0002200), one(0177700), "#l$s", m68000up }, 2147 1.1 christos {"subil", 6, one(0002200), one(0177700), "#lDs", mcfisa_a }, 2148 1.1 christos 2149 1.1 christos {"subqb", 2, one(0050400), one(0170700), "Qd%s", m68000up }, 2150 1.1 christos {"subqw", 2, one(0050500), one(0170700), "Qd%s", m68000up }, 2151 1.1 christos {"subql", 2, one(0050600), one(0170700), "Qd%s", m68000up | mcfisa_a }, 2152 1.1 christos 2153 1.1 christos /* The sub opcode can generate the suba, subi, and subq instructions. */ 2154 1.1 christos {"subb", 2, one(0050400), one(0170700), "Qd%s", m68000up }, 2155 1.1 christos {"subb", 4, one(0002000), one(0177700), "#b$s", m68000up }, 2156 1.1 christos {"subb", 2, one(0110000), one(0170700), ";bDd", m68000up }, 2157 1.1 christos {"subb", 2, one(0110400), one(0170700), "Dd~s", m68000up }, 2158 1.1 christos {"subw", 2, one(0050500), one(0170700), "Qd%s", m68000up }, 2159 1.1 christos {"subw", 4, one(0002100), one(0177700), "#w$s", m68000up }, 2160 1.1 christos {"subw", 2, one(0110300), one(0170700), "*wAd", m68000up }, 2161 1.1 christos {"subw", 2, one(0110100), one(0170700), "*wDd", m68000up }, 2162 1.1 christos {"subw", 2, one(0110500), one(0170700), "Dd~s", m68000up }, 2163 1.1 christos {"subl", 2, one(0050600), one(0170700), "Qd%s", m68000up | mcfisa_a }, 2164 1.1 christos {"subl", 6, one(0002200), one(0177700), "#l$s", m68000up }, 2165 1.1 christos {"subl", 6, one(0002200), one(0177700), "#lDs", mcfisa_a }, 2166 1.1 christos {"subl", 2, one(0110700), one(0170700), "*lAd", m68000up | mcfisa_a }, 2167 1.1 christos {"subl", 2, one(0110200), one(0170700), "*lDd", m68000up | mcfisa_a }, 2168 1.1 christos {"subl", 2, one(0110600), one(0170700), "Dd~s", m68000up | mcfisa_a }, 2169 1.1 christos 2170 1.1 christos {"subxb", 2, one(0110400), one(0170770), "DsDd", m68000up }, 2171 1.1 christos {"subxb", 2, one(0110410), one(0170770), "-s-d", m68000up }, 2172 1.1 christos {"subxw", 2, one(0110500), one(0170770), "DsDd", m68000up }, 2173 1.1 christos {"subxw", 2, one(0110510), one(0170770), "-s-d", m68000up }, 2174 1.1 christos {"subxl", 2, one(0110600), one(0170770), "DsDd", m68000up | mcfisa_a }, 2175 1.1 christos {"subxl", 2, one(0110610), one(0170770), "-s-d", m68000up }, 2176 1.1 christos 2177 1.1 christos {"swap", 2, one(0044100), one(0177770), "Ds", m68000up | mcfisa_a }, 2178 1.1 christos 2179 1.1 christos /* swbeg and swbegl are magic constants used on sysV68. The compiler 2180 1.1 christos generates them before a switch table. They tell the debugger and 2181 1.1 christos disassembler that a switch table follows. The parameter is the 2182 1.1 christos number of elements in the table. swbeg means that the entries in 2183 1.1 christos the table are word (2 byte) sized, and swbegl means that the 2184 1.1 christos entries in the table are longword (4 byte) sized. */ 2185 1.1 christos {"swbeg", 4, one(0045374), one(0177777), "#w", m68000up | mcfisa_a }, 2186 1.1 christos {"swbegl", 6, one(0045375), one(0177777), "#l", m68000up | mcfisa_a }, 2187 1.1 christos 2188 1.1 christos {"tas", 2, one(0045300), one(0177700), "$s", m68000up | mcfisa_b | mcfisa_c}, 2189 1.1 christos 2190 1.1 christos #define TBL1(name,insn_size,signed,round,size) \ 2191 1.1 christos {name, insn_size, two(0174000, (signed<<11)|(!round<<10)|(size<<6)|0000400), \ 2192 1.1 christos two(0177700,0107777), "!sD1", cpu32 }, \ 2193 1.1 christos {name, insn_size, two(0174000, (signed<<11)|(!round<<10)|(size<<6)), \ 2194 1.1 christos two(0177770,0107770), "DsD3D1", cpu32 } 2195 1.1 christos #define TBL(name1, name2, name3, s, r) \ 2196 1.1 christos TBL1(name1, 4, s, r, 0), TBL1(name2, 4, s, r, 1), TBL1(name3, 4, s, r, 2) 2197 1.1 christos TBL("tblsb", "tblsw", "tblsl", 1, 1), 2198 1.1 christos TBL("tblsnb", "tblsnw", "tblsnl", 1, 0), 2199 1.1 christos TBL("tblub", "tbluw", "tblul", 0, 1), 2200 1.1 christos TBL("tblunb", "tblunw", "tblunl", 0, 0), 2201 1.1 christos 2202 1.1 christos {"trap", 2, one(0047100), one(0177760), "Ts", m68000up | mcfisa_a }, 2203 1.1 christos 2204 1.1 christos {"trapx", 2, one(0047060), one(0177760), "Ts", fido_a }, 2205 1.1 christos 2206 1.1 christos {"tstb", 2, one(0045000), one(0177700), ";b", m68020up | cpu32 | fido_a | mcfisa_a }, 2207 1.1 christos {"tstb", 2, one(0045000), one(0177700), "$b", m68000up }, 2208 1.1 christos {"tstw", 2, one(0045100), one(0177700), "*w", m68020up | cpu32 | fido_a | mcfisa_a }, 2209 1.1 christos {"tstw", 2, one(0045100), one(0177700), "$w", m68000up }, 2210 1.1 christos {"tstl", 2, one(0045200), one(0177700), "*l", m68020up | cpu32 | fido_a | mcfisa_a }, 2211 1.1 christos {"tstl", 2, one(0045200), one(0177700), "$l", m68000up }, 2212 1.1 christos 2213 1.1 christos {"unlk", 2, one(0047130), one(0177770), "As", m68000up | mcfisa_a }, 2214 1.1 christos 2215 1.1 christos {"unpk", 4, one(0100600), one(0170770), "DsDd#w", m68020up }, 2216 1.1 christos {"unpk", 4, one(0100610), one(0170770), "-s-d#w", m68020up }, 2217 1.1 christos 2218 1.1 christos {"wddatab", 2, one(0175400), one(0177700), "~s", mcfisa_a }, 2219 1.1 christos {"wddataw", 2, one(0175500), one(0177700), "~s", mcfisa_a }, 2220 1.1 christos {"wddatal", 2, one(0175600), one(0177700), "~s", mcfisa_a }, 2221 1.1 christos 2222 1.1 christos {"wdebugl", 4, two(0175720, 03), two(0177770, 0xffff), "as", mcfisa_a }, 2223 1.1 christos {"wdebugl", 4, two(0175750, 03), two(0177770, 0xffff), "ds", mcfisa_a }, 2224 1.1 christos {"wdebug", 4, two(0175720, 03), two(0177770, 0xffff), "as", mcfisa_a }, 2225 1.1 christos {"wdebug", 4, two(0175750, 03), two(0177770, 0xffff), "ds", mcfisa_a }, 2226 1.1 christos }; 2227 1.1 christos 2228 1.1 christos const int m68k_numopcodes = sizeof m68k_opcodes / sizeof m68k_opcodes[0]; 2229 1.1 christos 2230 1.1 christos /* These aliases used to be in the above table, each one duplicating 2231 1.1 christos all of the entries for its primary exactly. This table was 2232 1.1 christos constructed by mechanical processing of the opcode table, with a 2233 1.1 christos small number of tweaks done by hand. There are probably a lot more 2234 1.1 christos aliases above that could be moved down here, except for very minor 2235 1.1 christos differences. */ 2236 1.1 christos 2237 1.1 christos const struct m68k_opcode_alias m68k_opcode_aliases[] = 2238 1.1 christos { 2239 1.1 christos { "add", "addw", }, 2240 1.1 christos { "adda", "addaw", }, 2241 1.1 christos { "addi", "addiw", }, 2242 1.1 christos { "addq", "addqw", }, 2243 1.1 christos { "addx", "addxw", }, 2244 1.1 christos { "asl", "aslw", }, 2245 1.1 christos { "asr", "asrw", }, 2246 1.1 christos { "bhi", "bhiw", }, 2247 1.1 christos { "bls", "blsw", }, 2248 1.1 christos { "bcc", "bccw", }, 2249 1.1 christos { "bcs", "bcsw", }, 2250 1.1 christos { "bne", "bnew", }, 2251 1.1 christos { "beq", "beqw", }, 2252 1.1 christos { "bvc", "bvcw", }, 2253 1.1 christos { "bvs", "bvsw", }, 2254 1.1 christos { "bpl", "bplw", }, 2255 1.1 christos { "bmi", "bmiw", }, 2256 1.1 christos { "bge", "bgew", }, 2257 1.1 christos { "blt", "bltw", }, 2258 1.1 christos { "bgt", "bgtw", }, 2259 1.1 christos { "ble", "blew", }, 2260 1.1 christos { "bra", "braw", }, 2261 1.1 christos { "bsr", "bsrw", }, 2262 1.1 christos { "bhib", "bhis", }, 2263 1.1 christos { "blsb", "blss", }, 2264 1.1 christos { "bccb", "bccs", }, 2265 1.1 christos { "bcsb", "bcss", }, 2266 1.1 christos { "bneb", "bnes", }, 2267 1.1 christos { "beqb", "beqs", }, 2268 1.1 christos { "bvcb", "bvcs", }, 2269 1.1 christos { "bvsb", "bvss", }, 2270 1.1 christos { "bplb", "bpls", }, 2271 1.1 christos { "bmib", "bmis", }, 2272 1.1 christos { "bgeb", "bges", }, 2273 1.1 christos { "bltb", "blts", }, 2274 1.1 christos { "bgtb", "bgts", }, 2275 1.1 christos { "bleb", "bles", }, 2276 1.1 christos { "brab", "bras", }, 2277 1.1 christos { "bsrb", "bsrs", }, 2278 1.1 christos { "bhs", "bccw" }, 2279 1.1 christos { "bhss", "bccs" }, 2280 1.1 christos { "bhsb", "bccs" }, 2281 1.1 christos { "bhsw", "bccw" }, 2282 1.1 christos { "bhsl", "bccl" }, 2283 1.1 christos { "blo", "bcsw" }, 2284 1.1 christos { "blos", "bcss" }, 2285 1.1 christos { "blob", "bcss" }, 2286 1.1 christos { "blow", "bcsw" }, 2287 1.1 christos { "blol", "bcsl" }, 2288 1.1 christos { "br", "braw", }, 2289 1.1 christos { "brs", "bras", }, 2290 1.1 christos { "brb", "bras", }, 2291 1.1 christos { "brw", "braw", }, 2292 1.1 christos { "brl", "bral", }, 2293 1.1 christos { "jfnlt", "bcc", }, /* Apparently a sun alias. */ 2294 1.1 christos { "jfngt", "ble", }, /* Apparently a sun alias. */ 2295 1.1 christos { "jfeq", "beqs", }, /* Apparently a sun alias. */ 2296 1.1 christos { "bchgb", "bchg", }, 2297 1.1 christos { "bchgl", "bchg", }, 2298 1.1 christos { "bclrb", "bclr", }, 2299 1.1 christos { "bclrl", "bclr", }, 2300 1.1 christos { "bsetb", "bset", }, 2301 1.1 christos { "bsetl", "bset", }, 2302 1.1 christos { "btstb", "btst", }, 2303 1.1 christos { "btstl", "btst", }, 2304 1.1 christos { "cas2", "cas2w", }, 2305 1.1 christos { "cas", "casw", }, 2306 1.1 christos { "chk2", "chk2w", }, 2307 1.1 christos { "chk", "chkw", }, 2308 1.1 christos { "clr", "clrw", }, 2309 1.1 christos { "cmp2", "cmp2w", }, 2310 1.1 christos { "cmpa", "cmpaw", }, 2311 1.1 christos { "cmpi", "cmpiw", }, 2312 1.1 christos { "cmpm", "cmpmw", }, 2313 1.1 christos { "cmp", "cmpw", }, 2314 1.1 christos { "dbccw", "dbcc", }, 2315 1.1 christos { "dbcsw", "dbcs", }, 2316 1.1 christos { "dbeqw", "dbeq", }, 2317 1.1 christos { "dbfw", "dbf", }, 2318 1.1 christos { "dbgew", "dbge", }, 2319 1.1 christos { "dbgtw", "dbgt", }, 2320 1.1 christos { "dbhiw", "dbhi", }, 2321 1.1 christos { "dblew", "dble", }, 2322 1.1 christos { "dblsw", "dbls", }, 2323 1.1 christos { "dbltw", "dblt", }, 2324 1.1 christos { "dbmiw", "dbmi", }, 2325 1.1 christos { "dbnew", "dbne", }, 2326 1.1 christos { "dbplw", "dbpl", }, 2327 1.1 christos { "dbtw", "dbt", }, 2328 1.1 christos { "dbvcw", "dbvc", }, 2329 1.1 christos { "dbvsw", "dbvs", }, 2330 1.1 christos { "dbhs", "dbcc", }, 2331 1.1 christos { "dbhsw", "dbcc", }, 2332 1.1 christos { "dbra", "dbf", }, 2333 1.1 christos { "dbraw", "dbf", }, 2334 1.9 christos { "tdivsl", "divsll", }, 2335 1.1 christos { "divs", "divsw", }, 2336 1.1 christos { "divu", "divuw", }, 2337 1.1 christos { "ext", "extw", }, 2338 1.1 christos { "extbw", "extw", }, 2339 1.1 christos { "extwl", "extl", }, 2340 1.1 christos { "fbneq", "fbne", }, 2341 1.1 christos { "fbsneq", "fbsne", }, 2342 1.1 christos { "fdbneq", "fdbne", }, 2343 1.1 christos { "fdbsneq", "fdbsne", }, 2344 1.1 christos { "fmovecr", "fmovecrx", }, 2345 1.1 christos { "fmovm", "fmovem", }, 2346 1.1 christos { "fsneq", "fsne", }, 2347 1.1 christos { "fssneq", "fssne", }, 2348 1.1 christos { "ftrapneq", "ftrapne", }, 2349 1.1 christos { "ftrapsneq", "ftrapsne", }, 2350 1.1 christos { "fjneq", "fjne", }, 2351 1.1 christos { "fjsneq", "fjsne", }, 2352 1.1 christos { "jmpl", "jmp", }, 2353 1.1 christos { "jmps", "jmp", }, 2354 1.1 christos { "jsrl", "jsr", }, 2355 1.1 christos { "jsrs", "jsr", }, 2356 1.1 christos { "leal", "lea", }, 2357 1.1 christos { "lsl", "lslw", }, 2358 1.1 christos { "lsr", "lsrw", }, 2359 1.1 christos { "mac", "macw" }, 2360 1.1 christos { "movea", "moveaw", }, 2361 1.1 christos { "movem", "movemw", }, 2362 1.1 christos { "movml", "moveml", }, 2363 1.1 christos { "movmw", "movemw", }, 2364 1.1 christos { "movm", "movemw", }, 2365 1.1 christos { "movep", "movepw", }, 2366 1.1 christos { "movpw", "movepw", }, 2367 1.1 christos { "moves", "movesw" }, 2368 1.1 christos { "muls", "mulsw", }, 2369 1.1 christos { "mulu", "muluw", }, 2370 1.1 christos { "msac", "msacw" }, 2371 1.1 christos { "nbcdb", "nbcd" }, 2372 1.1 christos { "neg", "negw", }, 2373 1.1 christos { "negx", "negxw", }, 2374 1.1 christos { "not", "notw", }, 2375 1.1 christos { "peal", "pea", }, 2376 1.1 christos { "rol", "rolw", }, 2377 1.1 christos { "ror", "rorw", }, 2378 1.1 christos { "roxl", "roxlw", }, 2379 1.1 christos { "roxr", "roxrw", }, 2380 1.1 christos { "sats", "satsl", }, 2381 1.1 christos { "sbcdb", "sbcd", }, 2382 1.1 christos { "sccb", "scc", }, 2383 1.1 christos { "scsb", "scs", }, 2384 1.1 christos { "seqb", "seq", }, 2385 1.1 christos { "sfb", "sf", }, 2386 1.1 christos { "sgeb", "sge", }, 2387 1.1 christos { "sgtb", "sgt", }, 2388 1.1 christos { "shib", "shi", }, 2389 1.1 christos { "sleb", "sle", }, 2390 1.1 christos { "slsb", "sls", }, 2391 1.1 christos { "sltb", "slt", }, 2392 1.1 christos { "smib", "smi", }, 2393 1.1 christos { "sneb", "sne", }, 2394 1.1 christos { "splb", "spl", }, 2395 1.1 christos { "stb", "st", }, 2396 1.1 christos { "svcb", "svc", }, 2397 1.1 christos { "svsb", "svs", }, 2398 1.1 christos { "sfge", "sge", }, 2399 1.1 christos { "sfgt", "sgt", }, 2400 1.1 christos { "sfle", "sle", }, 2401 1.1 christos { "sflt", "slt", }, 2402 1.1 christos { "sfneq", "sne", }, 2403 1.1 christos { "suba", "subaw", }, 2404 1.1 christos { "subi", "subiw", }, 2405 1.1 christos { "subq", "subqw", }, 2406 1.1 christos { "sub", "subw", }, 2407 1.1 christos { "subx", "subxw", }, 2408 1.1 christos { "swapw", "swap", }, 2409 1.1 christos { "tasb", "tas", }, 2410 1.1 christos { "tpcc", "trapcc", }, 2411 1.1 christos { "tcc", "trapcc", }, 2412 1.1 christos { "tst", "tstw", }, 2413 1.1 christos { "jbra", "jra", }, 2414 1.1 christos { "jbhi", "jhi", }, 2415 1.1 christos { "jbls", "jls", }, 2416 1.1 christos { "jbcc", "jcc", }, 2417 1.1 christos { "jbcs", "jcs", }, 2418 1.1 christos { "jbne", "jne", }, 2419 1.1 christos { "jbeq", "jeq", }, 2420 1.1 christos { "jbvc", "jvc", }, 2421 1.1 christos { "jbvs", "jvs", }, 2422 1.1 christos { "jbpl", "jpl", }, 2423 1.1 christos { "jbmi", "jmi", }, 2424 1.1 christos { "jbge", "jge", }, 2425 1.1 christos { "jblt", "jlt", }, 2426 1.1 christos { "jbgt", "jgt", }, 2427 1.1 christos { "jble", "jle", }, 2428 1.1 christos { "movql", "moveq", }, 2429 1.1 christos { "moveql", "moveq", }, 2430 1.1 christos { "movl", "movel", }, 2431 1.1 christos { "movq", "moveq", }, 2432 1.1 christos { "moval", "moveal", }, 2433 1.1 christos { "movaw", "moveaw", }, 2434 1.1 christos { "movb", "moveb", }, 2435 1.1 christos { "movc", "movec", }, 2436 1.1 christos { "movecl", "movec", }, 2437 1.1 christos { "movpl", "movepl", }, 2438 1.1 christos { "movw", "movew", }, 2439 1.1 christos { "movsb", "movesb", }, 2440 1.1 christos { "movsl", "movesl", }, 2441 1.1 christos { "movsw", "movesw", }, 2442 1.1 christos { "mov3q", "mov3ql", }, 2443 1.1 christos 2444 1.9 christos { "tdivul", "divull", }, /* For m68k-svr4. */ 2445 1.1 christos { "fmovb", "fmoveb", }, 2446 1.1 christos { "fsmovb", "fsmoveb", }, 2447 1.1 christos { "fdmovb", "fdmoveb", }, 2448 1.1 christos { "fmovd", "fmoved", }, 2449 1.1 christos { "fsmovd", "fsmoved", }, 2450 1.1 christos { "fmovl", "fmovel", }, 2451 1.1 christos { "fsmovl", "fsmovel", }, 2452 1.1 christos { "fdmovl", "fdmovel", }, 2453 1.1 christos { "fmovp", "fmovep", }, 2454 1.1 christos { "fsmovp", "fsmovep", }, 2455 1.1 christos { "fdmovp", "fdmovep", }, 2456 1.1 christos { "fmovs", "fmoves", }, 2457 1.1 christos { "fsmovs", "fsmoves", }, 2458 1.1 christos { "fdmovs", "fdmoves", }, 2459 1.1 christos { "fmovw", "fmovew", }, 2460 1.1 christos { "fsmovw", "fsmovew", }, 2461 1.1 christos { "fdmovw", "fdmovew", }, 2462 1.1 christos { "fmovx", "fmovex", }, 2463 1.1 christos { "fsmovx", "fsmovex", }, 2464 1.1 christos { "fdmovx", "fdmovex", }, 2465 1.1 christos { "fmovcr", "fmovecr", }, 2466 1.1 christos { "fmovcrx", "fmovecrx", }, 2467 1.1 christos { "ftestb", "ftstb", }, 2468 1.1 christos { "ftestd", "ftstd", }, 2469 1.1 christos { "ftestl", "ftstl", }, 2470 1.1 christos { "ftestp", "ftstp", }, 2471 1.1 christos { "ftests", "ftsts", }, 2472 1.1 christos { "ftestw", "ftstw", }, 2473 1.1 christos { "ftestx", "ftstx", }, 2474 1.1 christos 2475 1.1 christos { "bitrevl", "bitrev", }, 2476 1.1 christos { "byterevl", "byterev", }, 2477 1.1 christos { "ff1l", "ff1", }, 2478 1.1 christos 2479 1.1 christos }; 2480 1.1 christos 2481 1.1 christos const int m68k_numaliases = 2482 1.1 christos sizeof m68k_opcode_aliases / sizeof m68k_opcode_aliases[0]; 2483