2000-04-21 22:22:23 +02:00
|
|
|
/* ia64.h -- Header file for ia64 opcode table
|
2010-04-15 12:26:09 +02:00
|
|
|
Copyright (C) 1998, 1999, 2000, 2002, 2005, 2006, 2010
|
2006-02-23 22:36:17 +01:00
|
|
|
Free Software Foundation, Inc.
|
2010-04-15 12:26:09 +02:00
|
|
|
Contributed by David Mosberger-Tang <davidm@hpl.hp.com>
|
|
|
|
|
|
|
|
This file is part of BFD, the Binary File Descriptor library.
|
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation; either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program; if not, write to the Free Software Foundation,
|
|
|
|
Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA. */
|
2000-04-21 22:22:23 +02:00
|
|
|
|
|
|
|
#ifndef opcode_ia64_h
|
|
|
|
#define opcode_ia64_h
|
|
|
|
|
|
|
|
#include <sys/types.h>
|
|
|
|
|
2002-05-25 14:53:48 +02:00
|
|
|
#include "bfd.h"
|
2000-04-21 22:22:23 +02:00
|
|
|
|
|
|
|
|
|
|
|
typedef BFD_HOST_U_64_BIT ia64_insn;
|
|
|
|
|
|
|
|
enum ia64_insn_type
|
|
|
|
{
|
|
|
|
IA64_TYPE_NIL = 0, /* illegal type */
|
|
|
|
IA64_TYPE_A, /* integer alu (I- or M-unit) */
|
|
|
|
IA64_TYPE_I, /* non-alu integer (I-unit) */
|
|
|
|
IA64_TYPE_M, /* memory (M-unit) */
|
|
|
|
IA64_TYPE_B, /* branch (B-unit) */
|
|
|
|
IA64_TYPE_F, /* floating-point (F-unit) */
|
|
|
|
IA64_TYPE_X, /* long encoding (X-unit) */
|
|
|
|
IA64_TYPE_DYN, /* Dynamic opcode */
|
|
|
|
IA64_NUM_TYPES
|
|
|
|
};
|
|
|
|
|
|
|
|
enum ia64_unit
|
|
|
|
{
|
|
|
|
IA64_UNIT_NIL = 0, /* illegal unit */
|
|
|
|
IA64_UNIT_I, /* integer unit */
|
|
|
|
IA64_UNIT_M, /* memory unit */
|
|
|
|
IA64_UNIT_B, /* branching unit */
|
|
|
|
IA64_UNIT_F, /* floating-point unit */
|
|
|
|
IA64_UNIT_L, /* long "unit" */
|
|
|
|
IA64_UNIT_X, /* may be integer or branch unit */
|
|
|
|
IA64_NUM_UNITS
|
|
|
|
};
|
|
|
|
|
|
|
|
/* Changes to this enumeration must be propagated to the operand table in
|
Patch to update IA-64 port to SDM 2.1.
bfd/ChangeLog
* cpu-ia64-opc.c: Add operand constant "ar.csd".
gas/ChangeLog
* config/tc-ia64.c (pseudo_func): Add "@pause" constant for "hint"
instruction.
(emit_one_bundle): Handle "hint" instruction.
(operand_match): Match IA64_OPND_AR_CSD.
gas/testsuite/ChangeLog
* gas/ia64/opc-b.d: Update for instructions added by SDM2.1.
* gas/ia64/opc-b.s: Ditto.
* gas/ia64/opc-f.d: Ditto.
* gas/ia64/opc-f.s: Ditto.
* gas/ia64/opc-i.d: Ditto.
* gas/ia64/opc-i.s: Ditto.
* gas/ia64/opc-m.d: Ditto.
* gas/ia64/opc-m.s: Ditto.
* gas/ia64/opc-x.d: Ditto.
* gas/ia64/opc-x.s: Ditto.
include/opcode/ChangeLog
* ia64.h: Fix copyright message.
(IA64_OPND_AR_CSD): New operand kind.
opcodes/ChangeLog
* ia64-opc-d.c (ia64_opcodes_d): Add "hint" instruction.
* ia64-opc-b.c: Add "hint.b" instruction.
* ia64-opc-f.c: Add "hint.f" instruction.
* ia64-opc-i.c: Add "hint.i" instruction.
* ia64-opc-m.c: Add "hint.m", "fc.i", "ld16", "st16", and
"cmp8xchg16" instructions.
* ia64-opc-x.c: Add "hint.x" instruction.
* ia64-opc.h (AR_CSD): New macro.
* ia64-ic.tbl: Update according to SDM2.1.
* ia64-raw.tbl: Ditto.
* ia64-waw.tbl: Ditto.
* ia64-gen.c (in_iclass): Handle "hint" like "nop".
(lookup_regindex): Recognize AR[FCR], AR[EFLAG], AR[CSD],
AR[SSD], AR[CFLG], AR[FSR], AR[FIR], and AR[FDR].
* ia64-asmtab.c: Regenerate.
2002-12-05 03:08:02 +01:00
|
|
|
bfd/cpu-ia64-opc.c
|
|
|
|
*/
|
2000-04-21 22:22:23 +02:00
|
|
|
enum ia64_opnd
|
|
|
|
{
|
|
|
|
IA64_OPND_NIL, /* no operand---MUST BE FIRST!*/
|
|
|
|
|
|
|
|
/* constants */
|
Patch to update IA-64 port to SDM 2.1.
bfd/ChangeLog
* cpu-ia64-opc.c: Add operand constant "ar.csd".
gas/ChangeLog
* config/tc-ia64.c (pseudo_func): Add "@pause" constant for "hint"
instruction.
(emit_one_bundle): Handle "hint" instruction.
(operand_match): Match IA64_OPND_AR_CSD.
gas/testsuite/ChangeLog
* gas/ia64/opc-b.d: Update for instructions added by SDM2.1.
* gas/ia64/opc-b.s: Ditto.
* gas/ia64/opc-f.d: Ditto.
* gas/ia64/opc-f.s: Ditto.
* gas/ia64/opc-i.d: Ditto.
* gas/ia64/opc-i.s: Ditto.
* gas/ia64/opc-m.d: Ditto.
* gas/ia64/opc-m.s: Ditto.
* gas/ia64/opc-x.d: Ditto.
* gas/ia64/opc-x.s: Ditto.
include/opcode/ChangeLog
* ia64.h: Fix copyright message.
(IA64_OPND_AR_CSD): New operand kind.
opcodes/ChangeLog
* ia64-opc-d.c (ia64_opcodes_d): Add "hint" instruction.
* ia64-opc-b.c: Add "hint.b" instruction.
* ia64-opc-f.c: Add "hint.f" instruction.
* ia64-opc-i.c: Add "hint.i" instruction.
* ia64-opc-m.c: Add "hint.m", "fc.i", "ld16", "st16", and
"cmp8xchg16" instructions.
* ia64-opc-x.c: Add "hint.x" instruction.
* ia64-opc.h (AR_CSD): New macro.
* ia64-ic.tbl: Update according to SDM2.1.
* ia64-raw.tbl: Ditto.
* ia64-waw.tbl: Ditto.
* ia64-gen.c (in_iclass): Handle "hint" like "nop".
(lookup_regindex): Recognize AR[FCR], AR[EFLAG], AR[CSD],
AR[SSD], AR[CFLG], AR[FSR], AR[FIR], and AR[FDR].
* ia64-asmtab.c: Regenerate.
2002-12-05 03:08:02 +01:00
|
|
|
IA64_OPND_AR_CSD, /* application register csd (ar.csd) */
|
2000-04-21 22:22:23 +02:00
|
|
|
IA64_OPND_AR_CCV, /* application register ccv (ar.ccv) */
|
|
|
|
IA64_OPND_AR_PFS, /* application register pfs (ar.pfs) */
|
|
|
|
IA64_OPND_C1, /* the constant 1 */
|
|
|
|
IA64_OPND_C8, /* the constant 8 */
|
|
|
|
IA64_OPND_C16, /* the constant 16 */
|
|
|
|
IA64_OPND_GR0, /* gr0 */
|
|
|
|
IA64_OPND_IP, /* instruction pointer (ip) */
|
|
|
|
IA64_OPND_PR, /* predicate register (pr) */
|
|
|
|
IA64_OPND_PR_ROT, /* rotating predicate register (pr.rot) */
|
|
|
|
IA64_OPND_PSR, /* processor status register (psr) */
|
|
|
|
IA64_OPND_PSR_L, /* processor status register L (psr.l) */
|
|
|
|
IA64_OPND_PSR_UM, /* processor status register UM (psr.um) */
|
|
|
|
|
|
|
|
/* register operands: */
|
|
|
|
IA64_OPND_AR3, /* third application register # (bits 20-26) */
|
|
|
|
IA64_OPND_B1, /* branch register # (bits 6-8) */
|
|
|
|
IA64_OPND_B2, /* branch register # (bits 13-15) */
|
|
|
|
IA64_OPND_CR3, /* third control register # (bits 20-26) */
|
|
|
|
IA64_OPND_F1, /* first floating-point register # */
|
|
|
|
IA64_OPND_F2, /* second floating-point register # */
|
|
|
|
IA64_OPND_F3, /* third floating-point register # */
|
|
|
|
IA64_OPND_F4, /* fourth floating-point register # */
|
|
|
|
IA64_OPND_P1, /* first predicate # */
|
|
|
|
IA64_OPND_P2, /* second predicate # */
|
|
|
|
IA64_OPND_R1, /* first register # */
|
|
|
|
IA64_OPND_R2, /* second register # */
|
|
|
|
IA64_OPND_R3, /* third register # */
|
|
|
|
IA64_OPND_R3_2, /* third register # (limited to gr0-gr3) */
|
2012-09-04 15:52:04 +02:00
|
|
|
IA64_OPND_DAHR3, /* dahr reg # ( bits 23-25) */
|
2000-04-21 22:22:23 +02:00
|
|
|
|
2005-10-24 09:42:50 +02:00
|
|
|
/* memory operands: */
|
|
|
|
IA64_OPND_MR3, /* memory at addr of third register # */
|
|
|
|
|
2000-04-21 22:22:23 +02:00
|
|
|
/* indirect operands: */
|
|
|
|
IA64_OPND_CPUID_R3, /* cpuid[reg] */
|
|
|
|
IA64_OPND_DBR_R3, /* dbr[reg] */
|
|
|
|
IA64_OPND_DTR_R3, /* dtr[reg] */
|
|
|
|
IA64_OPND_ITR_R3, /* itr[reg] */
|
|
|
|
IA64_OPND_IBR_R3, /* ibr[reg] */
|
|
|
|
IA64_OPND_MSR_R3, /* msr[reg] */
|
|
|
|
IA64_OPND_PKR_R3, /* pkr[reg] */
|
|
|
|
IA64_OPND_PMC_R3, /* pmc[reg] */
|
|
|
|
IA64_OPND_PMD_R3, /* pmd[reg] */
|
2012-09-04 15:52:04 +02:00
|
|
|
IA64_OPND_DAHR_R3, /* dahr[reg] */
|
2000-04-21 22:22:23 +02:00
|
|
|
IA64_OPND_RR_R3, /* rr[reg] */
|
|
|
|
|
|
|
|
/* immediate operands: */
|
|
|
|
IA64_OPND_CCNT5, /* 5-bit count (31 - bits 20-24) */
|
|
|
|
IA64_OPND_CNT2a, /* 2-bit count (1 + bits 27-28) */
|
|
|
|
IA64_OPND_CNT2b, /* 2-bit count (bits 27-28): 1, 2, 3 */
|
|
|
|
IA64_OPND_CNT2c, /* 2-bit count (bits 30-31): 0, 7, 15, or 16 */
|
|
|
|
IA64_OPND_CNT5, /* 5-bit count (bits 14-18) */
|
|
|
|
IA64_OPND_CNT6, /* 6-bit count (bits 27-32) */
|
|
|
|
IA64_OPND_CPOS6a, /* 6-bit count (63 - bits 20-25) */
|
|
|
|
IA64_OPND_CPOS6b, /* 6-bit count (63 - bits 14-19) */
|
|
|
|
IA64_OPND_CPOS6c, /* 6-bit count (63 - bits 31-36) */
|
|
|
|
IA64_OPND_IMM1, /* signed 1-bit immediate (bit 36) */
|
|
|
|
IA64_OPND_IMMU2, /* unsigned 2-bit immediate (bits 13-14) */
|
2006-02-23 22:36:17 +01:00
|
|
|
IA64_OPND_IMMU5b, /* unsigned 5-bit immediate (32 + bits 14-18) */
|
2000-04-21 22:22:23 +02:00
|
|
|
IA64_OPND_IMMU7a, /* unsigned 7-bit immediate (bits 13-19) */
|
|
|
|
IA64_OPND_IMMU7b, /* unsigned 7-bit immediate (bits 20-26) */
|
|
|
|
IA64_OPND_SOF, /* 8-bit stack frame size */
|
|
|
|
IA64_OPND_SOL, /* 8-bit size of locals */
|
|
|
|
IA64_OPND_SOR, /* 6-bit number of rotating registers (scaled by 8) */
|
|
|
|
IA64_OPND_IMM8, /* signed 8-bit immediate (bits 13-19 & 36) */
|
|
|
|
IA64_OPND_IMM8U4, /* cmp4*u signed 8-bit immediate (bits 13-19 & 36) */
|
|
|
|
IA64_OPND_IMM8M1, /* signed 8-bit immediate -1 (bits 13-19 & 36) */
|
|
|
|
IA64_OPND_IMM8M1U4, /* cmp4*u signed 8-bit immediate -1 (bits 13-19 & 36)*/
|
|
|
|
IA64_OPND_IMM8M1U8, /* cmp*u signed 8-bit immediate -1 (bits 13-19 & 36) */
|
|
|
|
IA64_OPND_IMMU9, /* unsigned 9-bit immediate (bits 33-34, 20-26) */
|
|
|
|
IA64_OPND_IMM9a, /* signed 9-bit immediate (bits 6-12, 27, 36) */
|
|
|
|
IA64_OPND_IMM9b, /* signed 9-bit immediate (bits 13-19, 27, 36) */
|
|
|
|
IA64_OPND_IMM14, /* signed 14-bit immediate (bits 13-19, 27-32, 36) */
|
2012-09-04 15:52:04 +02:00
|
|
|
IA64_OPND_IMMU16, /* unsigned 16-bit immediate (bits 6-9, 12-22, 36) */
|
2000-04-21 22:22:23 +02:00
|
|
|
IA64_OPND_IMM17, /* signed 17-bit immediate (2*bits 6-12, 24-31, 36) */
|
2012-09-04 15:52:04 +02:00
|
|
|
IA64_OPND_IMMU19, /* unsigned 19-bit immediate (bits 6-9, 12-25, 36) */
|
2000-04-21 22:22:23 +02:00
|
|
|
IA64_OPND_IMMU21, /* unsigned 21-bit immediate (bits 6-25, 36) */
|
|
|
|
IA64_OPND_IMM22, /* signed 22-bit immediate (bits 13-19, 22-36) */
|
|
|
|
IA64_OPND_IMMU24, /* unsigned 24-bit immediate (bits 6-26, 31-32, 36) */
|
|
|
|
IA64_OPND_IMM44, /* signed 44-bit immediate (2^16*bits 6-32, 36) */
|
|
|
|
IA64_OPND_IMMU62, /* unsigned 62-bit immediate */
|
|
|
|
IA64_OPND_IMMU64, /* unsigned 64-bit immediate (lotsa bits...) */
|
|
|
|
IA64_OPND_INC3, /* signed 3-bit (bits 13-15): +/-1, 4, 8, 16 */
|
|
|
|
IA64_OPND_LEN4, /* 4-bit count (bits 27-30 + 1) */
|
|
|
|
IA64_OPND_LEN6, /* 6-bit count (bits 27-32 + 1) */
|
|
|
|
IA64_OPND_MBTYPE4, /* 4-bit mux type (bits 20-23) */
|
|
|
|
IA64_OPND_MHTYPE8, /* 8-bit mux type (bits 20-27) */
|
|
|
|
IA64_OPND_POS6, /* 6-bit count (bits 14-19) */
|
|
|
|
IA64_OPND_TAG13, /* signed 13-bit tag (ip + 16*bits 6-12, 33-34) */
|
|
|
|
IA64_OPND_TAG13b, /* signed 13-bit tag (ip + 16*bits 24-32) */
|
|
|
|
IA64_OPND_TGT25, /* signed 25-bit (ip + 16*bits 6-25, 36) */
|
|
|
|
IA64_OPND_TGT25b, /* signed 25-bit (ip + 16*bits 6-12, 20-32, 36) */
|
|
|
|
IA64_OPND_TGT25c, /* signed 25-bit (ip + 16*bits 13-32, 36) */
|
|
|
|
IA64_OPND_TGT64, /* 64-bit (ip + 16*bits 13-32, 36, 2-40(L)) */
|
2002-12-03 19:15:46 +01:00
|
|
|
IA64_OPND_LDXMOV, /* any symbol, generates R_IA64_LDXMOV. */
|
2000-04-21 22:22:23 +02:00
|
|
|
|
2012-09-04 15:52:04 +02:00
|
|
|
IA64_OPND_CNT6a, /* 6-bit count (bits 6-11) */
|
|
|
|
IA64_OPND_STRD5b, /* 5-bit stride (bits 13-17) */
|
|
|
|
|
2000-04-21 22:22:23 +02:00
|
|
|
IA64_OPND_COUNT /* # of operand types (MUST BE LAST!) */
|
|
|
|
};
|
|
|
|
|
|
|
|
enum ia64_dependency_mode
|
|
|
|
{
|
|
|
|
IA64_DV_RAW,
|
|
|
|
IA64_DV_WAW,
|
|
|
|
IA64_DV_WAR,
|
|
|
|
};
|
|
|
|
|
|
|
|
enum ia64_dependency_semantics
|
|
|
|
{
|
|
|
|
IA64_DVS_NONE,
|
|
|
|
IA64_DVS_IMPLIED,
|
|
|
|
IA64_DVS_IMPLIEDF,
|
|
|
|
IA64_DVS_DATA,
|
|
|
|
IA64_DVS_INSTR,
|
|
|
|
IA64_DVS_SPECIFIC,
|
Fix ia64 gas testsuite. Update ia64 DV tables. Fix ia64 gas testsuite again.
gas/ChangeLog
* config/tc-ia64.c (dv_sem): Add "stop".
(specify_resource, case IA64_RS_PR): Only handles regs 1 to 15 now.
(specify_resource, case IA64_RS_PRr): New for regs 16 to 62.
(specify_resource, case IA64_RS_PR63): Reorder (note == 7) test to
match above.
(mark_resources): Check IA64_RS_PRr.
gas/testsuite/ChangeLog
* gas/ia64/dv-raw-err.s: Add new testcases for PR%, 16 - 62.
* gas/ia64/dv-waw-err.s: Likewise.
* gas/ia64/dv-imply.d: Regenerate.
* gas/ia64/dv-mutex.d, gas/ia64/dv-raw-err.l, gas/ia64/dv-safe.d,
gas/ia64/dv-srlz.d, gas/ia64/dv-war-err.l, gas/ia64/dv-waw-err.l,
gas/ia64/opc-f.d, gas/ia64/opc-i.d, gas/ia64/opc-m.d: Likewise.
include/opcode/ChangeLog
* ia64.h (enum ia64_dependency_semantics): Add IA64_DVS_STOP.
opcodes/ChangeLog
* ia64-dis.c (print_insn_ia64): Revert Aug 7 byte skip count change.
* ia64-gen.c (parse_semantics): Handle IA64_DVS_STOP.
(lookup_specifier): Handle "PR%, 1 to 15" and "PR%, 16 to 62".
* ia64-ic.tbl, ia64-raw.tbl, ia64-war.tbl, ia64-waw.tbl: Update.
* ia64-asmtab.c: Regnerate.
2000-09-22 21:43:49 +02:00
|
|
|
IA64_DVS_STOP,
|
2000-04-21 22:22:23 +02:00
|
|
|
IA64_DVS_OTHER,
|
|
|
|
};
|
|
|
|
|
|
|
|
enum ia64_resource_specifier
|
|
|
|
{
|
|
|
|
IA64_RS_ANY,
|
|
|
|
IA64_RS_AR_K,
|
|
|
|
IA64_RS_AR_UNAT,
|
|
|
|
IA64_RS_AR, /* 8-15, 20, 22-23, 31, 33-35, 37-39, 41-43, 45-47, 67-111 */
|
|
|
|
IA64_RS_ARb, /* 48-63, 112-127 */
|
|
|
|
IA64_RS_BR,
|
|
|
|
IA64_RS_CFM,
|
|
|
|
IA64_RS_CPUID,
|
2008-08-28 16:07:48 +02:00
|
|
|
IA64_RS_CR_IIB,
|
2000-04-21 22:22:23 +02:00
|
|
|
IA64_RS_CR_IRR,
|
|
|
|
IA64_RS_CR_LRR,
|
2008-08-28 16:07:48 +02:00
|
|
|
IA64_RS_CR, /* 3-7,10-15,18,28-63,75-79,82-127 */
|
2012-09-04 15:52:04 +02:00
|
|
|
IA64_RS_DAHR,
|
2000-04-21 22:22:23 +02:00
|
|
|
IA64_RS_DBR,
|
|
|
|
IA64_RS_FR,
|
|
|
|
IA64_RS_FRb,
|
|
|
|
IA64_RS_GR0,
|
|
|
|
IA64_RS_GR,
|
|
|
|
IA64_RS_IBR,
|
|
|
|
IA64_RS_INSERVICE, /* CR[EOI] or CR[IVR] */
|
|
|
|
IA64_RS_MSR,
|
|
|
|
IA64_RS_PKR,
|
|
|
|
IA64_RS_PMC,
|
|
|
|
IA64_RS_PMD,
|
Fix ia64 gas testsuite. Update ia64 DV tables. Fix ia64 gas testsuite again.
gas/ChangeLog
* config/tc-ia64.c (dv_sem): Add "stop".
(specify_resource, case IA64_RS_PR): Only handles regs 1 to 15 now.
(specify_resource, case IA64_RS_PRr): New for regs 16 to 62.
(specify_resource, case IA64_RS_PR63): Reorder (note == 7) test to
match above.
(mark_resources): Check IA64_RS_PRr.
gas/testsuite/ChangeLog
* gas/ia64/dv-raw-err.s: Add new testcases for PR%, 16 - 62.
* gas/ia64/dv-waw-err.s: Likewise.
* gas/ia64/dv-imply.d: Regenerate.
* gas/ia64/dv-mutex.d, gas/ia64/dv-raw-err.l, gas/ia64/dv-safe.d,
gas/ia64/dv-srlz.d, gas/ia64/dv-war-err.l, gas/ia64/dv-waw-err.l,
gas/ia64/opc-f.d, gas/ia64/opc-i.d, gas/ia64/opc-m.d: Likewise.
include/opcode/ChangeLog
* ia64.h (enum ia64_dependency_semantics): Add IA64_DVS_STOP.
opcodes/ChangeLog
* ia64-dis.c (print_insn_ia64): Revert Aug 7 byte skip count change.
* ia64-gen.c (parse_semantics): Handle IA64_DVS_STOP.
(lookup_specifier): Handle "PR%, 1 to 15" and "PR%, 16 to 62".
* ia64-ic.tbl, ia64-raw.tbl, ia64-war.tbl, ia64-waw.tbl: Update.
* ia64-asmtab.c: Regnerate.
2000-09-22 21:43:49 +02:00
|
|
|
IA64_RS_PR, /* non-rotating, 1-15 */
|
|
|
|
IA64_RS_PRr, /* rotating, 16-62 */
|
2000-04-21 22:22:23 +02:00
|
|
|
IA64_RS_PR63,
|
|
|
|
IA64_RS_RR,
|
|
|
|
|
|
|
|
IA64_RS_ARX, /* ARs not in RS_AR or RS_ARb */
|
|
|
|
IA64_RS_CRX, /* CRs not in RS_CR */
|
|
|
|
IA64_RS_PSR, /* PSR bits */
|
|
|
|
IA64_RS_RSE, /* implementation-specific RSE resources */
|
|
|
|
IA64_RS_AR_FPSR,
|
2012-09-04 15:52:04 +02:00
|
|
|
|
2000-04-21 22:22:23 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
enum ia64_rse_resource
|
|
|
|
{
|
|
|
|
IA64_RSE_N_STACKED_PHYS,
|
|
|
|
IA64_RSE_BOF,
|
|
|
|
IA64_RSE_STORE_REG,
|
|
|
|
IA64_RSE_LOAD_REG,
|
|
|
|
IA64_RSE_BSPLOAD,
|
|
|
|
IA64_RSE_RNATBITINDEX,
|
|
|
|
IA64_RSE_CFLE,
|
|
|
|
IA64_RSE_NDIRTY,
|
|
|
|
};
|
|
|
|
|
|
|
|
/* Information about a given resource dependency */
|
|
|
|
struct ia64_dependency
|
|
|
|
{
|
|
|
|
/* Name of the resource */
|
|
|
|
const char *name;
|
|
|
|
/* Does this dependency need further specification? */
|
|
|
|
enum ia64_resource_specifier specifier;
|
|
|
|
/* Mode of dependency */
|
|
|
|
enum ia64_dependency_mode mode;
|
|
|
|
/* Dependency semantics */
|
|
|
|
enum ia64_dependency_semantics semantics;
|
|
|
|
/* Register index, if applicable (distinguishes AR, CR, and PSR deps) */
|
|
|
|
#define REG_NONE (-1)
|
|
|
|
int regindex;
|
|
|
|
/* Special info on semantics */
|
|
|
|
const char *info;
|
|
|
|
};
|
|
|
|
|
|
|
|
/* Two arrays of indexes into the ia64_dependency table.
|
|
|
|
chks are dependencies to check for conflicts when an opcode is
|
|
|
|
encountered; regs are dependencies to register (mark as used) when an
|
|
|
|
opcode is used. chks correspond to readers (RAW) or writers (WAW or
|
|
|
|
WAR) of a resource, while regs correspond to writers (RAW or WAW) and
|
|
|
|
readers (WAR) of a resource. */
|
|
|
|
struct ia64_opcode_dependency
|
|
|
|
{
|
|
|
|
int nchks;
|
|
|
|
const unsigned short *chks;
|
|
|
|
int nregs;
|
|
|
|
const unsigned short *regs;
|
|
|
|
};
|
|
|
|
|
|
|
|
/* encode/extract the note/index for a dependency */
|
|
|
|
#define RDEP(N,X) (((N)<<11)|(X))
|
|
|
|
#define NOTE(X) (((X)>>11)&0x1F)
|
|
|
|
#define DEP(X) ((X)&0x7FF)
|
|
|
|
|
|
|
|
/* A template descriptor describes the execution units that are active
|
|
|
|
for each of the three slots. It also specifies the location of
|
|
|
|
instruction group boundaries that may be present between two slots. */
|
|
|
|
struct ia64_templ_desc
|
|
|
|
{
|
|
|
|
int group_boundary; /* 0=no boundary, 1=between slot 0 & 1, etc. */
|
|
|
|
enum ia64_unit exec_unit[3];
|
|
|
|
const char *name;
|
|
|
|
};
|
|
|
|
|
|
|
|
/* The opcode table is an array of struct ia64_opcode. */
|
|
|
|
|
|
|
|
struct ia64_opcode
|
|
|
|
{
|
|
|
|
/* The opcode name. */
|
|
|
|
const char *name;
|
|
|
|
|
|
|
|
/* The type of the instruction: */
|
|
|
|
enum ia64_insn_type type;
|
|
|
|
|
|
|
|
/* Number of output operands: */
|
|
|
|
int num_outputs;
|
|
|
|
|
|
|
|
/* The opcode itself. Those bits which will be filled in with
|
|
|
|
operands are zeroes. */
|
|
|
|
ia64_insn opcode;
|
|
|
|
|
|
|
|
/* The opcode mask. This is used by the disassembler. This is a
|
|
|
|
mask containing ones indicating those bits which must match the
|
|
|
|
opcode field, and zeroes indicating those bits which need not
|
|
|
|
match (and are presumably filled in by operands). */
|
|
|
|
ia64_insn mask;
|
|
|
|
|
|
|
|
/* An array of operand codes. Each code is an index into the
|
|
|
|
operand table. They appear in the order which the operands must
|
|
|
|
appear in assembly code, and are terminated by a zero. */
|
|
|
|
enum ia64_opnd operands[5];
|
|
|
|
|
|
|
|
/* One bit flags for the opcode. These are primarily used to
|
|
|
|
indicate specific processors and environments support the
|
|
|
|
instructions. The defined values are listed below. */
|
|
|
|
unsigned int flags;
|
|
|
|
|
|
|
|
/* Used by ia64_find_next_opcode (). */
|
|
|
|
short ent_index;
|
|
|
|
|
Patch to update IA-64 port to SDM 2.1.
bfd/ChangeLog
* cpu-ia64-opc.c: Add operand constant "ar.csd".
gas/ChangeLog
* config/tc-ia64.c (pseudo_func): Add "@pause" constant for "hint"
instruction.
(emit_one_bundle): Handle "hint" instruction.
(operand_match): Match IA64_OPND_AR_CSD.
gas/testsuite/ChangeLog
* gas/ia64/opc-b.d: Update for instructions added by SDM2.1.
* gas/ia64/opc-b.s: Ditto.
* gas/ia64/opc-f.d: Ditto.
* gas/ia64/opc-f.s: Ditto.
* gas/ia64/opc-i.d: Ditto.
* gas/ia64/opc-i.s: Ditto.
* gas/ia64/opc-m.d: Ditto.
* gas/ia64/opc-m.s: Ditto.
* gas/ia64/opc-x.d: Ditto.
* gas/ia64/opc-x.s: Ditto.
include/opcode/ChangeLog
* ia64.h: Fix copyright message.
(IA64_OPND_AR_CSD): New operand kind.
opcodes/ChangeLog
* ia64-opc-d.c (ia64_opcodes_d): Add "hint" instruction.
* ia64-opc-b.c: Add "hint.b" instruction.
* ia64-opc-f.c: Add "hint.f" instruction.
* ia64-opc-i.c: Add "hint.i" instruction.
* ia64-opc-m.c: Add "hint.m", "fc.i", "ld16", "st16", and
"cmp8xchg16" instructions.
* ia64-opc-x.c: Add "hint.x" instruction.
* ia64-opc.h (AR_CSD): New macro.
* ia64-ic.tbl: Update according to SDM2.1.
* ia64-raw.tbl: Ditto.
* ia64-waw.tbl: Ditto.
* ia64-gen.c (in_iclass): Handle "hint" like "nop".
(lookup_regindex): Recognize AR[FCR], AR[EFLAG], AR[CSD],
AR[SSD], AR[CFLG], AR[FSR], AR[FIR], and AR[FDR].
* ia64-asmtab.c: Regenerate.
2002-12-05 03:08:02 +01:00
|
|
|
/* Opcode dependencies. */
|
2000-04-21 22:22:23 +02:00
|
|
|
const struct ia64_opcode_dependency *dependencies;
|
|
|
|
};
|
|
|
|
|
|
|
|
/* Values defined for the flags field of a struct ia64_opcode. */
|
|
|
|
|
|
|
|
#define IA64_OPCODE_FIRST (1<<0) /* must be first in an insn group */
|
|
|
|
#define IA64_OPCODE_X_IN_MLX (1<<1) /* insn is allowed in X slot of MLX */
|
|
|
|
#define IA64_OPCODE_LAST (1<<2) /* must be last in an insn group */
|
|
|
|
#define IA64_OPCODE_PRIV (1<<3) /* privileged instruct */
|
|
|
|
#define IA64_OPCODE_SLOT2 (1<<4) /* insn allowed in slot 2 only */
|
|
|
|
#define IA64_OPCODE_NO_PRED (1<<5) /* insn cannot be predicated */
|
|
|
|
#define IA64_OPCODE_PSEUDO (1<<6) /* insn is a pseudo-op */
|
|
|
|
#define IA64_OPCODE_F2_EQ_F3 (1<<7) /* constraint: F2 == F3 */
|
|
|
|
#define IA64_OPCODE_LEN_EQ_64MCNT (1<<8) /* constraint: LEN == 64-CNT */
|
2000-08-17 01:20:14 +02:00
|
|
|
#define IA64_OPCODE_MOD_RRBS (1<<9) /* modifies all rrbs in CFM */
|
|
|
|
#define IA64_OPCODE_POSTINC (1<<10) /* postincrement MR3 operand */
|
2000-04-21 22:22:23 +02:00
|
|
|
|
|
|
|
/* A macro to extract the major opcode from an instruction. */
|
|
|
|
#define IA64_OP(i) (((i) >> 37) & 0xf)
|
|
|
|
|
|
|
|
enum ia64_operand_class
|
|
|
|
{
|
|
|
|
IA64_OPND_CLASS_CST, /* constant */
|
|
|
|
IA64_OPND_CLASS_REG, /* register */
|
|
|
|
IA64_OPND_CLASS_IND, /* indirect register */
|
|
|
|
IA64_OPND_CLASS_ABS, /* absolute value */
|
|
|
|
IA64_OPND_CLASS_REL, /* IP-relative value */
|
|
|
|
};
|
|
|
|
|
|
|
|
/* The operands table is an array of struct ia64_operand. */
|
|
|
|
|
|
|
|
struct ia64_operand
|
|
|
|
{
|
* bfd/coff-arm.c (coff_arm_relocate_section)
(record_thumb_to_arm_glue, bfd_arm_process_before_allocation):
Change member name class to symbol_class.
* bfd/coff-i960.c (coff_i960_relocate_section) Rename variable
class to class_val. Change member name class to symbol_class.
* bfd/coff-rs6000.c (_bfd_xcoff_swap_aux_in)
(_bfd_xcoff_swap_aux_out): Rename arguments class to in_class.
* bfd/coff-stgo32.c (adjust_aux_in_post)
(adjust_aux_out_pre, adjust_aux_out_post): Rename arguments class
to in_class.
* bfd/coff64-rs6000.c (_bfd_xcoff64_swap_aux_in)
(_bfd_xcoff64_swap_aux_out): Rename arguments class to in_class.
* bfd/coffcode.h (coff_pointerize_aux_hook): Rename variable class
to n_sclass.
* bfd/coffgen.c (coff_write_symbol, coff_pointerize_aux): Rename
variables named class to n_sclass. (coff_write_symbols): Rename
variable class to sym_class. (bfd_coff_set_symbol_class): Rename
argument class to symbol_class.
* bfd/cofflink.c (_bfd_coff_link_hash_newfunc)
(coff_link_add_symbols, _bfd_coff_link_input_bfd)
(_bfd_coff_write_global_sym, _bfd_coff_generic_relocate_section):
Update code to use renamed members.
* bfd/coffswap.h (coff_swap_aux_in, coff_swap_aux_out): Rename
argument class to in_class.
* bfd/libcoff-in.h (struct coff_link_hash_entry, struct
coff_debug_merge_type) Renamed members class to symbol_class and
type_class.
* bfd/libcoff.h Regenerated.
* bfd/peXXigen.c: (_bfd_XXi_swap_aux_in, _bfd_XXi_swap_aux_out):
Rename argument class to in_class.
* bfd/pef.c (bfd_pef_parse_imported_symbol): Update code to use
renamed members.
* bfd/pef.h (struct bfd_pef_imported_symbol): Changed name of
member class to symbol_class.
* binutils/ieee.c (ieee_read_cxx_misc, ieee_read_cxx_class)
(ieee_read_reference): Rename variables named class to cxxclass.
* gas/config/tc-arc.c (struct syntax_classes): Rename member class
to s_class. (arc_extinst): Rename variable class to
s_class. Update code to use renamed members.
* gas/config/tc-mips.c (insn_uses_reg): Rename argument class to
regclass.
* gas/config/tc-ppc.c (ppc_csect, ppc_change_csect, ppc_function)
(ppc_tc, ppc_is_toc_sym, ppc_symbol_new_hook, ppc_frob_label)
(ppc_fix_adjustable, md_apply_fix): Update code to use renamed
members.
* gas/config/tc-ppc.h (struct ppc_tc_sy): Change name of member
from class to symbol_class. (OBJ_COPY_SYMBOL_ATTRIBUTES): Update
code to use renamed members.
* gas/config/tc-score.c (s3_adjust_paritybit): Rename argument
class to i_class.
* gas/config/tc-score7.c (s7_adjust_paritybit): Rename argument
class to i_class.
* gprof/corefile.c (core_create_function_syms): Rename variable
class to cxxclass.
* include/coff/ti.h (GET_LNSZ_SIZE, PUT_LNSZ_SIZE): Updated name
of class variable to in_class to match changes in function that
use this macro.
* include/opcode/ia64.h (struct ia64_operand): Renamed member
class to op_class
* ld/emultempl/elf32.em (gld${EMULATION_NAME}_load_symbols)
(gld${EMULATION_NAME}_try_needed): Rename variable class to
link_class
* opcodes/ia64-dis.c (print_insn_ia64): Update code to use renamed
member.
* opcodes/m88k-dis.c (m88kdis): Rename variable class to in_class.
* opcodes/tic80-opc.c (tic80_symbol_to_value)
(tic80_value_to_symbol): Rename argument class to symbol_class.
2009-09-05 09:56:25 +02:00
|
|
|
enum ia64_operand_class op_class;
|
2000-04-21 22:22:23 +02:00
|
|
|
|
|
|
|
/* Set VALUE as the operand bits for the operand of type SELF in the
|
|
|
|
instruction pointed to by CODE. If an error occurs, *CODE is not
|
|
|
|
modified and the returned string describes the cause of the
|
|
|
|
error. If no error occurs, NULL is returned. */
|
|
|
|
const char *(*insert) (const struct ia64_operand *self, ia64_insn value,
|
|
|
|
ia64_insn *code);
|
|
|
|
|
|
|
|
/* Extract the operand bits for an operand of type SELF from
|
|
|
|
instruction CODE store them in *VALUE. If an error occurs, the
|
|
|
|
cause of the error is described by the string returned. If no
|
|
|
|
error occurs, NULL is returned. */
|
|
|
|
const char *(*extract) (const struct ia64_operand *self, ia64_insn code,
|
|
|
|
ia64_insn *value);
|
|
|
|
|
|
|
|
/* A string whose meaning depends on the operand class. */
|
|
|
|
|
|
|
|
const char *str;
|
|
|
|
|
|
|
|
struct bit_field
|
|
|
|
{
|
|
|
|
/* The number of bits in the operand. */
|
|
|
|
int bits;
|
|
|
|
|
|
|
|
/* How far the operand is left shifted in the instruction. */
|
|
|
|
int shift;
|
|
|
|
}
|
|
|
|
field[4]; /* no operand has more than this many bit-fields */
|
|
|
|
|
|
|
|
unsigned int flags;
|
|
|
|
|
|
|
|
const char *desc; /* brief description */
|
|
|
|
};
|
|
|
|
|
|
|
|
/* Values defined for the flags field of a struct ia64_operand. */
|
|
|
|
|
|
|
|
/* Disassemble as signed decimal (instead of hex): */
|
|
|
|
#define IA64_OPND_FLAG_DECIMAL_SIGNED (1<<0)
|
|
|
|
/* Disassemble as unsigned decimal (instead of hex): */
|
|
|
|
#define IA64_OPND_FLAG_DECIMAL_UNSIGNED (1<<1)
|
|
|
|
|
|
|
|
extern const struct ia64_templ_desc ia64_templ_desc[16];
|
|
|
|
|
|
|
|
/* The tables are sorted by major opcode number and are otherwise in
|
|
|
|
the order in which the disassembler should consider instructions. */
|
|
|
|
extern struct ia64_opcode ia64_opcodes_a[];
|
|
|
|
extern struct ia64_opcode ia64_opcodes_i[];
|
|
|
|
extern struct ia64_opcode ia64_opcodes_m[];
|
|
|
|
extern struct ia64_opcode ia64_opcodes_b[];
|
|
|
|
extern struct ia64_opcode ia64_opcodes_f[];
|
|
|
|
extern struct ia64_opcode ia64_opcodes_d[];
|
|
|
|
|
|
|
|
|
2010-01-14 16:18:42 +01:00
|
|
|
extern struct ia64_opcode *ia64_find_opcode (const char *);
|
|
|
|
extern struct ia64_opcode *ia64_find_next_opcode (struct ia64_opcode *);
|
2000-04-21 22:22:23 +02:00
|
|
|
|
2010-01-14 16:18:42 +01:00
|
|
|
extern struct ia64_opcode *ia64_dis_opcode (ia64_insn,
|
|
|
|
enum ia64_insn_type);
|
2000-04-21 22:22:23 +02:00
|
|
|
|
2010-01-14 16:18:42 +01:00
|
|
|
extern void ia64_free_opcode (struct ia64_opcode *);
|
|
|
|
extern const struct ia64_dependency *ia64_find_dependency (int);
|
2000-04-21 22:22:23 +02:00
|
|
|
|
|
|
|
/* To avoid circular library dependencies, this array is implemented
|
|
|
|
in bfd/cpu-ia64-opc.c: */
|
|
|
|
extern const struct ia64_operand elf64_ia64_operands[IA64_OPND_COUNT];
|
|
|
|
|
|
|
|
#endif /* opcode_ia64_h */
|