diff options
author | Matthew Fortune <matthew.fortune@imgtec.com> | 2014-12-16 13:33:56 +0000 |
---|---|---|
committer | Matthew Fortune <matthew.fortune@imgtec.com> | 2014-12-16 22:33:12 +0000 |
commit | b9121b573e2e2a9cc5a96bf84727c882cd21f2f9 (patch) | |
tree | dfb94b1780892cb06c2c7f0e1fa2200288fc42b8 /gas/testsuite | |
parent | 25dda427ec9e074e0a258eb93c7cc811f0a85a9c (diff) | |
download | gdb-b9121b573e2e2a9cc5a96bf84727c882cd21f2f9.zip gdb-b9121b573e2e2a9cc5a96bf84727c882cd21f2f9.tar.gz gdb-b9121b573e2e2a9cc5a96bf84727c882cd21f2f9.tar.bz2 |
Add in a JALRC alias and fix the NAL instruction.
opcodes/
* mips-opc.c (mips_builtin_opcodes): Add JALRC alias for JIALC.
Remove the operand from NAL.
gas/testsuite/
* gas/mips/r6.s: Test JALRC and NAL
* gas/mips/r6-n32.d: Add expected output for JALRC and NAL.
* gas/mips/r6-n64.d: Likewise.
* gas/mips/r6.d: Likewise.
Diffstat (limited to 'gas/testsuite')
-rw-r--r-- | gas/testsuite/ChangeLog | 7 | ||||
-rw-r--r-- | gas/testsuite/gas/mips/r6-n32.d | 3 | ||||
-rw-r--r-- | gas/testsuite/gas/mips/r6-n64.d | 3 | ||||
-rw-r--r-- | gas/testsuite/gas/mips/r6.d | 3 | ||||
-rw-r--r-- | gas/testsuite/gas/mips/r6.s | 3 |
5 files changed, 19 insertions, 0 deletions
diff --git a/gas/testsuite/ChangeLog b/gas/testsuite/ChangeLog index 63d58fe..d0aec21 100644 --- a/gas/testsuite/ChangeLog +++ b/gas/testsuite/ChangeLog @@ -1,3 +1,10 @@ +2014-12-16 Matthew Fortune <matthew.fortune@imgtec.com> + + * gas/mips/r6.s: Test JALRC and NAL + * gas/mips/r6-n32.d: Add expected output for JALRC and NAL. + * gas/mips/r6-n64.d: Likewise. + * gas/mips/r6.d: Likewise. + 2014-12-06 Eric Botcazou <ebotcazou@adacore.com> * gas/elf/elf.exp: Skip ifunc-1 for Visium. diff --git a/gas/testsuite/gas/mips/r6-n32.d b/gas/testsuite/gas/mips/r6-n32.d index 4df4f31..d4e9859 100644 --- a/gas/testsuite/gas/mips/r6-n32.d +++ b/gas/testsuite/gas/mips/r6-n32.d @@ -490,4 +490,7 @@ Disassembly of section .text: 0+057c <[^>]*> ec8bffff lwpc a0,00100578 <[^>]*> 0+0580 <[^>]*> 00000000 nop 0+0584 <[^>]*> ec83ffff lapc a0,00100580 <[^>]*> +0+0588 <[^>]*> f8040000 jalrc a0 +0+058c <[^>]*> 04100000 nal +0+0590 <[^>]*> 00000000 nop \.\.\. diff --git a/gas/testsuite/gas/mips/r6-n64.d b/gas/testsuite/gas/mips/r6-n64.d index d099988..e388e7a 100644 --- a/gas/testsuite/gas/mips/r6-n64.d +++ b/gas/testsuite/gas/mips/r6-n64.d @@ -746,4 +746,7 @@ Disassembly of section .text: 0+057c <[^>]*> ec8bffff lwpc a0,0000000000100578 <[^>]*> 0+0580 <[^>]*> 00000000 nop 0+0584 <[^>]*> ec83ffff lapc a0,0000000000100580 <[^>]*> +0+0588 <[^>]*> f8040000 jalrc a0 +0+058c <[^>]*> 04100000 nal +0+0590 <[^>]*> 00000000 nop \.\.\. diff --git a/gas/testsuite/gas/mips/r6.d b/gas/testsuite/gas/mips/r6.d index 0cfccb8..94ab611 100644 --- a/gas/testsuite/gas/mips/r6.d +++ b/gas/testsuite/gas/mips/r6.d @@ -489,4 +489,7 @@ Disassembly of section .text: 0+057c <[^>]*> ec8bffff lwpc a0,00100578 <[^>]*> 0+0580 <[^>]*> 00000000 nop 0+0584 <[^>]*> ec83ffff lapc a0,00100580 <[^>]*> +0+0588 <[^>]*> f8040000 jalrc a0 +0+058c <[^>]*> 04100000 nal +0+0590 <[^>]*> 00000000 nop \.\.\. diff --git a/gas/testsuite/gas/mips/r6.s b/gas/testsuite/gas/mips/r6.s index 73308ad..e4ee083 100644 --- a/gas/testsuite/gas/mips/r6.s +++ b/gas/testsuite/gas/mips/r6.s @@ -258,6 +258,9 @@ new: maddf.s $f0,$f1,$f2 nop addiu $4, $pc, (262143 << 2) + jalrc $4 + nal + # Force at least 8 (non-delay-slot) zero bytes, to make 'objdump' print ... .align 2 .space 8 |