binutils-gdb/opcodes
Maciej W. Rozycki 92281a5b06 MIPS/opcodes: Address issues with NAL disassembly
Address issues with the disassembly of the NAL assembly idiom and R6
instruction introduced with commit 7361da2c95 ("Add support for MIPS
R6.") and then further tweaked with commit b9121b573e ("Add in a JALRC
alias and fix the NAL instruction.").  As from R6 this instruction has
replaced the encoding of `bltzal $0, . + 4' as the solely supported form
of the former BLTZAL instruction for the regular MIPS ISA.

The instruction is marked as an alias only in our regular MIPS opcode
table, making it fail to disassemble in R6 code if the `no-aliases'
machine option has been passed to `objdump':

$ cat test.s
	.text
foo:
	nal
$ as -mips64r6 -o test.o test.s
$ objdump -dr --prefix-addresses --show-raw-insn -M no-aliases test.o

nal.o:     file format elf32-tradbigmips

Disassembly of section .text:
00000000 <foo> 04100000 	0x4100000
	...
$

This is because the `bltzal' entry has been marked as pre-R6 only in the
opcode table and there is no other opcode pattern to match.

Additionally the changes referred made NAL replace the equivalent
`bltzal $0, . + 4' instruction in disassembly, unless the `no-aliases'
machine option has been used, in legacy code.  Seeing NAL, especially in
its updated form lacking the branch target argument, in the disassembly
of such code may be confusing to people.  This is because unlike with
EHB only used in R2 and newer code -- the machine encoding of which we
anyway always disassemble to its corresponding current architecture's
mnemonic rather than its legacy meaning of `sll $0, $0, 3' -- BLTZAL has
been indeed used in legacy code.  Even though `bltzal $0, . + 8' and its
machine code encoding (0x04100001) -- which is not equivalent to NAL and
still disassembles as BLTZAL -- has been the predominant form as opposed
to NAL's `bltzal $0, . + 4' (0x04100000), it makes sense to always keep
the old form in disassembly, while still accepting `nal' in assembly.

Remove the alias marking then from the the `nal' instruction pattern,
making it always match for R6 code, even with the `no-aliases' option.
And move the entry beyond the `bltzal' entry, making the latter one take
precedence for legacy binary code, while letting the former still match
any `nal' mnemonic in source code assembled for a legacy target.

Add a suitable test case to the GAS test suite.  While the change
affects the disassembler more than the assembler, so placing the test
case in the binutils test suite might be more appropriate, the intent is
also to verify that `nal' is still accepted by GAS for legacy targets,
plus we have test infrastructure available in the GAS test suite for
automatic multiple ISA level testing, which we lack from the binutils
framework.

	opcodes/
	* mips-opc.c (mips_builtin_opcodes): Remove the INSN2_ALIAS
	annotation from the "nal" entry and reorder it beyond "bltzal".

	gas/
	* testsuite/gas/mips/nal-1.d: New test.
	* testsuite/gas/mips/mipsr6@nal-1.d: New test.
	* testsuite/gas/mips/nal-2.d: New test.
	* testsuite/gas/mips/mipsr6@nal-2.d: New test.
	* testsuite/gas/mips/nal.s: New test source.
	* testsuite/gas/mips/mips.exp: Run the new tests.
2016-07-13 17:42:43 +01:00
..
po Copyright update for binutils 2016-01-01 23:00:01 +10:30
.gitignore
ChangeLog MIPS/opcodes: Address issues with NAL disassembly 2016-07-13 17:42:43 +01:00
ChangeLog-0001 Add copyright notices 2012-12-10 12:48:03 +00:00
ChangeLog-0203 Add copyright notices 2012-12-10 12:48:03 +00:00
ChangeLog-2004 Add copyright notices 2012-12-10 12:48:03 +00:00
ChangeLog-2005 Add copyright notices 2012-12-10 12:48:03 +00:00
ChangeLog-2006 Remove trailing spaces in opcodes 2015-08-12 04:45:07 -07:00
ChangeLog-2007 Remove trailing spaces in opcodes 2015-08-12 04:45:07 -07:00
ChangeLog-2008 Add copyright notices 2012-12-10 12:48:03 +00:00
ChangeLog-2009 Add copyright notices 2012-12-10 12:48:03 +00:00
ChangeLog-2010 Add copyright notices 2012-12-10 12:48:03 +00:00
ChangeLog-2011 Add copyright notices 2012-12-10 12:48:03 +00:00
ChangeLog-2012 opcodes/ChangeLog 2013-01-02 13:13:36 +00:00
ChangeLog-2013 New Year - binutils ChangeLog rotation 2014-01-08 05:32:12 -08:00
ChangeLog-2014 ChangeLog rotatation and copyright year update 2015-01-02 00:53:45 +10:30
ChangeLog-2015 binutils ChangeLog rotation 2016-01-01 22:59:17 +10:30
ChangeLog-9297 Add copyright notices 2012-12-10 12:48:03 +00:00
ChangeLog-9899 Add copyright notices 2012-12-10 12:48:03 +00:00
MAINTAINERS Copyright update for binutils 2016-01-01 23:00:01 +10:30
Makefile.am Copyright update for binutils 2016-01-01 23:00:01 +10:30
Makefile.in Regenerate Makefile.in/aclocal.m4 automake 1.11.6 2016-04-15 16:20:55 -07:00
aarch64-asm-2.c Copyright update for binutils 2016-01-01 23:00:01 +10:30
aarch64-asm.c Copyright update for binutils 2016-01-01 23:00:01 +10:30
aarch64-asm.h Copyright update for binutils 2016-01-01 23:00:01 +10:30
aarch64-dis-2.c Copyright update for binutils 2016-01-01 23:00:01 +10:30
aarch64-dis.c Add support to AArch64 disassembler for verifying instructions. Add verifier for LDPSW. 2016-04-28 09:11:03 +01:00
aarch64-dis.h Copyright update for binutils 2016-01-01 23:00:01 +10:30
aarch64-gen.c Fix generation of AArhc64 instruction table. 2016-05-03 11:48:56 +01:00
aarch64-opc-2.c Copyright update for binutils 2016-01-01 23:00:01 +10:30
aarch64-opc.c [AArch64] Make register indices be full 64-bit values 2016-06-28 09:21:04 +01:00
aarch64-opc.h Fix generation of AArhc64 instruction table. 2016-05-03 11:48:56 +01:00
aarch64-tbl.h Fix generation of AArhc64 instruction table. 2016-05-03 11:48:56 +01:00
aclocal.m4 Regenerate Makefile.in/aclocal.m4 automake 1.11.6 2016-04-15 16:20:55 -07:00
alpha-dis.c update many old style function definitions 2016-04-20 07:04:49 -04:00
alpha-opc.c Copyright update for binutils 2016-01-01 23:00:01 +10:30
arc-dis.c Arc assembler: Convert nps400 from a machine type to an extension. 2016-06-21 14:03:08 +01:00
arc-dis.h Copyright update for binutils 2016-01-01 23:00:01 +10:30
arc-ext-tbl.h [ARC] Fix typo in extension instruction name. 2016-03-29 19:05:31 +02:00
arc-ext.c [ARC] Add SYNTAX_NOP and SYNTAX_1OP for extension instructions 2016-05-04 16:18:32 +02:00
arc-ext.h addmore extern C 2016-06-22 12:59:58 -04:00
arc-fxi.h Copyright update for binutils 2016-01-01 23:00:01 +10:30
arc-nps400-tbl.h Arc assembler: Convert nps400 from a machine type to an extension. 2016-06-21 14:03:08 +01:00
arc-opc.c [ARC] Misc minor edits/fixes 2016-06-23 09:57:42 +01:00
arc-regs.h Add support for .extCondCode, .extCoreRegister and .extAuxRegister. 2016-04-12 10:21:06 +02:00
arc-tbl.h [ARC] Update instruction type and delay slot info. 2016-05-23 17:41:54 +02:00
arm-dis.c Fix typo in comment 2016-06-30 16:03:07 +01:00
avr-dis.c Print symbol names in comments for LDS/STS disassembly. 2016-06-09 19:00:57 +03:00
bfin-dis.c Copyright update for binutils 2016-01-01 23:00:01 +10:30
cgen-asm.c Copyright update for binutils 2016-01-01 23:00:01 +10:30
cgen-asm.in Copyright update for binutils 2016-01-01 23:00:01 +10:30
cgen-bitset.c Copyright update for binutils 2016-01-01 23:00:01 +10:30
cgen-dis.c Fix undefined compilation behaviour shifting a value into the sign bit of a signed integer. 2016-02-01 10:41:32 +00:00
cgen-dis.in Copyright update for binutils 2016-01-01 23:00:01 +10:30
cgen-ibld.in opcodes/cgen: Rework calculation of shift when inserting fields 2016-02-02 11:09:17 +00:00
cgen-opc.c Remove use of alloca. 2016-03-21 16:31:46 +00:00
cgen.sh Copyright update for binutils 2016-01-01 23:00:01 +10:30
config.in Rename configure.in to configure.ac 2014-07-04 13:40:28 +09:30
configure Regenerate configure 2016-05-09 17:24:30 +09:30
configure.ac Copyright update for binutils 2016-01-01 23:00:01 +10:30
configure.com Copyright update for binutils 2016-01-01 23:00:01 +10:30
cr16-dis.c Copyright update for binutils 2016-01-01 23:00:01 +10:30
cr16-opc.c Copyright update for binutils 2016-01-01 23:00:01 +10:30
cris-dis.c Copyright update for binutils 2016-01-01 23:00:01 +10:30
cris-opc.c Copyright update for binutils 2016-01-01 23:00:01 +10:30
crx-dis.c update many old style function definitions 2016-04-20 07:04:49 -04:00
crx-opc.c Copyright update for binutils 2016-01-01 23:00:01 +10:30
d10v-dis.c Copyright update for binutils 2016-01-01 23:00:01 +10:30
d10v-opc.c Copyright update for binutils 2016-01-01 23:00:01 +10:30
d30v-dis.c Copyright update for binutils 2016-01-01 23:00:01 +10:30
d30v-opc.c Copyright update for binutils 2016-01-01 23:00:01 +10:30
dep-in.sed
dis-buf.c Copyright update for binutils 2016-01-01 23:00:01 +10:30
dis-init.c Copyright update for binutils 2016-01-01 23:00:01 +10:30
disassemble.c update many old style function definitions 2016-04-20 07:04:49 -04:00
dlx-dis.c Copyright update for binutils 2016-01-01 23:00:01 +10:30
epiphany-asm.c Copyright update for binutils 2016-01-01 23:00:01 +10:30
epiphany-desc.c Copyright update for binutils 2016-01-01 23:00:01 +10:30
epiphany-desc.h Copyright update for binutils 2016-01-01 23:00:01 +10:30
epiphany-dis.c epiphany/disassembler: Improve alignment of output. 2016-02-02 11:09:17 +00:00
epiphany-ibld.c opcodes/cgen: Rework calculation of shift when inserting fields 2016-02-02 11:09:17 +00:00
epiphany-opc.c update many old style function definitions 2016-04-20 07:04:49 -04:00
epiphany-opc.h Copyright update for binutils 2016-01-01 23:00:01 +10:30
fr30-asm.c Copyright update for binutils 2016-01-01 23:00:01 +10:30
fr30-desc.c Copyright update for binutils 2016-01-01 23:00:01 +10:30
fr30-desc.h Copyright update for binutils 2016-01-01 23:00:01 +10:30
fr30-dis.c Copyright update for binutils 2016-01-01 23:00:01 +10:30
fr30-ibld.c Fix shift left warning at source 2016-03-02 13:35:41 +10:30
fr30-opc.c update many old style function definitions 2016-04-20 07:04:49 -04:00
fr30-opc.h Copyright update for binutils 2016-01-01 23:00:01 +10:30
frv-asm.c Copyright update for binutils 2016-01-01 23:00:01 +10:30
frv-desc.c Copyright update for binutils 2016-01-01 23:00:01 +10:30
frv-desc.h Copyright update for binutils 2016-01-01 23:00:01 +10:30
frv-dis.c Copyright update for binutils 2016-01-01 23:00:01 +10:30
frv-ibld.c opcodes/cgen: Rework calculation of shift when inserting fields 2016-02-02 11:09:17 +00:00
frv-opc.c update many old style function definitions 2016-04-20 07:04:49 -04:00
frv-opc.h Copyright update for binutils 2016-01-01 23:00:01 +10:30
ft32-dis.c Copyright update for binutils 2016-01-01 23:00:01 +10:30
ft32-opc.c FT32: adjust disassembly opcode match fields 2016-07-08 11:38:35 -07:00
h8300-dis.c Copyright update for binutils 2016-01-01 23:00:01 +10:30
h8500-dis.c Copyright update for binutils 2016-01-01 23:00:01 +10:30
h8500-opc.h Copyright update for binutils 2016-01-01 23:00:01 +10:30
hppa-dis.c Copyright update for binutils 2016-01-01 23:00:01 +10:30
i370-dis.c Copyright update for binutils 2016-01-01 23:00:01 +10:30
i370-opc.c Copyright update for binutils 2016-01-01 23:00:01 +10:30
i386-dis-evex.h Fix memory operand size for vcvtt?ps2u?qq instructions 2015-07-22 13:26:21 -07:00
i386-dis.c Handle indirect branches for AMD64 and Intel64 2016-06-03 15:55:29 -07:00
i386-gen.c Add .noavx512XX directives to x86 assembler 2016-05-29 07:56:23 -07:00
i386-init.h Add .noavx512XX directives to x86 assembler 2016-05-29 07:56:23 -07:00
i386-opc.c Copyright update for binutils 2016-01-01 23:00:01 +10:30
i386-opc.h Update x86 CPU_XXX_FLAGS handling 2016-05-27 10:05:57 -07:00
i386-opc.tbl x86: allow suffix-less movzw and 64-bit movzb 2016-07-01 09:01:41 +02:00
i386-reg.tbl Copyright update for binutils 2016-01-01 23:00:01 +10:30
i386-tbl.h x86: allow suffix-less movzw and 64-bit movzb 2016-07-01 09:01:41 +02:00
i860-dis.c Copyright update for binutils 2016-01-01 23:00:01 +10:30
i960-dis.c Copyright update for binutils 2016-01-01 23:00:01 +10:30
ia64-asmtab.c Copyright update for binutils 2016-01-01 23:00:01 +10:30
ia64-asmtab.h Copyright update for binutils 2016-01-01 23:00:01 +10:30
ia64-dis.c Copyright update for binutils 2016-01-01 23:00:01 +10:30
ia64-gen.c Copyright update for binutils 2016-01-01 23:00:01 +10:30
ia64-ic.tbl Add Intel Itanium Series 9500 support 2012-09-04 13:52:06 +00:00
ia64-opc-a.c Copyright update for binutils 2016-01-01 23:00:01 +10:30
ia64-opc-b.c Copyright update for binutils 2016-01-01 23:00:01 +10:30
ia64-opc-d.c Copyright update for binutils 2016-01-01 23:00:01 +10:30
ia64-opc-f.c Copyright update for binutils 2016-01-01 23:00:01 +10:30
ia64-opc-i.c Copyright update for binutils 2016-01-01 23:00:01 +10:30
ia64-opc-m.c Copyright update for binutils 2016-01-01 23:00:01 +10:30
ia64-opc-x.c Copyright update for binutils 2016-01-01 23:00:01 +10:30
ia64-opc.c Copyright update for binutils 2016-01-01 23:00:01 +10:30
ia64-opc.h Copyright update for binutils 2016-01-01 23:00:01 +10:30
ia64-raw.tbl * ia64-raw.tbl: Replace non-ASCII char. 2013-05-17 12:57:16 +00:00
ia64-war.tbl
ia64-waw.tbl * ia64-raw.tbl: Replace non-ASCII char. 2013-05-17 12:57:16 +00:00
ip2k-asm.c Copyright update for binutils 2016-01-01 23:00:01 +10:30
ip2k-desc.c Copyright update for binutils 2016-01-01 23:00:01 +10:30
ip2k-desc.h Copyright update for binutils 2016-01-01 23:00:01 +10:30
ip2k-dis.c Copyright update for binutils 2016-01-01 23:00:01 +10:30
ip2k-ibld.c opcodes/cgen: Rework calculation of shift when inserting fields 2016-02-02 11:09:17 +00:00
ip2k-opc.c update many old style function definitions 2016-04-20 07:04:49 -04:00
ip2k-opc.h Copyright update for binutils 2016-01-01 23:00:01 +10:30
iq2000-asm.c Copyright update for binutils 2016-01-01 23:00:01 +10:30
iq2000-desc.c Copyright update for binutils 2016-01-01 23:00:01 +10:30
iq2000-desc.h Copyright update for binutils 2016-01-01 23:00:01 +10:30
iq2000-dis.c Copyright update for binutils 2016-01-01 23:00:01 +10:30
iq2000-ibld.c opcodes/cgen: Rework calculation of shift when inserting fields 2016-02-02 11:09:17 +00:00
iq2000-opc.c update many old style function definitions 2016-04-20 07:04:49 -04:00
iq2000-opc.h Copyright update for binutils 2016-01-01 23:00:01 +10:30
lm32-asm.c Copyright update for binutils 2016-01-01 23:00:01 +10:30
lm32-desc.c Copyright update for binutils 2016-01-01 23:00:01 +10:30
lm32-desc.h Copyright update for binutils 2016-01-01 23:00:01 +10:30
lm32-dis.c Copyright update for binutils 2016-01-01 23:00:01 +10:30
lm32-ibld.c opcodes/cgen: Rework calculation of shift when inserting fields 2016-02-02 11:09:17 +00:00
lm32-opc.c update many old style function definitions 2016-04-20 07:04:49 -04:00
lm32-opc.h Copyright update for binutils 2016-01-01 23:00:01 +10:30
lm32-opinst.c update many old style function definitions 2016-04-20 07:04:49 -04:00
m32c-asm.c Copyright update for binutils 2016-01-01 23:00:01 +10:30
m32c-desc.c Copyright update for binutils 2016-01-01 23:00:01 +10:30
m32c-desc.h Copyright update for binutils 2016-01-01 23:00:01 +10:30
m32c-dis.c Copyright update for binutils 2016-01-01 23:00:01 +10:30
m32c-ibld.c opcodes/cgen: Rework calculation of shift when inserting fields 2016-02-02 11:09:17 +00:00
m32c-opc.c update many old style function definitions 2016-04-20 07:04:49 -04:00
m32c-opc.h Copyright update for binutils 2016-01-01 23:00:01 +10:30
m32r-asm.c Copyright update for binutils 2016-01-01 23:00:01 +10:30
m32r-desc.c Copyright update for binutils 2016-01-01 23:00:01 +10:30
m32r-desc.h Copyright update for binutils 2016-01-01 23:00:01 +10:30
m32r-dis.c Copyright update for binutils 2016-01-01 23:00:01 +10:30
m32r-ibld.c opcodes/cgen: Rework calculation of shift when inserting fields 2016-02-02 11:09:17 +00:00
m32r-opc.c update many old style function definitions 2016-04-20 07:04:49 -04:00
m32r-opc.h Copyright update for binutils 2016-01-01 23:00:01 +10:30
m32r-opinst.c update many old style function definitions 2016-04-20 07:04:49 -04:00
m68hc11-dis.c Copyright update for binutils 2016-01-01 23:00:01 +10:30
m68hc11-opc.c Copyright update for binutils 2016-01-01 23:00:01 +10:30
m68k-dis.c Copyright update for binutils 2016-01-01 23:00:01 +10:30
m68k-opc.c m68k: fix constraints of move.[bw] for ISA_B/C 2016-01-08 11:42:10 +01:00
m88k-dis.c Copyright update for binutils 2016-01-01 23:00:01 +10:30
m10200-dis.c Copyright update for binutils 2016-01-01 23:00:01 +10:30
m10200-opc.c Copyright update for binutils 2016-01-01 23:00:01 +10:30
m10300-dis.c Copyright update for binutils 2016-01-01 23:00:01 +10:30
m10300-opc.c Copyright update for binutils 2016-01-01 23:00:01 +10:30
makefile.vms Copyright update for binutils 2016-01-01 23:00:01 +10:30
mcore-dis.c remove a few sentinals 2016-06-25 11:54:28 -04:00
mcore-opc.h remove a few sentinals 2016-06-25 11:54:28 -04:00
mep-asm.c Copyright update for binutils 2016-01-01 23:00:01 +10:30
mep-desc.c Copyright update for binutils 2016-01-01 23:00:01 +10:30
mep-desc.h Copyright update for binutils 2016-01-01 23:00:01 +10:30
mep-dis.c Copyright update for binutils 2016-01-01 23:00:01 +10:30
mep-ibld.c opcodes/cgen: Rework calculation of shift when inserting fields 2016-02-02 11:09:17 +00:00
mep-opc.c update many old style function definitions 2016-04-20 07:04:49 -04:00
mep-opc.h Copyright update for binutils 2016-01-01 23:00:01 +10:30
metag-dis.c Copyright update for binutils 2016-01-01 23:00:01 +10:30
microblaze-dis.c Copyright update for binutils 2016-01-01 23:00:01 +10:30
microblaze-dis.h Copyright update for binutils 2016-01-01 23:00:01 +10:30
microblaze-opc.h Add const qualifiers at various places. 2016-03-07 15:16:28 +00:00
microblaze-opcm.h Copyright update for binutils 2016-01-01 23:00:01 +10:30
micromips-opc.c Copyright update for binutils 2016-01-01 23:00:01 +10:30
mips-dis.c MIPS/opcodes: Correct mixed MIPS16 and microMIPS disassembly 2016-05-18 13:07:24 +01:00
mips-formats.h Copyright update for binutils 2016-01-01 23:00:01 +10:30
mips-opc.c MIPS/opcodes: Address issues with NAL disassembly 2016-07-13 17:42:43 +01:00
mips16-opc.c Copyright update for binutils 2016-01-01 23:00:01 +10:30
mmix-dis.c Copyright update for binutils 2016-01-01 23:00:01 +10:30
mmix-opc.c Copyright update for binutils 2016-01-01 23:00:01 +10:30
moxie-dis.c Copyright update for binutils 2016-01-01 23:00:01 +10:30
moxie-opc.c Copyright update for binutils 2016-01-01 23:00:01 +10:30
msp430-decode.c Copyright update for binutils 2016-01-01 23:00:01 +10:30
msp430-decode.opc Copyright update for binutils 2016-01-01 23:00:01 +10:30
msp430-dis.c Improve the MSP430 disassembler's handling of memory read errors. 2016-05-27 13:49:58 +01:00
mt-asm.c Copyright update for binutils 2016-01-01 23:00:01 +10:30
mt-desc.c Copyright update for binutils 2016-01-01 23:00:01 +10:30
mt-desc.h Copyright update for binutils 2016-01-01 23:00:01 +10:30
mt-dis.c Copyright update for binutils 2016-01-01 23:00:01 +10:30
mt-ibld.c opcodes/cgen: Rework calculation of shift when inserting fields 2016-02-02 11:09:17 +00:00
mt-opc.c update many old style function definitions 2016-04-20 07:04:49 -04:00
mt-opc.h Copyright update for binutils 2016-01-01 23:00:01 +10:30
nds32-asm.c Copyright update for binutils 2016-01-01 23:00:01 +10:30
nds32-asm.h add more extern C 2016-06-01 21:26:32 -04:00
nds32-dis.c Fix simple gas testsuite failures. 2016-06-15 16:25:34 +01:00
nds32-opc.h Copyright update for binutils 2016-01-01 23:00:01 +10:30
nios2-dis.c Copyright update for binutils 2016-01-01 23:00:01 +10:30
nios2-opc.c Copyright update for binutils 2016-01-01 23:00:01 +10:30
ns32k-dis.c Copyright update for binutils 2016-01-01 23:00:01 +10:30
opc2c.c Copyright update for binutils 2016-01-01 23:00:01 +10:30
opintl.h Copyright update for binutils 2016-01-01 23:00:01 +10:30
or1k-asm.c Copyright update for binutils 2016-01-01 23:00:01 +10:30
or1k-desc.c Copyright update for binutils 2016-01-01 23:00:01 +10:30
or1k-desc.h Regenerate or1k opcodes file 2016-03-03 00:23:31 +10:30
or1k-dis.c Copyright update for binutils 2016-01-01 23:00:01 +10:30
or1k-ibld.c opcodes/cgen: Rework calculation of shift when inserting fields 2016-02-02 11:09:17 +00:00
or1k-opc.c update many old style function definitions 2016-04-20 07:04:49 -04:00
or1k-opc.h Copyright update for binutils 2016-01-01 23:00:01 +10:30
or1k-opinst.c update many old style function definitions 2016-04-20 07:04:49 -04:00
pdp11-dis.c Copyright update for binutils 2016-01-01 23:00:01 +10:30
pdp11-opc.c Copyright update for binutils 2016-01-01 23:00:01 +10:30
pj-dis.c Copyright update for binutils 2016-01-01 23:00:01 +10:30
pj-opc.c Copyright update for binutils 2016-01-01 23:00:01 +10:30
ppc-dis.c PowerPC VLE 2016-06-07 22:04:38 +09:30
ppc-opc.c Add support for yet some more new ISA 3.0 instructions. 2016-06-22 17:55:17 -05:00
rl78-decode.c Regenerate rl78 opcodes file 2016-03-02 13:38:44 +10:30
rl78-decode.opc Fix display of RL78 MOVW instructions that use the stack pointer. 2016-01-14 16:23:35 +00:00
rl78-dis.c Fix typo in print_insn_rl78_common function. 2016-03-01 10:52:24 +00:00
rx-decode.c Copyright update for binutils 2016-01-01 23:00:01 +10:30
rx-decode.opc Copyright update for binutils 2016-01-01 23:00:01 +10:30
rx-dis.c Copyright update for binutils 2016-01-01 23:00:01 +10:30
s390-dis.c S/390: Dump unknown instructions according to their length. 2016-06-10 13:41:42 +02:00
s390-mkopc.c Copyright update for binutils 2016-01-01 23:00:01 +10:30
s390-opc.c Copyright update for binutils 2016-01-01 23:00:01 +10:30
s390-opc.txt Copyright update for binutils 2016-01-01 23:00:01 +10:30
score-dis.c Copyright update for binutils 2016-01-01 23:00:01 +10:30
score-opc.h Copyright update for binutils 2016-01-01 23:00:01 +10:30
score7-dis.c Copyright update for binutils 2016-01-01 23:00:01 +10:30
sh-dis.c Copyright update for binutils 2016-01-01 23:00:01 +10:30
sh-opc.h add more extern C 2016-06-01 21:26:32 -04:00
sh64-dis.c Copyright update for binutils 2016-01-01 23:00:01 +10:30
sh64-opc.c Copyright update for binutils 2016-01-01 23:00:01 +10:30
sh64-opc.h Copyright update for binutils 2016-01-01 23:00:01 +10:30
sparc-dis.c opcodes,gas: sparc: fix rdasr,wrasr,rdpr,wrpr,rdhpr,wrhpr insns. 2016-06-17 02:15:43 -07:00
sparc-opc.c opcodes,gas: support for the ldtxa SPARC instructions. 2016-07-13 16:05:40 +02:00
spu-dis.c Copyright update for binutils 2016-01-01 23:00:01 +10:30
spu-opc.c Copyright update for binutils 2016-01-01 23:00:01 +10:30
stamp-h.in
sysdep.h Copyright update for binutils 2016-01-01 23:00:01 +10:30
tic4x-dis.c Add const qualifiers at various places. 2016-03-07 15:16:28 +00:00
tic6x-dis.c Copyright update for binutils 2016-01-01 23:00:01 +10:30
tic30-dis.c Copyright update for binutils 2016-01-01 23:00:01 +10:30
tic54x-dis.c tic54x: rename typedef of struct symbol_ 2016-05-23 01:17:12 -04:00
tic54x-opc.c tic54x: rename typedef of struct symbol_ 2016-05-23 01:17:12 -04:00
tic80-dis.c Copyright update for binutils 2016-01-01 23:00:01 +10:30
tic80-opc.c update many old style function definitions 2016-04-20 07:04:49 -04:00
tilegx-dis.c Copyright update for binutils 2016-01-01 23:00:01 +10:30
tilegx-opc.c Copyright update for binutils 2016-01-01 23:00:01 +10:30
tilepro-dis.c Copyright update for binutils 2016-01-01 23:00:01 +10:30
tilepro-opc.c Copyright update for binutils 2016-01-01 23:00:01 +10:30
v850-dis.c Copyright update for binutils 2016-01-01 23:00:01 +10:30
v850-opc.c Fix disassembly of the V850's LD.BU instruction. 2016-04-13 15:09:25 +01:00
vax-dis.c Copyright update for binutils 2016-01-01 23:00:01 +10:30
visium-dis.c Copyright update for binutils 2016-01-01 23:00:01 +10:30
visium-opc.c Copyright update for binutils 2016-01-01 23:00:01 +10:30
w65-dis.c Copyright update for binutils 2016-01-01 23:00:01 +10:30
w65-opc.h Copyright update for binutils 2016-01-01 23:00:01 +10:30
xc16x-asm.c Copyright update for binutils 2016-01-01 23:00:01 +10:30
xc16x-desc.c Copyright update for binutils 2016-01-01 23:00:01 +10:30
xc16x-desc.h Copyright update for binutils 2016-01-01 23:00:01 +10:30
xc16x-dis.c Copyright update for binutils 2016-01-01 23:00:01 +10:30
xc16x-ibld.c opcodes/cgen: Rework calculation of shift when inserting fields 2016-02-02 11:09:17 +00:00
xc16x-opc.c update many old style function definitions 2016-04-20 07:04:49 -04:00
xc16x-opc.h Copyright update for binutils 2016-01-01 23:00:01 +10:30
xgate-dis.c Copyright update for binutils 2016-01-01 23:00:01 +10:30
xgate-opc.c Copyright update for binutils 2016-01-01 23:00:01 +10:30
xstormy16-asm.c Copyright update for binutils 2016-01-01 23:00:01 +10:30
xstormy16-desc.c Copyright update for binutils 2016-01-01 23:00:01 +10:30
xstormy16-desc.h Copyright update for binutils 2016-01-01 23:00:01 +10:30
xstormy16-dis.c Copyright update for binutils 2016-01-01 23:00:01 +10:30
xstormy16-ibld.c opcodes/cgen: Rework calculation of shift when inserting fields 2016-02-02 11:09:17 +00:00
xstormy16-opc.c update many old style function definitions 2016-04-20 07:04:49 -04:00
xstormy16-opc.h Copyright update for binutils 2016-01-01 23:00:01 +10:30
xtensa-dis.c Copyright update for binutils 2016-01-01 23:00:01 +10:30
z8k-dis.c Copyright update for binutils 2016-01-01 23:00:01 +10:30
z8k-opc.h Copyright update for binutils 2016-01-01 23:00:01 +10:30
z8kgen.c Copyright update for binutils 2016-01-01 23:00:01 +10:30
z80-dis.c Copyright update for binutils 2016-01-01 23:00:01 +10:30