]>
Commit | Line | Data |
---|---|---|
4a94e368 | 1 | # Copyright 2008-2022 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 | |
1cc75e92 | 14 | # along with this program. If not, see <http://www.gnu.org/licenses/>. |
fb546a2f LM |
15 | # |
16 | # This file is part of the gdb testsuite. | |
17 | ||
fb546a2f LM |
18 | # Test single stepping through atomic sequences beginning with |
19 | # a lwarx/ldarx instruction and ending with a stwcx/stdcx | |
20 | # instruction. | |
21 | ||
fb546a2f | 22 | |
add265ae | 23 | if {![istarget "powerpc*"] || ![is_lp64_target]} { |
fb546a2f LM |
24 | verbose "Skipping testing of powerpc64 single stepping over atomic sequences." |
25 | return | |
26 | } | |
27 | ||
3114cea1 | 28 | standard_testfile .S |
fb546a2f | 29 | |
5b362f04 | 30 | if { [prepare_for_testing "failed to prepare" ${testfile} ${srcfile} {debug quiet}] } { |
fb546a2f LM |
31 | return -1 |
32 | } | |
33 | ||
7f03bd92 PA |
34 | # The test proper. DISPLACED is true if we should try with displaced |
35 | # stepping. | |
36 | proc do_test { displaced } { | |
37 | global decimal hex | |
38 | ||
75b6f386 | 39 | if {![runto_main]} { |
7f03bd92 PA |
40 | return -1 |
41 | } | |
42 | ||
43 | gdb_test_no_output "set displaced-stepping $displaced" | |
fb546a2f | 44 | |
7f03bd92 PA |
45 | set bp1 [gdb_get_line_number "lwarx"] |
46 | gdb_breakpoint "$bp1" "Breakpoint $decimal at $hex" \ | |
a51d7ecf | 47 | "set the breakpoint at the start of the lwarx/stwcx sequence" |
fb546a2f | 48 | |
7f03bd92 PA |
49 | set bp2 [gdb_get_line_number "ldarx"] |
50 | gdb_breakpoint "$bp2" "Breakpoint $decimal at $hex" \ | |
a51d7ecf | 51 | "set the breakpoint at the start of the ldarx/stdcx sequence" |
62f7182c | 52 | |
7f03bd92 | 53 | gdb_test continue "Continuing.*Breakpoint $decimal.*" \ |
a51d7ecf | 54 | "continue until lwarx/stwcx start breakpoint" |
fb546a2f | 55 | |
7f03bd92 | 56 | gdb_test nexti "bne.*1b" \ |
a51d7ecf | 57 | "step through the lwarx/stwcx sequence" |
fb546a2f | 58 | |
7f03bd92 | 59 | gdb_test continue "Continuing.*Breakpoint $decimal.*" \ |
a51d7ecf | 60 | "continue until ldarx/stdcx start breakpoint" |
62f7182c | 61 | |
7f03bd92 | 62 | gdb_test nexti "bne.*1b" \ |
a51d7ecf | 63 | "step through the ldarx/stdcx sequence" |
7f03bd92 PA |
64 | } |
65 | ||
66 | foreach displaced { "off" "on" } { | |
67 | with_test_prefix "displaced=$displaced" { | |
68 | do_test $displaced | |
69 | } | |
70 | } |