]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blob - gdb/testsuite/gdb.trace/tracefile-pseudo-reg.exp
Update copyright year range in header of all files managed by GDB
[thirdparty/binutils-gdb.git] / gdb / testsuite / gdb.trace / tracefile-pseudo-reg.exp
1 # Copyright 2016-2023 Free Software Foundation, Inc.
2 # This program is free software; you can redistribute it and/or modify
3 # it under the terms of the GNU General Public License as published by
4 # the Free Software Foundation; either version 3 of the License, or
5 # (at your option) any later version.
6 #
7 # This program is distributed in the hope that it will be useful,
8 # but WITHOUT ANY WARRANTY; without even the implied warranty of
9 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10 # GNU General Public License for more details.
11 #
12 # You should have received a copy of the GNU General Public License
13 # along with this program. If not, see <http://www.gnu.org/licenses/>.
14
15 if { ! [is_amd64_regs_target] } {
16 verbose "Skipping tfile AVX test (target is not x86_64)."
17 return
18 }
19
20 load_lib "trace-support.exp"
21
22 standard_testfile
23
24 if {[prepare_for_testing "failed to prepare" $testfile $srcfile \
25 [list debug additional_flags=-mavx]]} {
26 return -1
27 }
28
29 if ![runto_main] {
30 return -1
31 }
32
33 if ![gdb_target_supports_trace] {
34 unsupported "target does not support trace"
35 return -1
36 }
37
38 gdb_test_multiple "print \$ymm15" "check for AVX support" {
39 -re " = void.*$gdb_prompt $" {
40 verbose "Skipping tfile AVX test (target doesn't support AVX)."
41 return
42 }
43 -re " = \\{.*}.*$gdb_prompt $" {
44 # All is well.
45 }
46 }
47
48 gdb_test "trace traceme" ".*"
49
50 gdb_trace_setactions "set actions for tracepoint" "" \
51 "collect \$ymm15" "^$"
52
53 gdb_breakpoint "end"
54
55 gdb_test_no_output "tstart"
56
57 gdb_test "continue" ".*Breakpoint $decimal, end .*"
58
59 set tracefile [standard_output_file ${testfile}]
60
61 # Save trace frames to tfile.
62 gdb_test "tsave ${tracefile}.tf" \
63 "Trace data saved to file '${tracefile}.tf'.*" \
64 "save tfile trace file"
65
66 # Change target to tfile.
67 gdb_test "target tfile ${tracefile}.tf" "" "change to tfile target" \
68 "A program is being debugged already. Kill it. .y or n. $" "y"
69
70 gdb_test "tfind 0" "Found trace frame 0, tracepoint .*"
71
72 gdb_test "print/x \$ymm15.v8_int32" " = \\{0x12340001, .*, 0x12340008}"