00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030 #include "../opcodes/ia64-opc.h"
00031
00032 #define NELEMS(a) ((int) (sizeof (a) / sizeof ((a)[0])))
00033
00034 static const char*
00035 ins_rsvd (const struct ia64_operand *self ATTRIBUTE_UNUSED,
00036 ia64_insn value ATTRIBUTE_UNUSED, ia64_insn *code ATTRIBUTE_UNUSED)
00037 {
00038 return "internal error---this shouldn't happen";
00039 }
00040
00041 static const char*
00042 ext_rsvd (const struct ia64_operand *self ATTRIBUTE_UNUSED,
00043 ia64_insn code ATTRIBUTE_UNUSED, ia64_insn *valuep ATTRIBUTE_UNUSED)
00044 {
00045 return "internal error---this shouldn't happen";
00046 }
00047
00048 static const char*
00049 ins_const (const struct ia64_operand *self ATTRIBUTE_UNUSED,
00050 ia64_insn value ATTRIBUTE_UNUSED, ia64_insn *code ATTRIBUTE_UNUSED)
00051 {
00052 return 0;
00053 }
00054
00055 static const char*
00056 ext_const (const struct ia64_operand *self ATTRIBUTE_UNUSED,
00057 ia64_insn code ATTRIBUTE_UNUSED, ia64_insn *valuep ATTRIBUTE_UNUSED)
00058 {
00059 return 0;
00060 }
00061
00062 static const char*
00063 ins_reg (const struct ia64_operand *self, ia64_insn value, ia64_insn *code)
00064 {
00065 if (value >= 1u << self->field[0].bits)
00066 return "register number out of range";
00067
00068 *code |= value << self->field[0].shift;
00069 return 0;
00070 }
00071
00072 static const char*
00073 ext_reg (const struct ia64_operand *self, ia64_insn code, ia64_insn *valuep)
00074 {
00075 *valuep = ((code >> self->field[0].shift)
00076 & ((1u << self->field[0].bits) - 1));
00077 return 0;
00078 }
00079
00080 static const char*
00081 ins_immu (const struct ia64_operand *self, ia64_insn value, ia64_insn *code)
00082 {
00083 ia64_insn new = 0;
00084 int i;
00085
00086 for (i = 0; i < NELEMS (self->field) && self->field[i].bits; ++i)
00087 {
00088 new |= ((value & ((((ia64_insn) 1) << self->field[i].bits) - 1))
00089 << self->field[i].shift);
00090 value >>= self->field[i].bits;
00091 }
00092 if (value)
00093 return "integer operand out of range";
00094
00095 *code |= new;
00096 return 0;
00097 }
00098
00099 static const char*
00100 ext_immu (const struct ia64_operand *self, ia64_insn code, ia64_insn *valuep)
00101 {
00102 BFD_HOST_U_64_BIT value = 0;
00103 int i, bits = 0, total = 0;
00104
00105 for (i = 0; i < NELEMS (self->field) && self->field[i].bits; ++i)
00106 {
00107 bits = self->field[i].bits;
00108 value |= ((code >> self->field[i].shift)
00109 & ((((BFD_HOST_U_64_BIT) 1) << bits) - 1)) << total;
00110 total += bits;
00111 }
00112 *valuep = value;
00113 return 0;
00114 }
00115
00116 static const char*
00117 ins_immus8 (const struct ia64_operand *self, ia64_insn value, ia64_insn *code)
00118 {
00119 if (value & 0x7)
00120 return "value not an integer multiple of 8";
00121 return ins_immu (self, value >> 3, code);
00122 }
00123
00124 static const char*
00125 ext_immus8 (const struct ia64_operand *self, ia64_insn code, ia64_insn *valuep)
00126 {
00127 const char *result;
00128
00129 result = ext_immu (self, code, valuep);
00130 if (result)
00131 return result;
00132
00133 *valuep = *valuep << 3;
00134 return 0;
00135 }
00136
00137 static const char*
00138 ins_imms_scaled (const struct ia64_operand *self, ia64_insn value,
00139 ia64_insn *code, int scale)
00140 {
00141 BFD_HOST_64_BIT svalue = value, sign_bit = 0;
00142 ia64_insn new = 0;
00143 int i;
00144
00145 svalue >>= scale;
00146
00147 for (i = 0; i < NELEMS (self->field) && self->field[i].bits; ++i)
00148 {
00149 new |= ((svalue & ((((ia64_insn) 1) << self->field[i].bits) - 1))
00150 << self->field[i].shift);
00151 sign_bit = (svalue >> (self->field[i].bits - 1)) & 1;
00152 svalue >>= self->field[i].bits;
00153 }
00154 if ((!sign_bit && svalue != 0) || (sign_bit && svalue != -1))
00155 return "integer operand out of range";
00156
00157 *code |= new;
00158 return 0;
00159 }
00160
00161 static const char*
00162 ext_imms_scaled (const struct ia64_operand *self, ia64_insn code,
00163 ia64_insn *valuep, int scale)
00164 {
00165 int i, bits = 0, total = 0;
00166 BFD_HOST_64_BIT val = 0, sign;
00167
00168 for (i = 0; i < NELEMS (self->field) && self->field[i].bits; ++i)
00169 {
00170 bits = self->field[i].bits;
00171 val |= ((code >> self->field[i].shift)
00172 & ((((BFD_HOST_U_64_BIT) 1) << bits) - 1)) << total;
00173 total += bits;
00174 }
00175
00176 sign = (BFD_HOST_64_BIT) 1 << (total - 1);
00177 val = (val ^ sign) - sign;
00178
00179 *valuep = (val << scale);
00180 return 0;
00181 }
00182
00183 static const char*
00184 ins_imms (const struct ia64_operand *self, ia64_insn value, ia64_insn *code)
00185 {
00186 return ins_imms_scaled (self, value, code, 0);
00187 }
00188
00189 static const char*
00190 ins_immsu4 (const struct ia64_operand *self, ia64_insn value, ia64_insn *code)
00191 {
00192 value = ((value & 0xffffffff) ^ 0x80000000) - 0x80000000;
00193
00194 return ins_imms_scaled (self, value, code, 0);
00195 }
00196
00197 static const char*
00198 ext_imms (const struct ia64_operand *self, ia64_insn code, ia64_insn *valuep)
00199 {
00200 return ext_imms_scaled (self, code, valuep, 0);
00201 }
00202
00203 static const char*
00204 ins_immsm1 (const struct ia64_operand *self, ia64_insn value, ia64_insn *code)
00205 {
00206 --value;
00207 return ins_imms_scaled (self, value, code, 0);
00208 }
00209
00210 static const char*
00211 ins_immsm1u4 (const struct ia64_operand *self, ia64_insn value,
00212 ia64_insn *code)
00213 {
00214 value = ((value & 0xffffffff) ^ 0x80000000) - 0x80000000;
00215
00216 --value;
00217 return ins_imms_scaled (self, value, code, 0);
00218 }
00219
00220 static const char*
00221 ext_immsm1 (const struct ia64_operand *self, ia64_insn code, ia64_insn *valuep)
00222 {
00223 const char *res = ext_imms_scaled (self, code, valuep, 0);
00224
00225 ++*valuep;
00226 return res;
00227 }
00228
00229 static const char*
00230 ins_imms1 (const struct ia64_operand *self, ia64_insn value, ia64_insn *code)
00231 {
00232 return ins_imms_scaled (self, value, code, 1);
00233 }
00234
00235 static const char*
00236 ext_imms1 (const struct ia64_operand *self, ia64_insn code, ia64_insn *valuep)
00237 {
00238 return ext_imms_scaled (self, code, valuep, 1);
00239 }
00240
00241 static const char*
00242 ins_imms4 (const struct ia64_operand *self, ia64_insn value, ia64_insn *code)
00243 {
00244 return ins_imms_scaled (self, value, code, 4);
00245 }
00246
00247 static const char*
00248 ext_imms4 (const struct ia64_operand *self, ia64_insn code, ia64_insn *valuep)
00249 {
00250 return ext_imms_scaled (self, code, valuep, 4);
00251 }
00252
00253 static const char*
00254 ins_imms16 (const struct ia64_operand *self, ia64_insn value, ia64_insn *code)
00255 {
00256 return ins_imms_scaled (self, value, code, 16);
00257 }
00258
00259 static const char*
00260 ext_imms16 (const struct ia64_operand *self, ia64_insn code, ia64_insn *valuep)
00261 {
00262 return ext_imms_scaled (self, code, valuep, 16);
00263 }
00264
00265 static const char*
00266 ins_cimmu (const struct ia64_operand *self, ia64_insn value, ia64_insn *code)
00267 {
00268 ia64_insn mask = (((ia64_insn) 1) << self->field[0].bits) - 1;
00269 return ins_immu (self, value ^ mask, code);
00270 }
00271
00272 static const char*
00273 ext_cimmu (const struct ia64_operand *self, ia64_insn code, ia64_insn *valuep)
00274 {
00275 const char *result;
00276 ia64_insn mask;
00277
00278 mask = (((ia64_insn) 1) << self->field[0].bits) - 1;
00279 result = ext_immu (self, code, valuep);
00280 if (!result)
00281 {
00282 mask = (((ia64_insn) 1) << self->field[0].bits) - 1;
00283 *valuep ^= mask;
00284 }
00285 return result;
00286 }
00287
00288 static const char*
00289 ins_cnt (const struct ia64_operand *self, ia64_insn value, ia64_insn *code)
00290 {
00291 --value;
00292 if (value >= ((BFD_HOST_U_64_BIT) 1) << self->field[0].bits)
00293 return "count out of range";
00294
00295 *code |= value << self->field[0].shift;
00296 return 0;
00297 }
00298
00299 static const char*
00300 ext_cnt (const struct ia64_operand *self, ia64_insn code, ia64_insn *valuep)
00301 {
00302 *valuep = ((code >> self->field[0].shift)
00303 & ((((BFD_HOST_U_64_BIT) 1) << self->field[0].bits) - 1)) + 1;
00304 return 0;
00305 }
00306
00307 static const char*
00308 ins_cnt2b (const struct ia64_operand *self, ia64_insn value, ia64_insn *code)
00309 {
00310 --value;
00311
00312 if (value > 2)
00313 return "count must be in range 1..3";
00314
00315 *code |= value << self->field[0].shift;
00316 return 0;
00317 }
00318
00319 static const char*
00320 ext_cnt2b (const struct ia64_operand *self, ia64_insn code, ia64_insn *valuep)
00321 {
00322 *valuep = ((code >> self->field[0].shift) & 0x3) + 1;
00323 return 0;
00324 }
00325
00326 static const char*
00327 ins_cnt2c (const struct ia64_operand *self, ia64_insn value, ia64_insn *code)
00328 {
00329 switch (value)
00330 {
00331 case 0: value = 0; break;
00332 case 7: value = 1; break;
00333 case 15: value = 2; break;
00334 case 16: value = 3; break;
00335 default: return "count must be 0, 7, 15, or 16";
00336 }
00337 *code |= value << self->field[0].shift;
00338 return 0;
00339 }
00340
00341 static const char*
00342 ext_cnt2c (const struct ia64_operand *self, ia64_insn code, ia64_insn *valuep)
00343 {
00344 ia64_insn value;
00345
00346 value = (code >> self->field[0].shift) & 0x3;
00347 switch (value)
00348 {
00349 case 0: value = 0; break;
00350 case 1: value = 7; break;
00351 case 2: value = 15; break;
00352 case 3: value = 16; break;
00353 }
00354 *valuep = value;
00355 return 0;
00356 }
00357
00358 static const char*
00359 ins_inc3 (const struct ia64_operand *self, ia64_insn value, ia64_insn *code)
00360 {
00361 BFD_HOST_64_BIT val = value;
00362 BFD_HOST_U_64_BIT sign = 0;
00363
00364 if (val < 0)
00365 {
00366 sign = 0x4;
00367 value = -value;
00368 }
00369 switch (value)
00370 {
00371 case 1: value = 3; break;
00372 case 4: value = 2; break;
00373 case 8: value = 1; break;
00374 case 16: value = 0; break;
00375 default: return "count must be +/- 1, 4, 8, or 16";
00376 }
00377 *code |= (sign | value) << self->field[0].shift;
00378 return 0;
00379 }
00380
00381 static const char*
00382 ext_inc3 (const struct ia64_operand *self, ia64_insn code, ia64_insn *valuep)
00383 {
00384 BFD_HOST_64_BIT val;
00385 int negate;
00386
00387 val = (code >> self->field[0].shift) & 0x7;
00388 negate = val & 0x4;
00389 switch (val & 0x3)
00390 {
00391 case 0: val = 16; break;
00392 case 1: val = 8; break;
00393 case 2: val = 4; break;
00394 case 3: val = 1; break;
00395 }
00396 if (negate)
00397 val = -val;
00398
00399 *valuep = val;
00400 return 0;
00401 }
00402
00403 #define CST IA64_OPND_CLASS_CST
00404 #define REG IA64_OPND_CLASS_REG
00405 #define IND IA64_OPND_CLASS_IND
00406 #define ABS IA64_OPND_CLASS_ABS
00407 #define REL IA64_OPND_CLASS_REL
00408
00409 #define SDEC IA64_OPND_FLAG_DECIMAL_SIGNED
00410 #define UDEC IA64_OPND_FLAG_DECIMAL_UNSIGNED
00411
00412 const struct ia64_operand elf64_ia64_operands[IA64_OPND_COUNT] =
00413 {
00414
00415 { CST, ins_const, ext_const, "NIL", {{ 0, 0}}, 0, "<none>" },
00416 { CST, ins_const, ext_const, "ar.csd", {{ 0, 0}}, 0, "ar.csd" },
00417 { CST, ins_const, ext_const, "ar.ccv", {{ 0, 0}}, 0, "ar.ccv" },
00418 { CST, ins_const, ext_const, "ar.pfs", {{ 0, 0}}, 0, "ar.pfs" },
00419 { CST, ins_const, ext_const, "1", {{ 0, 0}}, 0, "1" },
00420 { CST, ins_const, ext_const, "8", {{ 0, 0}}, 0, "8" },
00421 { CST, ins_const, ext_const, "16", {{ 0, 0}}, 0, "16" },
00422 { CST, ins_const, ext_const, "r0", {{ 0, 0}}, 0, "r0" },
00423 { CST, ins_const, ext_const, "ip", {{ 0, 0}}, 0, "ip" },
00424 { CST, ins_const, ext_const, "pr", {{ 0, 0}}, 0, "pr" },
00425 { CST, ins_const, ext_const, "pr.rot", {{ 0, 0}}, 0, "pr.rot" },
00426 { CST, ins_const, ext_const, "psr", {{ 0, 0}}, 0, "psr" },
00427 { CST, ins_const, ext_const, "psr.l", {{ 0, 0}}, 0, "psr.l" },
00428 { CST, ins_const, ext_const, "psr.um", {{ 0, 0}}, 0, "psr.um" },
00429
00430
00431 { REG, ins_reg, ext_reg, "ar", {{ 7, 20}}, 0,
00432 "an application register" },
00433 { REG, ins_reg, ext_reg, "b", {{ 3, 6}}, 0,
00434 "a branch register" },
00435 { REG, ins_reg, ext_reg, "b", {{ 3, 13}}, 0,
00436 "a branch register"},
00437 { REG, ins_reg, ext_reg, "cr", {{ 7, 20}}, 0,
00438 "a control register"},
00439 { REG, ins_reg, ext_reg, "f", {{ 7, 6}}, 0,
00440 "a floating-point register" },
00441 { REG, ins_reg, ext_reg, "f", {{ 7, 13}}, 0,
00442 "a floating-point register" },
00443 { REG, ins_reg, ext_reg, "f", {{ 7, 20}}, 0,
00444 "a floating-point register" },
00445 { REG, ins_reg, ext_reg, "f", {{ 7, 27}}, 0,
00446 "a floating-point register" },
00447 { REG, ins_reg, ext_reg, "p", {{ 6, 6}}, 0,
00448 "a predicate register" },
00449 { REG, ins_reg, ext_reg, "p", {{ 6, 27}}, 0,
00450 "a predicate register" },
00451 { REG, ins_reg, ext_reg, "r", {{ 7, 6}}, 0,
00452 "a general register" },
00453 { REG, ins_reg, ext_reg, "r", {{ 7, 13}}, 0,
00454 "a general register" },
00455 { REG, ins_reg, ext_reg, "r", {{ 7, 20}}, 0,
00456 "a general register" },
00457 { REG, ins_reg, ext_reg, "r", {{ 2, 20}}, 0,
00458 "a general register r0-r3" },
00459
00460
00461 { IND, ins_reg, ext_reg, "cpuid", {{7, 20}}, 0,
00462 "a cpuid register" },
00463 { IND, ins_reg, ext_reg, "dbr", {{7, 20}}, 0,
00464 "a dbr register" },
00465 { IND, ins_reg, ext_reg, "dtr", {{7, 20}}, 0,
00466 "a dtr register" },
00467 { IND, ins_reg, ext_reg, "itr", {{7, 20}}, 0,
00468 "an itr register" },
00469 { IND, ins_reg, ext_reg, "ibr", {{7, 20}}, 0,
00470 "an ibr register" },
00471 { IND, ins_reg, ext_reg, "", {{7, 20}}, 0,
00472 "an indirect memory address" },
00473 { IND, ins_reg, ext_reg, "msr", {{7, 20}}, 0,
00474 "an msr register" },
00475 { IND, ins_reg, ext_reg, "pkr", {{7, 20}}, 0,
00476 "a pkr register" },
00477 { IND, ins_reg, ext_reg, "pmc", {{7, 20}}, 0,
00478 "a pmc register" },
00479 { IND, ins_reg, ext_reg, "pmd", {{7, 20}}, 0,
00480 "a pmd register" },
00481 { IND, ins_reg, ext_reg, "rr", {{7, 20}}, 0,
00482 "an rr register" },
00483
00484
00485 { ABS, ins_cimmu, ext_cimmu, 0, {{ 5, 20 }}, UDEC,
00486 "a 5-bit count (0-31)" },
00487 { ABS, ins_cnt, ext_cnt, 0, {{ 2, 27 }}, UDEC,
00488 "a 2-bit count (1-4)" },
00489 { ABS, ins_cnt2b, ext_cnt2b, 0, {{ 2, 27 }}, UDEC,
00490 "a 2-bit count (1-3)" },
00491 { ABS, ins_cnt2c, ext_cnt2c, 0, {{ 2, 30 }}, UDEC,
00492 "a count (0, 7, 15, or 16)" },
00493 { ABS, ins_immu, ext_immu, 0, {{ 5, 14}}, UDEC,
00494 "a 5-bit count (0-31)" },
00495 { ABS, ins_immu, ext_immu, 0, {{ 6, 27}}, UDEC,
00496 "a 6-bit count (0-63)" },
00497 { ABS, ins_cimmu, ext_cimmu, 0, {{ 6, 20}}, UDEC,
00498 "a 6-bit bit pos (0-63)" },
00499 { ABS, ins_cimmu, ext_cimmu, 0, {{ 6, 14}}, UDEC,
00500 "a 6-bit bit pos (0-63)" },
00501 { ABS, ins_cimmu, ext_cimmu, 0, {{ 6, 31}}, UDEC,
00502 "a 6-bit bit pos (0-63)" },
00503 { ABS, ins_imms, ext_imms, 0, {{ 1, 36}}, SDEC,
00504 "a 1-bit integer (-1, 0)" },
00505 { ABS, ins_immu, ext_immu, 0, {{ 2, 13}}, UDEC,
00506 "a 2-bit unsigned (0-3)" },
00507 { ABS, ins_immu, ext_immu, 0, {{ 7, 13}}, 0,
00508 "a 7-bit unsigned (0-127)" },
00509 { ABS, ins_immu, ext_immu, 0, {{ 7, 20}}, 0,
00510 "a 7-bit unsigned (0-127)" },
00511 { ABS, ins_immu, ext_immu, 0, {{ 7, 13}}, UDEC,
00512 "a frame size (register count)" },
00513 { ABS, ins_immu, ext_immu, 0, {{ 7, 20}}, UDEC,
00514 "a local register count" },
00515 { ABS, ins_immus8,ext_immus8,0, {{ 4, 27}}, UDEC,
00516 "a rotating register count (integer multiple of 8)" },
00517 { ABS, ins_imms, ext_imms, 0,
00518 {{ 7, 13}, { 1, 36}}, SDEC,
00519 "an 8-bit integer (-128-127)" },
00520 { ABS, ins_immsu4, ext_imms, 0,
00521 {{ 7, 13}, { 1, 36}}, SDEC,
00522 "an 8-bit signed integer for 32-bit unsigned compare (-128-127)" },
00523 { ABS, ins_immsm1, ext_immsm1, 0,
00524 {{ 7, 13}, { 1, 36}}, SDEC,
00525 "an 8-bit integer (-127-128)" },
00526 { ABS, ins_immsm1u4, ext_immsm1, 0,
00527 {{ 7, 13}, { 1, 36}}, SDEC,
00528 "an 8-bit integer for 32-bit unsigned compare (-127-(-1),1-128,0x100000000)" },
00529 { ABS, ins_immsm1, ext_immsm1, 0,
00530 {{ 7, 13}, { 1, 36}}, SDEC,
00531 "an 8-bit integer for 64-bit unsigned compare (-127-(-1),1-128,0x10000000000000000)" },
00532 { ABS, ins_immu, ext_immu, 0, {{ 2, 33}, { 7, 20}}, 0,
00533 "a 9-bit unsigned (0-511)" },
00534 { ABS, ins_imms, ext_imms, 0,
00535 {{ 7, 6}, { 1, 27}, { 1, 36}}, SDEC,
00536 "a 9-bit integer (-256-255)" },
00537 { ABS, ins_imms, ext_imms, 0,
00538 {{ 7, 13}, { 1, 27}, { 1, 36}}, SDEC,
00539 "a 9-bit integer (-256-255)" },
00540 { ABS, ins_imms, ext_imms, 0,
00541 {{ 7, 13}, { 6, 27}, { 1, 36}}, SDEC,
00542 "a 14-bit integer (-8192-8191)" },
00543 { ABS, ins_imms1, ext_imms1, 0,
00544 {{ 7, 6}, { 8, 24}, { 1, 36}}, 0,
00545 "a 17-bit integer (-65536-65535)" },
00546 { ABS, ins_immu, ext_immu, 0, {{20, 6}, { 1, 36}}, 0,
00547 "a 21-bit unsigned" },
00548 { ABS, ins_imms, ext_imms, 0,
00549 {{ 7, 13}, { 9, 27}, { 5, 22}, { 1, 36}}, SDEC,
00550 "a 22-bit signed integer" },
00551 { ABS, ins_immu, ext_immu, 0,
00552 {{21, 6}, { 2, 31}, { 1, 36}}, 0,
00553 "a 24-bit unsigned" },
00554 { ABS, ins_imms16,ext_imms16,0, {{27, 6}, { 1, 36}}, 0,
00555 "a 44-bit unsigned (least 16 bits ignored/zeroes)" },
00556 { ABS, ins_rsvd, ext_rsvd, 0, {{0, 0}}, 0,
00557 "a 62-bit unsigned" },
00558 { ABS, ins_rsvd, ext_rsvd, 0, {{0, 0}}, 0,
00559 "a 64-bit unsigned" },
00560 { ABS, ins_inc3, ext_inc3, 0, {{ 3, 13}}, SDEC,
00561 "an increment (+/- 1, 4, 8, or 16)" },
00562 { ABS, ins_cnt, ext_cnt, 0, {{ 4, 27}}, UDEC,
00563 "a 4-bit length (1-16)" },
00564 { ABS, ins_cnt, ext_cnt, 0, {{ 6, 27}}, UDEC,
00565 "a 6-bit length (1-64)" },
00566 { ABS, ins_immu, ext_immu, 0, {{ 4, 20}}, 0,
00567 "a mix type (@rev, @mix, @shuf, @alt, or @brcst)" },
00568 { ABS, ins_immu, ext_immu, 0, {{ 8, 20}}, 0,
00569 "an 8-bit mix type" },
00570 { ABS, ins_immu, ext_immu, 0, {{ 6, 14}}, UDEC,
00571 "a 6-bit bit pos (0-63)" },
00572 { REL, ins_imms4, ext_imms4, 0, {{ 7, 6}, { 2, 33}}, 0,
00573 "a branch tag" },
00574 { REL, ins_imms4, ext_imms4, 0, {{ 9, 24}}, 0,
00575 "a branch tag" },
00576 { REL, ins_imms4, ext_imms4, 0, {{20, 6}, { 1, 36}}, 0,
00577 "a branch target" },
00578 { REL, ins_imms4, ext_imms4, 0,
00579 {{ 7, 6}, {13, 20}, { 1, 36}}, 0,
00580 "a branch target" },
00581 { REL, ins_imms4, ext_imms4, 0, {{20, 13}, { 1, 36}}, 0,
00582 "a branch target" },
00583 { REL, ins_rsvd, ext_rsvd, 0, {{0, 0}}, 0,
00584 "a branch target" },
00585
00586 { ABS, ins_const, ext_const, 0, {{0, 0}}, 0,
00587 "ldxmov target" },
00588 };