Blame SOURCES/gdb-6.6-bz230000-power6-disassembly-test.patch

01917d
https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=230000
01917d
01917d
The original testcase
01917d
	https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=230000#c1
01917d
requires too recent GCC.
01917d
01917d
01917d
Index: gdb-7.5.50.20130215/gdb/testsuite/gdb.arch/powerpc-power6.exp
01917d
===================================================================
01917d
--- /dev/null	1970-01-01 00:00:00.000000000 +0000
01917d
+++ gdb-7.5.50.20130215/gdb/testsuite/gdb.arch/powerpc-power6.exp	2013-02-25 14:31:06.658827177 +0100
01917d
@@ -0,0 +1,54 @@
01917d
+# Copyright 2007 Free Software Foundation, Inc.
01917d
+
01917d
+# This program is free software; you can redistribute it and/or modify
01917d
+# it under the terms of the GNU General Public License as published by
01917d
+# the Free Software Foundation; either version 2 of the License, or
01917d
+# (at your option) any later version.
01917d
+#
01917d
+# This program is distributed in the hope that it will be useful,
01917d
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
01917d
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
01917d
+# GNU General Public License for more details.
01917d
+#
01917d
+# You should have received a copy of the GNU General Public License
01917d
+# along with this program; if not, write to the Free Software
01917d
+# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  
01917d
+
01917d
+# Test PowerPC Power6 instructions disassembly.
01917d
+
01917d
+if {![istarget "powerpc*-*-*"]} then {
01917d
+    verbose "Skipping PowerPC Power6 instructions disassembly."
01917d
+    return
01917d
+}
01917d
+
01917d
+set testfile "powerpc-power6"
01917d
+set srcfile ${testfile}.s
01917d
+set objfile ${objdir}/${subdir}/${testfile}.o
01917d
+
01917d
+if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${objfile}" object {debug}] != "" } {
01917d
+    untested "PowerPC prologue tests"
01917d
+    return -1
01917d
+}
01917d
+
01917d
+
01917d
+gdb_exit
01917d
+gdb_start
01917d
+gdb_reinitialize_dir $srcdir/$subdir
01917d
+gdb_load ${objfile}
01917d
+
01917d
+# Disassemble the function.
01917d
+
01917d
+gdb_test "disass func" ":\tblr\r\n.*" "Basic disassembly"
01917d
+
01917d
+gdb_test "disass func" ":\tdcbzl  *r8,r9\r\n.*" "Power5 disassembly dcbzl"
01917d
+gdb_test "disass func" ":\tfrsqrtes  *f10,f11\r\n.*" "Power5 disassembly frsqrtes"
01917d
+gdb_test "disass func" ":\tdadd  *f1,f2,f1\r\n.*" "Power6 disassembly dadd"
01917d
+gdb_test "disass func" ":\tdaddq  *f0,f2,f0\r\n.*" "Power6 disassembly daddq"
01917d
+gdb_test "disass func" ":\tdsub  *f1,f2,f1\r\n.*" "Power6 disassembly dsub"
01917d
+gdb_test "disass func" ":\tdsubq  *f0,f2,f0\r\n.*" "Power6 disassembly dsubq"
01917d
+gdb_test "disass func" ":\tdmul  *f1,f2,f1\r\n.*" "Power6 disassembly dmul"
01917d
+gdb_test "disass func" ":\tdmulq  *f0,f2,f0\r\n.*" "Power6 disassembly dmulq"
01917d
+gdb_test "disass func" ":\tddiv  *f1,f2,f1\r\n.*" "Power6 disassembly ddiv"
01917d
+gdb_test "disass func" ":\tddivq  *f0,f2,f0\r\n.*" "Power6 disassembly ddivq"
01917d
+gdb_test "disass func" ":\tdcmpu  *cr1,f2,f1\r\n.*" "Power6 disassembly dcmpu"
01917d
+gdb_test "disass func" ":\tdcmpuq  *cr1,f2,f0\r\n.*" "Power6 disassembly dcmpuq"
01917d
Index: gdb-7.5.50.20130215/gdb/testsuite/gdb.arch/powerpc-power6.s
01917d
===================================================================
01917d
--- /dev/null	1970-01-01 00:00:00.000000000 +0000
01917d
+++ gdb-7.5.50.20130215/gdb/testsuite/gdb.arch/powerpc-power6.s	2013-02-25 14:31:06.659827178 +0100
01917d
@@ -0,0 +1,16 @@
01917d
+	.text
01917d
+	.globl	func
01917d
+func:
01917d
+	blr
01917d
+	.long	0x7c284fec	/* dcbzl	r8,r9		*/
01917d
+	.long	0xed405834	/* frsqrtes	f10,f11		*/
01917d
+	.long	0xec220804	/* dadd		f1,f2,f1	*/
01917d
+	.long	0xfc020004	/* daddq	f0,f2,f0	*/
01917d
+	.long	0xec220c04	/* dsub		f1,f2,f1	*/
01917d
+	.long	0xfc020404	/* dsubq	f0,f2,f0	*/
01917d
+	.long	0xec220844	/* dmul		f1,f2,f1	*/
01917d
+	.long	0xfc020044	/* dmulq	f0,f2,f0	*/
01917d
+	.long	0xec220c44	/* ddiv		f1,f2,f1	*/
01917d
+	.long	0xfc020444	/* ddivq	f0,f2,f0	*/
01917d
+	.long	0xec820d04	/* dcmpu	cr1,f2,f1	*/
01917d
+	.long	0xfc820504	/* dcmpuq	cr1,f2,f0	*/