* [PATCH 1/3] Fix ppc64 single step over atomic sequence testcase.
@ 2014-03-31 2:59 Anton Blanchard
2014-03-31 2:58 ` [PATCH 2/3] gdb.arch/ppc64-atomic-inst.exp: Use standard_testfile, prepare_for_testing Anton Blanchard
` (2 more replies)
0 siblings, 3 replies; 6+ messages in thread
From: Anton Blanchard @ 2014-03-31 2:59 UTC (permalink / raw)
To: gdb-patches, brobecker, emachado, luis_gustavo, ulrich.weigand, palves
The current ppc64 single step over atomic sequence testcase is written
in C and breaks with some versions of gcc. Convert the test to
assembly and use stepi to step through it.
gdb/testsuite/
2014-03-31 Anton Blanchard <anton@samba.org>
* gdb.arch/ppc64-atomic-inst.c: Remove.
* gdb.arch/ppc64-atomic-inst.S: New file.
* gdb.arch/ppc64-atomic-inst.exp: Adapt for asm based testcase.
---
gdb/testsuite/gdb.arch/ppc64-atomic-inst.S | 61 ++++++++++++++++++++++++++++
gdb/testsuite/gdb.arch/ppc64-atomic-inst.c | 44 --------------------
gdb/testsuite/gdb.arch/ppc64-atomic-inst.exp | 15 +++++--
3 files changed, 72 insertions(+), 48 deletions(-)
create mode 100644 gdb/testsuite/gdb.arch/ppc64-atomic-inst.S
delete mode 100644 gdb/testsuite/gdb.arch/ppc64-atomic-inst.c
diff --git a/gdb/testsuite/gdb.arch/ppc64-atomic-inst.S b/gdb/testsuite/gdb.arch/ppc64-atomic-inst.S
new file mode 100644
index 0000000..15ccfd9
--- /dev/null
+++ b/gdb/testsuite/gdb.arch/ppc64-atomic-inst.S
@@ -0,0 +1,61 @@
+/* This file is part of GDB, the GNU debugger.
+
+ Copyright 2008-2014 Free Software Foundation, Inc.
+
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 3 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program. If not, see <http://www.gnu.org/licenses/>. */
+
+ .align 2
+ .globl main
+#if _CALL_ELF == 2
+ .type main,@function
+main:
+#else
+ .section ".opd","aw"
+ .align 3
+main:
+ .quad .main,.TOC.@tocbase,0
+ .size main,.-main
+ .previous
+ .globl .main
+ .type .main,@function
+.main:
+#endif
+
+ li 0,0
+ addi 4,1,-8
+
+ stw 0,0(4)
+1: lwarx 5,0,4
+ cmpwi 5,0
+ bne 2f
+ addi 5,5,1
+ stwcx. 5,0,4
+ bne 1b
+
+ std 0,0(4)
+2: ldarx 5,0,4
+ cmpdi 5,0
+ bne 3f
+ addi 5,5,1
+ stdcx. 5,0,4
+ bne 1b
+
+3: li 3,0
+ blr
+
+#if _CALL_ELF == 2
+ .size main,.-main
+#else
+ .size .main,.-.main
+#endif
diff --git a/gdb/testsuite/gdb.arch/ppc64-atomic-inst.c b/gdb/testsuite/gdb.arch/ppc64-atomic-inst.c
deleted file mode 100644
index 303e383..0000000
--- a/gdb/testsuite/gdb.arch/ppc64-atomic-inst.c
+++ /dev/null
@@ -1,44 +0,0 @@
-/* This file is part of GDB, the GNU debugger.
-
- Copyright 2008-2014 Free Software Foundation, Inc.
-
- This program is free software; you can redistribute it and/or modify
- it under the terms of the GNU General Public License as published by
- the Free Software Foundation; either version 3 of the License, or
- (at your option) any later version.
-
- This program is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU General Public License for more details.
-
- You should have received a copy of the GNU General Public License
- along with this program. If not, see <http://www.gnu.org/licenses/>. */
-
-#include <stdio.h>
-
-int main()
-{
- unsigned int word = 0;
- unsigned int *word_addr = &word;
- unsigned long dword = 0;
- unsigned long *dword_addr = &dword;
-
- __asm __volatile ("1: lwarx %0,0,%2\n" \
- " addi %0,%0,1\n" \
- " stwcx. %0,0,%2\n" \
- " bne- 1b" \
- : "=&b" (word), "=m" (*word_addr) \
- : "b" (word_addr), "m" (*word_addr) \
- : "cr0", "memory"); \
-
- __asm __volatile ("1: ldarx %0,0,%2\n" \
- " addi %0,%0,1\n" \
- " stdcx. %0,0,%2\n" \
- " bne- 1b" \
- : "=&b" (dword), "=m" (*dword_addr) \
- : "b" (dword_addr), "m" (*dword_addr) \
- : "cr0", "memory"); \
-
- return 0;
-}
diff --git a/gdb/testsuite/gdb.arch/ppc64-atomic-inst.exp b/gdb/testsuite/gdb.arch/ppc64-atomic-inst.exp
index f5f3b40..cefdfc9 100644
--- a/gdb/testsuite/gdb.arch/ppc64-atomic-inst.exp
+++ b/gdb/testsuite/gdb.arch/ppc64-atomic-inst.exp
@@ -27,7 +27,7 @@ if {![istarget "powerpc*"] || ![is_lp64_target]} {
}
set testfile "ppc64-atomic-inst"
-set srcfile ${testfile}.c
+set srcfile ${testfile}.S
set binfile ${objdir}/${subdir}/${testfile}
set compile_flags {debug quiet}
@@ -50,11 +50,18 @@ set bp1 [gdb_get_line_number "lwarx"]
gdb_breakpoint "$bp1" "Breakpoint $decimal at $hex" \
"Set the breakpoint at the start of the sequence"
+set bp2 [gdb_get_line_number "ldarx"]
+gdb_breakpoint "$bp2" "Breakpoint $decimal at $hex" \
+ "Set the breakpoint at the start of the sequence"
+
gdb_test continue "Continuing.*Breakpoint $decimal.*" \
"Continue until breakpoint"
-gdb_test next ".*__asm __volatile.*" \
+gdb_test nexti "bne.*1b" \
"Step through the lwarx/stwcx sequence"
-gdb_test next ".*return 0.*" \
- "Step through the ldarx/stdcx sequence"
+gdb_test continue "Continuing.*Breakpoint $decimal.*" \
+ "Continue until breakpoint"
+
+gdb_test nexti "bne.*1b" \
+ "Step through the lwarx/stwcx sequence"
--
1.8.3.2
^ permalink raw reply [flat|nested] 6+ messages in thread* [PATCH 2/3] gdb.arch/ppc64-atomic-inst.exp: Use standard_testfile, prepare_for_testing.
2014-03-31 2:59 [PATCH 1/3] Fix ppc64 single step over atomic sequence testcase Anton Blanchard
@ 2014-03-31 2:58 ` Anton Blanchard
2014-03-31 15:39 ` Ulrich Weigand
2014-03-31 2:59 ` [PATCH 3/3] gdb.arch/ppc64-atomic-inst.exp: Improve error handling Anton Blanchard
2014-03-31 15:38 ` [PATCH 1/3] Fix ppc64 single step over atomic sequence testcase Ulrich Weigand
2 siblings, 1 reply; 6+ messages in thread
From: Anton Blanchard @ 2014-03-31 2:58 UTC (permalink / raw)
To: gdb-patches, brobecker, emachado, luis_gustavo, ulrich.weigand, palves
gdb/testsuite/
2014-03-31 Anton Blanchard <anton@samba.org>
* gdb.arch/ppc64-atomic-inst.exp: Use standard_testfile,
prepare_for_testing.
---
gdb/testsuite/gdb.arch/ppc64-atomic-inst.exp | 13 ++-----------
1 file changed, 2 insertions(+), 11 deletions(-)
diff --git a/gdb/testsuite/gdb.arch/ppc64-atomic-inst.exp b/gdb/testsuite/gdb.arch/ppc64-atomic-inst.exp
index cefdfc9..fc7568c 100644
--- a/gdb/testsuite/gdb.arch/ppc64-atomic-inst.exp
+++ b/gdb/testsuite/gdb.arch/ppc64-atomic-inst.exp
@@ -26,21 +26,12 @@ if {![istarget "powerpc*"] || ![is_lp64_target]} {
return
}
-set testfile "ppc64-atomic-inst"
-set srcfile ${testfile}.S
-set binfile ${objdir}/${subdir}/${testfile}
-set compile_flags {debug quiet}
+standard_testfile .S
-if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable $compile_flags] != "" } {
- unsupported "Testcase compile failed."
+if { [prepare_for_testing ${testfile}.exp ${testfile} ${srcfile} {debug quiet}] } {
return -1
}
-gdb_exit
-gdb_start
-gdb_reinitialize_dir $srcdir/$subdir
-gdb_load ${binfile}
-
if ![runto_main] then {
perror "Couldn't run to breakpoint"
continue
--
1.8.3.2
^ permalink raw reply [flat|nested] 6+ messages in thread* Re: [PATCH 2/3] gdb.arch/ppc64-atomic-inst.exp: Use standard_testfile, prepare_for_testing.
2014-03-31 2:58 ` [PATCH 2/3] gdb.arch/ppc64-atomic-inst.exp: Use standard_testfile, prepare_for_testing Anton Blanchard
@ 2014-03-31 15:39 ` Ulrich Weigand
0 siblings, 0 replies; 6+ messages in thread
From: Ulrich Weigand @ 2014-03-31 15:39 UTC (permalink / raw)
To: Anton Blanchard
Cc: gdb-patches, brobecker, emachado, luis_gustavo, ulrich.weigand, palves
Anton Blanchard wrote:
> gdb/testsuite/
> 2014-03-31 Anton Blanchard <anton@samba.org>
>
> * gdb.arch/ppc64-atomic-inst.exp: Use standard_testfile,
> prepare_for_testing.
This is OK.
Thanks,
Ulrich
--
Dr. Ulrich Weigand
GNU/Linux compilers and toolchain
Ulrich.Weigand@de.ibm.com
^ permalink raw reply [flat|nested] 6+ messages in thread
* [PATCH 3/3] gdb.arch/ppc64-atomic-inst.exp: Improve error handling.
2014-03-31 2:59 [PATCH 1/3] Fix ppc64 single step over atomic sequence testcase Anton Blanchard
2014-03-31 2:58 ` [PATCH 2/3] gdb.arch/ppc64-atomic-inst.exp: Use standard_testfile, prepare_for_testing Anton Blanchard
@ 2014-03-31 2:59 ` Anton Blanchard
2014-03-31 15:40 ` Ulrich Weigand
2014-03-31 15:38 ` [PATCH 1/3] Fix ppc64 single step over atomic sequence testcase Ulrich Weigand
2 siblings, 1 reply; 6+ messages in thread
From: Anton Blanchard @ 2014-03-31 2:59 UTC (permalink / raw)
To: gdb-patches, brobecker, emachado, luis_gustavo, ulrich.weigand, palves
gdb/testsuite/
2014-03-31 Anton Blanchard <anton@samba.org>
* gdb.arch/ppc64-atomic-inst.exp: Use untested. Make test
messages unique.
---
gdb/testsuite/gdb.arch/ppc64-atomic-inst.exp | 14 +++++++-------
1 file changed, 7 insertions(+), 7 deletions(-)
diff --git a/gdb/testsuite/gdb.arch/ppc64-atomic-inst.exp b/gdb/testsuite/gdb.arch/ppc64-atomic-inst.exp
index fc7568c..ff26697 100644
--- a/gdb/testsuite/gdb.arch/ppc64-atomic-inst.exp
+++ b/gdb/testsuite/gdb.arch/ppc64-atomic-inst.exp
@@ -33,26 +33,26 @@ if { [prepare_for_testing ${testfile}.exp ${testfile} ${srcfile} {debug quiet}]
}
if ![runto_main] then {
- perror "Couldn't run to breakpoint"
- continue
+ untested "could not run to main"
+ return -1
}
set bp1 [gdb_get_line_number "lwarx"]
gdb_breakpoint "$bp1" "Breakpoint $decimal at $hex" \
- "Set the breakpoint at the start of the sequence"
+ "Set the breakpoint at the start of the lwarx/stwcx sequence"
set bp2 [gdb_get_line_number "ldarx"]
gdb_breakpoint "$bp2" "Breakpoint $decimal at $hex" \
- "Set the breakpoint at the start of the sequence"
+ "Set the breakpoint at the start of the ldarx/stdcx sequence"
gdb_test continue "Continuing.*Breakpoint $decimal.*" \
- "Continue until breakpoint"
+ "Continue until lwarx/stwcx start breakpoint"
gdb_test nexti "bne.*1b" \
"Step through the lwarx/stwcx sequence"
gdb_test continue "Continuing.*Breakpoint $decimal.*" \
- "Continue until breakpoint"
+ "Continue until ldarx/stdcx start breakpoint"
gdb_test nexti "bne.*1b" \
- "Step through the lwarx/stwcx sequence"
+ "Step through the ldarx/stdcx sequence"
--
1.8.3.2
^ permalink raw reply [flat|nested] 6+ messages in thread* Re: [PATCH 1/3] Fix ppc64 single step over atomic sequence testcase.
2014-03-31 2:59 [PATCH 1/3] Fix ppc64 single step over atomic sequence testcase Anton Blanchard
2014-03-31 2:58 ` [PATCH 2/3] gdb.arch/ppc64-atomic-inst.exp: Use standard_testfile, prepare_for_testing Anton Blanchard
2014-03-31 2:59 ` [PATCH 3/3] gdb.arch/ppc64-atomic-inst.exp: Improve error handling Anton Blanchard
@ 2014-03-31 15:38 ` Ulrich Weigand
2 siblings, 0 replies; 6+ messages in thread
From: Ulrich Weigand @ 2014-03-31 15:38 UTC (permalink / raw)
To: Anton Blanchard
Cc: gdb-patches, brobecker, emachado, luis_gustavo, ulrich.weigand, palves
Anton Blanchard wrote:
> gdb/testsuite/
> 2014-03-31 Anton Blanchard <anton@samba.org>
>
> * gdb.arch/ppc64-atomic-inst.c: Remove.
> * gdb.arch/ppc64-atomic-inst.S: New file.
> * gdb.arch/ppc64-atomic-inst.exp: Adapt for asm based testcase.
This is OK.
Thanks,
Ulrich
--
Dr. Ulrich Weigand
GNU/Linux compilers and toolchain
Ulrich.Weigand@de.ibm.com
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2014-03-31 15:40 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-03-31 2:59 [PATCH 1/3] Fix ppc64 single step over atomic sequence testcase Anton Blanchard
2014-03-31 2:58 ` [PATCH 2/3] gdb.arch/ppc64-atomic-inst.exp: Use standard_testfile, prepare_for_testing Anton Blanchard
2014-03-31 15:39 ` Ulrich Weigand
2014-03-31 2:59 ` [PATCH 3/3] gdb.arch/ppc64-atomic-inst.exp: Improve error handling Anton Blanchard
2014-03-31 15:40 ` Ulrich Weigand
2014-03-31 15:38 ` [PATCH 1/3] Fix ppc64 single step over atomic sequence testcase Ulrich Weigand
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox