diff options
author | Peter Bergner <bergner@vnet.ibm.com> | 2012-08-15 21:25:21 +0000 |
---|---|---|
committer | Peter Bergner <bergner@vnet.ibm.com> | 2012-08-15 21:25:21 +0000 |
commit | 588925d0654555b1a0024f18bb7c0e073b285686 (patch) | |
tree | 2c2cd2b1e2eaf096e845511e1b32096ecbd74132 /gas | |
parent | 9f6a6cc022e1be500d3e49da1ad8bb2463b6da1b (diff) | |
download | gdb-588925d0654555b1a0024f18bb7c0e073b285686.zip gdb-588925d0654555b1a0024f18bb7c0e073b285686.tar.gz gdb-588925d0654555b1a0024f18bb7c0e073b285686.tar.bz2 |
opcodes/
* ppc-opc.c <RSQ, RTQ>: Use PPC_OPERAND_GPR.
gas/testsuite/
* gas/ppc/power4.s <lq, stq>: Add more tests.
* gas/ppc/power4.d: Likewise.
Diffstat (limited to 'gas')
-rw-r--r-- | gas/testsuite/ChangeLog | 5 | ||||
-rw-r--r-- | gas/testsuite/gas/ppc/power4.d | 8 | ||||
-rw-r--r-- | gas/testsuite/gas/ppc/power4.s | 7 |
3 files changed, 19 insertions, 1 deletions
diff --git a/gas/testsuite/ChangeLog b/gas/testsuite/ChangeLog index 5d903ab..5ccb640 100644 --- a/gas/testsuite/ChangeLog +++ b/gas/testsuite/ChangeLog @@ -1,5 +1,10 @@ 2012-08-15 Peter Bergner <bergner@vnet.ibm.com> + * gas/ppc/power4.s <lq, stq>: Add more tests. + * gas/ppc/power4.d: Likewise. + +2012-08-15 Peter Bergner <bergner@vnet.ibm.com> + * gas/ppc/common.d ("nop", "xnop"): Add tests. * gas/ppc/common.s: Likewise. * gas/ppc/power7.d ("yield", "mdoio", "mdoom"): Add tests. diff --git a/gas/testsuite/gas/ppc/power4.d b/gas/testsuite/gas/ppc/power4.d index 333c90d..f5978c8 100644 --- a/gas/testsuite/gas/ppc/power4.d +++ b/gas/testsuite/gas/ppc/power4.d @@ -10,7 +10,7 @@ start address 0x0+ Sections: Idx Name +Size +VMA +LMA +File off +Algn - +0 \.text +0+c4 +0+ +0+ +.* + +0 \.text +0+dc +0+ +0+ +.* +CONTENTS, ALLOC, LOAD, RELOC, READONLY, CODE +1 \.data +0+10 +0+ +0+ +.* +CONTENTS, ALLOC, LOAD, DATA @@ -102,3 +102,9 @@ Disassembly of section \.text: +b8: 7c 01 17 ec dcbz r1,r2 +bc: 7c 23 27 ec dcbzl r3,r4 +c0: 7c 05 37 ec dcbz r5,r6 + +c4: e0 40 00 10 lq r2,16\(0\) + +c8: e0 05 00 10 lq r0,16\(r5\) + +cc: e0 45 00 10 lq r2,16\(r5\) + +d0: f8 40 00 12 stq r2,16\(0\) + +d4: f8 05 00 12 stq r0,16\(r5\) + +d8: f8 45 00 12 stq r2,16\(r5\) diff --git a/gas/testsuite/gas/ppc/power4.s b/gas/testsuite/gas/ppc/power4.s index f2a162d..7e9042d 100644 --- a/gas/testsuite/gas/ppc/power4.s +++ b/gas/testsuite/gas/ppc/power4.s @@ -72,6 +72,13 @@ dsym1: dcbzl 3, 4 dcbz 5, 6 + lq 2,16(0) + lq 0,16(5) + lq 2,16(5) + stq 2,16(0) + stq 0,16(5) + stq 2,16(5) + .section ".data" usym0: .llong 0xcafebabe usym1: |