diff options
author | Thiemo Seufer <ths@networkno.de> | 2006-05-08 18:18:09 +0000 |
---|---|---|
committer | Thiemo Seufer <ths@networkno.de> | 2006-05-08 18:18:09 +0000 |
commit | 409a6ecdda6625d4696fdad07042e5750e6646e9 (patch) | |
tree | 495ca0d5e0faa9f24df98f855c11c05fa1b67f44 /gas | |
parent | 2fd0d2ac07e6d320c5f5b7eef0df11bc94a80f1e (diff) | |
download | gdb-409a6ecdda6625d4696fdad07042e5750e6646e9.zip gdb-409a6ecdda6625d4696fdad07042e5750e6646e9.tar.gz gdb-409a6ecdda6625d4696fdad07042e5750e6646e9.tar.bz2 |
* gas/mips/mips32.s, gas/mips/mips32.d: Extend testcase to check
larger offset arguments for cache instructions.
Diffstat (limited to 'gas')
-rw-r--r-- | gas/testsuite/ChangeLog | 5 | ||||
-rw-r--r-- | gas/testsuite/gas/mips/mips32.d | 42 | ||||
-rw-r--r-- | gas/testsuite/gas/mips/mips32.s | 6 |
3 files changed, 37 insertions, 16 deletions
diff --git a/gas/testsuite/ChangeLog b/gas/testsuite/ChangeLog index d246981..1b7ff836 100644 --- a/gas/testsuite/ChangeLog +++ b/gas/testsuite/ChangeLog @@ -1,4 +1,9 @@ 2006-05-08 Thiemo Seufer <ths@mips.com> + + * gas/mips/mips32.s, gas/mips/mips32.d: Extend testcase to check + larger offset arguments for cache instructions. + +2006-05-08 Thiemo Seufer <ths@mips.com> Nigel Stephens <nigel@mips.com> David Ung <davidu@mips.com> diff --git a/gas/testsuite/gas/mips/mips32.d b/gas/testsuite/gas/mips/mips32.d index cb226d8..631ef2c 100644 --- a/gas/testsuite/gas/mips/mips32.d +++ b/gas/testsuite/gas/mips/mips32.d @@ -38,19 +38,29 @@ Disassembly of section .text: 0+0070 <[^>]*> bc250000 cache 0x5,0\(at\) 0+0074 <[^>]*> bc457fff cache 0x5,32767\(v0\) 0+0078 <[^>]*> bc658000 cache 0x5,-32768\(v1\) -0+007c <[^>]*> 42000018 eret -0+0080 <[^>]*> 42000008 tlbp -0+0084 <[^>]*> 42000001 tlbr -0+0088 <[^>]*> 42000002 tlbwi -0+008c <[^>]*> 42000006 tlbwr -0+0090 <[^>]*> 42000020 wait -0+0094 <[^>]*> 42000020 wait -0+0098 <[^>]*> 4359e260 wait 0x56789 -0+009c <[^>]*> 0000000d break -0+00a0 <[^>]*> 0000000d break -0+00a4 <[^>]*> 0345000d break 0x345 -0+00a8 <[^>]*> 0048d14d break 0x48,0x345 -0+00ac <[^>]*> 7000003f sdbbp -0+00b0 <[^>]*> 7000003f sdbbp -0+00b4 <[^>]*> 7159e27f sdbbp 0x56789 - ... +0+007c <[^>]*> 3c010001 lui at,0x1 +0+0080 <[^>]*> 00240821 addu at,at,a0 +0+0084 <[^>]*> bc258000 cache 0x5,-32768\(at\) +0+0088 <[^>]*> 3c01ffff lui at,0xffff +0+008c <[^>]*> 00250821 addu at,at,a1 +0+0090 <[^>]*> bc257fff cache 0x5,32767\(at\) +0+0094 <[^>]*> 3c010001 lui at,0x1 +0+0098 <[^>]*> bc258000 cache 0x5,-32768\(at\) +0+009c <[^>]*> 3c01ffff lui at,0xffff +0+00a0 <[^>]*> bc257fff cache 0x5,32767\(at\) +0+00a4 <[^>]*> 42000018 eret +0+00a8 <[^>]*> 42000008 tlbp +0+00ac <[^>]*> 42000001 tlbr +0+00b0 <[^>]*> 42000002 tlbwi +0+00b4 <[^>]*> 42000006 tlbwr +0+00b8 <[^>]*> 42000020 wait +0+00bc <[^>]*> 42000020 wait +0+00c0 <[^>]*> 4359e260 wait 0x56789 +0+00c4 <[^>]*> 0000000d break +0+00c8 <[^>]*> 0000000d break +0+00cc <[^>]*> 0345000d break 0x345 +0+00d0 <[^>]*> 0048d14d break 0x48,0x345 +0+00d4 <[^>]*> 7000003f sdbbp +0+00d8 <[^>]*> 7000003f sdbbp +0+00dc <[^>]*> 7159e27f sdbbp 0x56789 + \.\.\. diff --git a/gas/testsuite/gas/mips/mips32.s b/gas/testsuite/gas/mips/mips32.s index b3fb6fe..ac3022f 100644 --- a/gas/testsuite/gas/mips/mips32.s +++ b/gas/testsuite/gas/mips/mips32.s @@ -49,6 +49,12 @@ text_label: cache 5, ($1) cache 5, 32767($2) cache 5, -32768($3) + .set at + cache 5, 32768($4) + cache 5, -32769($5) + cache 5, 32768 + cache 5, -32769 + .set noat eret tlbp tlbr |