MIPS/opcodes: Correct mixed MIPS16 and microMIPS disassembly
authorMaciej W. Rozycki <macro@imgtec.com>
Wed, 18 May 2016 10:22:30 +0000 (11:22 +0100)
committerMaciej W. Rozycki <macro@imgtec.com>
Wed, 18 May 2016 12:07:24 +0000 (13:07 +0100)
commit1401d2fe675c5b0634a97e84e6b094eea527e63e
tree55f9dc7cbff610f47d4f36a54ab8fe28643323a2
parent5049806017a546184b87fc3282a586d686b8d98f
MIPS/opcodes: Correct mixed MIPS16 and microMIPS disassembly

Mixing MIPS16 and microMIPS code in a single binary isn't usually
supported but GAS happily produces such code if requested.  However it
is not correctly disassembled even if a symbol table is available and
function symbols are correctly anotated with the ISA mode.  This is
because the ELF-header global microMIPS ASE flag takes precedence over
MIPS16 function annotation, causing them to be treated as regular MIPS
code.

Correct the problem by respecting function symbol anotation regardless
of the ELF-header flag.

binutils/
* testsuite/binutils-all/mips/mixed-mips16-micromips.d: New test.
* testsuite/binutils-all/mips/mixed-mips16-micromips.s: New test
source.
* testsuite/binutils-all/mips/mips.exp: Run the new test.

opcodes/
* mips-dis.c (is_compressed_mode_p): Add `micromips_p' operand,
replacing references to `micromips_ase' throughout.
(_print_insn_mips): Don't use file-level microMIPS annotation to
determine the disassembly mode with the symbol table.
binutils/ChangeLog
binutils/testsuite/binutils-all/mips/mips.exp
binutils/testsuite/binutils-all/mips/mixed-mips16-micromips.d [new file with mode: 0644]
binutils/testsuite/binutils-all/mips/mixed-mips16-micromips.s [new file with mode: 0644]
opcodes/ChangeLog
opcodes/mips-dis.c
This page took 0.026411 seconds and 4 git commands to generate.