Blame SOURCES/gdb-rhbz1480496-power-atomic-step-5of5.patch

2c2fa1
commit 2039d74e780db6659c87cd3c426d526615cfe703
2c2fa1
Author: Edjunior Barbosa Machado <emachado@linux.vnet.ibm.com>
2c2fa1
Date:   Tue Feb 21 11:14:56 2017 -0300
2c2fa1
2c2fa1
    [ppc64] Add POWER8/ISA 2.07 atomic sequences single-stepping support
2c2fa1
    
2c2fa1
    gdb/
2c2fa1
    2017-02-21  Edjunior Barbosa Machado  <emachado@linux.vnet.ibm.com>
2c2fa1
    
2c2fa1
            * rs6000-tdep.c (LOAD_AND_RESERVE_MASK): Rename from LWARX_MASK.
2c2fa1
            (STORE_CONDITIONAL_MASK): Rename from STWCX_MASK.
2c2fa1
            (LBARX_INSTRUCTION, LHARX_INSTRUCTION, LQARX_INSTRUCTION,
2c2fa1
            STBCX_INSTRUCTION, STHCX_INSTRUCTION, STQCX_INSTRUCTION): New defines.
2c2fa1
            (IS_LOAD_AND_RESERVE_INSN, IS_STORE_CONDITIONAL_INSN): New macros.
2c2fa1
            (ppc_displaced_step_copy_insn): Use IS_LOAD_AND_RESERVE_INSN.
2c2fa1
            (ppc_deal_with_atomic_sequence): Use IS_LOAD_AND_RESERVE_INSN and
2c2fa1
            IS_STORE_CONDITIONAL_INSN.
2c2fa1
    
2c2fa1
    gdb/testsuite/
2c2fa1
    2017-02-21  Edjunior Barbosa Machado  <emachado@linux.vnet.ibm.com>
2c2fa1
    
2c2fa1
            * gdb.arch/ppc64-isa207-atomic-inst.exp: New testcase based on
2c2fa1
            gdb.arch/ppc64-atomic-inst.exp.  Add tests for lbarx/stbcx, lharx/sthcx
2c2fa1
            and lqarx/stqcx.
2c2fa1
            * gdb.arch/ppc64-isa207-atomic-inst.S: New file.
2c2fa1
            * gdb.arch/ppc64-isa207-atomic-inst.c: Likewise.
2c2fa1
2c2fa1
### a/gdb/ChangeLog
2c2fa1
### b/gdb/ChangeLog
2c2fa1
## -1,3 +1,14 @@
2c2fa1
+2017-02-21  Edjunior Barbosa Machado  <emachado@linux.vnet.ibm.com>
2c2fa1
+
2c2fa1
+	* rs6000-tdep.c (LOAD_AND_RESERVE_MASK): Rename from LWARX_MASK.
2c2fa1
+	(STORE_CONDITIONAL_MASK): Rename from STWCX_MASK.
2c2fa1
+	(LBARX_INSTRUCTION, LHARX_INSTRUCTION, LQARX_INSTRUCTION,
2c2fa1
+	STBCX_INSTRUCTION, STHCX_INSTRUCTION, STQCX_INSTRUCTION): New defines.
2c2fa1
+	(IS_LOAD_AND_RESERVE_INSN, IS_STORE_CONDITIONAL_INSN): New macros.
2c2fa1
+	(ppc_displaced_step_copy_insn): Use IS_LOAD_AND_RESERVE_INSN.
2c2fa1
+	(ppc_deal_with_atomic_sequence): Use IS_LOAD_AND_RESERVE_INSN and
2c2fa1
+	IS_STORE_CONDITIONAL_INSN.
2c2fa1
+
2c2fa1
 2017-02-21  Jan Kratochvil  <jan.kratochvil@redhat.com>
2c2fa1
 
2c2fa1
 	* dwarf2_rnglists_process: Initialize range_beginning and range_end.
2c2fa1
Index: gdb-7.6.1/gdb/rs6000-tdep.c
2c2fa1
===================================================================
2c2fa1
--- gdb-7.6.1.orig/gdb/rs6000-tdep.c	2017-08-29 21:41:48.797481976 +0200
2c2fa1
+++ gdb-7.6.1/gdb/rs6000-tdep.c	2017-08-29 21:44:12.643863483 +0200
2c2fa1
@@ -977,12 +977,33 @@
2c2fa1
 
2c2fa1
 /* Instruction masks used during single-stepping of atomic
2c2fa1
    sequences.  */
2c2fa1
-#define LWARX_MASK 0xfc0007fe
2c2fa1
+#define LOAD_AND_RESERVE_MASK 0xfc0007fe
2c2fa1
 #define LWARX_INSTRUCTION 0x7c000028
2c2fa1
 #define LDARX_INSTRUCTION 0x7c0000A8
2c2fa1
-#define STWCX_MASK 0xfc0007ff
2c2fa1
+#define LBARX_INSTRUCTION 0x7c000068
2c2fa1
+#define LHARX_INSTRUCTION 0x7c0000e8
2c2fa1
+#define LQARX_INSTRUCTION 0x7c000228
2c2fa1
+#define STORE_CONDITIONAL_MASK 0xfc0007ff
2c2fa1
 #define STWCX_INSTRUCTION 0x7c00012d
2c2fa1
 #define STDCX_INSTRUCTION 0x7c0001ad
2c2fa1
+#define STBCX_INSTRUCTION 0x7c00056d
2c2fa1
+#define STHCX_INSTRUCTION 0x7c0005ad
2c2fa1
+#define STQCX_INSTRUCTION 0x7c00016d
2c2fa1
+
2c2fa1
+/* Check if insn is one of the Load And Reserve instructions used for atomic
2c2fa1
+   sequences.  */
2c2fa1
+#define IS_LOAD_AND_RESERVE_INSN(insn)	((insn & LOAD_AND_RESERVE_MASK) == LWARX_INSTRUCTION \
2c2fa1
+					 || (insn & LOAD_AND_RESERVE_MASK) == LDARX_INSTRUCTION \
2c2fa1
+					 || (insn & LOAD_AND_RESERVE_MASK) == LBARX_INSTRUCTION \
2c2fa1
+					 || (insn & LOAD_AND_RESERVE_MASK) == LHARX_INSTRUCTION \
2c2fa1
+					 || (insn & LOAD_AND_RESERVE_MASK) == LQARX_INSTRUCTION)
2c2fa1
+/* Check if insn is one of the Store Conditional instructions used for atomic
2c2fa1
+   sequences.  */
2c2fa1
+#define IS_STORE_CONDITIONAL_INSN(insn)	((insn & STORE_CONDITIONAL_MASK) == STWCX_INSTRUCTION \
2c2fa1
+					 || (insn & STORE_CONDITIONAL_MASK) == STDCX_INSTRUCTION \
2c2fa1
+					 || (insn & STORE_CONDITIONAL_MASK) == STBCX_INSTRUCTION \
2c2fa1
+					 || (insn & STORE_CONDITIONAL_MASK) == STHCX_INSTRUCTION \
2c2fa1
+					 || (insn & STORE_CONDITIONAL_MASK) == STQCX_INSTRUCTION)
2c2fa1
 
2c2fa1
 /* We can't displaced step atomic sequences.  Otherwise this is just
2c2fa1
    like simple_displaced_step_copy_insn.  */
2c2fa1
@@ -1002,9 +1023,8 @@
2c2fa1
 
2c2fa1
   insn = extract_signed_integer (buf, PPC_INSN_SIZE, byte_order);
2c2fa1
 
2c2fa1
-  /* Assume all atomic sequences start with a lwarx/ldarx instruction.  */
2c2fa1
-  if ((insn & LWARX_MASK) == LWARX_INSTRUCTION
2c2fa1
-      || (insn & LWARX_MASK) == LDARX_INSTRUCTION)
2c2fa1
+  /* Assume all atomic sequences start with a Load and Reserve instruction.  */
2c2fa1
+  if (IS_LOAD_AND_RESERVE_INSN (insn))
2c2fa1
     {
2c2fa1
       if (debug_displaced)
2c2fa1
 	{
2c2fa1
@@ -1132,11 +1152,10 @@
2c2fa1
   return 1;
2c2fa1
 }
2c2fa1
 
2c2fa1
-/* Checks for an atomic sequence of instructions beginning with a LWARX/LDARX
2c2fa1
-   instruction and ending with a STWCX/STDCX instruction.  If such a sequence
2c2fa1
-   is found, attempt to step through it.  A breakpoint is placed at the end of 
2c2fa1
-   the sequence.  */
2c2fa1
-
2c2fa1
+/* Checks for an atomic sequence of instructions beginning with a
2c2fa1
+   Load And Reserve instruction and ending with a Store Conditional
2c2fa1
+   instruction.  If such a sequence is found, attempt to step through it.
2c2fa1
+   A breakpoint is placed at the end of the sequence.  */
2c2fa1
 int 
2c2fa1
 ppc_deal_with_atomic_sequence (struct frame_info *frame)
2c2fa1
 {
2c2fa1
@@ -1155,9 +1174,8 @@
2c2fa1
   int opcode; /* Branch instruction's OPcode.  */
2c2fa1
   int bc_insn_count = 0; /* Conditional branch instruction count.  */
2c2fa1
 
2c2fa1
-  /* Assume all atomic sequences start with a lwarx/ldarx instruction.  */
2c2fa1
-  if ((insn & LWARX_MASK) != LWARX_INSTRUCTION
2c2fa1
-      && (insn & LWARX_MASK) != LDARX_INSTRUCTION)
2c2fa1
+  /* Assume all atomic sequences start with a Load And Reserve instruction.  */
2c2fa1
+  if (!IS_LOAD_AND_RESERVE_INSN (insn))
2c2fa1
     return 0;
2c2fa1
 
2c2fa1
   /* Assume that no atomic sequence is longer than "atomic_sequence_length" 
2c2fa1
@@ -1188,14 +1206,13 @@
2c2fa1
 	  last_breakpoint++;
2c2fa1
         }
2c2fa1
 
2c2fa1
-      if ((insn & STWCX_MASK) == STWCX_INSTRUCTION
2c2fa1
-          || (insn & STWCX_MASK) == STDCX_INSTRUCTION)
2c2fa1
+      if (IS_STORE_CONDITIONAL_INSN (insn))
2c2fa1
         break;
2c2fa1
     }
2c2fa1
 
2c2fa1
-  /* Assume that the atomic sequence ends with a stwcx/stdcx instruction.  */
2c2fa1
-  if ((insn & STWCX_MASK) != STWCX_INSTRUCTION
2c2fa1
-      && (insn & STWCX_MASK) != STDCX_INSTRUCTION)
2c2fa1
+  /* Assume that the atomic sequence ends with a Store Conditional
2c2fa1
+     instruction.  */
2c2fa1
+  if (!IS_STORE_CONDITIONAL_INSN (insn))
2c2fa1
     return 0;
2c2fa1
 
2c2fa1
   closing_insn = loc;
2c2fa1
Index: gdb-7.6.1/gdb/testsuite/gdb.arch/ppc64-isa207-atomic-inst.S
2c2fa1
===================================================================
2c2fa1
--- /dev/null	1970-01-01 00:00:00.000000000 +0000
2c2fa1
+++ gdb-7.6.1/gdb/testsuite/gdb.arch/ppc64-isa207-atomic-inst.S	2017-08-29 21:41:50.528498600 +0200
2c2fa1
@@ -0,0 +1,100 @@
2c2fa1
+/* This file is part of GDB, the GNU debugger.
2c2fa1
+
2c2fa1
+   Copyright 2017 Free Software Foundation, Inc.
2c2fa1
+
2c2fa1
+   This program is free software; you can redistribute it and/or modify
2c2fa1
+   it under the terms of the GNU General Public License as published by
2c2fa1
+   the Free Software Foundation; either version 3 of the License, or
2c2fa1
+   (at your option) any later version.
2c2fa1
+
2c2fa1
+   This program is distributed in the hope that it will be useful,
2c2fa1
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
2c2fa1
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
2c2fa1
+   GNU General Public License for more details.
2c2fa1
+
2c2fa1
+   You should have received a copy of the GNU General Public License
2c2fa1
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
2c2fa1
+
2c2fa1
+	.align 2
2c2fa1
+	.globl test_atomic_sequences
2c2fa1
+#if _CALL_ELF == 2
2c2fa1
+	.type test_atomic_sequences,@function
2c2fa1
+test_atomic_sequences:
2c2fa1
+#else
2c2fa1
+	.section ".opd","aw"
2c2fa1
+	.align 3
2c2fa1
+test_atomic_sequences:
2c2fa1
+	.quad .test_atomic_sequences,.TOC.@tocbase,0
2c2fa1
+	.size test_atomic_sequences,.-test_atomic_sequences
2c2fa1
+	.previous
2c2fa1
+	.globl .test_atomic_sequences
2c2fa1
+	.type .test_atomic_sequences,@function
2c2fa1
+.test_atomic_sequences:
2c2fa1
+#endif
2c2fa1
+
2c2fa1
+	li	0,0
2c2fa1
+	addi	4,1,-8
2c2fa1
+
2c2fa1
+	stb	0,0(4)
2c2fa1
+1:	lbarx	5,0,4
2c2fa1
+	cmpdi	5,0
2c2fa1
+	bne	2f
2c2fa1
+	addi	5,5,1
2c2fa1
+	stbcx.	5,0,4
2c2fa1
+	bne	1b
2c2fa1
+
2c2fa1
+	sth	0,0(4)
2c2fa1
+2:	lharx	5,0,4
2c2fa1
+	cmpdi	5,0
2c2fa1
+	bne	3f
2c2fa1
+	addi	5,5,1
2c2fa1
+	sthcx.	5,0,4
2c2fa1
+	bne	2b
2c2fa1
+
2c2fa1
+#ifdef	__BIG_ENDIAN__
2c2fa1
+	li 10,0
2c2fa1
+	li 6,0
2c2fa1
+	li 7,1
2c2fa1
+	std 10,-16(1)
2c2fa1
+	li 10,1
2c2fa1
+	std 10,-8(1)
2c2fa1
+	addi 4,1,-16
2c2fa1
+#else
2c2fa1
+	std 9,40(1)
2c2fa1
+	li 9,1
2c2fa1
+	addi 4,1,32
2c2fa1
+	std 9,32(1)
2c2fa1
+	mr 8,9
2c2fa1
+	ld 3,8(4)
2c2fa1
+#endif
2c2fa1
+3:	lqarx 10,0,4
2c2fa1
+#ifdef	__BIG_ENDIAN__
2c2fa1
+	li 8,0
2c2fa1
+	li 9,2
2c2fa1
+	mr 5,10
2c2fa1
+	xor 10,11,7
2c2fa1
+	xor 5,5,6
2c2fa1
+	or. 4,5,10
2c2fa1
+	bne 4f
2c2fa1
+	addi 10,1,-16
2c2fa1
+	stqcx. 8,0,10
2c2fa1
+#else
2c2fa1
+	xor 9,11,8
2c2fa1
+	mr 6,11
2c2fa1
+	xor 11,10,3
2c2fa1
+	or. 0,9,11
2c2fa1
+	bne 4f
2c2fa1
+	li 14,0
2c2fa1
+	li 15,2
2c2fa1
+	stqcx. 14,0,4
2c2fa1
+#endif
2c2fa1
+	bne 3b
2c2fa1
+
2c2fa1
+4:	li	3,0
2c2fa1
+	blr
2c2fa1
+
2c2fa1
+#if _CALL_ELF == 2
2c2fa1
+	.size test_atomic_sequences,.-test_atomic_sequences
2c2fa1
+#else
2c2fa1
+	.size .test_atomic_sequences,.-.test_atomic_sequences
2c2fa1
+#endif
2c2fa1
Index: gdb-7.6.1/gdb/testsuite/gdb.arch/ppc64-isa207-atomic-inst.c
2c2fa1
===================================================================
2c2fa1
--- /dev/null	1970-01-01 00:00:00.000000000 +0000
2c2fa1
+++ gdb-7.6.1/gdb/testsuite/gdb.arch/ppc64-isa207-atomic-inst.c	2017-08-29 21:41:50.528498600 +0200
2c2fa1
@@ -0,0 +1,42 @@
2c2fa1
+/* Copyright 2017 Free Software Foundation, Inc.
2c2fa1
+
2c2fa1
+   This file is part of GDB.
2c2fa1
+
2c2fa1
+   This program is free software; you can redistribute it and/or modify
2c2fa1
+   it under the terms of the GNU General Public License as published by
2c2fa1
+   the Free Software Foundation; either version 3 of the License, or
2c2fa1
+   (at your option) any later version.
2c2fa1
+
2c2fa1
+   This program is distributed in the hope that it will be useful,
2c2fa1
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
2c2fa1
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
2c2fa1
+   GNU General Public License for more details.
2c2fa1
+
2c2fa1
+   You should have received a copy of the GNU General Public License
2c2fa1
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
2c2fa1
+
2c2fa1
+#include <elf.h>
2c2fa1
+
2c2fa1
+typedef Elf64_auxv_t auxv_t;
2c2fa1
+
2c2fa1
+#ifndef PPC_FEATURE2_ARCH_2_07
2c2fa1
+#define PPC_FEATURE2_ARCH_2_07	0x80000000
2c2fa1
+#endif
2c2fa1
+
2c2fa1
+extern void test_atomic_sequences (void);
2c2fa1
+
2c2fa1
+int
2c2fa1
+main (int argc, char *argv[], char *envp[], auxv_t auxv[])
2c2fa1
+{
2c2fa1
+  int i;
2c2fa1
+
2c2fa1
+  for (i = 0; auxv[i].a_type != AT_NULL; i++)
2c2fa1
+    if (auxv[i].a_type == AT_HWCAP2) {
2c2fa1
+      if (!(auxv[i].a_un.a_val & PPC_FEATURE2_ARCH_2_07))
2c2fa1
+        return 1;
2c2fa1
+      break;
2c2fa1
+    }
2c2fa1
+
2c2fa1
+  test_atomic_sequences ();
2c2fa1
+  return 0;
2c2fa1
+}
2c2fa1
Index: gdb-7.6.1/gdb/testsuite/gdb.arch/ppc64-isa207-atomic-inst.exp
2c2fa1
===================================================================
2c2fa1
--- /dev/null	1970-01-01 00:00:00.000000000 +0000
2c2fa1
+++ gdb-7.6.1/gdb/testsuite/gdb.arch/ppc64-isa207-atomic-inst.exp	2017-08-29 21:41:50.528498600 +0200
2c2fa1
@@ -0,0 +1,99 @@
2c2fa1
+# Copyright 2017 Free Software Foundation, Inc.
2c2fa1
+#
2c2fa1
+# This program is free software; you can redistribute it and/or modify
2c2fa1
+# it under the terms of the GNU General Public License as published by
2c2fa1
+# the Free Software Foundation; either version 3 of the License, or
2c2fa1
+# (at your option) any later version.
2c2fa1
+#
2c2fa1
+# This program is distributed in the hope that it will be useful,
2c2fa1
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
2c2fa1
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
2c2fa1
+# GNU General Public License for more details.
2c2fa1
+#
2c2fa1
+# You should have received a copy of the GNU General Public License
2c2fa1
+# along with this program; if not, write to the Free Software
2c2fa1
+# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
2c2fa1
+#
2c2fa1
+# This file is part of the gdb testsuite.
2c2fa1
+
2c2fa1
+# Test single stepping through POWER8/ISA 2.07 atomic sequences beginning with
2c2fa1
+# a lbarx/lharx/lqarx instruction and ending with a stbcx/sthcx/stqxc
2c2fa1
+# instruction.  Note that although lbarx, lharx, stbcx and sthcx instructions
2c2fa1
+# were introduced in ISA 2.06, they were implemented only in POWER8 (ISA 2.07).
2c2fa1
+
2c2fa1
+
2c2fa1
+if {![istarget "powerpc*"] || ![is_lp64_target]} {
2c2fa1
+    untested "skipping powerpc isa 207 atomic sequences test"
2c2fa1
+    return
2c2fa1
+}
2c2fa1
+
2c2fa1
+standard_testfile  .c .S
2c2fa1
+
2c2fa1
+if { [prepare_for_testing "failed to prepare" $testfile "$srcfile $srcfile2" \
2c2fa1
+      {debug quiet}] } {
2c2fa1
+    return -1
2c2fa1
+}
2c2fa1
+
2c2fa1
+# The test proper.  DISPLACED is true if we should try with displaced
2c2fa1
+# stepping.
2c2fa1
+
2c2fa1
+proc do_test { displaced } {
2c2fa1
+    global decimal hex
2c2fa1
+    global gdb_prompt inferior_exited_re srcfile srcfile2
2c2fa1
+
2c2fa1
+    if ![runto_main] then {
2c2fa1
+	untested "could not run to main"
2c2fa1
+	return -1
2c2fa1
+    }
2c2fa1
+
2c2fa1
+    gdb_test_no_output "set displaced-stepping $displaced"
2c2fa1
+
2c2fa1
+    gdb_breakpoint "test_atomic_sequences" "Breakpoint $decimal at $hex" \
2c2fa1
+	"set the breakpoint at the start of the test function"
2c2fa1
+
2c2fa1
+    gdb_test_multiple "continue" "Continue until lbarx/stbcx start breakpoint" {
2c2fa1
+      -re "$inferior_exited_re with code 01.\[\r\n\]+$gdb_prompt $" {
2c2fa1
+	unsupported "POWER8/ISA 2.07 atomic instructions not supported."
2c2fa1
+	return -1
2c2fa1
+      }
2c2fa1
+      -re "Continuing.*Breakpoint $decimal.*$gdb_prompt $" {
2c2fa1
+	pass "continue until test_atomic_sequences function"
2c2fa1
+      }
2c2fa1
+    }
2c2fa1
+
2c2fa1
+    set bp1 [gdb_get_line_number "lbarx" "$srcfile2"]
2c2fa1
+    gdb_breakpoint "$bp1" "Breakpoint $decimal at $hex" \
2c2fa1
+	"set the breakpoint at the start of the lbarx/stbcx sequence"
2c2fa1
+
2c2fa1
+    set bp2 [gdb_get_line_number "lharx" "$srcfile2"]
2c2fa1
+    gdb_breakpoint "$bp2" "Breakpoint $decimal at $hex" \
2c2fa1
+	"set the breakpoint at the start of the lharx/sthcx sequence"
2c2fa1
+
2c2fa1
+    set bp3 [gdb_get_line_number "lqarx" "$srcfile2"]
2c2fa1
+    gdb_breakpoint "$bp3" "Breakpoint $decimal at $hex" \
2c2fa1
+	"set the breakpoint at the start of the lqarx/stqcx sequence"
2c2fa1
+
2c2fa1
+    gdb_test continue "Continuing.*Breakpoint $decimal.*" \
2c2fa1
+	"continue until lbarx/stbcx start breakpoint"
2c2fa1
+
2c2fa1
+    gdb_test nexti "bne.*1b" \
2c2fa1
+	"step through the lbarx/stbcx sequence"
2c2fa1
+
2c2fa1
+    gdb_test continue "Continuing.*Breakpoint $decimal.*" \
2c2fa1
+	"continue until lharx/sthcx start breakpoint"
2c2fa1
+
2c2fa1
+    gdb_test nexti "bne.*2b" \
2c2fa1
+	"step through the lharx/sthcx sequence"
2c2fa1
+
2c2fa1
+    gdb_test continue "Continuing.*Breakpoint $decimal.*" \
2c2fa1
+	"continue until ldqrx/stqcx start breakpoint"
2c2fa1
+
2c2fa1
+    gdb_test nexti "bne.*3b" \
2c2fa1
+	"step through the lqarx/stqcx sequence"
2c2fa1
+}
2c2fa1
+
2c2fa1
+foreach displaced { "off" "on" } {
2c2fa1
+    with_test_prefix "displaced=$displaced" {
2c2fa1
+	do_test $displaced
2c2fa1
+    }
2c2fa1
+}