Blame SOURCES/gdb-6.6-bz237572-ppc-atomic-sequence-test.patch

6240d7
From FEDORA_PATCHES Mon Sep 17 00:00:00 2001
6240d7
From: Jan Kratochvil <jan.kratochvil@redhat.com>
6240d7
Date: Fri, 27 Oct 2017 21:07:50 +0200
6240d7
Subject: gdb-6.6-bz237572-ppc-atomic-sequence-test.patch
6240d7
6240d7
;; Support for stepping over PPC atomic instruction sequences (BZ 237572).
6240d7
;;=fedoratest
6240d7
6240d7
2007-06-25  Jan Kratochvil  <jan.kratochvil@redhat.com>
6240d7
6240d7
	* gdb.threads/atomic-seq-threaded.c,
6240d7
	gdb.threads/atomic-seq-threaded.exp: New files.
6240d7
6240d7
diff --git a/gdb/testsuite/gdb.threads/atomic-seq-threaded.c b/gdb/testsuite/gdb.threads/atomic-seq-threaded.c
6240d7
new file mode 100644
6240d7
--- /dev/null
6240d7
+++ b/gdb/testsuite/gdb.threads/atomic-seq-threaded.c
6240d7
@@ -0,0 +1,171 @@
6240d7
+/* This testcase is part of GDB, the GNU debugger.
6240d7
+
6240d7
+   Copyright 2007 Free Software Foundation, Inc.
6240d7
+
6240d7
+   This program is free software; you can redistribute it and/or modify
6240d7
+   it under the terms of the GNU General Public License as published by
6240d7
+   the Free Software Foundation; either version 2 of the License, or
6240d7
+   (at your option) any later version.
6240d7
+
6240d7
+   This program is distributed in the hope that it will be useful,
6240d7
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
6240d7
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
6240d7
+   GNU General Public License for more details.
6240d7
+ 
6240d7
+   You should have received a copy of the GNU General Public License
6240d7
+   along with this program; if not, write to the Free Software
6240d7
+   Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
6240d7
+   MA 02110-1301, USA.  */
6240d7
+
6240d7
+/* Test stepping over RISC atomic sequences.
6240d7
+   This variant testcases the code for stepping another thread while skipping
6240d7
+   over the atomic sequence in the former thread
6240d7
+   (STEPPING_PAST_SINGLESTEP_BREAKPOINT).
6240d7
+   Code comes from gcc/testsuite/gcc.dg/sync-2.c  */
6240d7
+
6240d7
+/* { dg-options "-march=i486" { target { { i?86-*-* x86_64-*-* } && ilp32 } } } */
6240d7
+/* { dg-options "-mcpu=v9" { target sparc*-*-* } } */
6240d7
+
6240d7
+/* Test functionality of the intrinsics for 'short' and 'char'.  */
6240d7
+
6240d7
+#include <stdlib.h>
6240d7
+#include <string.h>
6240d7
+#include <pthread.h>
6240d7
+#include <assert.h>
6240d7
+#include <unistd.h>
6240d7
+
6240d7
+#define LOOPS 2
6240d7
+
6240d7
+static int unused;
6240d7
+
6240d7
+static char AI[18];
6240d7
+static char init_qi[18] = { 3,5,7,9,0,0,0,0,-1,0,0,0,0,0,-1,0,0,0 };
6240d7
+static char test_qi[18] = { 3,5,7,9,1,4,22,-12,7,8,9,7,1,-12,7,8,9,7 };
6240d7
+
6240d7
+static void
6240d7
+do_qi (void)
6240d7
+{
6240d7
+  if (__sync_fetch_and_add(AI+4, 1) != 0)
6240d7
+    abort ();
6240d7
+  if (__sync_fetch_and_add(AI+5, 4) != 0)
6240d7
+    abort ();
6240d7
+  if (__sync_fetch_and_add(AI+6, 22) != 0)
6240d7
+    abort ();
6240d7
+  if (__sync_fetch_and_sub(AI+7, 12) != 0)
6240d7
+    abort ();
6240d7
+  if (__sync_fetch_and_and(AI+8, 7) != (char)-1)
6240d7
+    abort ();
6240d7
+  if (__sync_fetch_and_or(AI+9, 8) != 0)
6240d7
+    abort ();
6240d7
+  if (__sync_fetch_and_xor(AI+10, 9) != 0)
6240d7
+    abort ();
6240d7
+  if (__sync_fetch_and_nand(AI+11, 7) != 0)
6240d7
+    abort ();
6240d7
+
6240d7
+  if (__sync_add_and_fetch(AI+12, 1) != 1)
6240d7
+    abort ();
6240d7
+  if (__sync_sub_and_fetch(AI+13, 12) != (char)-12)
6240d7
+    abort ();
6240d7
+  if (__sync_and_and_fetch(AI+14, 7) != 7)
6240d7
+    abort ();
6240d7
+  if (__sync_or_and_fetch(AI+15, 8) != 8)
6240d7
+    abort ();
6240d7
+  if (__sync_xor_and_fetch(AI+16, 9) != 9)
6240d7
+    abort ();
6240d7
+  if (__sync_nand_and_fetch(AI+17, 7) != 7)
6240d7
+    abort ();
6240d7
+}
6240d7
+
6240d7
+static short AL[18];
6240d7
+static short init_hi[18] = { 3,5,7,9,0,0,0,0,-1,0,0,0,0,0,-1,0,0,0 };
6240d7
+static short test_hi[18] = { 3,5,7,9,1,4,22,-12,7,8,9,7,1,-12,7,8,9,7 };
6240d7
+
6240d7
+static void
6240d7
+do_hi (void)
6240d7
+{
6240d7
+  if (__sync_fetch_and_add(AL+4, 1) != 0)
6240d7
+    abort ();
6240d7
+  if (__sync_fetch_and_add(AL+5, 4) != 0)
6240d7
+    abort ();
6240d7
+  if (__sync_fetch_and_add(AL+6, 22) != 0)
6240d7
+    abort ();
6240d7
+  if (__sync_fetch_and_sub(AL+7, 12) != 0)
6240d7
+    abort ();
6240d7
+  if (__sync_fetch_and_and(AL+8, 7) != -1)
6240d7
+    abort ();
6240d7
+  if (__sync_fetch_and_or(AL+9, 8) != 0)
6240d7
+    abort ();
6240d7
+  if (__sync_fetch_and_xor(AL+10, 9) != 0)
6240d7
+    abort ();
6240d7
+  if (__sync_fetch_and_nand(AL+11, 7) != 0)
6240d7
+    abort ();
6240d7
+
6240d7
+  if (__sync_add_and_fetch(AL+12, 1) != 1)
6240d7
+    abort ();
6240d7
+  if (__sync_sub_and_fetch(AL+13, 12) != -12)
6240d7
+    abort ();
6240d7
+  if (__sync_and_and_fetch(AL+14, 7) != 7)
6240d7
+    abort ();
6240d7
+  if (__sync_or_and_fetch(AL+15, 8) != 8)
6240d7
+    abort ();
6240d7
+  if (__sync_xor_and_fetch(AL+16, 9) != 9)
6240d7
+    abort ();
6240d7
+  if (__sync_nand_and_fetch(AL+17, 7) != 7)
6240d7
+    abort ();
6240d7
+}
6240d7
+
6240d7
+static void *
6240d7
+start1 (void *arg)
6240d7
+{
6240d7
+  unsigned loop;
6240d7
+  sleep(1);
6240d7
+
6240d7
+  for (loop = 0; loop < LOOPS; loop++)
6240d7
+    {
6240d7
+      memcpy(AI, init_qi, sizeof(init_qi));
6240d7
+
6240d7
+      do_qi ();
6240d7
+
6240d7
+      if (memcmp (AI, test_qi, sizeof(test_qi)))
6240d7
+	abort ();
6240d7
+    }
6240d7
+
6240d7
+  return arg;						/* _delete1_ */
6240d7
+}
6240d7
+
6240d7
+static void *
6240d7
+start2 (void *arg)
6240d7
+{
6240d7
+  unsigned loop;
6240d7
+
6240d7
+  for (loop = 0; loop < LOOPS; loop++)
6240d7
+    {
6240d7
+      memcpy(AL, init_hi, sizeof(init_hi));
6240d7
+
6240d7
+      do_hi ();
6240d7
+
6240d7
+      if (memcmp (AL, test_hi, sizeof(test_hi)))
6240d7
+	abort ();
6240d7
+    }
6240d7
+
6240d7
+  return arg;						/* _delete2_ */
6240d7
+}
6240d7
+
6240d7
+int
6240d7
+main (int argc, char **argv)
6240d7
+{
6240d7
+  pthread_t thread;
6240d7
+  int i;
6240d7
+
6240d7
+  i = pthread_create (&thread, NULL, start1, NULL);	/* _create_ */
6240d7
+  assert (i == 0);					/* _create_after_ */
6240d7
+
6240d7
+  sleep (1);
6240d7
+
6240d7
+  start2 (NULL);
6240d7
+
6240d7
+  i = pthread_join (thread, NULL);			/* _delete_ */
6240d7
+  assert (i == 0);
6240d7
+
6240d7
+  return 0;						/* _exit_ */
6240d7
+}
6240d7
diff --git a/gdb/testsuite/gdb.threads/atomic-seq-threaded.exp b/gdb/testsuite/gdb.threads/atomic-seq-threaded.exp
6240d7
new file mode 100644
6240d7
--- /dev/null
6240d7
+++ b/gdb/testsuite/gdb.threads/atomic-seq-threaded.exp
6240d7
@@ -0,0 +1,84 @@
6240d7
+# atomic-seq-threaded.exp -- Test case for stepping over RISC atomic code seqs.
6240d7
+# This variant testcases the code for stepping another thread while skipping
6240d7
+# over the atomic sequence in the former thread
6240d7
+# (STEPPING_PAST_SINGLESTEP_BREAKPOINT).
6240d7
+# Copyright (C) 2007 Free Software Foundation, Inc.
6240d7
+
6240d7
+# This program is free software; you can redistribute it and/or modify
6240d7
+# it under the terms of the GNU General Public License as published by
6240d7
+# the Free Software Foundation; either version 2 of the License, or
6240d7
+# (at your option) any later version.
6240d7
+# 
6240d7
+# This program is distributed in the hope that it will be useful,
6240d7
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
6240d7
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
6240d7
+# GNU General Public License for more details.
6240d7
+# 
6240d7
+# You should have received a copy of the GNU General Public License
6240d7
+# along with this program; if not, write to the Free Software
6240d7
+# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */
6240d7
+
6240d7
+# Please email any bugs, comments, and/or additions to this file to:
6240d7
+# bug-gdb@prep.ai.mit.edu
6240d7
+
6240d7
+set testfile atomic-seq-threaded
6240d7
+set srcfile ${testfile}.c
6240d7
+set binfile [standard_output_file ${testfile}]
6240d7
+
6240d7
+foreach opts {{} {compiler=gcc4} {FAIL}} {
6240d7
+    if {$opts eq "FAIL"} {
6240d7
+	return -1
6240d7
+    }
6240d7
+    if {[gdb_compile_pthreads "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable [list debug $opts]] eq "" } {
6240d7
+	break
6240d7
+    }
6240d7
+}
6240d7
+
6240d7
+gdb_exit
6240d7
+gdb_start
6240d7
+gdb_reinitialize_dir $srcdir/$subdir
6240d7
+
6240d7
+gdb_load ${binfile}
6240d7
+if ![runto_main] then {
6240d7
+   fail "Can't run to main"
6240d7
+   return 0
6240d7
+}
6240d7
+
6240d7
+# pthread_create () will not pass even on x86_64 with software watchpoint.
6240d7
+# Pass after pthread_create () without any watchpoint active.
6240d7
+set line [gdb_get_line_number "_create_after_"]
6240d7
+gdb_test "tbreak $line" \
6240d7
+	 "reakpoint (\[0-9\]+) at .*$srcfile, line $line\..*" \
6240d7
+	 "set breakpoint after pthread_create ()"
6240d7
+gdb_test "c" \
6240d7
+	 ".*/\\* _create_after_ \\*/.*" \
6240d7
+	 "run till after pthread_create ()"
6240d7
+
6240d7
+# Without a watchpoint being software no single-stepping would be used.
6240d7
+set test "Start (software) watchpoint"
6240d7
+gdb_test_multiple "watch unused" $test {
6240d7
+    -re "Watchpoint \[0-9\]+: unused.*$gdb_prompt $" {
6240d7
+	pass $test
6240d7
+    }
6240d7
+    -re "Hardware watchpoint \[0-9\]+: unused.*$gdb_prompt $" {
6240d7
+	# We do not test the goal but still the whole testcase should pass.
6240d7
+	unsupported $test
6240d7
+    }
6240d7
+}
6240d7
+
6240d7
+# More thorough testing of the scheduling logic.
6240d7
+gdb_test "set scheduler-locking step" ""
6240d7
+
6240d7
+# Critical code path is stepped through at this point.
6240d7
+set line [gdb_get_line_number "_exit_"]
6240d7
+gdb_test "tbreak $line" \
6240d7
+	 "reakpoint \[0-9\]+ at .*$srcfile, line $line\..*" \
6240d7
+	 "set breakpoint at _exit_"
6240d7
+gdb_test "c" \
6240d7
+	 ".*/\\* _exit_ \\*/.*" \
6240d7
+	 "run till _exit_"
6240d7
+
6240d7
+# Just a nonproblematic program exit.
6240d7
+gdb_test "c" \
6240d7
+	 ".*Program exited normally\\..*" \
6240d7
+	 "run till program exit"