Re: ld plugin bfd_make_readable leak
[binutils-gdb.git] / gdb / testsuite / gdb.arch / ppc64-atomic-inst.exp
blob9bd02359a57dede0342db5ac3f3f73273fcfc191
1 # Copyright 2008-2024 Free Software Foundation, Inc.
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.
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.
13 # You should have received a copy of the GNU General Public License
14 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
16 # This file is part of the gdb testsuite.
18 # Test single stepping through atomic sequences beginning with
19 # a lwarx/ldarx instruction and ending with a stwcx/stdcx
20 # instruction.
22 require {istarget "powerpc*"} is_lp64_target
24 standard_testfile .S
26 if { [prepare_for_testing "failed to prepare" ${testfile} ${srcfile} {debug quiet}] } {
27     return -1
30 # The test proper.  DISPLACED is true if we should try with displaced
31 # stepping.
32 proc do_test { displaced } {
33     global decimal hex
35     if {![runto_main]} {
36         return -1
37     }
39     gdb_test_no_output "set displaced-stepping $displaced"
41     set bp1 [gdb_get_line_number "lwarx"]
42     gdb_breakpoint "$bp1" "Breakpoint $decimal at $hex" \
43         "set the breakpoint at the start of the lwarx/stwcx sequence"
45     set bp2 [gdb_get_line_number "ldarx"]
46     gdb_breakpoint "$bp2" "Breakpoint $decimal at $hex" \
47         "set the breakpoint at the start of the ldarx/stdcx sequence"
49     gdb_test continue "Continuing.*Breakpoint $decimal.*" \
50         "continue until lwarx/stwcx start breakpoint"
52     gdb_test nexti "bne.*1b" \
53         "step through the lwarx/stwcx sequence"
55     gdb_test continue "Continuing.*Breakpoint $decimal.*" \
56         "continue until ldarx/stdcx start breakpoint"
58     gdb_test nexti "bne.*1b" \
59         "step through the ldarx/stdcx sequence"
62 foreach displaced { "off" "on" } {
63     with_test_prefix "displaced=$displaced" {
64         do_test $displaced
65     }