]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdb/testsuite/gdb.arch/ppc64-atomic-inst.exp
Update year range in copyright notice of all files owned by the GDB project.
[thirdparty/binutils-gdb.git] / gdb / testsuite / gdb.arch / ppc64-atomic-inst.exp
CommitLineData
32d0add0 1# Copyright 2008-2015 Free Software Foundation, Inc.
fb546a2f
LM
2#
3# This program is free software; you can redistribute it and/or modify
4# it under the terms of the GNU General Public License as published by
5# the Free Software Foundation; either version 3 of the License, or
6# (at your option) any later version.
7#
8# This program is distributed in the hope that it will be useful,
9# but WITHOUT ANY WARRANTY; without even the implied warranty of
10# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11# GNU General Public License for more details.
12#
13# You should have received a copy of the GNU General Public License
14# along with this program; if not, write to the Free Software
15# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
16#
17# This file is part of the gdb testsuite.
18
fb546a2f
LM
19# Test single stepping through atomic sequences beginning with
20# a lwarx/ldarx instruction and ending with a stwcx/stdcx
21# instruction.
22
fb546a2f 23
add265ae 24if {![istarget "powerpc*"] || ![is_lp64_target]} {
fb546a2f
LM
25 verbose "Skipping testing of powerpc64 single stepping over atomic sequences."
26 return
27}
28
3114cea1 29standard_testfile .S
fb546a2f 30
3114cea1 31if { [prepare_for_testing ${testfile}.exp ${testfile} ${srcfile} {debug quiet}] } {
fb546a2f
LM
32 return -1
33}
34
fb546a2f 35if ![runto_main] then {
98d1b8dc
AB
36 untested "could not run to main"
37 return -1
fb546a2f
LM
38}
39
40set bp1 [gdb_get_line_number "lwarx"]
41gdb_breakpoint "$bp1" "Breakpoint $decimal at $hex" \
98d1b8dc 42 "Set the breakpoint at the start of the lwarx/stwcx sequence"
fb546a2f 43
62f7182c
AB
44set bp2 [gdb_get_line_number "ldarx"]
45gdb_breakpoint "$bp2" "Breakpoint $decimal at $hex" \
98d1b8dc 46 "Set the breakpoint at the start of the ldarx/stdcx sequence"
62f7182c 47
fb546a2f 48gdb_test continue "Continuing.*Breakpoint $decimal.*" \
98d1b8dc 49 "Continue until lwarx/stwcx start breakpoint"
fb546a2f 50
62f7182c 51gdb_test nexti "bne.*1b" \
fb546a2f
LM
52 "Step through the lwarx/stwcx sequence"
53
62f7182c 54gdb_test continue "Continuing.*Breakpoint $decimal.*" \
98d1b8dc 55 "Continue until ldarx/stdcx start breakpoint"
62f7182c
AB
56
57gdb_test nexti "bne.*1b" \
98d1b8dc 58 "Step through the ldarx/stdcx sequence"