mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-12-09 04:21:49 +08:00
ec668d69b9
include/opcode/ * sparc.h (struct sparc_opcode): New field 'hwcaps'. F_MUL32, F_DIV32, F_FDMULD, F_V8PLUS, F_POPC, F_VIS, F_VIS2, F_ASI_BLK_INIT, F_FMAF, F_VIS3, F_HPC, F_RANDOM, F_TRANS, F_FJFMAU, F_IMA, F_ASI_CACHE_SPARING, F_HWCAP_MASK): Delete. (HWCAP_MUL32, HWCAP_DIV32, HWCAP_FSMULD, HWCAP_V8PLUS, HWCAP_POPC, HWCAP_VIS, HWCAP_VIS2, HWCAP_ASI_BLK_INIT, HWCAP_FMAF, HWCAP_VIS3, HWCAP_HPC, HWCAP_RANDOM, HWCAP_TRANS, HWCAP_FJFMAU, HWCAP_IMA, HWCAP_ASI_CACHE_SPARING, HWCAP_AES, HWCAP_DES, HWCAP_KASUMI, HWCAP_CAMELLIA, HWCAP_MD5, HWCAP_SHA1, HWCAP_SHA256, HWCAP_SHA512, HWCAP_MPMUL, HWCAP_MONT, HWCAP_PAUSE, HWCAP_CBCOND, HWCAP_CRC32): New defines. opcodes/ * sparc-opc.c (sparc_opcodes): Rework table to put HWCAP values into new struct sparc_opcode 'hwcaps' field instead of 'flags'. gas/ * config/tc-sparc.c (sparc_arch_table): Rework to use HWCAP_* masks. (sparc_md_end): No longer need to translate hwcap_seen values into ELF hwcap bits, they now match exactly. (get_hwcap_name): Use HWCAP_* and handle new values. (sparc_ip): Fetch hwcaps from insn->hwcaps instead of insn->flags.
183 lines
5.7 KiB
Plaintext
183 lines
5.7 KiB
Plaintext
2012-04-27 David S. Miller <davem@davemloft.net>
|
||
|
||
* sparc-opc.c (sparc_opcodes): Rework table to put HWCAP values
|
||
into new struct sparc_opcode 'hwcaps' field instead of 'flags'.
|
||
|
||
2012-04-12 David S. Miller <davem@davemloft.net>
|
||
|
||
* sparc-dis.c (X_DISP10): Define.
|
||
(print_insn_sparc): Handle '='.
|
||
|
||
2012-04-01 Mike Frysinger <vapier@gentoo.org>
|
||
|
||
* bfin-dis.c (fmtconst): Replace decimal handling with a single
|
||
sprintf call and the '*' field width.
|
||
|
||
2012-03-23 Maxim Kuvyrkov <maxim@codesourcery.com>
|
||
|
||
* mips-dis.c (mips_arch_choices): Add entry for Broadcom XLP.
|
||
|
||
2012-03-16 Alan Modra <amodra@gmail.com>
|
||
|
||
* ppc-dis.c (PPC_OPC_SEGS, PPC_OP_TO_SEG): Delete.
|
||
(powerpc_opcd_indices): Bump array size.
|
||
(disassemble_init_powerpc): Set powerpc_opcd_indices entries
|
||
corresponding to unused opcodes to following entry.
|
||
(lookup_powerpc): New function, extracted and optimised from..
|
||
(print_insn_powerpc): ..here.
|
||
|
||
2012-03-15 Alan Modra <amodra@gmail.com>
|
||
James Lemke <jwlemke@codesourcery.com>
|
||
|
||
* disassemble.c (disassemble_init_for_target): Handle ppc init.
|
||
* ppc-dis.c (private): New var.
|
||
(powerpc_init_dialect): Don't return calloc failure, instead use
|
||
private.
|
||
(PPC_OPCD_SEGS, PPC_OP_TO_SEG): Define.
|
||
(powerpc_opcd_indices): New array.
|
||
(disassemble_init_powerpc): New function.
|
||
(print_insn_big_powerpc): Don't init dialect here.
|
||
(print_insn_little_powerpc): Likewise.
|
||
(print_insn_powerpc): Start search using powerpc_opcd_indices.
|
||
|
||
2012-03-10 Edmar Wienskoski <edmar@freescale.com>
|
||
|
||
* ppc-dis.c (ppc_opts): Add entries for "e5500" and "e6500".
|
||
* ppc-opc.c (insert_ls, TMR, ESYNC, XSYNCLE_MASK): New.
|
||
(PPCVEC2, PPCTMR, E6500): New short names.
|
||
(powerpc_opcodes): Add vabsdub, vabsduh, vabsduw, dni, mvidsplt,
|
||
mviwsplt, icblq., mftmr, mttmr, dcblq., miso, lvexbx, lvexhx,
|
||
lvexwx, stvexbx, stvexhx, stvexwx, lvepx, lvepxl, stvepx, stvepxl,
|
||
lvtrx, lvtrxl, lvtlx, lvtlxl, stvfrx, stvfrxl, stvflx, stvflxl,
|
||
lvswx, lvswxl, stvswx, stvswxl, lvsm mnemonics. Accept LS, ESYNC
|
||
optional operands on sync instruction for E6500 target.
|
||
|
||
2012-03-08 Andreas Krebbel <Andreas.Krebbel@de.ibm.com>
|
||
|
||
* s390-opc.txt: Set instruction type of pku to SS_L2RDRD.
|
||
|
||
2012-02-27 Alan Modra <amodra@gmail.com>
|
||
|
||
* mt-dis.c: Regenerate.
|
||
|
||
2012-02-27 Alan Modra <amodra@gmail.com>
|
||
|
||
* v850-opc.c (extract_v8): Rearrange to make it obvious this
|
||
is the inverse of corresponding insert function.
|
||
(extract_d22, extract_u9, extract_r4): Likewise.
|
||
(extract_d9): Correct sign extension.
|
||
(extract_d16_15): Don't assume "long" is 32 bits, and don't
|
||
rely on implementation defined behaviour for shift right of
|
||
signed types.
|
||
(extract_d16_16, extract_d17_16, extract_i9): Likewise.
|
||
(extract_d23): Likewise, and correct mask.
|
||
|
||
2012-02-27 Alan Modra <amodra@gmail.com>
|
||
|
||
* crx-dis.c (print_arg): Mask constant to 32 bits.
|
||
* crx-opc.c (cst4_map): Use int array.
|
||
|
||
2012-02-27 Alan Modra <amodra@gmail.com>
|
||
|
||
* arc-dis.c (BITS): Don't use shifts to mask off bits.
|
||
(FIELDD): Sign extend with xor,sub.
|
||
|
||
2012-02-25 Walter Lee <walt@tilera.com>
|
||
|
||
* tilegx-opc.c: Handle TILEGX_OPC_LD4S_TLS and TILEGX_OPC_LD_TLS.
|
||
* tilepro-opc.c: Handle TILEPRO_OPC_LW_TLS and
|
||
TILEPRO_OPC_LW_TLS_SN.
|
||
|
||
2012-02-21 H.J. Lu <hongjiu.lu@intel.com>
|
||
|
||
* i386-opc.h (HLEPrefixNone): New.
|
||
(HLEPrefixLock): Likewise.
|
||
(HLEPrefixAny): Likewise.
|
||
(HLEPrefixRelease): Likewise.
|
||
|
||
2012-02-08 H.J. Lu <hongjiu.lu@intel.com>
|
||
|
||
* i386-dis.c (HLE_Fixup1): New.
|
||
(HLE_Fixup2): Likewise.
|
||
(HLE_Fixup3): Likewise.
|
||
(Ebh1): Likewise.
|
||
(Evh1): Likewise.
|
||
(Ebh2): Likewise.
|
||
(Evh2): Likewise.
|
||
(Ebh3): Likewise.
|
||
(Evh3): Likewise.
|
||
(MOD_C6_REG_7): Likewise.
|
||
(MOD_C7_REG_7): Likewise.
|
||
(RM_C6_REG_7): Likewise.
|
||
(RM_C7_REG_7): Likewise.
|
||
(XACQUIRE_PREFIX): Likewise.
|
||
(XRELEASE_PREFIX): Likewise.
|
||
(dis386): Use Ebh1/Evh1 on add, adc, and, btc, btr, bts,
|
||
cmpxchg, dec, inc, neg, not, or, sbb, sub, xor and xadd. Use
|
||
Ebh2/Evh2 on xchg. Use Ebh3/Evh3 on mov.
|
||
(reg_table): Use Ebh1/Evh1 on add, adc, and, dec, inc, neg,
|
||
not, or, sbb, sub and xor. Use Ebh3/Evh3 on mov. Use
|
||
MOD_C6_REG_7 and MOD_C7_REG_7.
|
||
(mod_table): Add MOD_C6_REG_7 and MOD_C7_REG_7.
|
||
(rm_table): Add RM_C6_REG_7 and RM_C7_REG_7. Add xend and
|
||
xtest.
|
||
(prefix_name): Handle XACQUIRE_PREFIX and XRELEASE_PREFIX.
|
||
(CMPXCHG8B_Fixup): Handle HLE prefix on cmpxchg8b.
|
||
|
||
* i386-gen.c (cpu_flag_init): Add CPU_HLE_FLAGS and
|
||
CPU_RTM_FLAGS.
|
||
(cpu_flags): Add CpuHLE and CpuRTM.
|
||
(opcode_modifiers): Add HLEPrefixOk.
|
||
|
||
* i386-opc.h (CpuHLE): New.
|
||
(CpuRTM): Likewise.
|
||
(HLEPrefixOk): Likewise.
|
||
(i386_cpu_flags): Add cpuhle and cpurtm.
|
||
(i386_opcode_modifier): Add hleprefixok.
|
||
|
||
* i386-opc.tbl: Add HLEPrefixOk=3 to mov. Add HLEPrefixOk to
|
||
add, adc, and, btc, btr, bts, cmpxchg, dec, inc, neg, not, or,
|
||
sbb, sub, xor and xadd. Add HLEPrefixOk=2 to xchg with memory
|
||
operand. Add xacquire, xrelease, xabort, xbegin, xend and
|
||
xtest.
|
||
* i386-init.h: Regenerated.
|
||
* i386-tbl.h: Likewise.
|
||
|
||
2012-01-24 DJ Delorie <dj@redhat.com>
|
||
|
||
* rl78-decode.opc (rl78_decode_opcode): Add NOT1.
|
||
* rl78-decode.c: Regenerate.
|
||
|
||
2012-01-17 James Murray <jsm@jsm-net.demon.co.uk>
|
||
|
||
PR binutils/10173
|
||
* cr16-dis.c (print_arg): Test symtab_size not num_symbols.
|
||
|
||
2012-01-17 Andreas Schwab <schwab@linux-m68k.org>
|
||
|
||
* m68k-opc.c (m68k_opcodes): Fix entries for pmove with BADx/BACx
|
||
register and move them after pmove with PSR/PCSR register.
|
||
|
||
2012-01-13 H.J. Lu <hongjiu.lu@intel.com>
|
||
|
||
* i386-dis.c (mod_table): Add vmfunc.
|
||
|
||
* i386-gen.c (cpu_flag_init): Add CPU_VMFUNC_FLAGS.
|
||
(cpu_flags): CpuVMFUNC.
|
||
|
||
* i386-opc.h (CpuVMFUNC): New.
|
||
(i386_cpu_flags): Add cpuvmfunc.
|
||
|
||
* i386-opc.tbl: Add vmfunc.
|
||
* i386-init.h: Regenerated.
|
||
* i386-tbl.h: Likewise.
|
||
|
||
For older changes see ChangeLog-2011
|
||
|
||
Local Variables:
|
||
mode: change-log
|
||
left-margin: 8
|
||
fill-column: 74
|
||
version-control: never
|
||
End:
|