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

93189d
From FEDORA_PATCHES Mon Sep 17 00:00:00 2001
93189d
From: Fedora GDB patches <invalid@email.com>
93189d
Date: Fri, 27 Oct 2017 21:07:50 +0200
93189d
Subject: gdb-6.6-bz230000-power6-disassembly-test.patch
93189d
93189d
;; Testcase for PPC Power6/DFP instructions disassembly (BZ 230000).
93189d
;;=fedoratest
93189d
93189d
https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=230000
93189d
93189d
The original testcase
93189d
	https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=230000#c1
93189d
requires too recent GCC.
93189d
93189d
diff --git a/gdb/testsuite/gdb.arch/powerpc-power6.exp b/gdb/testsuite/gdb.arch/powerpc-power6.exp
93189d
new file mode 100644
93189d
--- /dev/null
93189d
+++ b/gdb/testsuite/gdb.arch/powerpc-power6.exp
93189d
@@ -0,0 +1,54 @@
93189d
+# Copyright 2007 Free Software Foundation, Inc.
93189d
+
93189d
+# This program is free software; you can redistribute it and/or modify
93189d
+# it under the terms of the GNU General Public License as published by
93189d
+# the Free Software Foundation; either version 2 of the License, or
93189d
+# (at your option) any later version.
93189d
+#
93189d
+# This program is distributed in the hope that it will be useful,
93189d
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
93189d
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
93189d
+# GNU General Public License for more details.
93189d
+#
93189d
+# You should have received a copy of the GNU General Public License
93189d
+# along with this program; if not, write to the Free Software
93189d
+# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
93189d
+
93189d
+# Test PowerPC Power6 instructions disassembly.
93189d
+
93189d
+if {![istarget "powerpc*-*-*"]} then {
93189d
+    verbose "Skipping PowerPC Power6 instructions disassembly."
93189d
+    return
93189d
+}
93189d
+
93189d
+set testfile "powerpc-power6"
93189d
+set srcfile ${testfile}.s
93189d
+set objfile [standard_output_file ${testfile}.o]
93189d
+
93189d
+if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${objfile}" object {debug}] != "" } {
93189d
+    untested "PowerPC prologue tests"
93189d
+    return -1
93189d
+}
93189d
+
93189d
+
93189d
+gdb_exit
93189d
+gdb_start
93189d
+gdb_reinitialize_dir $srcdir/$subdir
93189d
+gdb_load ${objfile}
93189d
+
93189d
+# Disassemble the function.
93189d
+
93189d
+gdb_test "disass func" ":\tblr\r\n.*" "Basic disassembly"
93189d
+
93189d
+gdb_test "disass func" ":\tdcbzl  *r8,r9\r\n.*" "Power5 disassembly dcbzl"
93189d
+gdb_test "disass func" ":\tfrsqrtes  *f10,f11\r\n.*" "Power5 disassembly frsqrtes"
93189d
+gdb_test "disass func" ":\tdadd  *f1,f2,f1\r\n.*" "Power6 disassembly dadd"
93189d
+gdb_test "disass func" ":\tdaddq  *f0,f2,f0\r\n.*" "Power6 disassembly daddq"
93189d
+gdb_test "disass func" ":\tdsub  *f1,f2,f1\r\n.*" "Power6 disassembly dsub"
93189d
+gdb_test "disass func" ":\tdsubq  *f0,f2,f0\r\n.*" "Power6 disassembly dsubq"
93189d
+gdb_test "disass func" ":\tdmul  *f1,f2,f1\r\n.*" "Power6 disassembly dmul"
93189d
+gdb_test "disass func" ":\tdmulq  *f0,f2,f0\r\n.*" "Power6 disassembly dmulq"
93189d
+gdb_test "disass func" ":\tddiv  *f1,f2,f1\r\n.*" "Power6 disassembly ddiv"
93189d
+gdb_test "disass func" ":\tddivq  *f0,f2,f0\r\n.*" "Power6 disassembly ddivq"
93189d
+gdb_test "disass func" ":\tdcmpu  *cr1,f2,f1\r\n.*" "Power6 disassembly dcmpu"
93189d
+gdb_test "disass func" ":\tdcmpuq  *cr1,f2,f0\r\n.*" "Power6 disassembly dcmpuq"
93189d
diff --git a/gdb/testsuite/gdb.arch/powerpc-power6.s b/gdb/testsuite/gdb.arch/powerpc-power6.s
93189d
new file mode 100644
93189d
--- /dev/null
93189d
+++ b/gdb/testsuite/gdb.arch/powerpc-power6.s
93189d
@@ -0,0 +1,16 @@
93189d
+	.text
93189d
+	.globl	func
93189d
+func:
93189d
+	blr
93189d
+	.long	0x7c284fec	/* dcbzl	r8,r9		*/
93189d
+	.long	0xed405834	/* frsqrtes	f10,f11		*/
93189d
+	.long	0xec220804	/* dadd		f1,f2,f1	*/
93189d
+	.long	0xfc020004	/* daddq	f0,f2,f0	*/
93189d
+	.long	0xec220c04	/* dsub		f1,f2,f1	*/
93189d
+	.long	0xfc020404	/* dsubq	f0,f2,f0	*/
93189d
+	.long	0xec220844	/* dmul		f1,f2,f1	*/
93189d
+	.long	0xfc020044	/* dmulq	f0,f2,f0	*/
93189d
+	.long	0xec220c44	/* ddiv		f1,f2,f1	*/
93189d
+	.long	0xfc020444	/* ddivq	f0,f2,f0	*/
93189d
+	.long	0xec820d04	/* dcmpu	cr1,f2,f1	*/
93189d
+	.long	0xfc820504	/* dcmpuq	cr1,f2,f0	*/