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

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