gdb/testsuite: Introduce skip_ctf_tests guard function
[deliverable/binutils-gdb.git] / gdb / testsuite / lib / gdb.exp
CommitLineData
42a4f53d 1# Copyright 1992-2019 Free Software Foundation, Inc.
c906108c
SS
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
e22f8b7c 5# the Free Software Foundation; either version 3 of the License, or
c906108c 6# (at your option) any later version.
e22f8b7c 7#
c906108c
SS
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.
e22f8b7c 12#
c906108c 13# You should have received a copy of the GNU General Public License
e22f8b7c 14# along with this program. If not, see <http://www.gnu.org/licenses/>.
c906108c 15
c906108c
SS
16# This file was written by Fred Fish. (fnf@cygnus.com)
17
18# Generic gdb subroutines that should work for any target. If these
19# need to be modified for any target, it can be done with a variable
20# or by passing arguments.
21
97c3f1f3
JK
22if {$tool == ""} {
23 # Tests would fail, logs on get_compiler_info() would be missing.
24 send_error "`site.exp' not found, run `make site.exp'!\n"
25 exit 2
26}
27
c906108c 28load_lib libgloss.exp
17e1c970 29load_lib cache.exp
a25eb028 30load_lib gdb-utils.exp
e309aa65 31load_lib memory.exp
c906108c
SS
32
33global GDB
c906108c 34
f71c18e7
PA
35# The spawn ID used for I/O interaction with the inferior. For native
36# targets, or remote targets that can do I/O through GDB
37# (semi-hosting) this will be the same as the host/GDB's spawn ID.
38# Otherwise, the board may set this to some other spawn ID. E.g.,
39# when debugging with GDBserver, this is set to GDBserver's spawn ID,
40# so input/output is done on gdbserver's tty.
41global inferior_spawn_id
42
c906108c 43if [info exists TOOL_EXECUTABLE] {
4ec70201 44 set GDB $TOOL_EXECUTABLE
c906108c
SS
45}
46if ![info exists GDB] {
47 if ![is_remote host] {
48 set GDB [findfile $base_dir/../../gdb/gdb "$base_dir/../../gdb/gdb" [transform gdb]]
49 } else {
4ec70201 50 set GDB [transform gdb]
c906108c
SS
51 }
52}
53verbose "using GDB = $GDB" 2
54
6b8ce727
DE
55# GDBFLAGS is available for the user to set on the command line.
56# E.g. make check RUNTESTFLAGS=GDBFLAGS=mumble
57# Testcases may use it to add additional flags, but they must:
58# - append new flags, not overwrite
59# - restore the original value when done
c906108c
SS
60global GDBFLAGS
61if ![info exists GDBFLAGS] {
6b8ce727 62 set GDBFLAGS ""
c906108c
SS
63}
64verbose "using GDBFLAGS = $GDBFLAGS" 2
65
2f4e0a80
DE
66# Make the build data directory available to tests.
67set BUILD_DATA_DIRECTORY "[pwd]/../data-directory"
68
6b8ce727 69# INTERNAL_GDBFLAGS contains flags that the testsuite requires.
1be00882
DE
70global INTERNAL_GDBFLAGS
71if ![info exists INTERNAL_GDBFLAGS] {
2f4e0a80 72 set INTERNAL_GDBFLAGS "-nw -nx -data-directory $BUILD_DATA_DIRECTORY"
1be00882 73}
6b8ce727 74
9e0b60a8 75# The variable gdb_prompt is a regexp which matches the gdb prompt.
3714cea7
DE
76# Set it if it is not already set. This is also set by default_gdb_init
77# but it's not clear what removing one of them will break.
78# See with_gdb_prompt for more details on prompt handling.
c906108c 79global gdb_prompt
9e0b60a8 80if ![info exists gdb_prompt] then {
3714cea7 81 set gdb_prompt "\\(gdb\\)"
c906108c
SS
82}
83
94696ad3 84# A regexp that matches the pagination prompt.
eb6af809
TT
85set pagination_prompt \
86 "--Type <RET> for more, q to quit, c to continue without paging--"
94696ad3 87
6006a3a1
BR
88# The variable fullname_syntax_POSIX is a regexp which matches a POSIX
89# absolute path ie. /foo/
d0b76dc6 90set fullname_syntax_POSIX {/[^\n]*/}
6006a3a1
BR
91# The variable fullname_syntax_UNC is a regexp which matches a Windows
92# UNC path ie. \\D\foo\
d0b76dc6 93set fullname_syntax_UNC {\\\\[^\\]+\\[^\n]+\\}
6006a3a1
BR
94# The variable fullname_syntax_DOS_CASE is a regexp which matches a
95# particular DOS case that GDB most likely will output
96# ie. \foo\, but don't match \\.*\
d0b76dc6 97set fullname_syntax_DOS_CASE {\\[^\\][^\n]*\\}
6006a3a1
BR
98# The variable fullname_syntax_DOS is a regexp which matches a DOS path
99# ie. a:\foo\ && a:foo\
d0b76dc6 100set fullname_syntax_DOS {[a-zA-Z]:[^\n]*\\}
6006a3a1
BR
101# The variable fullname_syntax is a regexp which matches what GDB considers
102# an absolute path. It is currently debatable if the Windows style paths
103# d:foo and \abc should be considered valid as an absolute path.
104# Also, the purpse of this regexp is not to recognize a well formed
105# absolute path, but to say with certainty that a path is absolute.
106set fullname_syntax "($fullname_syntax_POSIX|$fullname_syntax_UNC|$fullname_syntax_DOS_CASE|$fullname_syntax_DOS)"
107
93076499
ND
108# Needed for some tests under Cygwin.
109global EXEEXT
110global env
111
112if ![info exists env(EXEEXT)] {
113 set EXEEXT ""
114} else {
115 set EXEEXT $env(EXEEXT)
116}
117
bb2bed55
NR
118set octal "\[0-7\]+"
119
eceb0c5f 120set inferior_exited_re "(\\\[Inferior \[0-9\]+ \\(.*\\) exited)"
fda326dd 121
fad0c9fb
PA
122# A regular expression that matches a value history number.
123# E.g., $1, $2, etc.
124set valnum_re "\\\$$decimal"
125
085dd6e6
JM
126### Only procedures should come after this point.
127
c906108c
SS
128#
129# gdb_version -- extract and print the version number of GDB
130#
131proc default_gdb_version {} {
132 global GDB
6b8ce727 133 global INTERNAL_GDBFLAGS GDBFLAGS
c906108c 134 global gdb_prompt
5e92f71a
TT
135 global inotify_pid
136
137 if {[info exists inotify_pid]} {
138 eval exec kill $inotify_pid
139 }
140
fa335448 141 set output [remote_exec host "$GDB $INTERNAL_GDBFLAGS --version"]
4ec70201 142 set tmp [lindex $output 1]
c906108c
SS
143 set version ""
144 regexp " \[0-9\]\[^ \t\n\r\]+" "$tmp" version
145 if ![is_remote host] {
6b8ce727 146 clone_output "[which $GDB] version $version $INTERNAL_GDBFLAGS $GDBFLAGS\n"
c906108c 147 } else {
6b8ce727 148 clone_output "$GDB on remote host version $version $INTERNAL_GDBFLAGS $GDBFLAGS\n"
c906108c
SS
149 }
150}
151
152proc gdb_version { } {
ae59b1da 153 return [default_gdb_version]
c906108c
SS
154}
155
156#
157# gdb_unload -- unload a file if one is loaded
608e2dbb 158# Return 0 on success, -1 on error.
c906108c
SS
159#
160
161proc gdb_unload {} {
162 global verbose
163 global GDB
164 global gdb_prompt
165 send_gdb "file\n"
166 gdb_expect 60 {
167 -re "No executable file now\[^\r\n\]*\[\r\n\]" { exp_continue }
168 -re "No symbol file now\[^\r\n\]*\[\r\n\]" { exp_continue }
959e7469 169 -re "A program is being debugged already.*Are you sure you want to change the file.*y or n. $" {
f9e2e39d 170 send_gdb "y\n" answer
c906108c
SS
171 exp_continue
172 }
173 -re "Discard symbol table from .*y or n.*$" {
f9e2e39d 174 send_gdb "y\n" answer
c906108c
SS
175 exp_continue
176 }
177 -re "$gdb_prompt $" {}
178 timeout {
975531db 179 perror "couldn't unload file in $GDB (timeout)."
c906108c
SS
180 return -1
181 }
182 }
608e2dbb 183 return 0
c906108c
SS
184}
185
186# Many of the tests depend on setting breakpoints at various places and
187# running until that breakpoint is reached. At times, we want to start
188# with a clean-slate with respect to breakpoints, so this utility proc
189# lets us do this without duplicating this code everywhere.
190#
191
192proc delete_breakpoints {} {
193 global gdb_prompt
194
a0b3c4fd
JM
195 # we need a larger timeout value here or this thing just confuses
196 # itself. May need a better implementation if possible. - guo
197 #
d8b901ed
PA
198 set timeout 100
199
200 set msg "delete all breakpoints in delete_breakpoints"
201 set deleted 0
202 gdb_test_multiple "delete breakpoints" "$msg" {
203 -re "Delete all breakpoints.*y or n.*$" {
f9e2e39d 204 send_gdb "y\n" answer
c906108c
SS
205 exp_continue
206 }
d8b901ed
PA
207 -re "$gdb_prompt $" {
208 set deleted 1
209 }
c906108c 210 }
d8b901ed
PA
211
212 if {$deleted} {
213 # Confirm with "info breakpoints".
214 set deleted 0
215 set msg "info breakpoints"
216 gdb_test_multiple $msg $msg {
217 -re "No breakpoints or watchpoints..*$gdb_prompt $" {
218 set deleted 1
219 }
220 -re "$gdb_prompt $" {
221 }
c906108c 222 }
d8b901ed
PA
223 }
224
225 if {!$deleted} {
226 perror "breakpoints not deleted"
c906108c
SS
227 }
228}
229
300b6685
PA
230# Returns true iff the target supports using the "run" command.
231
232proc target_can_use_run_cmd {} {
233 if [target_info exists use_gdb_stub] {
234 # In this case, when we connect, the inferior is already
235 # running.
236 return 0
237 }
238
239 # Assume yes.
240 return 1
241}
242
c906108c
SS
243# Generic run command.
244#
245# The second pattern below matches up to the first newline *only*.
246# Using ``.*$'' could swallow up output that we attempt to match
247# elsewhere.
248#
1d41d75c
DE
249# N.B. This function does not wait for gdb to return to the prompt,
250# that is the caller's responsibility.
251
c906108c 252proc gdb_run_cmd {args} {
e11ac3a3 253 global gdb_prompt use_gdb_stub
c906108c 254
a25eb028
MR
255 foreach command [gdb_init_commands] {
256 send_gdb "$command\n"
c906108c
SS
257 gdb_expect 30 {
258 -re "$gdb_prompt $" { }
259 default {
4ec70201
PA
260 perror "gdb_init_command for target failed"
261 return
c906108c
SS
262 }
263 }
264 }
265
e11ac3a3 266 if $use_gdb_stub {
c906108c 267 if [target_info exists gdb,do_reload_on_run] {
b741e217 268 if { [gdb_reload] != 0 } {
4ec70201 269 return
917317f4 270 }
4ec70201 271 send_gdb "continue\n"
c906108c
SS
272 gdb_expect 60 {
273 -re "Continu\[^\r\n\]*\[\r\n\]" {}
274 default {}
275 }
4ec70201 276 return
c906108c
SS
277 }
278
279 if [target_info exists gdb,start_symbol] {
4ec70201 280 set start [target_info gdb,start_symbol]
c906108c 281 } else {
4ec70201 282 set start "start"
c906108c
SS
283 }
284 send_gdb "jump *$start\n"
4ec70201 285 set start_attempt 1
917317f4
JM
286 while { $start_attempt } {
287 # Cap (re)start attempts at three to ensure that this loop
288 # always eventually fails. Don't worry about trying to be
289 # clever and not send a command when it has failed.
290 if [expr $start_attempt > 3] {
4ec70201
PA
291 perror "Jump to start() failed (retry count exceeded)"
292 return
c906108c 293 }
4ec70201 294 set start_attempt [expr $start_attempt + 1]
917317f4
JM
295 gdb_expect 30 {
296 -re "Continuing at \[^\r\n\]*\[\r\n\]" {
4ec70201 297 set start_attempt 0
917317f4
JM
298 }
299 -re "No symbol \"_start\" in current.*$gdb_prompt $" {
4ec70201
PA
300 perror "Can't find start symbol to run in gdb_run"
301 return
917317f4
JM
302 }
303 -re "No symbol \"start\" in current.*$gdb_prompt $" {
4ec70201 304 send_gdb "jump *_start\n"
917317f4
JM
305 }
306 -re "No symbol.*context.*$gdb_prompt $" {
4ec70201 307 set start_attempt 0
917317f4
JM
308 }
309 -re "Line.* Jump anyway.*y or n. $" {
f9e2e39d 310 send_gdb "y\n" answer
917317f4
JM
311 }
312 -re "The program is not being run.*$gdb_prompt $" {
b741e217 313 if { [gdb_reload] != 0 } {
4ec70201 314 return
917317f4 315 }
4ec70201 316 send_gdb "jump *$start\n"
917317f4
JM
317 }
318 timeout {
4ec70201 319 perror "Jump to start() failed (timeout)"
917317f4
JM
320 return
321 }
c906108c 322 }
c906108c 323 }
c906108c
SS
324 return
325 }
83f66e8f
DJ
326
327 if [target_info exists gdb,do_reload_on_run] {
b741e217 328 if { [gdb_reload] != 0 } {
4ec70201 329 return
83f66e8f
DJ
330 }
331 }
c906108c
SS
332 send_gdb "run $args\n"
333# This doesn't work quite right yet.
5aa7ddc2
PM
334# Use -notransfer here so that test cases (like chng-sym.exp)
335# may test for additional start-up messages.
336 gdb_expect 60 {
c906108c 337 -re "The program .* has been started already.*y or n. $" {
f9e2e39d 338 send_gdb "y\n" answer
c906108c
SS
339 exp_continue
340 }
bbb88ebf 341 -notransfer -re "Starting program: \[^\r\n\]*" {}
8e46892c
JK
342 -notransfer -re "$gdb_prompt $" {
343 # There is no more input expected.
344 }
c906108c
SS
345 }
346}
347
b741e217
DJ
348# Generic start command. Return 0 if we could start the program, -1
349# if we could not.
1d41d75c
DE
350#
351# N.B. This function does not wait for gdb to return to the prompt,
352# that is the caller's responsibility.
b741e217
DJ
353
354proc gdb_start_cmd {args} {
e11ac3a3 355 global gdb_prompt use_gdb_stub
b741e217 356
a25eb028
MR
357 foreach command [gdb_init_commands] {
358 send_gdb "$command\n"
b741e217
DJ
359 gdb_expect 30 {
360 -re "$gdb_prompt $" { }
361 default {
4ec70201 362 perror "gdb_init_command for target failed"
ae59b1da 363 return -1
b741e217
DJ
364 }
365 }
366 }
367
e11ac3a3 368 if $use_gdb_stub {
b741e217
DJ
369 return -1
370 }
371
372 send_gdb "start $args\n"
2de75e71
JB
373 # Use -notransfer here so that test cases (like chng-sym.exp)
374 # may test for additional start-up messages.
b741e217
DJ
375 gdb_expect 60 {
376 -re "The program .* has been started already.*y or n. $" {
f9e2e39d 377 send_gdb "y\n" answer
b741e217
DJ
378 exp_continue
379 }
b741e217
DJ
380 -notransfer -re "Starting program: \[^\r\n\]*" {
381 return 0
382 }
383 }
384 return -1
385}
386
4e5a4f58
JB
387# Generic starti command. Return 0 if we could start the program, -1
388# if we could not.
389#
390# N.B. This function does not wait for gdb to return to the prompt,
391# that is the caller's responsibility.
392
393proc gdb_starti_cmd {args} {
394 global gdb_prompt use_gdb_stub
395
396 foreach command [gdb_init_commands] {
397 send_gdb "$command\n"
398 gdb_expect 30 {
399 -re "$gdb_prompt $" { }
400 default {
401 perror "gdb_init_command for target failed"
402 return -1
403 }
404 }
405 }
406
407 if $use_gdb_stub {
408 return -1
409 }
410
411 send_gdb "starti $args\n"
412 gdb_expect 60 {
413 -re "The program .* has been started already.*y or n. $" {
f9e2e39d 414 send_gdb "y\n" answer
4e5a4f58
JB
415 exp_continue
416 }
417 -re "Starting program: \[^\r\n\]*" {
418 return 0
419 }
420 }
421 return -1
422}
423
78a1a894 424# Set a breakpoint at FUNCTION. If there is an additional argument it is
55cd6f92 425# a list of options; the supported options are allow-pending, temporary,
a20714ff 426# message, no-message, passfail and qualified.
5b7d0050
DE
427# The result is 1 for success, 0 for failure.
428#
429# Note: The handling of message vs no-message is messed up, but it's based
430# on historical usage. By default this function does not print passes,
431# only fails.
432# no-message: turns off printing of fails (and passes, but they're already off)
433# message: turns on printing of passes (and fails, but they're already on)
78a1a894
DJ
434
435proc gdb_breakpoint { function args } {
c906108c
SS
436 global gdb_prompt
437 global decimal
438
78a1a894 439 set pending_response n
5b7d0050 440 if {[lsearch -exact $args allow-pending] != -1} {
78a1a894
DJ
441 set pending_response y
442 }
443
e48883f7 444 set break_command "break"
18ac113b 445 set break_message "Breakpoint"
5b7d0050 446 if {[lsearch -exact $args temporary] != -1} {
e48883f7 447 set break_command "tbreak"
18ac113b 448 set break_message "Temporary breakpoint"
e48883f7
DJ
449 }
450
a20714ff
PA
451 if {[lsearch -exact $args qualified] != -1} {
452 append break_command " -qualified"
453 }
454
5b7d0050
DE
455 set print_pass 0
456 set print_fail 1
457 set no_message_loc [lsearch -exact $args no-message]
458 set message_loc [lsearch -exact $args message]
459 # The last one to appear in args wins.
460 if { $no_message_loc > $message_loc } {
461 set print_fail 0
462 } elseif { $message_loc > $no_message_loc } {
463 set print_pass 1
55cd6f92
DJ
464 }
465
5b7d0050
DE
466 set test_name "setting breakpoint at $function"
467
e48883f7 468 send_gdb "$break_command $function\n"
c906108c
SS
469 # The first two regexps are what we get with -g, the third is without -g.
470 gdb_expect 30 {
18ac113b
AR
471 -re "$break_message \[0-9\]* at .*: file .*, line $decimal.\r\n$gdb_prompt $" {}
472 -re "$break_message \[0-9\]*: file .*, line $decimal.\r\n$gdb_prompt $" {}
473 -re "$break_message \[0-9\]* at .*$gdb_prompt $" {}
474 -re "$break_message \[0-9\]* \\(.*\\) pending.*$gdb_prompt $" {
78a1a894 475 if {$pending_response == "n"} {
5b7d0050
DE
476 if { $print_fail } {
477 fail $test_name
55cd6f92 478 }
78a1a894
DJ
479 return 0
480 }
481 }
9f27c604 482 -re "Make breakpoint pending.*y or \\\[n\\\]. $" {
78a1a894 483 send_gdb "$pending_response\n"
14b1a056 484 exp_continue
18fe2033 485 }
28781456 486 -re "A problem internal to GDB has been detected" {
5b7d0050
DE
487 if { $print_fail } {
488 fail "$test_name (GDB internal error)"
489 }
28781456
JK
490 gdb_internal_error_resync
491 return 0
492 }
55cd6f92 493 -re "$gdb_prompt $" {
5b7d0050
DE
494 if { $print_fail } {
495 fail $test_name
496 }
497 return 0
498 }
499 eof {
500 if { $print_fail } {
501 fail "$test_name (eof)"
55cd6f92
DJ
502 }
503 return 0
504 }
505 timeout {
5b7d0050
DE
506 if { $print_fail } {
507 fail "$test_name (timeout)"
55cd6f92
DJ
508 }
509 return 0
510 }
c906108c 511 }
5b7d0050
DE
512 if { $print_pass } {
513 pass $test_name
514 }
ae59b1da 515 return 1
c906108c
SS
516}
517
518# Set breakpoint at function and run gdb until it breaks there.
519# Since this is the only breakpoint that will be set, if it stops
520# at a breakpoint, we will assume it is the one we want. We can't
521# just compare to "function" because it might be a fully qualified,
5b7d0050
DE
522# single quoted C++ function specifier.
523#
524# If there are additional arguments, pass them to gdb_breakpoint.
525# We recognize no-message/message ourselves.
526# The default is no-message.
527# no-message is messed up here, like gdb_breakpoint: to preserve
528# historical usage fails are always printed by default.
529# no-message: turns off printing of fails (and passes, but they're already off)
530# message: turns on printing of passes (and fails, but they're already on)
c906108c 531
78a1a894 532proc runto { function args } {
c906108c
SS
533 global gdb_prompt
534 global decimal
535
536 delete_breakpoints
537
5b7d0050
DE
538 # Default to "no-message".
539 set args "no-message $args"
540
541 set print_pass 0
542 set print_fail 1
543 set no_message_loc [lsearch -exact $args no-message]
544 set message_loc [lsearch -exact $args message]
545 # The last one to appear in args wins.
546 if { $no_message_loc > $message_loc } {
547 set print_fail 0
548 } elseif { $message_loc > $no_message_loc } {
549 set print_pass 1
550 }
551
552 set test_name "running to $function in runto"
553
554 # We need to use eval here to pass our varargs args to gdb_breakpoint
555 # which is also a varargs function.
2c47921e
DE
556 # But we also have to be careful because $function may have multiple
557 # elements, and we don't want Tcl to move the remaining elements after
558 # the first to $args. That is why $function is wrapped in {}.
559 if ![eval gdb_breakpoint {$function} $args] {
ae59b1da 560 return 0
c906108c
SS
561 }
562
563 gdb_run_cmd
564
565 # the "at foo.c:36" output we get with -g.
566 # the "in func" output we get without -g.
567 gdb_expect 30 {
568 -re "Break.* at .*:$decimal.*$gdb_prompt $" {
5b7d0050
DE
569 if { $print_pass } {
570 pass $test_name
571 }
c906108c
SS
572 return 1
573 }
574 -re "Breakpoint \[0-9\]*, \[0-9xa-f\]* in .*$gdb_prompt $" {
5b7d0050
DE
575 if { $print_pass } {
576 pass $test_name
577 }
c906108c
SS
578 return 1
579 }
8e46892c 580 -re "The target does not support running in non-stop mode.\r\n$gdb_prompt $" {
5b7d0050 581 if { $print_fail } {
bc6c7af4 582 unsupported "non-stop mode not supported"
5b7d0050 583 }
8e46892c
JK
584 return 0
585 }
569b05a5 586 -re ".*A problem internal to GDB has been detected" {
5b7d0050
DE
587 if { $print_fail } {
588 fail "$test_name (GDB internal error)"
589 }
569b05a5
JK
590 gdb_internal_error_resync
591 return 0
592 }
c906108c 593 -re "$gdb_prompt $" {
5b7d0050
DE
594 if { $print_fail } {
595 fail $test_name
596 }
c906108c
SS
597 return 0
598 }
72c63395 599 eof {
5b7d0050
DE
600 if { $print_fail } {
601 fail "$test_name (eof)"
602 }
72c63395
JK
603 return 0
604 }
c906108c 605 timeout {
5b7d0050
DE
606 if { $print_fail } {
607 fail "$test_name (timeout)"
608 }
c906108c
SS
609 return 0
610 }
611 }
5b7d0050
DE
612 if { $print_pass } {
613 pass $test_name
614 }
c906108c
SS
615 return 1
616}
617
1d41d75c 618# Ask gdb to run until we hit a breakpoint at main.
c906108c 619#
1d41d75c
DE
620# N.B. This function deletes all existing breakpoints.
621# If you don't want that, use gdb_start_cmd.
622
c906108c 623proc runto_main { } {
5b7d0050 624 return [runto main no-message]
c906108c
SS
625}
626
4ce44c66
JM
627### Continue, and expect to hit a breakpoint.
628### Report a pass or fail, depending on whether it seems to have
629### worked. Use NAME as part of the test name; each call to
630### continue_to_breakpoint should use a NAME which is unique within
631### that test file.
74960c60 632proc gdb_continue_to_breakpoint {name {location_pattern .*}} {
4ce44c66
JM
633 global gdb_prompt
634 set full_name "continue to breakpoint: $name"
635
d6e76313 636 set kfail_pattern "Process record does not support instruction 0xfae64 at.*"
06d97543 637 gdb_test_multiple "continue" $full_name {
a1624241 638 -re "(?:Breakpoint|Temporary breakpoint) .* (at|in) $location_pattern\r\n$gdb_prompt $" {
4ce44c66
JM
639 pass $full_name
640 }
d6e76313
TV
641 -re "\[\r\n\]*(?:$kfail_pattern)\[\r\n\]+$gdb_prompt $" {
642 kfail "gdb/25038" $full_name
643 }
4ce44c66
JM
644 }
645}
646
647
039cf96d
AC
648# gdb_internal_error_resync:
649#
650# Answer the questions GDB asks after it reports an internal error
651# until we get back to a GDB prompt. Decline to quit the debugging
652# session, and decline to create a core file. Return non-zero if the
653# resync succeeds.
654#
655# This procedure just answers whatever questions come up until it sees
656# a GDB prompt; it doesn't require you to have matched the input up to
657# any specific point. However, it only answers questions it sees in
658# the output itself, so if you've matched a question, you had better
659# answer it yourself before calling this.
660#
661# You can use this function thus:
662#
663# gdb_expect {
664# ...
665# -re ".*A problem internal to GDB has been detected" {
666# gdb_internal_error_resync
667# }
668# ...
669# }
670#
671proc gdb_internal_error_resync {} {
672 global gdb_prompt
673
5b7d0050
DE
674 verbose -log "Resyncing due to internal error."
675
039cf96d
AC
676 set count 0
677 while {$count < 10} {
678 gdb_expect {
679 -re "Quit this debugging session\\? \\(y or n\\) $" {
f9e2e39d 680 send_gdb "n\n" answer
039cf96d
AC
681 incr count
682 }
683 -re "Create a core file of GDB\\? \\(y or n\\) $" {
f9e2e39d 684 send_gdb "n\n" answer
039cf96d
AC
685 incr count
686 }
687 -re "$gdb_prompt $" {
688 # We're resynchronized.
689 return 1
690 }
691 timeout {
692 perror "Could not resync from internal error (timeout)"
693 return 0
694 }
695 }
696 }
2b211c59
AC
697 perror "Could not resync from internal error (resync count exceeded)"
698 return 0
039cf96d
AC
699}
700
4ce44c66 701
d17725d7 702# gdb_test_multiple COMMAND MESSAGE EXPECT_ARGUMENTS PROMPT_REGEXP
8dbfb380 703# Send a command to gdb; test the result.
c906108c
SS
704#
705# COMMAND is the command to execute, send to GDB with send_gdb. If
706# this is the null string no command is sent.
2307bd6a
DJ
707# MESSAGE is a message to be printed with the built-in failure patterns
708# if one of them matches. If MESSAGE is empty COMMAND will be used.
709# EXPECT_ARGUMENTS will be fed to expect in addition to the standard
710# patterns. Pattern elements will be evaluated in the caller's
711# context; action elements will be executed in the caller's context.
712# Unlike patterns for gdb_test, these patterns should generally include
713# the final newline and prompt.
d17725d7
TV
714# PROMPT_REGEXP is a regexp matching the expected prompt after the command
715# output. If empty, defaults to "$gdb_prompt $"
c906108c
SS
716#
717# Returns:
2307bd6a
DJ
718# 1 if the test failed, according to a built-in failure pattern
719# 0 if only user-supplied patterns matched
c906108c
SS
720# -1 if there was an internal error.
721#
d422fe19
AC
722# You can use this function thus:
723#
724# gdb_test_multiple "print foo" "test foo" {
725# -re "expected output 1" {
3d63690a 726# pass "test foo"
d422fe19
AC
727# }
728# -re "expected output 2" {
3d63690a
AB
729# fail "test foo"
730# }
731# }
732#
733# Within action elements you can also make use of the variable
734# gdb_test_name. This variable is setup automatically by
735# gdb_test_multiple, and contains the value of MESSAGE. You can then
736# write this, which is equivalent to the above:
737#
738# gdb_test_multiple "print foo" "test foo" {
739# -re "expected output 1" {
740# pass $gdb_test_name
741# }
742# -re "expected output 2" {
743# fail $gdb_test_name
d422fe19
AC
744# }
745# }
746#
f71c18e7
PA
747# Like with "expect", you can also specify the spawn id to match with
748# -i "$id". Interesting spawn ids are $inferior_spawn_id and
749# $gdb_spawn_id. The former matches inferior I/O, while the latter
750# matches GDB I/O. E.g.:
751#
752# send_inferior "hello\n"
753# gdb_test_multiple "continue" "test echo" {
754# -i "$inferior_spawn_id" -re "^hello\r\nhello\r\n$" {
755# pass "got echo"
756# }
757# -i "$gdb_spawn_id" -re "Breakpoint.*$gdb_prompt $" {
758# fail "hit breakpoint"
759# }
760# }
761#
fda326dd 762# The standard patterns, such as "Inferior exited..." and "A problem
f71c18e7
PA
763# ...", all being implicitly appended to that list. These are always
764# expected from $gdb_spawn_id. IOW, callers do not need to worry
765# about resetting "-i" back to $gdb_spawn_id explicitly.
d422fe19 766#
4ccdfbec
TV
767# In EXPECT_ARGUMENTS we can use a -wrap pattern flag, that wraps the regexp
768# pattern as gdb_test wraps its message argument.
769# This allows us to rewrite:
770# gdb_test <command> <pattern> <message>
771# into:
772# gdb_test_multiple <command> <message> {
773# -re -wrap <pattern> {
774# pass $gdb_test_name
775# }
776# }
777#
60b6ede8
TV
778# In EXPECT_ARGUMENTS, a pattern flag -early can be used. It makes sure the
779# pattern is inserted before any implicit pattern added by gdb_test_multiple.
780# Using this pattern flag, we can f.i. setup a kfail for an assertion failure
781# <assert> during gdb_continue_to_breakpoint by the rewrite:
782# gdb_continue_to_breakpoint <msg> <pattern>
783# into:
784# set breakpoint_pattern "(?:Breakpoint|Temporary breakpoint) .* (at|in)"
785# gdb_test_multiple "continue" "continue to breakpoint: <msg>" {
786# -early -re "internal-error: <assert>" {
787# setup_kfail gdb/nnnnn "*-*-*"
788# exp_continue
789# }
790# -re "$breakpoint_pattern <pattern>\r\n$gdb_prompt $" {
791# pass $gdb_test_name
792# }
793# }
794#
d17725d7 795proc gdb_test_multiple { command message user_code { prompt_regexp "" } } {
e11ac3a3 796 global verbose use_gdb_stub
c3f814a1 797 global gdb_prompt pagination_prompt
c906108c 798 global GDB
f71c18e7 799 global gdb_spawn_id
fda326dd 800 global inferior_exited_re
c906108c 801 upvar timeout timeout
c47cebdb 802 upvar expect_out expect_out
749ef8f8 803 global any_spawn_id
c906108c 804
d17725d7
TV
805 if { "$prompt_regexp" == "" } {
806 set prompt_regexp "$gdb_prompt $"
807 }
808
2307bd6a
DJ
809 if { $message == "" } {
810 set message $command
c906108c 811 }
c906108c 812
824cc8dd
JK
813 if [string match "*\[\r\n\]" $command] {
814 error "Invalid trailing newline in \"$message\" test"
815 }
816
8344e389
JK
817 if [string match "*\[\r\n\]*" $message] {
818 error "Invalid newline in \"$message\" test"
819 }
820
e11ac3a3 821 if {$use_gdb_stub
9bfee719 822 && [regexp -nocase {^\s*(r|run|star|start|at|att|atta|attac|attach)\M} \
e11ac3a3
JK
823 $command]} {
824 error "gdbserver does not support $command without extended-remote"
825 }
826
2307bd6a
DJ
827 # TCL/EXPECT WART ALERT
828 # Expect does something very strange when it receives a single braced
829 # argument. It splits it along word separators and performs substitutions.
830 # This means that { "[ab]" } is evaluated as "[ab]", but { "\[ab\]" } is
831 # evaluated as "\[ab\]". But that's not how TCL normally works; inside a
832 # double-quoted list item, "\[ab\]" is just a long way of representing
833 # "[ab]", because the backslashes will be removed by lindex.
834
835 # Unfortunately, there appears to be no easy way to duplicate the splitting
836 # that expect will do from within TCL. And many places make use of the
837 # "\[0-9\]" construct, so we need to support that; and some places make use
838 # of the "[func]" construct, so we need to support that too. In order to
839 # get this right we have to substitute quoted list elements differently
840 # from braced list elements.
841
842 # We do this roughly the same way that Expect does it. We have to use two
843 # lists, because if we leave unquoted newlines in the argument to uplevel
844 # they'll be treated as command separators, and if we escape newlines
845 # we mangle newlines inside of command blocks. This assumes that the
846 # input doesn't contain a pattern which contains actual embedded newlines
847 # at this point!
848
849 regsub -all {\n} ${user_code} { } subst_code
850 set subst_code [uplevel list $subst_code]
851
852 set processed_code ""
60b6ede8
TV
853 set early_processed_code ""
854 # The variable current_list holds the name of the currently processed
855 # list, either processed_code or early_processed_code.
856 set current_list "processed_code"
2307bd6a
DJ
857 set patterns ""
858 set expecting_action 0
21e24d21 859 set expecting_arg 0
4ccdfbec 860 set wrap_pattern 0
2307bd6a
DJ
861 foreach item $user_code subst_item $subst_code {
862 if { $item == "-n" || $item == "-notransfer" || $item == "-nocase" } {
60b6ede8 863 lappend $current_list $item
2307bd6a
DJ
864 continue
865 }
21e24d21 866 if { $item == "-indices" || $item == "-re" || $item == "-ex" } {
60b6ede8
TV
867 lappend $current_list $item
868 continue
869 }
870 if { $item == "-early" } {
871 set current_list "early_processed_code"
21e24d21
PA
872 continue
873 }
f71c18e7 874 if { $item == "-timeout" || $item == "-i" } {
21e24d21 875 set expecting_arg 1
60b6ede8 876 lappend $current_list $item
21e24d21
PA
877 continue
878 }
4ccdfbec
TV
879 if { $item == "-wrap" } {
880 set wrap_pattern 1
881 continue
882 }
21e24d21
PA
883 if { $expecting_arg } {
884 set expecting_arg 0
60b6ede8 885 lappend $current_list $subst_item
2307bd6a
DJ
886 continue
887 }
888 if { $expecting_action } {
60b6ede8 889 lappend $current_list "uplevel [list $item]"
2307bd6a
DJ
890 set expecting_action 0
891 # Cosmetic, no effect on the list.
60b6ede8
TV
892 append $current_list "\n"
893 # End the effect of -early, it only applies to one action.
894 set current_list "processed_code"
2307bd6a
DJ
895 continue
896 }
897 set expecting_action 1
4ccdfbec
TV
898 if { $wrap_pattern } {
899 # Wrap subst_item as is done for the gdb_test PATTERN argument.
60b6ede8 900 lappend $current_list \
4ccdfbec
TV
901 "\[\r\n\]*(?:$subst_item)\[\r\n\]+$gdb_prompt $"
902 set wrap_pattern 0
903 } else {
60b6ede8 904 lappend $current_list $subst_item
4ccdfbec 905 }
2307bd6a
DJ
906 if {$patterns != ""} {
907 append patterns "; "
908 }
909 append patterns "\"$subst_item\""
c906108c
SS
910 }
911
2307bd6a
DJ
912 # Also purely cosmetic.
913 regsub -all {\r} $patterns {\\r} patterns
914 regsub -all {\n} $patterns {\\n} patterns
915
c906108c
SS
916 if $verbose>2 then {
917 send_user "Sending \"$command\" to gdb\n"
2307bd6a 918 send_user "Looking to match \"$patterns\"\n"
c906108c
SS
919 send_user "Message is \"$message\"\n"
920 }
921
922 set result -1
4ec70201 923 set string "${command}\n"
c906108c 924 if { $command != "" } {
543a9323 925 set multi_line_re "\[\r\n\] *>"
c906108c 926 while { "$string" != "" } {
4ec70201
PA
927 set foo [string first "\n" "$string"]
928 set len [string length "$string"]
c906108c 929 if { $foo < [expr $len - 1] } {
4ec70201 930 set str [string range "$string" 0 $foo]
c906108c 931 if { [send_gdb "$str"] != "" } {
4ec70201 932 global suppress_flag
c906108c
SS
933
934 if { ! $suppress_flag } {
4ec70201 935 perror "Couldn't send $command to GDB."
c906108c 936 }
4ec70201 937 fail "$message"
ae59b1da 938 return $result
c906108c 939 }
a0b3c4fd
JM
940 # since we're checking if each line of the multi-line
941 # command are 'accepted' by GDB here,
942 # we need to set -notransfer expect option so that
943 # command output is not lost for pattern matching
944 # - guo
5f279fa6 945 gdb_expect 2 {
543a9323 946 -notransfer -re "$multi_line_re$" { verbose "partial: match" 3 }
5f279fa6 947 timeout { verbose "partial: timeout" 3 }
c906108c 948 }
4ec70201 949 set string [string range "$string" [expr $foo + 1] end]
543a9323 950 set multi_line_re "$multi_line_re.*\[\r\n\] *>"
c906108c 951 } else {
4ec70201 952 break
c906108c
SS
953 }
954 }
955 if { "$string" != "" } {
956 if { [send_gdb "$string"] != "" } {
4ec70201 957 global suppress_flag
c906108c
SS
958
959 if { ! $suppress_flag } {
4ec70201 960 perror "Couldn't send $command to GDB."
c906108c 961 }
4ec70201 962 fail "$message"
ae59b1da 963 return $result
c906108c
SS
964 }
965 }
966 }
967
60b6ede8
TV
968 set code $early_processed_code
969 append code {
9bfee719
MR
970 -re ".*A problem internal to GDB has been detected" {
971 fail "$message (GDB internal error)"
972 gdb_internal_error_resync
28054d69 973 set result -1
9bfee719
MR
974 }
975 -re "\\*\\*\\* DOSEXIT code.*" {
976 if { $message != "" } {
4ec70201 977 fail "$message"
9bfee719 978 }
4ec70201
PA
979 gdb_suppress_entire_file "GDB died"
980 set result -1
9bfee719 981 }
b0f4b84b
DJ
982 }
983 append code $processed_code
9a93502f
PA
984
985 # Reset the spawn id, in case the processed code used -i.
b0f4b84b 986 append code {
f71c18e7 987 -i "$gdb_spawn_id"
9a93502f 988 }
f71c18e7 989
9a93502f 990 append code {
d17725d7 991 -re "Ending remote debugging.*$prompt_regexp" {
c906108c
SS
992 if ![isnative] then {
993 warning "Can`t communicate to remote target."
994 }
995 gdb_exit
996 gdb_start
997 set result -1
998 }
d17725d7 999 -re "Undefined\[a-z\]* command:.*$prompt_regexp" {
c906108c 1000 perror "Undefined command \"$command\"."
9bfee719 1001 fail "$message"
c906108c
SS
1002 set result 1
1003 }
d17725d7 1004 -re "Ambiguous command.*$prompt_regexp" {
c906108c 1005 perror "\"$command\" is not a unique command name."
9bfee719 1006 fail "$message"
c906108c
SS
1007 set result 1
1008 }
d17725d7 1009 -re "$inferior_exited_re with code \[0-9\]+.*$prompt_regexp" {
c906108c 1010 if ![string match "" $message] then {
ed4c619a 1011 set errmsg "$message (the program exited)"
c906108c 1012 } else {
ed4c619a 1013 set errmsg "$command (the program exited)"
c906108c
SS
1014 }
1015 fail "$errmsg"
2307bd6a 1016 set result -1
cb9a9d3e 1017 }
d17725d7 1018 -re "$inferior_exited_re normally.*$prompt_regexp" {
cb9a9d3e 1019 if ![string match "" $message] then {
ed4c619a 1020 set errmsg "$message (the program exited)"
cb9a9d3e 1021 } else {
ed4c619a 1022 set errmsg "$command (the program exited)"
cb9a9d3e
MS
1023 }
1024 fail "$errmsg"
2307bd6a 1025 set result -1
c906108c 1026 }
d17725d7 1027 -re "The program is not being run.*$prompt_regexp" {
c906108c 1028 if ![string match "" $message] then {
ed4c619a 1029 set errmsg "$message (the program is no longer running)"
c906108c 1030 } else {
ed4c619a 1031 set errmsg "$command (the program is no longer running)"
c906108c
SS
1032 }
1033 fail "$errmsg"
2307bd6a 1034 set result -1
c906108c 1035 }
d17725d7 1036 -re "\r\n$prompt_regexp" {
c906108c
SS
1037 if ![string match "" $message] then {
1038 fail "$message"
1039 }
1040 set result 1
1041 }
c3f814a1 1042 -re "$pagination_prompt" {
c906108c
SS
1043 send_gdb "\n"
1044 perror "Window too small."
9bfee719 1045 fail "$message"
2307bd6a 1046 set result -1
c906108c 1047 }
b598bfda 1048 -re "\\((y or n|y or \\\[n\\\]|\\\[y\\\] or n)\\) " {
f9e2e39d 1049 send_gdb "n\n" answer
d17725d7 1050 gdb_expect -re "$prompt_regexp"
b598bfda
DJ
1051 fail "$message (got interactive prompt)"
1052 set result -1
1053 }
1054 -re "\\\[0\\\] cancel\r\n\\\[1\\\] all.*\r\n> $" {
1055 send_gdb "0\n"
d17725d7 1056 gdb_expect -re "$prompt_regexp"
b598bfda 1057 fail "$message (got breakpoint menu)"
2307bd6a 1058 set result -1
c906108c 1059 }
749ef8f8 1060
fe1a5cad
TV
1061 -i $gdb_spawn_id
1062 eof {
1063 perror "GDB process no longer exists"
1064 set wait_status [wait -i $gdb_spawn_id]
1065 verbose -log "GDB process exited with wait status $wait_status"
1066 if { $message != "" } {
1067 fail "$message"
1068 }
1069 return -1
1070 }
9a93502f 1071 }
fe1a5cad 1072
9a93502f
PA
1073 # Now patterns that apply to any spawn id specified.
1074 append code {
749ef8f8 1075 -i $any_spawn_id
9bfee719
MR
1076 eof {
1077 perror "Process no longer exists"
1078 if { $message != "" } {
1079 fail "$message"
1080 }
1081 return -1
c906108c 1082 }
9bfee719 1083 full_buffer {
c906108c 1084 perror "internal buffer is full."
9bfee719 1085 fail "$message"
2307bd6a 1086 set result -1
c906108c
SS
1087 }
1088 timeout {
1089 if ![string match "" $message] then {
1090 fail "$message (timeout)"
1091 }
1092 set result 1
1093 }
1094 }
2307bd6a 1095
9a93502f
PA
1096 # remote_expect calls the eof section if there is an error on the
1097 # expect call. We already have eof sections above, and we don't
1098 # want them to get called in that situation. Since the last eof
1099 # section becomes the error section, here we define another eof
1100 # section, but with an empty spawn_id list, so that it won't ever
1101 # match.
1102 append code {
1103 -i "" eof {
1104 # This comment is here because the eof section must not be
1105 # the empty string, otherwise remote_expect won't realize
1106 # it exists.
1107 }
1108 }
1109
3d63690a
AB
1110 # Create gdb_test_name in the parent scope. If this variable
1111 # already exists, which it might if we have nested calls to
1112 # gdb_test_multiple, then preserve the old value, otherwise,
1113 # create a new variable in the parent scope.
1114 upvar gdb_test_name gdb_test_name
1115 if { [info exists gdb_test_name] } {
1116 set gdb_test_name_old "$gdb_test_name"
1117 }
1118 set gdb_test_name "$message"
1119
2307bd6a 1120 set result 0
4a40f85a 1121 set code [catch {gdb_expect $code} string]
3d63690a
AB
1122
1123 # Clean up the gdb_test_name variable. If we had a
1124 # previous value then restore it, otherwise, delete the variable
1125 # from the parent scope.
1126 if { [info exists gdb_test_name_old] } {
1127 set gdb_test_name "$gdb_test_name_old"
1128 } else {
1129 unset gdb_test_name
1130 }
1131
04f6ecf2 1132 if {$code == 1} {
4ec70201 1133 global errorInfo errorCode
04f6ecf2 1134 return -code error -errorinfo $errorInfo -errorcode $errorCode $string
d6d7a51a 1135 } elseif {$code > 1} {
04f6ecf2
DJ
1136 return -code $code $string
1137 }
c906108c
SS
1138 return $result
1139}
2307bd6a
DJ
1140
1141# gdb_test COMMAND PATTERN MESSAGE QUESTION RESPONSE
1142# Send a command to gdb; test the result.
1143#
1144# COMMAND is the command to execute, send to GDB with send_gdb. If
1145# this is the null string no command is sent.
1146# PATTERN is the pattern to match for a PASS, and must NOT include
79fad5b8
SL
1147# the \r\n sequence immediately before the gdb prompt. This argument
1148# may be omitted to just match the prompt, ignoring whatever output
1149# precedes it.
2307bd6a
DJ
1150# MESSAGE is an optional message to be printed. If this is
1151# omitted, then the pass/fail messages use the command string as the
1152# message. (If this is the empty string, then sometimes we don't
1153# call pass or fail at all; I don't understand this at all.)
1154# QUESTION is a question GDB may ask in response to COMMAND, like
1155# "are you sure?"
1156# RESPONSE is the response to send if QUESTION appears.
1157#
1158# Returns:
1159# 1 if the test failed,
1160# 0 if the test passes,
1161# -1 if there was an internal error.
1162#
1163proc gdb_test { args } {
2307bd6a 1164 global gdb_prompt
2307bd6a
DJ
1165 upvar timeout timeout
1166
1167 if [llength $args]>2 then {
1168 set message [lindex $args 2]
1169 } else {
1170 set message [lindex $args 0]
1171 }
1172 set command [lindex $args 0]
1173 set pattern [lindex $args 1]
1174
e452e88f
TV
1175 set user_code {}
1176 lappend user_code {
75312ae3 1177 -re "\[\r\n\]*(?:$pattern)\[\r\n\]+$gdb_prompt $" {
2307bd6a
DJ
1178 if ![string match "" $message] then {
1179 pass "$message"
1180 }
1181 }
e452e88f
TV
1182 }
1183
1184 if { [llength $args] == 5 } {
1185 set question_string [lindex $args 3]
1186 set response_string [lindex $args 4]
1187 lappend user_code {
1188 -re "(${question_string})$" {
1189 send_gdb "$response_string\n"
1190 exp_continue
1191 }
2307bd6a 1192 }
e452e88f
TV
1193 }
1194
1195 set user_code [join $user_code]
1196 return [gdb_test_multiple $command $message $user_code]
2307bd6a 1197}
a7b75dfd 1198
a80cf5d8
TV
1199# Return 1 if version MAJOR.MINOR is at least AT_LEAST_MAJOR.AT_LEAST_MINOR.
1200proc version_at_least { major minor at_least_major at_least_minor} {
1201 if { $major > $at_least_major } {
2a3ad588 1202 return 1
a80cf5d8
TV
1203 } elseif { $major == $at_least_major \
1204 && $minor >= $at_least_minor } {
2a3ad588
TV
1205 return 1
1206 } else {
1207 return 0
1208 }
1209}
1210
a80cf5d8
TV
1211# Return 1 if tcl version used is at least MAJOR.MINOR
1212proc tcl_version_at_least { major minor } {
1213 global tcl_version
1214 regexp {^([0-9]+)\.([0-9]+)$} $tcl_version \
1215 dummy tcl_version_major tcl_version_minor
1216 return [version_at_least $tcl_version_major $tcl_version_minor \
1217 $major $minor]
1218}
1219
2a3ad588
TV
1220if { [tcl_version_at_least 8 5] == 0 } {
1221 # lrepeat was added in tcl 8.5. Only add if missing.
1222 proc lrepeat { n element } {
1223 if { [string is integer -strict $n] == 0 } {
1224 error "expected integer but got \"$n\""
1225 }
1226 if { $n < 0 } {
1227 error "bad count \"$n\": must be integer >= 0"
1228 }
1229 set res [list]
1230 for {set i 0} {$i < $n} {incr i} {
1231 lappend res $element
1232 }
1233 return $res
1234 }
1235}
1236
a7b75dfd
JB
1237# gdb_test_no_output COMMAND MESSAGE
1238# Send a command to GDB and verify that this command generated no output.
1239#
1240# See gdb_test_multiple for a description of the COMMAND and MESSAGE
1241# parameters. If MESSAGE is ommitted, then COMMAND will be used as
c22decce
JB
1242# the message. (If MESSAGE is the empty string, then sometimes we do not
1243# call pass or fail at all; I don't understand this at all.)
a7b75dfd
JB
1244
1245proc gdb_test_no_output { args } {
1246 global gdb_prompt
1247 set command [lindex $args 0]
1248 if [llength $args]>1 then {
1249 set message [lindex $args 1]
1250 } else {
1251 set message $command
1252 }
1253
1254 set command_regex [string_to_regexp $command]
1255 gdb_test_multiple $command $message {
1256 -re "^$command_regex\r\n$gdb_prompt $" {
c22decce
JB
1257 if ![string match "" $message] then {
1258 pass "$message"
1259 }
a7b75dfd
JB
1260 }
1261 }
1262}
1263
6b0ecdc2
DE
1264# Send a command and then wait for a sequence of outputs.
1265# This is useful when the sequence is long and contains ".*", a single
1266# regexp to match the entire output can get a timeout much easier.
1267#
968a13f8
PA
1268# COMMAND is the command to execute, send to GDB with send_gdb. If
1269# this is the null string no command is sent.
6b0ecdc2
DE
1270# TEST_NAME is passed to pass/fail. COMMAND is used if TEST_NAME is "".
1271# EXPECTED_OUTPUT_LIST is a list of regexps of expected output, which are
1272# processed in order, and all must be present in the output.
1273#
1274# It is unnecessary to specify ".*" at the beginning or end of any regexp,
1275# there is an implicit ".*" between each element of EXPECTED_OUTPUT_LIST.
1276# There is also an implicit ".*" between the last regexp and the gdb prompt.
1277#
1278# Like gdb_test and gdb_test_multiple, the output is expected to end with the
1279# gdb prompt, which must not be specified in EXPECTED_OUTPUT_LIST.
5fa290c1
DE
1280#
1281# Returns:
1282# 1 if the test failed,
1283# 0 if the test passes,
1284# -1 if there was an internal error.
6b0ecdc2
DE
1285
1286proc gdb_test_sequence { command test_name expected_output_list } {
1287 global gdb_prompt
1288 if { $test_name == "" } {
1289 set test_name $command
1290 }
1291 lappend expected_output_list ""; # implicit ".*" before gdb prompt
968a13f8
PA
1292 if { $command != "" } {
1293 send_gdb "$command\n"
1294 }
5fa290c1 1295 return [gdb_expect_list $test_name "$gdb_prompt $" $expected_output_list]
6b0ecdc2
DE
1296}
1297
c906108c
SS
1298\f
1299# Test that a command gives an error. For pass or fail, return
1300# a 1 to indicate that more tests can proceed. However a timeout
1301# is a serious error, generates a special fail message, and causes
1302# a 0 to be returned to indicate that more tests are likely to fail
1303# as well.
1304
1305proc test_print_reject { args } {
1306 global gdb_prompt
1307 global verbose
1308
1309 if [llength $args]==2 then {
1310 set expectthis [lindex $args 1]
1311 } else {
1312 set expectthis "should never match this bogus string"
1313 }
1314 set sendthis [lindex $args 0]
1315 if $verbose>2 then {
1316 send_user "Sending \"$sendthis\" to gdb\n"
1317 send_user "Looking to match \"$expectthis\"\n"
1318 }
1319 send_gdb "$sendthis\n"
1320 #FIXME: Should add timeout as parameter.
1321 gdb_expect {
1322 -re "A .* in expression.*\\.*$gdb_prompt $" {
1323 pass "reject $sendthis"
1324 return 1
1325 }
1326 -re "Invalid syntax in expression.*$gdb_prompt $" {
1327 pass "reject $sendthis"
1328 return 1
1329 }
1330 -re "Junk after end of expression.*$gdb_prompt $" {
1331 pass "reject $sendthis"
1332 return 1
1333 }
1334 -re "Invalid number.*$gdb_prompt $" {
1335 pass "reject $sendthis"
1336 return 1
1337 }
1338 -re "Invalid character constant.*$gdb_prompt $" {
1339 pass "reject $sendthis"
1340 return 1
1341 }
1342 -re "No symbol table is loaded.*$gdb_prompt $" {
1343 pass "reject $sendthis"
1344 return 1
1345 }
1346 -re "No symbol .* in current context.*$gdb_prompt $" {
1347 pass "reject $sendthis"
1348 return 1
1349 }
c4b7bc2b
JB
1350 -re "Unmatched single quote.*$gdb_prompt $" {
1351 pass "reject $sendthis"
1352 return 1
1353 }
1354 -re "A character constant must contain at least one character.*$gdb_prompt $" {
1355 pass "reject $sendthis"
1356 return 1
1357 }
c906108c
SS
1358 -re "$expectthis.*$gdb_prompt $" {
1359 pass "reject $sendthis"
1360 return 1
1361 }
1362 -re ".*$gdb_prompt $" {
1363 fail "reject $sendthis"
1364 return 1
1365 }
1366 default {
1367 fail "reject $sendthis (eof or timeout)"
1368 return 0
1369 }
1370 }
1371}
1372\f
c906108c
SS
1373
1374# Same as gdb_test, but the second parameter is not a regexp,
1375# but a string that must match exactly.
1376
1377proc gdb_test_exact { args } {
1378 upvar timeout timeout
1379
1380 set command [lindex $args 0]
1381
1382 # This applies a special meaning to a null string pattern. Without
1383 # this, "$pattern\r\n$gdb_prompt $" will match anything, including error
1384 # messages from commands that should have no output except a new
1385 # prompt. With this, only results of a null string will match a null
1386 # string pattern.
1387
1388 set pattern [lindex $args 1]
1389 if [string match $pattern ""] {
1390 set pattern [string_to_regexp [lindex $args 0]]
1391 } else {
1392 set pattern [string_to_regexp [lindex $args 1]]
1393 }
1394
1395 # It is most natural to write the pattern argument with only
1396 # embedded \n's, especially if you are trying to avoid Tcl quoting
1397 # problems. But gdb_expect really wants to see \r\n in patterns. So
1398 # transform the pattern here. First transform \r\n back to \n, in
1399 # case some users of gdb_test_exact already do the right thing.
1400 regsub -all "\r\n" $pattern "\n" pattern
1401 regsub -all "\n" $pattern "\r\n" pattern
1402 if [llength $args]==3 then {
1403 set message [lindex $args 2]
d1e36019 1404 return [gdb_test $command $pattern $message]
c906108c
SS
1405 }
1406
d1e36019 1407 return [gdb_test $command $pattern]
c906108c 1408}
2dfb8c17
DE
1409
1410# Wrapper around gdb_test_multiple that looks for a list of expected
1411# output elements, but which can appear in any order.
1412# CMD is the gdb command.
1413# NAME is the name of the test.
1414# ELM_FIND_REGEXP specifies how to partition the output into elements to
1415# compare.
1416# ELM_EXTRACT_REGEXP specifies the part of ELM_FIND_REGEXP to compare.
1417# RESULT_MATCH_LIST is a list of exact matches for each expected element.
1418# All elements of RESULT_MATCH_LIST must appear for the test to pass.
1419#
1420# A typical use of ELM_FIND_REGEXP/ELM_EXTRACT_REGEXP is to extract one line
1421# of text per element and then strip trailing \r\n's.
1422# Example:
1423# gdb_test_list_exact "foo" "bar" \
eec52c44
PM
1424# "\[^\r\n\]+\[\r\n\]+" \
1425# "\[^\r\n\]+" \
2dfb8c17
DE
1426# { \
1427# {expected result 1} \
1428# {expected result 2} \
1429# }
1430
1431proc gdb_test_list_exact { cmd name elm_find_regexp elm_extract_regexp result_match_list } {
1432 global gdb_prompt
1433
1434 set matches [lsort $result_match_list]
1435 set seen {}
1436 gdb_test_multiple $cmd $name {
1437 "$cmd\[\r\n\]" { exp_continue }
1438 -re $elm_find_regexp {
1439 set str $expect_out(0,string)
1440 verbose -log "seen: $str" 3
1441 regexp -- $elm_extract_regexp $str elm_seen
1442 verbose -log "extracted: $elm_seen" 3
1443 lappend seen $elm_seen
1444 exp_continue
1445 }
1446 -re "$gdb_prompt $" {
1447 set failed ""
1448 foreach got [lsort $seen] have $matches {
1449 if {![string equal $got $have]} {
1450 set failed $have
1451 break
1452 }
1453 }
1454 if {[string length $failed] != 0} {
1455 fail "$name ($failed not found)"
1456 } else {
1457 pass $name
1458 }
1459 }
1460 }
1461}
188a61b4
PA
1462
1463# gdb_test_stdio COMMAND INFERIOR_PATTERN GDB_PATTERN MESSAGE
1464# Send a command to gdb; expect inferior and gdb output.
1465#
1466# See gdb_test_multiple for a description of the COMMAND and MESSAGE
1467# parameters.
1468#
1469# INFERIOR_PATTERN is the pattern to match against inferior output.
1470#
1471# GDB_PATTERN is the pattern to match against gdb output, and must NOT
1472# include the \r\n sequence immediately before the gdb prompt, nor the
1473# prompt. The default is empty.
1474#
1475# Both inferior and gdb patterns must match for a PASS.
1476#
1477# If MESSAGE is ommitted, then COMMAND will be used as the message.
1478#
1479# Returns:
1480# 1 if the test failed,
1481# 0 if the test passes,
1482# -1 if there was an internal error.
1483#
1484
1485proc gdb_test_stdio {command inferior_pattern {gdb_pattern ""} {message ""}} {
1486 global inferior_spawn_id gdb_spawn_id
1487 global gdb_prompt
1488
1489 if {$message == ""} {
1490 set message $command
1491 }
1492
1493 set inferior_matched 0
1494 set gdb_matched 0
1495
1496 # Use an indirect spawn id list, and remove the inferior spawn id
1497 # from the expected output as soon as it matches, in case
1498 # $inferior_pattern happens to be a prefix of the resulting full
1499 # gdb pattern below (e.g., "\r\n").
1500 global gdb_test_stdio_spawn_id_list
1501 set gdb_test_stdio_spawn_id_list "$inferior_spawn_id"
1502
1503 # Note that if $inferior_spawn_id and $gdb_spawn_id are different,
1504 # then we may see gdb's output arriving before the inferior's
1505 # output.
1506 set res [gdb_test_multiple $command $message {
1507 -i gdb_test_stdio_spawn_id_list -re "$inferior_pattern" {
1508 set inferior_matched 1
1509 if {!$gdb_matched} {
1510 set gdb_test_stdio_spawn_id_list ""
1511 exp_continue
1512 }
1513 }
1514 -i $gdb_spawn_id -re "$gdb_pattern\r\n$gdb_prompt $" {
1515 set gdb_matched 1
1516 if {!$inferior_matched} {
1517 exp_continue
1518 }
1519 }
1520 }]
1521 if {$res == 0} {
1522 pass $message
1523 } else {
1524 verbose -log "inferior_matched=$inferior_matched, gdb_matched=$gdb_matched"
1525 }
1526 return $res
1527}
1528
2e62ab40
AB
1529# get_print_expr_at_depths EXP OUTPUTS
1530#
1531# Used for testing 'set print max-depth'. Prints the expression EXP
1532# with 'set print max-depth' set to various depths. OUTPUTS is a list
1533# of `n` different patterns to match at each of the depths from 0 to
1534# (`n` - 1).
1535#
1536# This proc does one final check with the max-depth set to 'unlimited'
1537# which is tested against the last pattern in the OUTPUTS list. The
1538# OUTPUTS list is therefore required to match every depth from 0 to a
1539# depth where the whole of EXP is printed with no ellipsis.
1540#
1541# This proc leaves the 'set print max-depth' set to 'unlimited'.
1542proc gdb_print_expr_at_depths {exp outputs} {
1543 for { set depth 0 } { $depth <= [llength $outputs] } { incr depth } {
1544 if { $depth == [llength $outputs] } {
1545 set expected_result [lindex $outputs [expr [llength $outputs] - 1]]
1546 set depth_string "unlimited"
1547 } else {
1548 set expected_result [lindex $outputs $depth]
1549 set depth_string $depth
1550 }
1551
1552 with_test_prefix "exp='$exp': depth=${depth_string}" {
1553 gdb_test_no_output "set print max-depth ${depth_string}"
1554 gdb_test "p $exp" "$expected_result"
1555 }
1556 }
1557}
1558
c906108c 1559\f
bd293940
PA
1560
1561# Issue a PASS and return true if evaluating CONDITION in the caller's
1562# frame returns true, and issue a FAIL and return false otherwise.
1563# MESSAGE is the pass/fail message to be printed. If MESSAGE is
1564# omitted or is empty, then the pass/fail messages use the condition
1565# string as the message.
1566
1567proc gdb_assert { condition {message ""} } {
1568 if { $message == ""} {
1569 set message $condition
1570 }
1571
1572 set res [uplevel 1 expr $condition]
1573 if {!$res} {
1574 fail $message
1575 } else {
1576 pass $message
1577 }
1578 return $res
1579}
1580
c906108c
SS
1581proc gdb_reinitialize_dir { subdir } {
1582 global gdb_prompt
1583
1584 if [is_remote host] {
ae59b1da 1585 return ""
c906108c
SS
1586 }
1587 send_gdb "dir\n"
1588 gdb_expect 60 {
1589 -re "Reinitialize source path to empty.*y or n. " {
f9e2e39d 1590 send_gdb "y\n" answer
c906108c
SS
1591 gdb_expect 60 {
1592 -re "Source directories searched.*$gdb_prompt $" {
1593 send_gdb "dir $subdir\n"
1594 gdb_expect 60 {
1595 -re "Source directories searched.*$gdb_prompt $" {
1596 verbose "Dir set to $subdir"
1597 }
1598 -re "$gdb_prompt $" {
1599 perror "Dir \"$subdir\" failed."
1600 }
1601 }
1602 }
1603 -re "$gdb_prompt $" {
1604 perror "Dir \"$subdir\" failed."
1605 }
1606 }
1607 }
1608 -re "$gdb_prompt $" {
1609 perror "Dir \"$subdir\" failed."
1610 }
1611 }
1612}
1613
1614#
1615# gdb_exit -- exit the GDB, killing the target program if necessary
1616#
1617proc default_gdb_exit {} {
1618 global GDB
6b8ce727 1619 global INTERNAL_GDBFLAGS GDBFLAGS
c906108c 1620 global verbose
51f77c37 1621 global gdb_spawn_id inferior_spawn_id
5e92f71a 1622 global inotify_log_file
c906108c 1623
4ec70201 1624 gdb_stop_suppressing_tests
c906108c
SS
1625
1626 if ![info exists gdb_spawn_id] {
4ec70201 1627 return
c906108c
SS
1628 }
1629
6b8ce727 1630 verbose "Quitting $GDB $INTERNAL_GDBFLAGS $GDBFLAGS"
c906108c 1631
5e92f71a
TT
1632 if {[info exists inotify_log_file] && [file exists $inotify_log_file]} {
1633 set fd [open $inotify_log_file]
1634 set data [read -nonewline $fd]
1635 close $fd
1636
1637 if {[string compare $data ""] != 0} {
1638 warning "parallel-unsafe file creations noticed"
1639
1640 # Clear the log.
1641 set fd [open $inotify_log_file w]
1642 close $fd
1643 }
1644 }
1645
c906108c 1646 if { [is_remote host] && [board_info host exists fileid] } {
4ec70201 1647 send_gdb "quit\n"
c906108c
SS
1648 gdb_expect 10 {
1649 -re "y or n" {
f9e2e39d 1650 send_gdb "y\n" answer
4ec70201 1651 exp_continue
c906108c
SS
1652 }
1653 -re "DOSEXIT code" { }
1654 default { }
1655 }
1656 }
1657
1658 if ![is_remote host] {
4ec70201 1659 remote_close host
c906108c
SS
1660 }
1661 unset gdb_spawn_id
51f77c37 1662 unset inferior_spawn_id
c906108c
SS
1663}
1664
3e3ffd2b 1665# Load a file into the debugger.
2db8e78e 1666# The return value is 0 for success, -1 for failure.
c906108c 1667#
2db8e78e
MC
1668# This procedure also set the global variable GDB_FILE_CMD_DEBUG_INFO
1669# to one of these values:
3e3ffd2b 1670#
2db8e78e
MC
1671# debug file was loaded successfully and has debug information
1672# nodebug file was loaded successfully and has no debug information
608e2dbb
TT
1673# lzma file was loaded, .gnu_debugdata found, but no LZMA support
1674# compiled in
2db8e78e 1675# fail file was not loaded
c906108c 1676#
2db8e78e
MC
1677# I tried returning this information as part of the return value,
1678# but ran into a mess because of the many re-implementations of
1679# gdb_load in config/*.exp.
3e3ffd2b 1680#
2db8e78e
MC
1681# TODO: gdb.base/sepdebug.exp and gdb.stabs/weird.exp might be able to use
1682# this if they can get more information set.
3e3ffd2b 1683
c906108c 1684proc gdb_file_cmd { arg } {
3e3ffd2b 1685 global gdb_prompt
c906108c 1686 global verbose
c906108c 1687 global GDB
b741e217
DJ
1688 global last_loaded_file
1689
975531db 1690 # Save this for the benefit of gdbserver-support.exp.
b741e217 1691 set last_loaded_file $arg
c906108c 1692
2db8e78e
MC
1693 # Set whether debug info was found.
1694 # Default to "fail".
1695 global gdb_file_cmd_debug_info
1696 set gdb_file_cmd_debug_info "fail"
1697
c906108c 1698 if [is_remote host] {
3e3ffd2b 1699 set arg [remote_download host $arg]
c906108c 1700 if { $arg == "" } {
2db8e78e
MC
1701 perror "download failed"
1702 return -1
c906108c
SS
1703 }
1704 }
1705
4c42eaff 1706 # The file command used to kill the remote target. For the benefit
f9e2e39d
AH
1707 # of the testsuite, preserve this behavior. Mark as optional so it doesn't
1708 # get written to the stdin log.
1709 send_gdb "kill\n" optional
4c42eaff
DJ
1710 gdb_expect 120 {
1711 -re "Kill the program being debugged. .y or n. $" {
f9e2e39d 1712 send_gdb "y\n" answer
4c42eaff
DJ
1713 verbose "\t\tKilling previous program being debugged"
1714 exp_continue
1715 }
1716 -re "$gdb_prompt $" {
1717 # OK.
1718 }
1719 }
1720
c906108c
SS
1721 send_gdb "file $arg\n"
1722 gdb_expect 120 {
3453e7e4 1723 -re "Reading symbols from.*LZMA support was disabled.*$gdb_prompt $" {
608e2dbb
TT
1724 verbose "\t\tLoaded $arg into $GDB; .gnu_debugdata found but no LZMA available"
1725 set gdb_file_cmd_debug_info "lzma"
1726 return 0
1727 }
3453e7e4 1728 -re "Reading symbols from.*no debugging symbols found.*$gdb_prompt $" {
975531db 1729 verbose "\t\tLoaded $arg into $GDB with no debugging symbols"
2db8e78e
MC
1730 set gdb_file_cmd_debug_info "nodebug"
1731 return 0
3e3ffd2b 1732 }
3453e7e4 1733 -re "Reading symbols from.*$gdb_prompt $" {
975531db 1734 verbose "\t\tLoaded $arg into $GDB"
2db8e78e
MC
1735 set gdb_file_cmd_debug_info "debug"
1736 return 0
c906108c 1737 }
c906108c 1738 -re "Load new symbol table from \".*\".*y or n. $" {
f9e2e39d 1739 send_gdb "y\n" answer
c906108c 1740 gdb_expect 120 {
3453e7e4 1741 -re "Reading symbols from.*$gdb_prompt $" {
c906108c 1742 verbose "\t\tLoaded $arg with new symbol table into $GDB"
2db8e78e
MC
1743 set gdb_file_cmd_debug_info "debug"
1744 return 0
c906108c
SS
1745 }
1746 timeout {
975531db 1747 perror "Couldn't load $arg, other program already loaded (timeout)."
2db8e78e 1748 return -1
c906108c 1749 }
975531db
DE
1750 eof {
1751 perror "Couldn't load $arg, other program already loaded (eof)."
1752 return -1
1753 }
c906108c
SS
1754 }
1755 }
1756 -re "No such file or directory.*$gdb_prompt $" {
2db8e78e
MC
1757 perror "($arg) No such file or directory"
1758 return -1
c906108c 1759 }
04e7407c 1760 -re "A problem internal to GDB has been detected" {
5b7d0050 1761 fail "($arg) (GDB internal error)"
04e7407c
JK
1762 gdb_internal_error_resync
1763 return -1
1764 }
c906108c 1765 -re "$gdb_prompt $" {
975531db 1766 perror "Couldn't load $arg into $GDB."
2db8e78e 1767 return -1
c906108c
SS
1768 }
1769 timeout {
975531db 1770 perror "Couldn't load $arg into $GDB (timeout)."
2db8e78e 1771 return -1
c906108c
SS
1772 }
1773 eof {
1774 # This is an attempt to detect a core dump, but seems not to
1775 # work. Perhaps we need to match .* followed by eof, in which
1776 # gdb_expect does not seem to have a way to do that.
975531db 1777 perror "Couldn't load $arg into $GDB (eof)."
2db8e78e 1778 return -1
c906108c
SS
1779 }
1780 }
1781}
1782
94696ad3
PA
1783# Default gdb_spawn procedure.
1784
1785proc default_gdb_spawn { } {
1786 global use_gdb_stub
c906108c 1787 global GDB
6b8ce727 1788 global INTERNAL_GDBFLAGS GDBFLAGS
4ec70201 1789 global gdb_spawn_id
c906108c 1790
4ec70201 1791 gdb_stop_suppressing_tests
c906108c 1792
e11ac3a3
JK
1793 # Set the default value, it may be overriden later by specific testfile.
1794 #
1795 # Use `set_board_info use_gdb_stub' for the board file to flag the inferior
1796 # is already started after connecting and run/attach are not supported.
1797 # This is used for the "remote" protocol. After GDB starts you should
1798 # check global $use_gdb_stub instead of the board as the testfile may force
1799 # a specific different target protocol itself.
1800 set use_gdb_stub [target_info exists use_gdb_stub]
1801
6b8ce727 1802 verbose "Spawning $GDB $INTERNAL_GDBFLAGS $GDBFLAGS"
408e9b8b 1803 gdb_write_cmd_file "$GDB $INTERNAL_GDBFLAGS $GDBFLAGS"
c906108c
SS
1804
1805 if [info exists gdb_spawn_id] {
ae59b1da 1806 return 0
c906108c
SS
1807 }
1808
1809 if ![is_remote host] {
1810 if { [which $GDB] == 0 } then {
1811 perror "$GDB does not exist."
1812 exit 1
1813 }
1814 }
4ec70201 1815 set res [remote_spawn host "$GDB $INTERNAL_GDBFLAGS $GDBFLAGS [host_info gdb_opts]"]
c906108c
SS
1816 if { $res < 0 || $res == "" } {
1817 perror "Spawning $GDB failed."
ae59b1da 1818 return 1
c906108c 1819 }
717cf30c
AG
1820
1821 set gdb_spawn_id $res
94696ad3
PA
1822 return 0
1823}
1824
1825# Default gdb_start procedure.
1826
1827proc default_gdb_start { } {
bd447abb 1828 global gdb_prompt
94696ad3 1829 global gdb_spawn_id
f71c18e7 1830 global inferior_spawn_id
94696ad3
PA
1831
1832 if [info exists gdb_spawn_id] {
1833 return 0
1834 }
1835
f9e2e39d
AH
1836 # Keep track of the number of times GDB has been launched.
1837 global gdb_instances
1838 incr gdb_instances
1839
1840 gdb_stdin_log_init
1841
94696ad3
PA
1842 set res [gdb_spawn]
1843 if { $res != 0} {
1844 return $res
1845 }
1846
f71c18e7
PA
1847 # Default to assuming inferior I/O is done on GDB's terminal.
1848 if {![info exists inferior_spawn_id]} {
1849 set inferior_spawn_id $gdb_spawn_id
1850 }
1851
94696ad3
PA
1852 # When running over NFS, particularly if running many simultaneous
1853 # tests on different hosts all using the same server, things can
1854 # get really slow. Give gdb at least 3 minutes to start up.
bd447abb
SM
1855 gdb_expect 360 {
1856 -re "\[\r\n\]$gdb_prompt $" {
1857 verbose "GDB initialized."
1858 }
1859 -re "$gdb_prompt $" {
1860 perror "GDB never initialized."
1861 unset gdb_spawn_id
1862 return -1
1863 }
1864 timeout {
1865 perror "(timeout) GDB never initialized after 10 seconds."
1866 remote_close host
1867 unset gdb_spawn_id
1868 return -1
c906108c
SS
1869 }
1870 }
94696ad3 1871
c906108c
SS
1872 # force the height to "unlimited", so no pagers get used
1873
1874 send_gdb "set height 0\n"
1875 gdb_expect 10 {
1876 -re "$gdb_prompt $" {
1877 verbose "Setting height to 0." 2
1878 }
1879 timeout {
1880 warning "Couldn't set the height to 0"
1881 }
1882 }
1883 # force the width to "unlimited", so no wraparound occurs
1884 send_gdb "set width 0\n"
1885 gdb_expect 10 {
1886 -re "$gdb_prompt $" {
1887 verbose "Setting width to 0." 2
1888 }
1889 timeout {
1890 warning "Couldn't set the width to 0."
1891 }
1892 }
29b52314
AH
1893
1894 gdb_debug_init
ae59b1da 1895 return 0
c906108c
SS
1896}
1897
717cf30c
AG
1898# Utility procedure to give user control of the gdb prompt in a script. It is
1899# meant to be used for debugging test cases, and should not be left in the
1900# test cases code.
1901
1902proc gdb_interact { } {
1903 global gdb_spawn_id
1904 set spawn_id $gdb_spawn_id
1905
1906 send_user "+------------------------------------------+\n"
1907 send_user "| Script interrupted, you can now interact |\n"
1908 send_user "| with by gdb. Type >>> to continue. |\n"
1909 send_user "+------------------------------------------+\n"
1910
1911 interact {
1912 ">>>" return
1913 }
1914}
1915
ec3c07fc
NS
1916# Examine the output of compilation to determine whether compilation
1917# failed or not. If it failed determine whether it is due to missing
1918# compiler or due to compiler error. Report pass, fail or unsupported
1919# as appropriate
1920
1921proc gdb_compile_test {src output} {
1922 if { $output == "" } {
1923 pass "compilation [file tail $src]"
1924 } elseif { [regexp {^[a-zA-Z_0-9]+: Can't find [^ ]+\.$} $output] } {
1925 unsupported "compilation [file tail $src]"
1926 } elseif { [regexp {.*: command not found[\r|\n]*$} $output] } {
1927 unsupported "compilation [file tail $src]"
6bb85cd1
DE
1928 } elseif { [regexp {.*: [^\r\n]*compiler not installed[^\r\n]*[\r|\n]*$} $output] } {
1929 unsupported "compilation [file tail $src]"
ec3c07fc
NS
1930 } else {
1931 verbose -log "compilation failed: $output" 2
1932 fail "compilation [file tail $src]"
1933 }
1934}
1935
d4f3574e
SS
1936# Return a 1 for configurations for which we don't even want to try to
1937# test C++.
1938
1939proc skip_cplus_tests {} {
d4f3574e
SS
1940 if { [istarget "h8300-*-*"] } {
1941 return 1
1942 }
81d2cbae 1943
1146c7f1
SC
1944 # The C++ IO streams are too large for HC11/HC12 and are thus not
1945 # available. The gdb C++ tests use them and don't compile.
1946 if { [istarget "m6811-*-*"] } {
1947 return 1
1948 }
1949 if { [istarget "m6812-*-*"] } {
1950 return 1
1951 }
d4f3574e
SS
1952 return 0
1953}
1954
759f0f0b
PA
1955# Return a 1 for configurations for which don't have both C++ and the STL.
1956
1957proc skip_stl_tests {} {
1958 # Symbian supports the C++ language, but the STL is missing
1959 # (both headers and libraries).
1960 if { [istarget "arm*-*-symbianelf*"] } {
1961 return 1
1962 }
1963
1964 return [skip_cplus_tests]
1965}
1966
89a237cb
MC
1967# Return a 1 if I don't even want to try to test FORTRAN.
1968
1969proc skip_fortran_tests {} {
1970 return 0
1971}
1972
ec3c07fc
NS
1973# Return a 1 if I don't even want to try to test ada.
1974
1975proc skip_ada_tests {} {
1976 return 0
1977}
1978
a766d390
DE
1979# Return a 1 if I don't even want to try to test GO.
1980
1981proc skip_go_tests {} {
1982 return 0
1983}
1984
7f420862
IB
1985# Return a 1 if I don't even want to try to test D.
1986
1987proc skip_d_tests {} {
1988 return 0
1989}
1990
67218854
TT
1991# Return 1 to skip Rust tests, 0 to try them.
1992proc skip_rust_tests {} {
1993 return [expr {![isnative]}]
1994}
1995
f6bbabf0 1996# Return a 1 for configurations that do not support Python scripting.
4d6cceb4 1997# PROMPT_REGEXP is the expected prompt.
f6bbabf0 1998
4d6cceb4 1999proc skip_python_tests_prompt { prompt_regexp } {
9325cb04 2000 global gdb_py_is_py3k
9325cb04
PK
2001
2002 gdb_test_multiple "python print ('test')" "verify python support" {
4d6cceb4 2003 -re "not supported.*$prompt_regexp" {
f6bbabf0
PM
2004 unsupported "Python support is disabled."
2005 return 1
2006 }
4d6cceb4 2007 -re "$prompt_regexp" {}
d17725d7 2008 } "$prompt_regexp"
f6bbabf0 2009
9325cb04 2010 gdb_test_multiple "python print (sys.version_info\[0\])" "check if python 3" {
4d6cceb4 2011 -re "3.*$prompt_regexp" {
9325cb04
PK
2012 set gdb_py_is_py3k 1
2013 }
4d6cceb4 2014 -re ".*$prompt_regexp" {
9325cb04
PK
2015 set gdb_py_is_py3k 0
2016 }
d17725d7 2017 } "$prompt_regexp"
9325cb04 2018
f6bbabf0
PM
2019 return 0
2020}
2021
4d6cceb4
DE
2022# Return a 1 for configurations that do not support Python scripting.
2023# Note: This also sets various globals that specify which version of Python
2024# is in use. See skip_python_tests_prompt.
2025
2026proc skip_python_tests {} {
2027 global gdb_prompt
2028 return [skip_python_tests_prompt "$gdb_prompt $"]
2029}
2030
93f02886
DJ
2031# Return a 1 if we should skip shared library tests.
2032
2033proc skip_shlib_tests {} {
2034 # Run the shared library tests on native systems.
2035 if {[isnative]} {
2036 return 0
2037 }
2038
2039 # An abbreviated list of remote targets where we should be able to
2040 # run shared library tests.
2041 if {([istarget *-*-linux*]
2042 || [istarget *-*-*bsd*]
2043 || [istarget *-*-solaris2*]
2044 || [istarget arm*-*-symbianelf*]
2045 || [istarget *-*-mingw*]
2046 || [istarget *-*-cygwin*]
2047 || [istarget *-*-pe*])} {
2048 return 0
2049 }
2050
2051 return 1
2052}
2053
ebe3b578
AB
2054# Return 1 if we should skip tui related tests.
2055
2056proc skip_tui_tests {} {
2057 global gdb_prompt
2058
2059 gdb_test_multiple "help layout" "verify tui support" {
2060 -re "Undefined command: \"layout\".*$gdb_prompt $" {
2061 return 1
2062 }
2063 -re "$gdb_prompt $" {
2064 }
2065 }
2066
2067 return 0
2068}
2069
6a5870ce
PA
2070# Test files shall make sure all the test result lines in gdb.sum are
2071# unique in a test run, so that comparing the gdb.sum files of two
2072# test runs gives correct results. Test files that exercise
2073# variations of the same tests more than once, shall prefix the
2074# different test invocations with different identifying strings in
2075# order to make them unique.
2076#
2077# About test prefixes:
2078#
2079# $pf_prefix is the string that dejagnu prints after the result (FAIL,
2080# PASS, etc.), and before the test message/name in gdb.sum. E.g., the
2081# underlined substring in
2082#
2083# PASS: gdb.base/mytest.exp: some test
2084# ^^^^^^^^^^^^^^^^^^^^
2085#
2086# is $pf_prefix.
2087#
2088# The easiest way to adjust the test prefix is to append a test
2089# variation prefix to the $pf_prefix, using the with_test_prefix
2090# procedure. E.g.,
2091#
2092# proc do_tests {} {
2093# gdb_test ... ... "test foo"
2094# gdb_test ... ... "test bar"
2095#
0f4d39d5 2096# with_test_prefix "subvariation a" {
6a5870ce
PA
2097# gdb_test ... ... "test x"
2098# }
2099#
0f4d39d5 2100# with_test_prefix "subvariation b" {
6a5870ce
PA
2101# gdb_test ... ... "test x"
2102# }
2103# }
2104#
0f4d39d5 2105# with_test_prefix "variation1" {
6a5870ce
PA
2106# ...do setup for variation 1...
2107# do_tests
2108# }
2109#
0f4d39d5 2110# with_test_prefix "variation2" {
6a5870ce
PA
2111# ...do setup for variation 2...
2112# do_tests
2113# }
2114#
2115# Results in:
2116#
2117# PASS: gdb.base/mytest.exp: variation1: test foo
2118# PASS: gdb.base/mytest.exp: variation1: test bar
2119# PASS: gdb.base/mytest.exp: variation1: subvariation a: test x
2120# PASS: gdb.base/mytest.exp: variation1: subvariation b: test x
2121# PASS: gdb.base/mytest.exp: variation2: test foo
2122# PASS: gdb.base/mytest.exp: variation2: test bar
2123# PASS: gdb.base/mytest.exp: variation2: subvariation a: test x
2124# PASS: gdb.base/mytest.exp: variation2: subvariation b: test x
2125#
2126# If for some reason more flexibility is necessary, one can also
2127# manipulate the pf_prefix global directly, treating it as a string.
2128# E.g.,
2129#
2130# global pf_prefix
2131# set saved_pf_prefix
0f4d39d5 2132# append pf_prefix "${foo}: bar"
6a5870ce
PA
2133# ... actual tests ...
2134# set pf_prefix $saved_pf_prefix
2135#
2136
2137# Run BODY in the context of the caller, with the current test prefix
0f4d39d5
PA
2138# (pf_prefix) appended with one space, then PREFIX, and then a colon.
2139# Returns the result of BODY.
6a5870ce
PA
2140#
2141proc with_test_prefix { prefix body } {
2142 global pf_prefix
2143
2144 set saved $pf_prefix
0f4d39d5 2145 append pf_prefix " " $prefix ":"
6a5870ce
PA
2146 set code [catch {uplevel 1 $body} result]
2147 set pf_prefix $saved
2148
2149 if {$code == 1} {
2150 global errorInfo errorCode
2151 return -code $code -errorinfo $errorInfo -errorcode $errorCode $result
2152 } else {
2153 return -code $code $result
2154 }
2155}
2156
f1da4b11
PA
2157# Wrapper for foreach that calls with_test_prefix on each iteration,
2158# including the iterator's name and current value in the prefix.
2159
2160proc foreach_with_prefix {var list body} {
2161 upvar 1 $var myvar
2162 foreach myvar $list {
2163 with_test_prefix "$var=$myvar" {
a26c8de0
PA
2164 set code [catch {uplevel 1 $body} result]
2165 }
2166
2167 if {$code == 1} {
2168 global errorInfo errorCode
2169 return -code $code -errorinfo $errorInfo -errorcode $errorCode $result
213fd9fa
PA
2170 } elseif {$code == 3} {
2171 break
2172 } elseif {$code == 2} {
a26c8de0 2173 return -code $code $result
f1da4b11
PA
2174 }
2175 }
2176}
2177
64f367a2
PA
2178# Like TCL's native proc, but defines a procedure that wraps its body
2179# within 'with_test_prefix "$proc_name" { ... }'.
2180proc proc_with_prefix {name arguments body} {
2181 # Define the advertised proc.
2182 proc $name $arguments [list with_test_prefix $name $body]
2183}
2184
2185
abe8e607
PP
2186# Run BODY in the context of the caller. After BODY is run, the variables
2187# listed in VARS will be reset to the values they had before BODY was run.
2188#
2189# This is useful for providing a scope in which it is safe to temporarily
2190# modify global variables, e.g.
2191#
2192# global INTERNAL_GDBFLAGS
2193# global env
2194#
2195# set foo GDBHISTSIZE
2196#
2197# save_vars { INTERNAL_GDBFLAGS env($foo) env(HOME) } {
2198# append INTERNAL_GDBFLAGS " -nx"
2199# unset -nocomplain env(GDBHISTSIZE)
2200# gdb_start
2201# gdb_test ...
2202# }
2203#
2204# Here, although INTERNAL_GDBFLAGS, env(GDBHISTSIZE) and env(HOME) may be
2205# modified inside BODY, this proc guarantees that the modifications will be
2206# undone after BODY finishes executing.
2207
2208proc save_vars { vars body } {
2209 array set saved_scalars { }
2210 array set saved_arrays { }
2211 set unset_vars { }
2212
2213 foreach var $vars {
2214 # First evaluate VAR in the context of the caller in case the variable
2215 # name may be a not-yet-interpolated string like env($foo)
2216 set var [uplevel 1 list $var]
2217
2218 if [uplevel 1 [list info exists $var]] {
2219 if [uplevel 1 [list array exists $var]] {
2220 set saved_arrays($var) [uplevel 1 [list array get $var]]
2221 } else {
2222 set saved_scalars($var) [uplevel 1 [list set $var]]
2223 }
2224 } else {
2225 lappend unset_vars $var
2226 }
2227 }
2228
2229 set code [catch {uplevel 1 $body} result]
2230
2231 foreach {var value} [array get saved_scalars] {
2232 uplevel 1 [list set $var $value]
2233 }
2234
2235 foreach {var value} [array get saved_arrays] {
2236 uplevel 1 [list unset $var]
2237 uplevel 1 [list array set $var $value]
2238 }
2239
2240 foreach var $unset_vars {
2241 uplevel 1 [list unset -nocomplain $var]
2242 }
2243
2244 if {$code == 1} {
2245 global errorInfo errorCode
2246 return -code $code -errorinfo $errorInfo -errorcode $errorCode $result
2247 } else {
2248 return -code $code $result
2249 }
2250}
2251
25e3c82c
SDJ
2252# Run tests in BODY with the current working directory (CWD) set to
2253# DIR. When BODY is finished, restore the original CWD. Return the
2254# result of BODY.
2255#
2256# This procedure doesn't check if DIR is a valid directory, so you
2257# have to make sure of that.
2258
2259proc with_cwd { dir body } {
2260 set saved_dir [pwd]
2261 verbose -log "Switching to directory $dir (saved CWD: $saved_dir)."
2262 cd $dir
2263
2264 set code [catch {uplevel 1 $body} result]
2265
2266 verbose -log "Switching back to $saved_dir."
2267 cd $saved_dir
2268
2269 if {$code == 1} {
2270 global errorInfo errorCode
2271 return -code $code -errorinfo $errorInfo -errorcode $errorCode $result
2272 } else {
2273 return -code $code $result
2274 }
2275}
abe8e607 2276
8b5e6dc2
YQ
2277# Run tests in BODY with GDB prompt and variable $gdb_prompt set to
2278# PROMPT. When BODY is finished, restore GDB prompt and variable
2279# $gdb_prompt.
2280# Returns the result of BODY.
3714cea7
DE
2281#
2282# Notes:
2283#
2284# 1) If you want to use, for example, "(foo)" as the prompt you must pass it
2285# as "(foo)", and not the regexp form "\(foo\)" (expressed as "\\(foo\\)" in
2286# TCL). PROMPT is internally converted to a suitable regexp for matching.
2287# We do the conversion from "(foo)" to "\(foo\)" here for a few reasons:
2288# a) It's more intuitive for callers to pass the plain text form.
2289# b) We need two forms of the prompt:
2290# - a regexp to use in output matching,
2291# - a value to pass to the "set prompt" command.
2292# c) It's easier to convert the plain text form to its regexp form.
2293#
2294# 2) Don't add a trailing space, we do that here.
8b5e6dc2
YQ
2295
2296proc with_gdb_prompt { prompt body } {
2297 global gdb_prompt
2298
3714cea7
DE
2299 # Convert "(foo)" to "\(foo\)".
2300 # We don't use string_to_regexp because while it works today it's not
2301 # clear it will work tomorrow: the value we need must work as both a
2302 # regexp *and* as the argument to the "set prompt" command, at least until
2303 # we start recording both forms separately instead of just $gdb_prompt.
2304 # The testsuite is pretty-much hardwired to interpret $gdb_prompt as the
2305 # regexp form.
2306 regsub -all {[]*+.|()^$\[\\]} $prompt {\\&} prompt
2307
8b5e6dc2
YQ
2308 set saved $gdb_prompt
2309
3714cea7 2310 verbose -log "Setting gdb prompt to \"$prompt \"."
8b5e6dc2
YQ
2311 set gdb_prompt $prompt
2312 gdb_test_no_output "set prompt $prompt " ""
2313
2314 set code [catch {uplevel 1 $body} result]
2315
3714cea7 2316 verbose -log "Restoring gdb prompt to \"$saved \"."
8b5e6dc2
YQ
2317 set gdb_prompt $saved
2318 gdb_test_no_output "set prompt $saved " ""
2319
2320 if {$code == 1} {
2321 global errorInfo errorCode
2322 return -code $code -errorinfo $errorInfo -errorcode $errorCode $result
2323 } else {
2324 return -code $code $result
2325 }
2326}
2327
389b98f7
YQ
2328# Run tests in BODY with target-charset setting to TARGET_CHARSET. When
2329# BODY is finished, restore target-charset.
2330
2331proc with_target_charset { target_charset body } {
2332 global gdb_prompt
2333
2334 set saved ""
2335 gdb_test_multiple "show target-charset" "" {
2336 -re "The target character set is \".*; currently (.*)\"\..*$gdb_prompt " {
2337 set saved $expect_out(1,string)
2338 }
2339 -re "The target character set is \"(.*)\".*$gdb_prompt " {
2340 set saved $expect_out(1,string)
2341 }
2342 -re ".*$gdb_prompt " {
2343 fail "get target-charset"
2344 }
2345 }
2346
2347 gdb_test_no_output "set target-charset $target_charset" ""
2348
2349 set code [catch {uplevel 1 $body} result]
2350
2351 gdb_test_no_output "set target-charset $saved" ""
2352
2353 if {$code == 1} {
2354 global errorInfo errorCode
2355 return -code $code -errorinfo $errorInfo -errorcode $errorCode $result
2356 } else {
2357 return -code $code $result
2358 }
2359}
2360
ac69f786
PA
2361# Switch the default spawn id to SPAWN_ID, so that gdb_test,
2362# mi_gdb_test etc. default to using it.
2363
2364proc switch_gdb_spawn_id {spawn_id} {
2365 global gdb_spawn_id
2366 global board board_info
2367
2368 set gdb_spawn_id $spawn_id
2369 set board [host_info name]
2370 set board_info($board,fileid) $spawn_id
2371}
2372
4295e285
PA
2373# Clear the default spawn id.
2374
2375proc clear_gdb_spawn_id {} {
2376 global gdb_spawn_id
2377 global board board_info
2378
2379 unset -nocomplain gdb_spawn_id
2380 set board [host_info name]
2381 unset -nocomplain board_info($board,fileid)
2382}
2383
ac69f786
PA
2384# Run BODY with SPAWN_ID as current spawn id.
2385
2386proc with_spawn_id { spawn_id body } {
2387 global gdb_spawn_id
2388
4295e285
PA
2389 if [info exists gdb_spawn_id] {
2390 set saved_spawn_id $gdb_spawn_id
2391 }
2392
ac69f786
PA
2393 switch_gdb_spawn_id $spawn_id
2394
2395 set code [catch {uplevel 1 $body} result]
2396
4295e285
PA
2397 if [info exists saved_spawn_id] {
2398 switch_gdb_spawn_id $saved_spawn_id
2399 } else {
2400 clear_gdb_spawn_id
2401 }
ac69f786
PA
2402
2403 if {$code == 1} {
2404 global errorInfo errorCode
2405 return -code $code -errorinfo $errorInfo -errorcode $errorCode $result
2406 } else {
2407 return -code $code $result
2408 }
2409}
2410
45fd756c
YQ
2411# Select the largest timeout from all the timeouts:
2412# - the local "timeout" variable of the scope two levels above,
2413# - the global "timeout" variable,
2414# - the board variable "gdb,timeout".
2415
2416proc get_largest_timeout {} {
2417 upvar #0 timeout gtimeout
2418 upvar 2 timeout timeout
2419
2420 set tmt 0
2421 if [info exists timeout] {
2422 set tmt $timeout
2423 }
2424 if { [info exists gtimeout] && $gtimeout > $tmt } {
2425 set tmt $gtimeout
2426 }
2427 if { [target_info exists gdb,timeout]
2428 && [target_info gdb,timeout] > $tmt } {
2429 set tmt [target_info gdb,timeout]
2430 }
2431 if { $tmt == 0 } {
2432 # Eeeeew.
2433 set tmt 60
2434 }
2435
2436 return $tmt
2437}
2438
2439# Run tests in BODY with timeout increased by factor of FACTOR. When
2440# BODY is finished, restore timeout.
2441
2442proc with_timeout_factor { factor body } {
2443 global timeout
2444
2445 set savedtimeout $timeout
2446
2447 set timeout [expr [get_largest_timeout] * $factor]
2448 set code [catch {uplevel 1 $body} result]
2449
2450 set timeout $savedtimeout
2451 if {$code == 1} {
2452 global errorInfo errorCode
2453 return -code $code -errorinfo $errorInfo -errorcode $errorCode $result
2454 } else {
2455 return -code $code $result
2456 }
2457}
2458
d86bd7cb
TV
2459# Run BODY with timeout factor FACTOR if check-read1 is used.
2460
2461proc with_read1_timeout_factor { factor body } {
2462 if { [info exists ::env(READ1)] == 1 && $::env(READ1) == 1 } {
2463 # Use timeout factor
2464 } else {
2465 # Reset timeout factor
2466 set factor 1
2467 }
2468 return [uplevel [list with_timeout_factor $factor $body]]
2469}
2470
e43ec454
YQ
2471# Return 1 if _Complex types are supported, otherwise, return 0.
2472
17e1c970 2473gdb_caching_proc support_complex_tests {
fdebf1a4
YQ
2474
2475 if { [gdb_skip_float_test] } {
2476 # If floating point is not supported, _Complex is not
2477 # supported.
2478 return 0
2479 }
2480
c221b2f7 2481 # Compile a test program containing _Complex types.
e43ec454 2482
c221b2f7 2483 return [gdb_can_simple_compile complex {
11ec5965
YQ
2484 int main() {
2485 _Complex float cf;
2486 _Complex double cd;
2487 _Complex long double cld;
2488 return 0;
2489 }
c221b2f7 2490 } executable]
e43ec454
YQ
2491}
2492
4d7be007
YQ
2493# Return 1 if GDB can get a type for siginfo from the target, otherwise
2494# return 0.
2495
2496proc supports_get_siginfo_type {} {
5cd867b4 2497 if { [istarget "*-*-linux*"] } {
4d7be007
YQ
2498 return 1
2499 } else {
2500 return 0
2501 }
2502}
2503
1ed415e2 2504# Return 1 if the target supports hardware single stepping.
ab254057 2505
1ed415e2 2506proc can_hardware_single_step {} {
ab254057 2507
b0221781 2508 if { [istarget "arm*-*-*"] || [istarget "mips*-*-*"]
b5bee914
YQ
2509 || [istarget "tic6x-*-*"] || [istarget "sparc*-*-linux*"]
2510 || [istarget "nios2-*-*"] } {
ab254057
YQ
2511 return 0
2512 }
2513
2514 return 1
2515}
2516
1ed415e2
PA
2517# Return 1 if target hardware or OS supports single stepping to signal
2518# handler, otherwise, return 0.
2519
2520proc can_single_step_to_signal_handler {} {
2521 # Targets don't have hardware single step. On these targets, when
2522 # a signal is delivered during software single step, gdb is unable
2523 # to determine the next instruction addresses, because start of signal
2524 # handler is one of them.
2525 return [can_hardware_single_step]
2526}
2527
d3895d7d
YQ
2528# Return 1 if target supports process record, otherwise return 0.
2529
2530proc supports_process_record {} {
2531
2532 if [target_info exists gdb,use_precord] {
2533 return [target_info gdb,use_precord]
2534 }
2535
596662fa 2536 if { [istarget "arm*-*-linux*"] || [istarget "x86_64-*-linux*"]
b4cdae6f 2537 || [istarget "i\[34567\]86-*-linux*"]
a81bfbd0 2538 || [istarget "aarch64*-*-linux*"]
566c56c9
MK
2539 || [istarget "powerpc*-*-linux*"]
2540 || [istarget "s390*-*-linux*"] } {
d3895d7d
YQ
2541 return 1
2542 }
2543
2544 return 0
2545}
2546
2547# Return 1 if target supports reverse debugging, otherwise return 0.
2548
2549proc supports_reverse {} {
2550
2551 if [target_info exists gdb,can_reverse] {
2552 return [target_info gdb,can_reverse]
2553 }
2554
596662fa 2555 if { [istarget "arm*-*-linux*"] || [istarget "x86_64-*-linux*"]
b4cdae6f 2556 || [istarget "i\[34567\]86-*-linux*"]
a81bfbd0 2557 || [istarget "aarch64*-*-linux*"]
566c56c9
MK
2558 || [istarget "powerpc*-*-linux*"]
2559 || [istarget "s390*-*-linux*"] } {
d3895d7d
YQ
2560 return 1
2561 }
2562
2563 return 0
2564}
2565
0d4d0e77
YQ
2566# Return 1 if readline library is used.
2567
2568proc readline_is_used { } {
2569 global gdb_prompt
2570
2571 gdb_test_multiple "show editing" "" {
2572 -re ".*Editing of command lines as they are typed is on\..*$gdb_prompt $" {
2573 return 1
2574 }
2575 -re ".*$gdb_prompt $" {
2576 return 0
2577 }
2578 }
2579}
2580
e9f0e62e
NB
2581# Return 1 if target is ELF.
2582gdb_caching_proc is_elf_target {
2583 set me "is_elf_target"
2584
bf326452
AH
2585 set src { int foo () {return 0;} }
2586 if {![gdb_simple_compile elf_target $src]} {
2587 return 0
e9f0e62e
NB
2588 }
2589
2590 set fp_obj [open $obj "r"]
2591 fconfigure $fp_obj -translation binary
2592 set data [read $fp_obj]
2593 close $fp_obj
2594
2595 file delete $obj
2596
2597 set ELFMAG "\u007FELF"
2598
2599 if {[string compare -length 4 $data $ELFMAG] != 0} {
2600 verbose "$me: returning 0" 2
2601 return 0
2602 }
2603
2604 verbose "$me: returning 1" 2
2605 return 1
2606}
2607
20c6f1e1
YQ
2608# Return 1 if the memory at address zero is readable.
2609
2610gdb_caching_proc is_address_zero_readable {
2611 global gdb_prompt
2612
2613 set ret 0
2614 gdb_test_multiple "x 0" "" {
2615 -re "Cannot access memory at address 0x0.*$gdb_prompt $" {
2616 set ret 0
2617 }
2618 -re ".*$gdb_prompt $" {
2619 set ret 1
2620 }
2621 }
2622
2623 return $ret
2624}
2625
6dbb6798
YQ
2626# Produce source file NAME and write SOURCES into it.
2627
2628proc gdb_produce_source { name sources } {
2629 set index 0
2630 set f [open $name "w"]
2631
2632 puts $f $sources
2633 close $f
2634}
2635
add265ae
L
2636# Return 1 if target is ILP32.
2637# This cannot be decided simply from looking at the target string,
2638# as it might depend on externally passed compiler options like -m64.
17e1c970 2639gdb_caching_proc is_ilp32_target {
c221b2f7 2640 return [gdb_can_simple_compile is_ilp32_target {
11ec5965
YQ
2641 int dummy[sizeof (int) == 4
2642 && sizeof (void *) == 4
2643 && sizeof (long) == 4 ? 1 : -1];
c221b2f7 2644 }]
add265ae
L
2645}
2646
2647# Return 1 if target is LP64.
2648# This cannot be decided simply from looking at the target string,
2649# as it might depend on externally passed compiler options like -m64.
17e1c970 2650gdb_caching_proc is_lp64_target {
c221b2f7 2651 return [gdb_can_simple_compile is_lp64_target {
11ec5965
YQ
2652 int dummy[sizeof (int) == 4
2653 && sizeof (void *) == 8
2654 && sizeof (long) == 8 ? 1 : -1];
c221b2f7 2655 }]
add265ae
L
2656}
2657
e630b974
TT
2658# Return 1 if target has 64 bit addresses.
2659# This cannot be decided simply from looking at the target string,
2660# as it might depend on externally passed compiler options like -m64.
2661gdb_caching_proc is_64_target {
c221b2f7 2662 return [gdb_can_simple_compile is_64_target {
11ec5965
YQ
2663 int function(void) { return 3; }
2664 int dummy[sizeof (&function) == 8 ? 1 : -1];
c221b2f7 2665 }]
e630b974
TT
2666}
2667
7f062217
JK
2668# Return 1 if target has x86_64 registers - either amd64 or x32.
2669# x32 target identifies as x86_64-*-linux*, therefore it cannot be determined
2670# just from the target string.
17e1c970 2671gdb_caching_proc is_amd64_regs_target {
68fb0ec0 2672 if {![istarget "x86_64-*-*"] && ![istarget "i?86-*"]} {
7f062217
JK
2673 return 0
2674 }
2675
224d30d3
MM
2676 return [gdb_can_simple_compile is_amd64_regs_target {
2677 int main (void) {
2678 asm ("incq %rax");
2679 asm ("incq %r15");
7f062217 2680
224d30d3
MM
2681 return 0;
2682 }
2683 }]
7f062217
JK
2684}
2685
6edba76f
TT
2686# Return 1 if this target is an x86 or x86-64 with -m32.
2687proc is_x86_like_target {} {
68fb0ec0 2688 if {![istarget "x86_64-*-*"] && ![istarget i?86-*]} {
6edba76f
TT
2689 return 0
2690 }
7f062217 2691 return [expr [is_ilp32_target] && ![is_amd64_regs_target]]
6edba76f
TT
2692}
2693
9fcf688e
YQ
2694# Return 1 if this target is an arm or aarch32 on aarch64.
2695
2696gdb_caching_proc is_aarch32_target {
2697 if { [istarget "arm*-*-*"] } {
2698 return 1
2699 }
2700
2701 if { ![istarget "aarch64*-*-*"] } {
2702 return 0
2703 }
2704
9fcf688e
YQ
2705 set list {}
2706 foreach reg \
2707 {r0 r1 r2 r3} {
2708 lappend list "\tmov $reg, $reg"
2709 }
9fcf688e 2710
c221b2f7 2711 return [gdb_can_simple_compile aarch32 [join $list \n]]
9fcf688e
YQ
2712}
2713
4931af25
YQ
2714# Return 1 if this target is an aarch64, either lp64 or ilp32.
2715
2716proc is_aarch64_target {} {
2717 if { ![istarget "aarch64*-*-*"] } {
2718 return 0
2719 }
2720
2721 return [expr ![is_aarch32_target]]
2722}
2723
be777e08
YQ
2724# Return 1 if displaced stepping is supported on target, otherwise, return 0.
2725proc support_displaced_stepping {} {
2726
2727 if { [istarget "x86_64-*-linux*"] || [istarget "i\[34567\]86-*-linux*"]
2728 || [istarget "arm*-*-linux*"] || [istarget "powerpc-*-linux*"]
34240514
YQ
2729 || [istarget "powerpc64-*-linux*"] || [istarget "s390*-*-*"]
2730 || [istarget "aarch64*-*-linux*"] } {
be777e08
YQ
2731 return 1
2732 }
2733
2734 return 0
2735}
2736
3c95e6af
PG
2737# Run a test on the target to see if it supports vmx hardware. Return 0 if so,
2738# 1 if it does not. Based on 'check_vmx_hw_available' from the GCC testsuite.
2739
17e1c970 2740gdb_caching_proc skip_altivec_tests {
fda326dd 2741 global srcdir subdir gdb_prompt inferior_exited_re
3c95e6af 2742
3c95e6af 2743 set me "skip_altivec_tests"
3c95e6af
PG
2744
2745 # Some simulators are known to not support VMX instructions.
2746 if { [istarget powerpc-*-eabi] || [istarget powerpc*-*-eabispe] } {
2747 verbose "$me: target known to not support VMX, returning 1" 2
17e1c970 2748 return 1
3c95e6af
PG
2749 }
2750
2751 # Make sure we have a compiler that understands altivec.
4c93b1db 2752 if [get_compiler_info] {
3c95e6af
PG
2753 warning "Could not get compiler info"
2754 return 1
2755 }
2756 if [test_compiler_info gcc*] {
bf326452 2757 set compile_flags "additional_flags=-maltivec"
3c95e6af 2758 } elseif [test_compiler_info xlc*] {
bf326452 2759 set compile_flags "additional_flags=-qaltivec"
3c95e6af
PG
2760 } else {
2761 verbose "Could not compile with altivec support, returning 1" 2
2762 return 1
2763 }
2764
bf326452
AH
2765 # Compile a test program containing VMX instructions.
2766 set src {
11ec5965
YQ
2767 int main() {
2768 #ifdef __MACH__
2769 asm volatile ("vor v0,v0,v0");
2770 #else
2771 asm volatile ("vor 0,0,0");
2772 #endif
2773 return 0;
2774 }
2775 }
bf326452 2776 if {![gdb_simple_compile $me $src executable $compile_flags]} {
17e1c970 2777 return 1
3c95e6af
PG
2778 }
2779
bf326452 2780 # Compilation succeeded so now run it via gdb.
3c95e6af
PG
2781
2782 gdb_exit
2783 gdb_start
2784 gdb_reinitialize_dir $srcdir/$subdir
bf326452 2785 gdb_load "$obj"
3c95e6af
PG
2786 gdb_run_cmd
2787 gdb_expect {
2788 -re ".*Illegal instruction.*${gdb_prompt} $" {
2789 verbose -log "\n$me altivec hardware not detected"
17e1c970 2790 set skip_vmx_tests 1
3c95e6af 2791 }
fda326dd 2792 -re ".*$inferior_exited_re normally.*${gdb_prompt} $" {
3c95e6af 2793 verbose -log "\n$me: altivec hardware detected"
17e1c970 2794 set skip_vmx_tests 0
3c95e6af
PG
2795 }
2796 default {
2797 warning "\n$me: default case taken"
17e1c970 2798 set skip_vmx_tests 1
3c95e6af
PG
2799 }
2800 }
2801 gdb_exit
bf326452 2802 remote_file build delete $obj
3c95e6af 2803
17e1c970
TT
2804 verbose "$me: returning $skip_vmx_tests" 2
2805 return $skip_vmx_tests
3c95e6af
PG
2806}
2807
604c2f83
LM
2808# Run a test on the target to see if it supports vmx hardware. Return 0 if so,
2809# 1 if it does not. Based on 'check_vmx_hw_available' from the GCC testsuite.
2810
17e1c970 2811gdb_caching_proc skip_vsx_tests {
fda326dd 2812 global srcdir subdir gdb_prompt inferior_exited_re
604c2f83 2813
604c2f83 2814 set me "skip_vsx_tests"
604c2f83
LM
2815
2816 # Some simulators are known to not support Altivec instructions, so
2817 # they won't support VSX instructions as well.
2818 if { [istarget powerpc-*-eabi] || [istarget powerpc*-*-eabispe] } {
2819 verbose "$me: target known to not support VSX, returning 1" 2
17e1c970 2820 return 1
604c2f83
LM
2821 }
2822
2823 # Make sure we have a compiler that understands altivec.
4c93b1db 2824 if [get_compiler_info] {
604c2f83
LM
2825 warning "Could not get compiler info"
2826 return 1
2827 }
2828 if [test_compiler_info gcc*] {
bf326452 2829 set compile_flags "additional_flags=-mvsx"
604c2f83 2830 } elseif [test_compiler_info xlc*] {
bf326452 2831 set compile_flags "additional_flags=-qasm=gcc"
604c2f83
LM
2832 } else {
2833 verbose "Could not compile with vsx support, returning 1" 2
2834 return 1
2835 }
2836
bf326452
AH
2837 # Compile a test program containing VSX instructions.
2838 set src {
11ec5965
YQ
2839 int main() {
2840 double a[2] = { 1.0, 2.0 };
2841 #ifdef __MACH__
2842 asm volatile ("lxvd2x v0,v0,%[addr]" : : [addr] "r" (a));
2843 #else
2844 asm volatile ("lxvd2x 0,0,%[addr]" : : [addr] "r" (a));
2845 #endif
2846 return 0;
2847 }
2848 }
bf326452 2849 if {![gdb_simple_compile $me $src executable $compile_flags]} {
17e1c970 2850 return 1
604c2f83
LM
2851 }
2852
2853 # No error message, compilation succeeded so now run it via gdb.
2854
2855 gdb_exit
2856 gdb_start
2857 gdb_reinitialize_dir $srcdir/$subdir
bf326452 2858 gdb_load "$obj"
604c2f83
LM
2859 gdb_run_cmd
2860 gdb_expect {
2861 -re ".*Illegal instruction.*${gdb_prompt} $" {
2862 verbose -log "\n$me VSX hardware not detected"
17e1c970 2863 set skip_vsx_tests 1
604c2f83 2864 }
fda326dd 2865 -re ".*$inferior_exited_re normally.*${gdb_prompt} $" {
604c2f83 2866 verbose -log "\n$me: VSX hardware detected"
17e1c970 2867 set skip_vsx_tests 0
604c2f83
LM
2868 }
2869 default {
2870 warning "\n$me: default case taken"
17e1c970 2871 set skip_vsx_tests 1
604c2f83
LM
2872 }
2873 }
2874 gdb_exit
bf326452 2875 remote_file build delete $obj
604c2f83 2876
17e1c970
TT
2877 verbose "$me: returning $skip_vsx_tests" 2
2878 return $skip_vsx_tests
604c2f83
LM
2879}
2880
da8c46d2
MM
2881# Run a test on the target to see if it supports TSX hardware. Return 0 if so,
2882# 1 if it does not. Based on 'check_vmx_hw_available' from the GCC testsuite.
2883
2884gdb_caching_proc skip_tsx_tests {
2885 global srcdir subdir gdb_prompt inferior_exited_re
2886
2887 set me "skip_tsx_tests"
2888
bf326452
AH
2889 # Compile a test program.
2890 set src {
2891 int main() {
2892 asm volatile ("xbegin .L0");
2893 asm volatile ("xend");
2894 asm volatile (".L0: nop");
2895 return 0;
2896 }
da8c46d2 2897 }
bf326452 2898 if {![gdb_simple_compile $me $src executable]} {
da8c46d2
MM
2899 return 1
2900 }
2901
2902 # No error message, compilation succeeded so now run it via gdb.
2903
2904 gdb_exit
2905 gdb_start
2906 gdb_reinitialize_dir $srcdir/$subdir
bf326452 2907 gdb_load "$obj"
da8c46d2
MM
2908 gdb_run_cmd
2909 gdb_expect {
2910 -re ".*Illegal instruction.*${gdb_prompt} $" {
2911 verbose -log "$me: TSX hardware not detected."
2912 set skip_tsx_tests 1
2913 }
2914 -re ".*$inferior_exited_re normally.*${gdb_prompt} $" {
2915 verbose -log "$me: TSX hardware detected."
2916 set skip_tsx_tests 0
2917 }
2918 default {
2919 warning "\n$me: default case taken."
2920 set skip_tsx_tests 1
2921 }
2922 }
2923 gdb_exit
bf326452 2924 remote_file build delete $obj
da8c46d2
MM
2925
2926 verbose "$me: returning $skip_tsx_tests" 2
2927 return $skip_tsx_tests
2928}
2929
2f1d9bdd
MM
2930# Run a test on the target to see if it supports btrace hardware. Return 0 if so,
2931# 1 if it does not. Based on 'check_vmx_hw_available' from the GCC testsuite.
2932
f3a76454 2933gdb_caching_proc skip_btrace_tests {
2f1d9bdd
MM
2934 global srcdir subdir gdb_prompt inferior_exited_re
2935
2f1d9bdd 2936 set me "skip_btrace_tests"
2f1d9bdd
MM
2937 if { ![istarget "i?86-*-*"] && ![istarget "x86_64-*-*"] } {
2938 verbose "$me: target does not support btrace, returning 1" 2
f3a76454 2939 return 1
2f1d9bdd
MM
2940 }
2941
bf326452
AH
2942 # Compile a test program.
2943 set src { int main() { return 0; } }
2944 if {![gdb_simple_compile $me $src executable]} {
2945 return 0
2f1d9bdd
MM
2946 }
2947
2948 # No error message, compilation succeeded so now run it via gdb.
2949
f3a76454
TT
2950 gdb_exit
2951 gdb_start
2952 gdb_reinitialize_dir $srcdir/$subdir
bf326452 2953 gdb_load $obj
2f1d9bdd 2954 if ![runto_main] {
f3a76454 2955 return 1
2f1d9bdd
MM
2956 }
2957 # In case of an unexpected output, we return 2 as a fail value.
f3a76454 2958 set skip_btrace_tests 2
2f1d9bdd
MM
2959 gdb_test_multiple "record btrace" "check btrace support" {
2960 -re "You can't do that when your target is.*\r\n$gdb_prompt $" {
f3a76454 2961 set skip_btrace_tests 1
2f1d9bdd
MM
2962 }
2963 -re "Target does not support branch tracing.*\r\n$gdb_prompt $" {
f3a76454 2964 set skip_btrace_tests 1
2f1d9bdd
MM
2965 }
2966 -re "Could not enable branch tracing.*\r\n$gdb_prompt $" {
f3a76454 2967 set skip_btrace_tests 1
2f1d9bdd
MM
2968 }
2969 -re "^record btrace\r\n$gdb_prompt $" {
f3a76454 2970 set skip_btrace_tests 0
2f1d9bdd
MM
2971 }
2972 }
2973 gdb_exit
bf326452 2974 remote_file build delete $obj
2f1d9bdd 2975
f3a76454
TT
2976 verbose "$me: returning $skip_btrace_tests" 2
2977 return $skip_btrace_tests
2f1d9bdd
MM
2978}
2979
da8c46d2
MM
2980# Run a test on the target to see if it supports btrace pt hardware.
2981# Return 0 if so, 1 if it does not. Based on 'check_vmx_hw_available'
2982# from the GCC testsuite.
2983
2984gdb_caching_proc skip_btrace_pt_tests {
2985 global srcdir subdir gdb_prompt inferior_exited_re
2986
2987 set me "skip_btrace_tests"
2988 if { ![istarget "i?86-*-*"] && ![istarget "x86_64-*-*"] } {
2989 verbose "$me: target does not support btrace, returning 1" 2
2990 return 1
2991 }
2992
bf326452
AH
2993 # Compile a test program.
2994 set src { int main() { return 0; } }
2995 if {![gdb_simple_compile $me $src executable]} {
2996 return 0
da8c46d2
MM
2997 }
2998
2999 # No error message, compilation succeeded so now run it via gdb.
3000
3001 gdb_exit
3002 gdb_start
3003 gdb_reinitialize_dir $srcdir/$subdir
bf326452 3004 gdb_load $obj
da8c46d2 3005 if ![runto_main] {
da8c46d2
MM
3006 return 1
3007 }
da8c46d2
MM
3008 # In case of an unexpected output, we return 2 as a fail value.
3009 set skip_btrace_tests 2
c4e12631 3010 gdb_test_multiple "record btrace pt" "check btrace pt support" {
da8c46d2
MM
3011 -re "You can't do that when your target is.*\r\n$gdb_prompt $" {
3012 set skip_btrace_tests 1
3013 }
3014 -re "Target does not support branch tracing.*\r\n$gdb_prompt $" {
3015 set skip_btrace_tests 1
3016 }
3017 -re "Could not enable branch tracing.*\r\n$gdb_prompt $" {
3018 set skip_btrace_tests 1
3019 }
c4e12631 3020 -re "support was disabled at compile time.*\r\n$gdb_prompt $" {
46a3515b
MM
3021 set skip_btrace_tests 1
3022 }
da8c46d2
MM
3023 -re "^record btrace pt\r\n$gdb_prompt $" {
3024 set skip_btrace_tests 0
3025 }
3026 }
3027 gdb_exit
bf326452 3028 remote_file build delete $obj
da8c46d2
MM
3029
3030 verbose "$me: returning $skip_btrace_tests" 2
3031 return $skip_btrace_tests
3032}
3033
6bb8890e
AH
3034# Run a test on the target to see if it supports Aarch64 SVE hardware.
3035# Return 0 if so, 1 if it does not. Note this causes a restart of GDB.
3036
3037gdb_caching_proc skip_aarch64_sve_tests {
3038 global srcdir subdir gdb_prompt inferior_exited_re
3039
3040 set me "skip_aarch64_sve_tests"
3041
3042 if { ![is_aarch64_target]} {
3043 return 1
3044 }
3045
3046 set compile_flags "{additional_flags=-march=armv8-a+sve}"
3047
3048 # Compile a test program containing SVE instructions.
3049 set src {
3050 int main() {
3051 asm volatile ("ptrue p0.b");
3052 return 0;
3053 }
3054 }
3055 if {![gdb_simple_compile $me $src executable $compile_flags]} {
3056 return 1
3057 }
3058
3059 # Compilation succeeded so now run it via gdb.
3060 clean_restart $obj
3061 gdb_run_cmd
3062 gdb_expect {
3063 -re ".*Illegal instruction.*${gdb_prompt} $" {
3064 verbose -log "\n$me sve hardware not detected"
3065 set skip_sve_tests 1
3066 }
3067 -re ".*$inferior_exited_re normally.*${gdb_prompt} $" {
3068 verbose -log "\n$me: sve hardware detected"
3069 set skip_sve_tests 0
3070 }
3071 default {
3072 warning "\n$me: default case taken"
3073 set skip_sve_tests 1
3074 }
3075 }
3076 gdb_exit
3077 remote_file build delete $obj
3078
3079 verbose "$me: returning $skip_sve_tests" 2
3080 return $skip_sve_tests
3081}
3082
3083
007e1530
TT
3084# A helper that compiles a test case to see if __int128 is supported.
3085proc gdb_int128_helper {lang} {
c221b2f7 3086 return [gdb_can_simple_compile "i128-for-$lang" {
007e1530
TT
3087 __int128 x;
3088 int main() { return 0; }
c221b2f7 3089 } executable $lang]
007e1530
TT
3090}
3091
3092# Return true if the C compiler understands the __int128 type.
3093gdb_caching_proc has_int128_c {
3094 return [gdb_int128_helper c]
3095}
3096
3097# Return true if the C++ compiler understands the __int128 type.
3098gdb_caching_proc has_int128_cxx {
3099 return [gdb_int128_helper c++]
3100}
3101
ca98345e
SL
3102# Return true if the IFUNC feature is unsupported.
3103gdb_caching_proc skip_ifunc_tests {
3104 if [gdb_can_simple_compile ifunc {
3105 extern void f_ ();
3106 typedef void F (void);
3107 F* g (void) { return &f_; }
3108 void f () __attribute__ ((ifunc ("g")));
3109 } object] {
3110 return 0
3111 } else {
3112 return 1
3113 }
3114}
3115
edb3359d
DJ
3116# Return whether we should skip tests for showing inlined functions in
3117# backtraces. Requires get_compiler_info and get_debug_format.
3118
3119proc skip_inline_frame_tests {} {
3120 # GDB only recognizes inlining information in DWARF 2 (DWARF 3).
3121 if { ! [test_debug_format "DWARF 2"] } {
3122 return 1
3123 }
3124
3125 # GCC before 4.1 does not emit DW_AT_call_file / DW_AT_call_line.
3126 if { ([test_compiler_info "gcc-2-*"]
3127 || [test_compiler_info "gcc-3-*"]
3128 || [test_compiler_info "gcc-4-0-*"]) } {
3129 return 1
3130 }
3131
3132 return 0
3133}
3134
3135# Return whether we should skip tests for showing variables from
3136# inlined functions. Requires get_compiler_info and get_debug_format.
3137
3138proc skip_inline_var_tests {} {
3139 # GDB only recognizes inlining information in DWARF 2 (DWARF 3).
3140 if { ! [test_debug_format "DWARF 2"] } {
3141 return 1
3142 }
3143
3144 return 0
3145}
3146
b800ec70
UW
3147# Return a 1 if we should skip tests that require hardware breakpoints
3148
3149proc skip_hw_breakpoint_tests {} {
3150 # Skip tests if requested by the board (note that no_hardware_watchpoints
3151 # disables both watchpoints and breakpoints)
3152 if { [target_info exists gdb,no_hardware_watchpoints]} {
3153 return 1
3154 }
3155
3156 # These targets support hardware breakpoints natively
3157 if { [istarget "i?86-*-*"]
3158 || [istarget "x86_64-*-*"]
e3039479 3159 || [istarget "ia64-*-*"]
52042a00 3160 || [istarget "arm*-*-*"]
8193adea
AA
3161 || [istarget "aarch64*-*-*"]
3162 || [istarget "s390*-*-*"] } {
b800ec70
UW
3163 return 0
3164 }
3165
3166 return 1
3167}
3168
3169# Return a 1 if we should skip tests that require hardware watchpoints
3170
3171proc skip_hw_watchpoint_tests {} {
3172 # Skip tests if requested by the board
3173 if { [target_info exists gdb,no_hardware_watchpoints]} {
3174 return 1
3175 }
3176
3177 # These targets support hardware watchpoints natively
3178 if { [istarget "i?86-*-*"]
3179 || [istarget "x86_64-*-*"]
3180 || [istarget "ia64-*-*"]
e3039479 3181 || [istarget "arm*-*-*"]
52042a00 3182 || [istarget "aarch64*-*-*"]
b800ec70
UW
3183 || [istarget "powerpc*-*-linux*"]
3184 || [istarget "s390*-*-*"] } {
3185 return 0
3186 }
3187
3188 return 1
3189}
3190
3191# Return a 1 if we should skip tests that require *multiple* hardware
3192# watchpoints to be active at the same time
3193
3194proc skip_hw_watchpoint_multi_tests {} {
3195 if { [skip_hw_watchpoint_tests] } {
3196 return 1
3197 }
3198
3199 # These targets support just a single hardware watchpoint
e3039479
UW
3200 if { [istarget "arm*-*-*"]
3201 || [istarget "powerpc*-*-linux*"] } {
b800ec70
UW
3202 return 1
3203 }
3204
3205 return 0
3206}
3207
3208# Return a 1 if we should skip tests that require read/access watchpoints
3209
3210proc skip_hw_watchpoint_access_tests {} {
3211 if { [skip_hw_watchpoint_tests] } {
3212 return 1
3213 }
3214
3215 # These targets support just write watchpoints
3216 if { [istarget "s390*-*-*"] } {
3217 return 1
3218 }
3219
3220 return 0
3221}
3222
b4893d48
TT
3223# Return 1 if we should skip tests that require the runtime unwinder
3224# hook. This must be invoked while gdb is running, after shared
3225# libraries have been loaded. This is needed because otherwise a
3226# shared libgcc won't be visible.
3227
3228proc skip_unwinder_tests {} {
3229 global gdb_prompt
3230
4442ada7 3231 set ok 0
b4893d48
TT
3232 gdb_test_multiple "print _Unwind_DebugHook" "check for unwinder hook" {
3233 -re "= .*no debug info.*_Unwind_DebugHook.*\r\n$gdb_prompt $" {
b4893d48
TT
3234 }
3235 -re "= .*_Unwind_DebugHook.*\r\n$gdb_prompt $" {
4442ada7 3236 set ok 1
b4893d48
TT
3237 }
3238 -re "No symbol .* in current context.\r\n$gdb_prompt $" {
b4893d48
TT
3239 }
3240 }
3241 if {!$ok} {
3242 gdb_test_multiple "info probe" "check for stap probe in unwinder" {
3243 -re ".*libgcc.*unwind.*\r\n$gdb_prompt $" {
b4893d48
TT
3244 set ok 1
3245 }
3246 -re "\r\n$gdb_prompt $" {
3247 }
3248 }
3249 }
3250 return $ok
3251}
3252
b694989f 3253# Return 1 if we should skip tests that require the libstdc++ stap
72f1fe8a 3254# probes. This must be invoked while gdb is running, after shared
297989a1 3255# libraries have been loaded. PROMPT_REGEXP is the expected prompt.
72f1fe8a 3256
297989a1 3257proc skip_libstdcxx_probe_tests_prompt { prompt_regexp } {
b694989f 3258 set supported 0
72f1fe8a 3259 gdb_test_multiple "info probe" "check for stap probe in libstdc++" {
297989a1 3260 -re ".*libstdcxx.*catch.*\r\n$prompt_regexp" {
b694989f 3261 set supported 1
72f1fe8a 3262 }
297989a1 3263 -re "\r\n$prompt_regexp" {
72f1fe8a 3264 }
2d274232 3265 } "$prompt_regexp"
b694989f
TV
3266 set skip [expr !$supported]
3267 return $skip
72f1fe8a
TT
3268}
3269
297989a1
TV
3270# As skip_libstdcxx_probe_tests_prompt, with gdb_prompt.
3271
3272proc skip_libstdcxx_probe_tests {} {
3273 global gdb_prompt
3274 return [skip_libstdcxx_probe_tests_prompt "$gdb_prompt $"]
3275}
3276
bb2ec1b3
TT
3277# Return 1 if we should skip tests of the "compile" feature.
3278# This must be invoked after the inferior has been started.
3279
3280proc skip_compile_feature_tests {} {
3281 global gdb_prompt
3282
3283 set result 0
3284 gdb_test_multiple "compile code -- ;" "check for working compile command" {
3285 "Could not load libcc1.*\r\n$gdb_prompt $" {
3286 set result 1
3287 }
1bc1068a
JK
3288 -re "Command not supported on this host\\..*\r\n$gdb_prompt $" {
3289 set result 1
3290 }
bb2ec1b3
TT
3291 -re "\r\n$gdb_prompt $" {
3292 }
3293 }
3294 return $result
3295}
3296
3275ef47
SM
3297# Helper for gdb_is_target_* procs. TARGET_NAME is the name of the target
3298# we're looking for (used to build the test name). TARGET_STACK_REGEXP
3299# is a regexp that will match the output of "maint print target-stack" if
3083294d
SM
3300# the target in question is currently pushed. PROMPT_REGEXP is a regexp
3301# matching the expected prompt after the command output.
076855f9 3302
3083294d 3303proc gdb_is_target_1 { target_name target_stack_regexp prompt_regexp } {
3275ef47 3304 set test "probe for target ${target_name}"
076855f9 3305 gdb_test_multiple "maint print target-stack" $test {
3275ef47 3306 -re "${target_stack_regexp}${prompt_regexp}" {
076855f9
PA
3307 pass $test
3308 return 1
3309 }
f015c27b 3310 -re "$prompt_regexp" {
076855f9
PA
3311 pass $test
3312 }
2d274232 3313 } "$prompt_regexp"
076855f9
PA
3314 return 0
3315}
3316
3083294d
SM
3317# Helper for gdb_is_target_remote where the expected prompt is variable.
3318
3319proc gdb_is_target_remote_prompt { prompt_regexp } {
3320 return [gdb_is_target_1 "remote" ".*emote serial target in gdb-specific protocol.*" $prompt_regexp]
3321}
3322
f015c27b
PA
3323# Check whether we're testing with the remote or extended-remote
3324# targets.
3325
3275ef47 3326proc gdb_is_target_remote { } {
3083294d
SM
3327 global gdb_prompt
3328
3329 return [gdb_is_target_remote_prompt "$gdb_prompt $"]
3275ef47
SM
3330}
3331
3332# Check whether we're testing with the native target.
f015c27b 3333
3275ef47 3334proc gdb_is_target_native { } {
3083294d
SM
3335 global gdb_prompt
3336
3337 return [gdb_is_target_1 "native" ".*native \\(Native process\\).*" "$gdb_prompt $"]
f015c27b
PA
3338}
3339
8929ad8b
SM
3340# Return the effective value of use_gdb_stub.
3341#
3342# If the use_gdb_stub global has been set (it is set when the gdb process is
3343# spawned), return that. Otherwise, return the value of the use_gdb_stub
3344# property from the board file.
3345#
3346# This is the preferred way of checking use_gdb_stub, since it allows to check
3347# the value before the gdb has been spawned and it will return the correct value
3348# even when it was overriden by the test.
3349
3350proc use_gdb_stub {} {
3351 global use_gdb_stub
3352
3353 if [info exists use_gdb_stub] {
3354 return $use_gdb_stub
3355 }
3356
3357 return [target_info exists use_gdb_stub]
3358}
3359
0a46d518
SM
3360# Return 1 if the current remote target is an instance of our GDBserver, 0
3361# otherwise. Return -1 if there was an error and we can't tell.
3362
3363gdb_caching_proc target_is_gdbserver {
3364 global gdb_prompt
3365
3366 set is_gdbserver -1
bc6c7af4 3367 set test "probing for GDBserver"
0a46d518
SM
3368
3369 gdb_test_multiple "monitor help" $test {
3370 -re "The following monitor commands are supported.*Quit GDBserver.*$gdb_prompt $" {
3371 set is_gdbserver 1
3372 }
3373 -re "$gdb_prompt $" {
3374 set is_gdbserver 0
3375 }
3376 }
3377
3378 if { $is_gdbserver == -1 } {
3379 verbose -log "Unable to tell whether we are using GDBserver or not."
3380 }
3381
3382 return $is_gdbserver
3383}
3384
a97b16b8
DE
3385# N.B. compiler_info is intended to be local to this file.
3386# Call test_compiler_info with no arguments to fetch its value.
3387# Yes, this is counterintuitive when there's get_compiler_info,
3388# but that's the current API.
3389if [info exists compiler_info] {
3390 unset compiler_info
3391}
3392
94b8e876 3393set gcc_compiled 0
94b8e876
MC
3394
3395# Figure out what compiler I am using.
a97b16b8 3396# The result is cached so only the first invocation runs the compiler.
94b8e876 3397#
4c93b1db 3398# ARG can be empty or "C++". If empty, "C" is assumed.
94b8e876
MC
3399#
3400# There are several ways to do this, with various problems.
3401#
3402# [ gdb_compile -E $ifile -o $binfile.ci ]
3403# source $binfile.ci
3404#
3405# Single Unix Spec v3 says that "-E -o ..." together are not
3406# specified. And in fact, the native compiler on hp-ux 11 (among
3407# others) does not work with "-E -o ...". Most targets used to do
3408# this, and it mostly worked, because it works with gcc.
3409#
3410# [ catch "exec $compiler -E $ifile > $binfile.ci" exec_output ]
3411# source $binfile.ci
3412#
3413# This avoids the problem with -E and -o together. This almost works
3414# if the build machine is the same as the host machine, which is
3415# usually true of the targets which are not gcc. But this code does
3416# not figure which compiler to call, and it always ends up using the C
3831839c
PA
3417# compiler. Not good for setting hp_aCC_compiler. Target
3418# hppa*-*-hpux* used to do this.
94b8e876
MC
3419#
3420# [ gdb_compile -E $ifile > $binfile.ci ]
3421# source $binfile.ci
3422#
3423# dejagnu target_compile says that it supports output redirection,
3424# but the code is completely different from the normal path and I
3425# don't want to sweep the mines from that path. So I didn't even try
3426# this.
3427#
3428# set cppout [ gdb_compile $ifile "" preprocess $args quiet ]
3429# eval $cppout
3430#
3431# I actually do this for all targets now. gdb_compile runs the right
3432# compiler, and TCL captures the output, and I eval the output.
3433#
3434# Unfortunately, expect logs the output of the command as it goes by,
3435# and dejagnu helpfully prints a second copy of it right afterwards.
3436# So I turn off expect logging for a moment.
3437#
3438# [ gdb_compile $ifile $ciexe_file executable $args ]
3439# [ remote_exec $ciexe_file ]
3440# [ source $ci_file.out ]
3441#
3442# I could give up on -E and just do this.
3443# I didn't get desperate enough to try this.
3444#
3445# -- chastain 2004-01-06
853d6e5b 3446
4c93b1db 3447proc get_compiler_info {{arg ""}} {
94b8e876 3448 # For compiler.c and compiler.cc
c906108c 3449 global srcdir
94b8e876
MC
3450
3451 # I am going to play with the log to keep noise out.
3452 global outdir
3453 global tool
3454
3455 # These come from compiler.c or compiler.cc
853d6e5b 3456 global compiler_info
4f70a4c9
MC
3457
3458 # Legacy global data symbols.
94b8e876 3459 global gcc_compiled
c906108c 3460
a97b16b8
DE
3461 if [info exists compiler_info] {
3462 # Already computed.
3463 return 0
3464 }
3465
94b8e876
MC
3466 # Choose which file to preprocess.
3467 set ifile "${srcdir}/lib/compiler.c"
4c93b1db 3468 if { $arg == "c++" } {
94b8e876 3469 set ifile "${srcdir}/lib/compiler.cc"
c906108c 3470 }
085dd6e6 3471
94b8e876
MC
3472 # Run $ifile through the right preprocessor.
3473 # Toggle gdb.log to keep the compiler output out of the log.
95d7853e 3474 set saved_log [log_file -info]
94b8e876 3475 log_file
e7f86de9
JM
3476 if [is_remote host] {
3477 # We have to use -E and -o together, despite the comments
3478 # above, because of how DejaGnu handles remote host testing.
3479 set ppout "$outdir/compiler.i"
fc65c7db 3480 gdb_compile "${ifile}" "$ppout" preprocess [list "$arg" quiet getting_compiler_info]
e7f86de9
JM
3481 set file [open $ppout r]
3482 set cppout [read $file]
3483 close $file
3484 } else {
fc65c7db 3485 set cppout [ gdb_compile "${ifile}" "" preprocess [list "$arg" quiet getting_compiler_info] ]
e7f86de9 3486 }
95d7853e 3487 eval log_file $saved_log
94b8e876 3488
4f70a4c9
MC
3489 # Eval the output.
3490 set unknown 0
94b8e876 3491 foreach cppline [ split "$cppout" "\n" ] {
4f70a4c9
MC
3492 if { [ regexp "^#" "$cppline" ] } {
3493 # line marker
3494 } elseif { [ regexp "^\[\n\r\t \]*$" "$cppline" ] } {
3495 # blank line
3496 } elseif { [ regexp "^\[\n\r\t \]*set\[\n\r\t \]" "$cppline" ] } {
3497 # eval this line
3498 verbose "get_compiler_info: $cppline" 2
3499 eval "$cppline"
3500 } else {
3501 # unknown line
3502 verbose -log "get_compiler_info: $cppline"
3503 set unknown 1
94b8e876 3504 }
085dd6e6 3505 }
4f70a4c9 3506
a97b16b8
DE
3507 # Set to unknown if for some reason compiler_info didn't get defined.
3508 if ![info exists compiler_info] {
3509 verbose -log "get_compiler_info: compiler_info not provided"
3510 set compiler_info "unknown"
3511 }
3512 # Also set to unknown compiler if any diagnostics happened.
4f70a4c9 3513 if { $unknown } {
a97b16b8 3514 verbose -log "get_compiler_info: got unexpected diagnostics"
4f70a4c9 3515 set compiler_info "unknown"
4f70a4c9
MC
3516 }
3517
3518 # Set the legacy symbols.
f90fd8c2
JK
3519 set gcc_compiled 0
3520 regexp "^gcc-(\[0-9\]+)-" "$compiler_info" matchall gcc_compiled
4f70a4c9
MC
3521
3522 # Log what happened.
94b8e876 3523 verbose -log "get_compiler_info: $compiler_info"
085dd6e6
JM
3524
3525 # Most compilers will evaluate comparisons and other boolean
3526 # operations to 0 or 1.
3527 uplevel \#0 { set true 1 }
3528 uplevel \#0 { set false 0 }
3529
ae59b1da 3530 return 0
c906108c
SS
3531}
3532
a97b16b8
DE
3533# Return the compiler_info string if no arg is provided.
3534# Otherwise the argument is a glob-style expression to match against
3535# compiler_info.
3536
9b593790 3537proc test_compiler_info { {compiler ""} } {
853d6e5b 3538 global compiler_info
a97b16b8 3539 get_compiler_info
6e87504d 3540
a97b16b8
DE
3541 # If no arg, return the compiler_info string.
3542 if [string match "" $compiler] {
3543 return $compiler_info
3544 }
6e87504d 3545
853d6e5b
AC
3546 return [string match $compiler $compiler_info]
3547}
3548
f6838f81
DJ
3549proc current_target_name { } {
3550 global target_info
3551 if [info exists target_info(target,name)] {
3552 set answer $target_info(target,name)
3553 } else {
3554 set answer ""
3555 }
3556 return $answer
3557}
3558
f1c47eb2 3559set gdb_wrapper_initialized 0
f6838f81 3560set gdb_wrapper_target ""
f1c47eb2
MS
3561
3562proc gdb_wrapper_init { args } {
4ec70201
PA
3563 global gdb_wrapper_initialized
3564 global gdb_wrapper_file
3565 global gdb_wrapper_flags
f6838f81 3566 global gdb_wrapper_target
f1c47eb2
MS
3567
3568 if { $gdb_wrapper_initialized == 1 } { return; }
3569
3570 if {[target_info exists needs_status_wrapper] && \
277254ba 3571 [target_info needs_status_wrapper] != "0"} {
4ec70201 3572 set result [build_wrapper "testglue.o"]
f1c47eb2 3573 if { $result != "" } {
4ec70201
PA
3574 set gdb_wrapper_file [lindex $result 0]
3575 set gdb_wrapper_flags [lindex $result 1]
f1c47eb2
MS
3576 } else {
3577 warning "Status wrapper failed to build."
3578 }
3579 }
3580 set gdb_wrapper_initialized 1
f6838f81 3581 set gdb_wrapper_target [current_target_name]
f1c47eb2
MS
3582}
3583
bf0ec4c2
AA
3584# Determine options that we always want to pass to the compiler.
3585gdb_caching_proc universal_compile_options {
3586 set me "universal_compile_options"
3587 set options {}
3588
3589 set src [standard_temp_file ccopts[pid].c]
3590 set obj [standard_temp_file ccopts[pid].o]
3591
3592 gdb_produce_source $src {
3593 int foo(void) { return 0; }
3594 }
3595
3596 # Try an option for disabling colored diagnostics. Some compilers
3597 # yield colored diagnostics by default (when run from a tty) unless
3598 # such an option is specified.
3599 set opt "additional_flags=-fdiagnostics-color=never"
3600 set lines [target_compile $src $obj object [list "quiet" $opt]]
3601 if [string match "" $lines] then {
3602 # Seems to have worked; use the option.
3603 lappend options $opt
3604 }
3605 file delete $src
3606 file delete $obj
3607
3608 verbose "$me: returning $options" 2
3609 return $options
3610}
3611
c221b2f7
AH
3612# Compile the code in $code to a file based on $name, using the flags
3613# $compile_flag as well as debug, nowarning and quiet.
3614# Return 1 if code can be compiled
bf326452 3615# Leave the file name of the resulting object in the upvar object.
c221b2f7 3616
bf326452
AH
3617proc gdb_simple_compile {name code {type object} {compile_flags {}} {object obj}} {
3618 upvar $object obj
c221b2f7
AH
3619
3620 switch -regexp -- $type {
3621 "executable" {
3622 set postfix "x"
3623 }
3624 "object" {
3625 set postfix "o"
3626 }
3627 "preprocess" {
3628 set postfix "i"
3629 }
3630 "assembly" {
3631 set postfix "s"
3632 }
3633 }
3634 set src [standard_temp_file $name-[pid].c]
3635 set obj [standard_temp_file $name-[pid].$postfix]
3636 set compile_flags [concat $compile_flags {debug nowarnings quiet}]
3637
3638 gdb_produce_source $src $code
3639
3640 verbose "$name: compiling testfile $src" 2
3641 set lines [gdb_compile $src $obj $type $compile_flags]
3642
3643 file delete $src
c221b2f7
AH
3644
3645 if ![string match "" $lines] then {
3646 verbose "$name: compilation failed, returning 0" 2
3647 return 0
3648 }
3649 return 1
3650}
3651
bf326452
AH
3652# Compile the code in $code to a file based on $name, using the flags
3653# $compile_flag as well as debug, nowarning and quiet.
3654# Return 1 if code can be compiled
3655# Delete all created files and objects.
3656
3657proc gdb_can_simple_compile {name code {type object} {compile_flags ""}} {
3658 set ret [gdb_simple_compile $name $code $type $compile_flags temp_obj]
3659 file delete $temp_obj
3660 return $ret
3661}
3662
f747e0ce
PA
3663# Some targets need to always link a special object in. Save its path here.
3664global gdb_saved_set_unbuffered_mode_obj
3665set gdb_saved_set_unbuffered_mode_obj ""
3666
aff9c0f8
SM
3667# Compile source files specified by SOURCE into a binary of type TYPE at path
3668# DEST. gdb_compile is implemented using DejaGnu's target_compile, so the type
3669# parameter and most options are passed directly to it.
3670#
3671# The type can be one of the following:
3672#
3673# - object: Compile into an object file.
3674# - executable: Compile and link into an executable.
3675# - preprocess: Preprocess the source files.
3676# - assembly: Generate assembly listing.
3677#
3678# The following options are understood and processed by gdb_compile:
3679#
3680# - shlib=so_path: Add SO_PATH to the sources, and enable some target-specific
3681# quirks to be able to use shared libraries.
3682# - shlib_load: Link with appropriate libraries to allow the test to
3683# dynamically load libraries at runtime. For example, on Linux, this adds
3684# -ldl so that the test can use dlopen.
3685# - nowarnings: Inhibit all compiler warnings.
968aa7ae 3686# - pie: Force creation of PIE executables.
6e8b1ab2 3687# - nopie: Prevent creation of PIE executables.
aff9c0f8
SM
3688#
3689# And here are some of the not too obscure options understood by DejaGnu that
3690# influence the compilation:
3691#
3692# - additional_flags=flag: Add FLAG to the compiler flags.
3693# - libs=library: Add LIBRARY to the libraries passed to the linker. The
3694# argument can be a file, in which case it's added to the sources, or a
3695# linker flag.
3696# - ldflags=flag: Add FLAG to the linker flags.
3697# - incdir=path: Add PATH to the searched include directories.
3698# - libdir=path: Add PATH to the linker searched directories.
3699# - ada, c++, f77: Compile the file as Ada, C++ or Fortran.
3700# - debug: Build with debug information.
3701# - optimize: Build with optimization.
3702
c906108c 3703proc gdb_compile {source dest type options} {
4ec70201
PA
3704 global GDB_TESTCASE_OPTIONS
3705 global gdb_wrapper_file
3706 global gdb_wrapper_flags
3707 global gdb_wrapper_initialized
f747e0ce
PA
3708 global srcdir
3709 global objdir
3710 global gdb_saved_set_unbuffered_mode_obj
c906108c 3711
695e2681
MK
3712 set outdir [file dirname $dest]
3713
3714 # Add platform-specific options if a shared library was specified using
3715 # "shlib=librarypath" in OPTIONS.
dcc06925 3716 set new_options {}
5eb5f850
TT
3717 if {[lsearch -exact $options rust] != -1} {
3718 # -fdiagnostics-color is not a rustcc option.
3719 } else {
3720 set new_options [universal_compile_options]
3721 }
695e2681 3722 set shlib_found 0
bdf7534a 3723 set shlib_load 0
fc65c7db 3724 set getting_compiler_info 0
695e2681 3725 foreach opt $options {
6181e9c2
SM
3726 if {[regexp {^shlib=(.*)} $opt dummy_var shlib_name]
3727 && $type == "executable"} {
57bf0e56 3728 if [test_compiler_info "xlc-*"] {
93f02886
DJ
3729 # IBM xlc compiler doesn't accept shared library named other
3730 # than .so: use "-Wl," to bypass this
3731 lappend source "-Wl,$shlib_name"
3732 } elseif { ([istarget "*-*-mingw*"]
3733 || [istarget *-*-cygwin*]
3734 || [istarget *-*-pe*])} {
3735 lappend source "${shlib_name}.a"
57bf0e56
DJ
3736 } else {
3737 lappend source $shlib_name
3738 }
0413d738 3739 if { $shlib_found == 0 } {
57bf0e56 3740 set shlib_found 1
0413d738
PA
3741 if { ([istarget "*-*-mingw*"]
3742 || [istarget *-*-cygwin*]) } {
bb61102d 3743 lappend new_options "additional_flags=-Wl,--enable-auto-import"
0413d738 3744 }
6ebea266
DE
3745 if { [test_compiler_info "gcc-*"] || [test_compiler_info "clang-*"] } {
3746 # Undo debian's change in the default.
3747 # Put it at the front to not override any user-provided
3748 # value, and to make sure it appears in front of all the
3749 # shlibs!
3750 lappend new_options "early_flags=-Wl,--no-as-needed"
3751 }
57bf0e56 3752 }
6181e9c2 3753 } elseif { $opt == "shlib_load" && $type == "executable" } {
bdf7534a 3754 set shlib_load 1
fc65c7db
AH
3755 } elseif { $opt == "getting_compiler_info" } {
3756 # If this is set, calling test_compiler_info will cause recursion.
3757 set getting_compiler_info 1
57bf0e56
DJ
3758 } else {
3759 lappend new_options $opt
3760 }
695e2681 3761 }
bdf7534a 3762
fc65c7db
AH
3763 # Ensure stack protector is disabled for GCC, as this causes problems with
3764 # DWARF line numbering.
3765 # See https://gcc.gnu.org/bugzilla/show_bug.cgi?id=88432
3766 # This option defaults to on for Debian/Ubuntu.
3767 if { $getting_compiler_info == 0
3768 && [test_compiler_info {gcc-*-*}]
3769 && !([test_compiler_info {gcc-[0-3]-*}]
1670072e
TT
3770 || [test_compiler_info {gcc-4-0-*}])
3771 && [lsearch -exact $options rust] == -1} {
fc65c7db
AH
3772 # Put it at the front to not override any user-provided value.
3773 lappend new_options "early_flags=-fno-stack-protector"
3774 }
3775
6e774b13
SM
3776 # Because we link with libraries using their basename, we may need
3777 # (depending on the platform) to set a special rpath value, to allow
3778 # the executable to find the libraries it depends on.
3779 if { $shlib_load || $shlib_found } {
bdf7534a
NF
3780 if { ([istarget "*-*-mingw*"]
3781 || [istarget *-*-cygwin*]
3ca22649 3782 || [istarget *-*-pe*]) } {
bdf7534a 3783 # Do not need anything.
b2a6bdeb 3784 } elseif { [istarget *-*-freebsd*] || [istarget *-*-openbsd*] } {
d8b34041 3785 lappend new_options "ldflags=-Wl,-rpath,${outdir}"
759f0f0b
PA
3786 } elseif { [istarget arm*-*-symbianelf*] } {
3787 if { $shlib_load } {
3788 lappend new_options "libs=-ldl"
3789 }
bdf7534a
NF
3790 } else {
3791 if { $shlib_load } {
3792 lappend new_options "libs=-ldl"
3793 }
d8b34041 3794 lappend new_options "ldflags=-Wl,-rpath,\\\$ORIGIN"
bdf7534a
NF
3795 }
3796 }
695e2681 3797 set options $new_options
57bf0e56 3798
c906108c 3799 if [info exists GDB_TESTCASE_OPTIONS] {
4ec70201 3800 lappend options "additional_flags=$GDB_TESTCASE_OPTIONS"
c906108c
SS
3801 }
3802 verbose "options are $options"
3803 verbose "source is $source $dest $type $options"
3804
f1c47eb2
MS
3805 if { $gdb_wrapper_initialized == 0 } { gdb_wrapper_init }
3806
3807 if {[target_info exists needs_status_wrapper] && \
3808 [target_info needs_status_wrapper] != "0" && \
3809 [info exists gdb_wrapper_file]} {
3810 lappend options "libs=${gdb_wrapper_file}"
3811 lappend options "ldflags=${gdb_wrapper_flags}"
3812 }
3813
fc91c6c2
PB
3814 # Replace the "nowarnings" option with the appropriate additional_flags
3815 # to disable compiler warnings.
3816 set nowarnings [lsearch -exact $options nowarnings]
3817 if {$nowarnings != -1} {
3818 if [target_info exists gdb,nowarnings_flag] {
3819 set flag "additional_flags=[target_info gdb,nowarnings_flag]"
3820 } else {
3821 set flag "additional_flags=-w"
3822 }
3823 set options [lreplace $options $nowarnings $nowarnings $flag]
3824 }
3825
968aa7ae
AH
3826 # Replace the "pie" option with the appropriate compiler and linker flags
3827 # to enable PIE executables.
3828 set pie [lsearch -exact $options pie]
3829 if {$pie != -1} {
3830 if [target_info exists gdb,pie_flag] {
3831 set flag "additional_flags=[target_info gdb,pie_flag]"
3832 } else {
3833 # For safety, use fPIE rather than fpie. On AArch64, m68k, PowerPC
3834 # and SPARC, fpie can cause compile errors due to the GOT exceeding
3835 # a maximum size. On other architectures the two flags are
3836 # identical (see the GCC manual). Note Debian9 and Ubuntu16.10
3837 # onwards default GCC to using fPIE. If you do require fpie, then
3838 # it can be set using the pie_flag.
3839 set flag "additional_flags=-fPIE"
3840 }
3841 set options [lreplace $options $pie $pie $flag]
3842
3843 if [target_info exists gdb,pie_ldflag] {
3844 set flag "ldflags=[target_info gdb,pie_ldflag]"
3845 } else {
3846 set flag "ldflags=-pie"
3847 }
3848 lappend options "$flag"
3849 }
3850
3851 # Replace the "nopie" option with the appropriate linker flag to disable
3852 # PIE executables. There are no compiler flags for this option.
6e8b1ab2
JV
3853 set nopie [lsearch -exact $options nopie]
3854 if {$nopie != -1} {
3855 if [target_info exists gdb,nopie_flag] {
3856 set flag "ldflags=[target_info gdb,nopie_flag]"
3857 } else {
3858 set flag "ldflags=-no-pie"
3859 }
3860 set options [lreplace $options $nopie $nopie $flag]
3861 }
3862
f747e0ce
PA
3863 if { $type == "executable" } {
3864 if { ([istarget "*-*-mingw*"]
56643c5e 3865 || [istarget "*-*-*djgpp"]
f747e0ce
PA
3866 || [istarget "*-*-cygwin*"])} {
3867 # Force output to unbuffered mode, by linking in an object file
3868 # with a global contructor that calls setvbuf.
3869 #
3870 # Compile the special object seperatelly for two reasons:
3871 # 1) Insulate it from $options.
3872 # 2) Avoid compiling it for every gdb_compile invocation,
3873 # which is time consuming, especially if we're remote
3874 # host testing.
3875 #
3876 if { $gdb_saved_set_unbuffered_mode_obj == "" } {
3877 verbose "compiling gdb_saved_set_unbuffered_obj"
3878 set unbuf_src ${srcdir}/lib/set_unbuffered_mode.c
3879 set unbuf_obj ${objdir}/set_unbuffered_mode.o
3880
3881 set result [gdb_compile "${unbuf_src}" "${unbuf_obj}" object {nowarnings}]
3882 if { $result != "" } {
3883 return $result
3884 }
f6dc277e
YQ
3885 if {[is_remote host]} {
3886 set gdb_saved_set_unbuffered_mode_obj set_unbuffered_mode_saved.o
3887 } else {
3888 set gdb_saved_set_unbuffered_mode_obj ${objdir}/set_unbuffered_mode_saved.o
3889 }
f747e0ce
PA
3890 # Link a copy of the output object, because the
3891 # original may be automatically deleted.
f6dc277e 3892 remote_download host $unbuf_obj $gdb_saved_set_unbuffered_mode_obj
f747e0ce
PA
3893 } else {
3894 verbose "gdb_saved_set_unbuffered_obj already compiled"
3895 }
3896
3897 # Rely on the internal knowledge that the global ctors are ran in
3898 # reverse link order. In that case, we can use ldflags to
3899 # avoid copying the object file to the host multiple
3900 # times.
ace5c364
PM
3901 # This object can only be added if standard libraries are
3902 # used. Thus, we need to disable it if -nostdlib option is used
3903 if {[lsearch -regexp $options "-nostdlib"] < 0 } {
3904 lappend options "ldflags=$gdb_saved_set_unbuffered_mode_obj"
3905 }
f747e0ce
PA
3906 }
3907 }
3908
4ec70201 3909 set result [target_compile $source $dest $type $options]
93f02886
DJ
3910
3911 # Prune uninteresting compiler (and linker) output.
3912 regsub "Creating library file: \[^\r\n\]*\[\r\n\]+" $result "" result
3913
4ec70201
PA
3914 regsub "\[\r\n\]*$" "$result" "" result
3915 regsub "^\[\r\n\]*" "$result" "" result
ec3c07fc 3916
a80cf5d8
TV
3917 if { $type == "executable" && $result == "" \
3918 && ($nopie != -1 || $pie != -1) } {
3919 set is_pie [exec_is_pie "$dest"]
3920 if { $nopie != -1 && $is_pie == 1 } {
b13057d9 3921 set result "nopie failed to prevent PIE executable"
a80cf5d8
TV
3922 } elseif { $pie != -1 && $is_pie == 0 } {
3923 set result "pie failed to generate PIE executable"
b13057d9
TV
3924 }
3925 }
3926
ec3c07fc
NS
3927 if {[lsearch $options quiet] < 0} {
3928 # We shall update this on a per language basis, to avoid
3929 # changing the entire testsuite in one go.
3930 if {[lsearch $options f77] >= 0} {
3931 gdb_compile_test $source $result
3932 } elseif { $result != "" } {
3933 clone_output "gdb compile failed, $result"
3934 }
c906108c 3935 }
ae59b1da 3936 return $result
c906108c
SS
3937}
3938
b6ff0e81
JB
3939
3940# This is just like gdb_compile, above, except that it tries compiling
3941# against several different thread libraries, to see which one this
3942# system has.
3943proc gdb_compile_pthreads {source dest type options} {
0ae67eb3 3944 set built_binfile 0
b6ff0e81 3945 set why_msg "unrecognized error"
24486cb7 3946 foreach lib {-lpthreads -lpthread -lthread ""} {
b6ff0e81
JB
3947 # This kind of wipes out whatever libs the caller may have
3948 # set. Or maybe theirs will override ours. How infelicitous.
b5ab8ff3 3949 set options_with_lib [concat $options [list libs=$lib quiet]]
b6ff0e81
JB
3950 set ccout [gdb_compile $source $dest $type $options_with_lib]
3951 switch -regexp -- $ccout {
3952 ".*no posix threads support.*" {
3953 set why_msg "missing threads include file"
3954 break
3955 }
3956 ".*cannot open -lpthread.*" {
3957 set why_msg "missing runtime threads library"
3958 }
3959 ".*Can't find library for -lpthread.*" {
3960 set why_msg "missing runtime threads library"
3961 }
3962 {^$} {
3963 pass "successfully compiled posix threads test case"
3964 set built_binfile 1
3965 break
3966 }
3967 }
3968 }
0ae67eb3 3969 if {!$built_binfile} {
bc6c7af4 3970 unsupported "couldn't compile [file tail $source]: ${why_msg}"
b6ff0e81
JB
3971 return -1
3972 }
57bf0e56
DJ
3973}
3974
409d8f48 3975# Build a shared library from SOURCES.
57bf0e56
DJ
3976
3977proc gdb_compile_shlib {sources dest options} {
3978 set obj_options $options
3979
409d8f48
AB
3980 set info_options ""
3981 if { [lsearch -exact $options "c++"] >= 0 } {
3982 set info_options "c++"
3983 }
3984 if [get_compiler_info ${info_options}] {
3985 return -1
3986 }
3987
57bf0e56
DJ
3988 switch -glob [test_compiler_info] {
3989 "xlc-*" {
3990 lappend obj_options "additional_flags=-qpic"
3991 }
ee92b0dd
DE
3992 "clang-*" {
3993 if { !([istarget "*-*-cygwin*"]
3994 || [istarget "*-*-mingw*"]) } {
3995 lappend obj_options "additional_flags=-fpic"
3996 }
3997 }
57bf0e56
DJ
3998 "gcc-*" {
3999 if { !([istarget "powerpc*-*-aix*"]
227c54da
DJ
4000 || [istarget "rs6000*-*-aix*"]
4001 || [istarget "*-*-cygwin*"]
4002 || [istarget "*-*-mingw*"]
4003 || [istarget "*-*-pe*"]) } {
57bf0e56
DJ
4004 lappend obj_options "additional_flags=-fpic"
4005 }
4006 }
9b9b09e9
BH
4007 "icc-*" {
4008 lappend obj_options "additional_flags=-fpic"
4009 }
57bf0e56 4010 default {
3ca22649 4011 # don't know what the compiler is...
57bf0e56
DJ
4012 }
4013 }
4014
4015 set outdir [file dirname $dest]
4016 set objects ""
4017 foreach source $sources {
2ff0a947
TT
4018 set sourcebase [file tail $source]
4019 if {[file extension $source] == ".o"} {
4020 # Already a .o file.
4021 lappend objects $source
4022 } elseif {[gdb_compile $source "${outdir}/${sourcebase}.o" object \
4023 $obj_options] != ""} {
4024 return -1
4025 } else {
4026 lappend objects ${outdir}/${sourcebase}.o
4027 }
57bf0e56
DJ
4028 }
4029
3ca22649
SM
4030 set link_options $options
4031 if [test_compiler_info "xlc-*"] {
4032 lappend link_options "additional_flags=-qmkshrobj"
57bf0e56 4033 } else {
3ca22649
SM
4034 lappend link_options "additional_flags=-shared"
4035
4036 if { ([istarget "*-*-mingw*"]
4037 || [istarget *-*-cygwin*]
4038 || [istarget *-*-pe*]) } {
4039 if { [is_remote host] } {
4040 set name [file tail ${dest}]
4041 } else {
4042 set name ${dest}
4043 }
4044 lappend link_options "additional_flags=-Wl,--out-implib,${name}.a"
6e774b13
SM
4045 } else {
4046 # Set the soname of the library. This causes the linker on ELF
4047 # systems to create the DT_NEEDED entry in the executable referring
4048 # to the soname of the library, and not its absolute path. This
4049 # (using the absolute path) would be problem when testing on a
4050 # remote target.
4051 #
4052 # In conjunction with setting the soname, we add the special
4053 # rpath=$ORIGIN value when building the executable, so that it's
4054 # able to find the library in its own directory.
3ca22649
SM
4055 set destbase [file tail $dest]
4056 lappend link_options "additional_flags=-Wl,-soname,$destbase"
4057 }
4058 }
4059 if {[gdb_compile "${objects}" "${dest}" executable $link_options] != ""} {
4060 return -1
57bf0e56 4061 }
3ca22649
SM
4062 if { [is_remote host]
4063 && ([istarget "*-*-mingw*"]
4064 || [istarget *-*-cygwin*]
4065 || [istarget *-*-pe*]) } {
4066 set dest_tail_name [file tail ${dest}]
4067 remote_upload host $dest_tail_name.a ${dest}.a
4068 remote_file host delete $dest_tail_name.a
4069 }
4070
4071 return ""
b6ff0e81
JB
4072}
4073
756d88a7
UW
4074# This is just like gdb_compile_shlib, above, except that it tries compiling
4075# against several different thread libraries, to see which one this
4076# system has.
4077proc gdb_compile_shlib_pthreads {sources dest options} {
4078 set built_binfile 0
4079 set why_msg "unrecognized error"
4080 foreach lib {-lpthreads -lpthread -lthread ""} {
4081 # This kind of wipes out whatever libs the caller may have
4082 # set. Or maybe theirs will override ours. How infelicitous.
4083 set options_with_lib [concat $options [list libs=$lib quiet]]
4084 set ccout [gdb_compile_shlib $sources $dest $options_with_lib]
4085 switch -regexp -- $ccout {
4086 ".*no posix threads support.*" {
4087 set why_msg "missing threads include file"
4088 break
4089 }
4090 ".*cannot open -lpthread.*" {
4091 set why_msg "missing runtime threads library"
4092 }
4093 ".*Can't find library for -lpthread.*" {
4094 set why_msg "missing runtime threads library"
4095 }
4096 {^$} {
4097 pass "successfully compiled posix threads test case"
4098 set built_binfile 1
4099 break
4100 }
4101 }
4102 }
4103 if {!$built_binfile} {
bc6c7af4 4104 unsupported "couldn't compile $sources: ${why_msg}"
756d88a7
UW
4105 return -1
4106 }
4107}
4108
130cacce
AF
4109# This is just like gdb_compile_pthreads, above, except that we always add the
4110# objc library for compiling Objective-C programs
4111proc gdb_compile_objc {source dest type options} {
4112 set built_binfile 0
4113 set why_msg "unrecognized error"
4114 foreach lib {-lobjc -lpthreads -lpthread -lthread solaris} {
4115 # This kind of wipes out whatever libs the caller may have
4116 # set. Or maybe theirs will override ours. How infelicitous.
4117 if { $lib == "solaris" } {
4118 set lib "-lpthread -lposix4"
4119 }
4120 if { $lib != "-lobjc" } {
4121 set lib "-lobjc $lib"
4122 }
4123 set options_with_lib [concat $options [list libs=$lib quiet]]
4124 set ccout [gdb_compile $source $dest $type $options_with_lib]
4125 switch -regexp -- $ccout {
4126 ".*no posix threads support.*" {
4127 set why_msg "missing threads include file"
4128 break
4129 }
4130 ".*cannot open -lpthread.*" {
4131 set why_msg "missing runtime threads library"
4132 }
4133 ".*Can't find library for -lpthread.*" {
4134 set why_msg "missing runtime threads library"
4135 }
4136 {^$} {
4137 pass "successfully compiled objc with posix threads test case"
4138 set built_binfile 1
4139 break
4140 }
4141 }
4142 }
4143 if {!$built_binfile} {
bc6c7af4 4144 unsupported "couldn't compile [file tail $source]: ${why_msg}"
130cacce
AF
4145 return -1
4146 }
4147}
4148
f9e2e39d
AH
4149# Send a command to GDB.
4150# For options for TYPE see gdb_stdin_log_write
4151
4152proc send_gdb { string {type standard}} {
4ec70201 4153 global suppress_flag
c906108c 4154 if { $suppress_flag } {
ae59b1da 4155 return "suppressed"
c906108c 4156 }
f9e2e39d 4157 gdb_stdin_log_write $string $type
ae59b1da 4158 return [remote_send host "$string"]
c906108c
SS
4159}
4160
f71c18e7
PA
4161# Send STRING to the inferior's terminal.
4162
4163proc send_inferior { string } {
4164 global inferior_spawn_id
4165
4166 if {[catch "send -i $inferior_spawn_id -- \$string" errorInfo]} {
4167 return "$errorInfo"
4168 } else {
4169 return ""
4170 }
4171}
4172
c906108c
SS
4173#
4174#
4175
4176proc gdb_expect { args } {
4177 if { [llength $args] == 2 && [lindex $args 0] != "-re" } {
4ec70201
PA
4178 set atimeout [lindex $args 0]
4179 set expcode [list [lindex $args 1]]
c906108c 4180 } else {
4ec70201 4181 set expcode $args
2f34202f
MR
4182 }
4183
4a40f85a
MR
4184 # A timeout argument takes precedence, otherwise of all the timeouts
4185 # select the largest.
4a40f85a
MR
4186 if [info exists atimeout] {
4187 set tmt $atimeout
4188 } else {
45fd756c 4189 set tmt [get_largest_timeout]
c906108c 4190 }
2f34202f 4191
4ec70201
PA
4192 global suppress_flag
4193 global remote_suppress_flag
c906108c 4194 if [info exists remote_suppress_flag] {
4ec70201 4195 set old_val $remote_suppress_flag
c906108c
SS
4196 }
4197 if [info exists suppress_flag] {
4198 if { $suppress_flag } {
4ec70201 4199 set remote_suppress_flag 1
c906108c
SS
4200 }
4201 }
a0b3c4fd 4202 set code [catch \
4a40f85a 4203 {uplevel remote_expect host $tmt $expcode} string]
c906108c 4204 if [info exists old_val] {
4ec70201 4205 set remote_suppress_flag $old_val
c906108c
SS
4206 } else {
4207 if [info exists remote_suppress_flag] {
4ec70201 4208 unset remote_suppress_flag
c906108c
SS
4209 }
4210 }
4211
4212 if {$code == 1} {
4ec70201 4213 global errorInfo errorCode
c906108c
SS
4214
4215 return -code error -errorinfo $errorInfo -errorcode $errorCode $string
d6d7a51a 4216 } else {
c906108c
SS
4217 return -code $code $string
4218 }
4219}
4220
5fa290c1 4221# gdb_expect_list TEST SENTINEL LIST -- expect a sequence of outputs
085dd6e6
JM
4222#
4223# Check for long sequence of output by parts.
5fa290c1 4224# TEST: is the test message to be printed with the test success/fail.
085dd6e6
JM
4225# SENTINEL: Is the terminal pattern indicating that output has finished.
4226# LIST: is the sequence of outputs to match.
4227# If the sentinel is recognized early, it is considered an error.
4228#
11cf8741
JM
4229# Returns:
4230# 1 if the test failed,
4231# 0 if the test passes,
4232# -1 if there was an internal error.
5fa290c1 4233
c2d11a7d 4234proc gdb_expect_list {test sentinel list} {
085dd6e6 4235 global gdb_prompt
11cf8741 4236 global suppress_flag
085dd6e6 4237 set index 0
43ff13b4 4238 set ok 1
11cf8741
JM
4239 if { $suppress_flag } {
4240 set ok 0
a20ce2c3 4241 unresolved "${test}"
11cf8741 4242 }
43ff13b4 4243 while { ${index} < [llength ${list}] } {
085dd6e6
JM
4244 set pattern [lindex ${list} ${index}]
4245 set index [expr ${index} + 1]
6b0ecdc2 4246 verbose -log "gdb_expect_list pattern: /$pattern/" 2
085dd6e6 4247 if { ${index} == [llength ${list}] } {
43ff13b4
JM
4248 if { ${ok} } {
4249 gdb_expect {
c2d11a7d 4250 -re "${pattern}${sentinel}" {
a20ce2c3 4251 # pass "${test}, pattern ${index} + sentinel"
c2d11a7d
JM
4252 }
4253 -re "${sentinel}" {
a20ce2c3 4254 fail "${test} (pattern ${index} + sentinel)"
c2d11a7d 4255 set ok 0
43ff13b4 4256 }
5c5455dc
AC
4257 -re ".*A problem internal to GDB has been detected" {
4258 fail "${test} (GDB internal error)"
4259 set ok 0
4260 gdb_internal_error_resync
4261 }
43ff13b4 4262 timeout {
a20ce2c3 4263 fail "${test} (pattern ${index} + sentinel) (timeout)"
43ff13b4
JM
4264 set ok 0
4265 }
085dd6e6 4266 }
43ff13b4 4267 } else {
a20ce2c3 4268 # unresolved "${test}, pattern ${index} + sentinel"
085dd6e6
JM
4269 }
4270 } else {
43ff13b4
JM
4271 if { ${ok} } {
4272 gdb_expect {
4273 -re "${pattern}" {
a20ce2c3 4274 # pass "${test}, pattern ${index}"
43ff13b4 4275 }
c2d11a7d 4276 -re "${sentinel}" {
a20ce2c3 4277 fail "${test} (pattern ${index})"
43ff13b4
JM
4278 set ok 0
4279 }
5c5455dc
AC
4280 -re ".*A problem internal to GDB has been detected" {
4281 fail "${test} (GDB internal error)"
4282 set ok 0
4283 gdb_internal_error_resync
4284 }
43ff13b4 4285 timeout {
a20ce2c3 4286 fail "${test} (pattern ${index}) (timeout)"
43ff13b4
JM
4287 set ok 0
4288 }
085dd6e6 4289 }
43ff13b4 4290 } else {
a20ce2c3 4291 # unresolved "${test}, pattern ${index}"
085dd6e6
JM
4292 }
4293 }
4294 }
11cf8741 4295 if { ${ok} } {
a20ce2c3 4296 pass "${test}"
11cf8741
JM
4297 return 0
4298 } else {
4299 return 1
4300 }
085dd6e6
JM
4301}
4302
4303#
4304#
c906108c 4305proc gdb_suppress_entire_file { reason } {
4ec70201 4306 global suppress_flag
c906108c 4307
4ec70201
PA
4308 warning "$reason\n"
4309 set suppress_flag -1
c906108c
SS
4310}
4311
4312#
4313# Set suppress_flag, which will cause all subsequent calls to send_gdb and
4314# gdb_expect to fail immediately (until the next call to
4315# gdb_stop_suppressing_tests).
4316#
4317proc gdb_suppress_tests { args } {
4ec70201 4318 global suppress_flag
c906108c
SS
4319
4320 return; # fnf - disable pending review of results where
4321 # testsuite ran better without this
4ec70201 4322 incr suppress_flag
c906108c
SS
4323
4324 if { $suppress_flag == 1 } {
4325 if { [llength $args] > 0 } {
4ec70201 4326 warning "[lindex $args 0]\n"
c906108c 4327 } else {
4ec70201 4328 warning "Because of previous failure, all subsequent tests in this group will automatically fail.\n"
c906108c
SS
4329 }
4330 }
4331}
4332
4333#
4334# Clear suppress_flag.
4335#
4336proc gdb_stop_suppressing_tests { } {
4ec70201 4337 global suppress_flag
c906108c
SS
4338
4339 if [info exists suppress_flag] {
4340 if { $suppress_flag > 0 } {
4ec70201
PA
4341 set suppress_flag 0
4342 clone_output "Tests restarted.\n"
c906108c
SS
4343 }
4344 } else {
4ec70201 4345 set suppress_flag 0
c906108c
SS
4346 }
4347}
4348
4349proc gdb_clear_suppressed { } {
4ec70201 4350 global suppress_flag
c906108c 4351
4ec70201 4352 set suppress_flag 0
c906108c
SS
4353}
4354
94696ad3
PA
4355# Spawn the gdb process.
4356#
4357# This doesn't expect any output or do any other initialization,
4358# leaving those to the caller.
4359#
4360# Overridable function -- you can override this function in your
4361# baseboard file.
4362
4363proc gdb_spawn { } {
4364 default_gdb_spawn
4365}
4366
98880d46
PA
4367# Spawn GDB with CMDLINE_FLAGS appended to the GDBFLAGS global.
4368
4369proc gdb_spawn_with_cmdline_opts { cmdline_flags } {
4370 global GDBFLAGS
4371
4372 set saved_gdbflags $GDBFLAGS
4373
0bbeccb1
PA
4374 if {$GDBFLAGS != ""} {
4375 append GDBFLAGS " "
4376 }
98880d46
PA
4377 append GDBFLAGS $cmdline_flags
4378
4379 set res [gdb_spawn]
4380
4381 set GDBFLAGS $saved_gdbflags
4382
4383 return $res
4384}
4385
94696ad3
PA
4386# Start gdb running, wait for prompt, and disable the pagers.
4387
4388# Overridable function -- you can override this function in your
4389# baseboard file.
4390
c906108c
SS
4391proc gdb_start { } {
4392 default_gdb_start
4393}
4394
4395proc gdb_exit { } {
4396 catch default_gdb_exit
4397}
4398
60b3033e
PA
4399# Return true if we can spawn a program on the target and attach to
4400# it.
4401
4402proc can_spawn_for_attach { } {
2c8c5d37
PA
4403 # We use exp_pid to get the inferior's pid, assuming that gives
4404 # back the pid of the program. On remote boards, that would give
4405 # us instead the PID of e.g., the ssh client, etc.
60b3033e
PA
4406 if [is_remote target] then {
4407 return 0
4408 }
4409
4410 # The "attach" command doesn't make sense when the target is
4411 # stub-like, where GDB finds the program already started on
4412 # initial connection.
4413 if {[target_info exists use_gdb_stub]} {
4414 return 0
4415 }
4416
4417 # Assume yes.
4418 return 1
4419}
4420
2c8c5d37
PA
4421# Kill a progress previously started with spawn_wait_for_attach, and
4422# reap its wait status. PROC_SPAWN_ID is the spawn id associated with
4423# the process.
4424
4425proc kill_wait_spawned_process { proc_spawn_id } {
4426 set pid [exp_pid -i $proc_spawn_id]
4427
4428 verbose -log "killing ${pid}"
4429 remote_exec build "kill -9 ${pid}"
4430
4431 verbose -log "closing ${proc_spawn_id}"
4432 catch "close -i $proc_spawn_id"
4433 verbose -log "waiting for ${proc_spawn_id}"
4434
4435 # If somehow GDB ends up still attached to the process here, a
4436 # blocking wait hangs until gdb is killed (or until gdb / the
4437 # ptracer reaps the exit status too, but that won't happen because
4438 # something went wrong.) Passing -nowait makes expect tell Tcl to
4439 # wait for the PID in the background. That's fine because we
4440 # don't care about the exit status. */
4441 wait -nowait -i $proc_spawn_id
4442}
4443
4444# Returns the process id corresponding to the given spawn id.
4445
4446proc spawn_id_get_pid { spawn_id } {
4447 set testpid [exp_pid -i $spawn_id]
4448
4449 if { [istarget "*-*-cygwin*"] } {
4450 # testpid is the Cygwin PID, GDB uses the Windows PID, which
4451 # might be different due to the way fork/exec works.
4452 set testpid [ exec ps -e | gawk "{ if (\$1 == $testpid) print \$4; }" ]
4453 }
4454
4455 return $testpid
4456}
4457
4c92ff2c 4458# Start a set of programs running and then wait for a bit, to be sure
2c8c5d37
PA
4459# that they can be attached to. Return a list of processes spawn IDs,
4460# one element for each process spawned. It's a test error to call
4461# this when [can_spawn_for_attach] is false.
4c92ff2c
PA
4462
4463proc spawn_wait_for_attach { executable_list } {
2c8c5d37 4464 set spawn_id_list {}
4c92ff2c 4465
60b3033e
PA
4466 if ![can_spawn_for_attach] {
4467 # The caller should have checked can_spawn_for_attach itself
4468 # before getting here.
4469 error "can't spawn for attach with this target/board"
4470 }
4471
4c92ff2c 4472 foreach {executable} $executable_list {
2c8c5d37
PA
4473 # Note we use Expect's spawn, not Tcl's exec, because with
4474 # spawn we control when to wait for/reap the process. That
4475 # allows killing the process by PID without being subject to
4476 # pid-reuse races.
4477 lappend spawn_id_list [remote_spawn target $executable]
4c92ff2c
PA
4478 }
4479
4480 sleep 2
4481
2c8c5d37 4482 return $spawn_id_list
4c92ff2c
PA
4483}
4484
e63b55d1
NS
4485#
4486# gdb_load_cmd -- load a file into the debugger.
4487# ARGS - additional args to load command.
4488# return a -1 if anything goes wrong.
4489#
4490proc gdb_load_cmd { args } {
4491 global gdb_prompt
4492
4493 if [target_info exists gdb_load_timeout] {
4494 set loadtimeout [target_info gdb_load_timeout]
4495 } else {
4496 set loadtimeout 1600
4497 }
4498 send_gdb "load $args\n"
e91528f0 4499 verbose "Timeout is now $loadtimeout seconds" 2
e63b55d1
NS
4500 gdb_expect $loadtimeout {
4501 -re "Loading section\[^\r\]*\r\n" {
4502 exp_continue
4503 }
4504 -re "Start address\[\r\]*\r\n" {
4505 exp_continue
4506 }
4507 -re "Transfer rate\[\r\]*\r\n" {
4508 exp_continue
4509 }
4510 -re "Memory access error\[^\r\]*\r\n" {
4511 perror "Failed to load program"
4512 return -1
4513 }
4514 -re "$gdb_prompt $" {
4515 return 0
4516 }
4517 -re "(.*)\r\n$gdb_prompt " {
4518 perror "Unexpected reponse from 'load' -- $expect_out(1,string)"
4519 return -1
4520 }
4521 timeout {
c4b347c7 4522 perror "Timed out trying to load $args."
e63b55d1
NS
4523 return -1
4524 }
4525 }
4526 return -1
4527}
4528
2d338fa9
TT
4529# Invoke "gcore". CORE is the name of the core file to write. TEST
4530# is the name of the test case. This will return 1 if the core file
4531# was created, 0 otherwise. If this fails to make a core file because
4532# this configuration of gdb does not support making core files, it
4533# will call "unsupported", not "fail". However, if this fails to make
4534# a core file for some other reason, then it will call "fail".
4535
4536proc gdb_gcore_cmd {core test} {
4537 global gdb_prompt
4538
4539 set result 0
4540 gdb_test_multiple "gcore $core" $test {
4541 -re "Saved corefile .*\[\r\n\]+$gdb_prompt $" {
4542 pass $test
4543 set result 1
4544 }
bbe769cc 4545 -re "(?:Can't create a corefile|Target does not support core file generation\\.)\[\r\n\]+$gdb_prompt $" {
2d338fa9
TT
4546 unsupported $test
4547 }
4548 }
4549
4550 return $result
4551}
4552
fac51dd9
DE
4553# Load core file CORE. TEST is the name of the test case.
4554# This will record a pass/fail for loading the core file.
4555# Returns:
4556# 1 - core file is successfully loaded
4557# 0 - core file loaded but has a non fatal error
4558# -1 - core file failed to load
4559
4560proc gdb_core_cmd { core test } {
4561 global gdb_prompt
4562
4f424bb1 4563 gdb_test_multiple "core $core" "$test" {
fac51dd9
DE
4564 -re "\\\[Thread debugging using \[^ \r\n\]* enabled\\\]\r\n" {
4565 exp_continue
4566 }
4567 -re " is not a core dump:.*\r\n$gdb_prompt $" {
4f424bb1 4568 fail "$test (bad file format)"
fac51dd9
DE
4569 return -1
4570 }
4571 -re ": No such file or directory.*\r\n$gdb_prompt $" {
4f424bb1 4572 fail "$test (file not found)"
fac51dd9
DE
4573 return -1
4574 }
4575 -re "Couldn't find .* registers in core file.*\r\n$gdb_prompt $" {
4f424bb1 4576 fail "$test (incomplete note section)"
fac51dd9
DE
4577 return 0
4578 }
4579 -re "Core was generated by .*\r\n$gdb_prompt $" {
4f424bb1 4580 pass "$test"
fac51dd9
DE
4581 return 1
4582 }
4583 -re ".*$gdb_prompt $" {
4f424bb1 4584 fail "$test"
fac51dd9
DE
4585 return -1
4586 }
4587 timeout {
4f424bb1 4588 fail "$test (timeout)"
fac51dd9
DE
4589 return -1
4590 }
4591 }
4592 fail "unsupported output from 'core' command"
4593 return -1
4594}
4595
759f0f0b
PA
4596# Return the filename to download to the target and load on the target
4597# for this shared library. Normally just LIBNAME, unless shared libraries
4598# for this target have separate link and load images.
4599
4600proc shlib_target_file { libname } {
4601 return $libname
4602}
4603
4604# Return the filename GDB will load symbols from when debugging this
4605# shared library. Normally just LIBNAME, unless shared libraries for
4606# this target have separate link and load images.
4607
4608proc shlib_symbol_file { libname } {
4609 return $libname
4610}
4611
56744f0a
JJ
4612# Return the filename to download to the target and load for this
4613# executable. Normally just BINFILE unless it is renamed to something
4614# else for this target.
4615
4616proc exec_target_file { binfile } {
4617 return $binfile
4618}
4619
4620# Return the filename GDB will load symbols from when debugging this
4621# executable. Normally just BINFILE unless executables for this target
4622# have separate files for symbols.
4623
4624proc exec_symbol_file { binfile } {
4625 return $binfile
4626}
4627
4628# Rename the executable file. Normally this is just BINFILE1 being renamed
4629# to BINFILE2, but some targets require multiple binary files.
4630proc gdb_rename_execfile { binfile1 binfile2 } {
faf067f1
JK
4631 file rename -force [exec_target_file ${binfile1}] \
4632 [exec_target_file ${binfile2}]
56744f0a 4633 if { [exec_target_file ${binfile1}] != [exec_symbol_file ${binfile1}] } {
faf067f1
JK
4634 file rename -force [exec_symbol_file ${binfile1}] \
4635 [exec_symbol_file ${binfile2}]
56744f0a
JJ
4636 }
4637}
4638
4639# "Touch" the executable file to update the date. Normally this is just
4640# BINFILE, but some targets require multiple files.
4641proc gdb_touch_execfile { binfile } {
faf067f1
JK
4642 set time [clock seconds]
4643 file mtime [exec_target_file ${binfile}] $time
56744f0a 4644 if { [exec_target_file ${binfile}] != [exec_symbol_file ${binfile}] } {
faf067f1 4645 file mtime [exec_symbol_file ${binfile}] $time
56744f0a
JJ
4646 }
4647}
4648
7817ea46
SM
4649# Like remote_download but provides a gdb-specific behavior.
4650#
4651# If the destination board is remote, the local file FROMFILE is transferred as
4652# usual with remote_download to TOFILE on the remote board. The destination
4653# filename is added to the CLEANFILES global, so it can be cleaned up at the
4654# end of the test.
4655#
4656# If the destination board is local, the destination path TOFILE is passed
4657# through standard_output_file, and FROMFILE is copied there.
4658#
4659# In both cases, if TOFILE is omitted, it defaults to the [file tail] of
4660# FROMFILE.
44ee8174
TT
4661
4662proc gdb_remote_download {dest fromfile {tofile {}}} {
7817ea46
SM
4663 # If TOFILE is not given, default to the same filename as FROMFILE.
4664 if {[string length $tofile] == 0} {
4665 set tofile [file tail $fromfile]
44ee8174 4666 }
ce4ea2bb 4667
7817ea46
SM
4668 if {[is_remote $dest]} {
4669 # When the DEST is remote, we simply send the file to DEST.
4670 global cleanfiles
44ee8174 4671
7817ea46
SM
4672 set destname [remote_download $dest $fromfile $tofile]
4673 lappend cleanfiles $destname
93f02886 4674
7817ea46
SM
4675 return $destname
4676 } else {
8392fa22
SM
4677 # When the DEST is local, we copy the file to the test directory (where
4678 # the executable is).
4679 #
4680 # Note that we pass TOFILE through standard_output_file, regardless of
4681 # whether it is absolute or relative, because we don't want the tests
4682 # to be able to write outside their standard output directory.
4683
7817ea46 4684 set tofile [standard_output_file $tofile]
93f02886 4685
7817ea46
SM
4686 file copy -force $fromfile $tofile
4687
4688 return $tofile
4689 }
93f02886
DJ
4690}
4691
d9019901 4692# gdb_load_shlib LIB...
93f02886 4693#
fca4cfd9 4694# Copy the listed library to the target.
93f02886 4695
d9019901 4696proc gdb_load_shlib { file } {
c708f4d2
AB
4697 global gdb_spawn_id
4698
4699 if ![info exists gdb_spawn_id] {
4700 perror "gdb_load_shlib: GDB is not running"
4701 }
4702
fca4cfd9 4703 set dest [gdb_remote_download target [shlib_target_file $file]]
93f02886 4704
6e774b13
SM
4705 if {[is_remote target]} {
4706 # If the target is remote, we need to tell gdb where to find the
4707 # libraries.
4708 #
4709 # We could set this even when not testing remotely, but a user
4710 # generally won't set it unless necessary. In order to make the tests
4711 # more like the real-life scenarios, we don't set it for local testing.
fca4cfd9 4712 gdb_test "set solib-search-path [file dirname $file]" "" ""
6e774b13 4713 }
fca4cfd9
SM
4714
4715 return $dest
93f02886
DJ
4716}
4717
c906108c 4718#
5b80f00d
PA
4719# gdb_load -- load a file into the debugger. Specifying no file
4720# defaults to the executable currently being debugged.
7e60a48e 4721# The return value is 0 for success, -1 for failure.
2db8e78e 4722# Many files in config/*.exp override this procedure.
c906108c
SS
4723#
4724proc gdb_load { arg } {
5b80f00d
PA
4725 if { $arg != "" } {
4726 return [gdb_file_cmd $arg]
4727 }
7e60a48e 4728 return 0
c906108c
SS
4729}
4730
b741e217
DJ
4731# gdb_reload -- load a file into the target. Called before "running",
4732# either the first time or after already starting the program once,
4733# for remote targets. Most files that override gdb_load should now
4734# override this instead.
4735
4736proc gdb_reload { } {
4737 # For the benefit of existing configurations, default to gdb_load.
4738 # Specifying no file defaults to the executable currently being
4739 # debugged.
4740 return [gdb_load ""]
4741}
4742
c906108c
SS
4743proc gdb_continue { function } {
4744 global decimal
4745
ae59b1da 4746 return [gdb_test "continue" ".*Breakpoint $decimal, $function .*" "continue to $function"]
c906108c
SS
4747}
4748
73c9764f 4749proc default_gdb_init { test_file_name } {
277254ba 4750 global gdb_wrapper_initialized
f6838f81 4751 global gdb_wrapper_target
0a6d0306 4752 global gdb_test_file_name
93f02886 4753 global cleanfiles
73c9764f 4754 global pf_prefix
277254ba 4755
93f02886
DJ
4756 set cleanfiles {}
4757
4ec70201 4758 gdb_clear_suppressed
c906108c 4759
73c9764f 4760 set gdb_test_file_name [file rootname [file tail $test_file_name]]
0a6d0306 4761
277254ba
MS
4762 # Make sure that the wrapper is rebuilt
4763 # with the appropriate multilib option.
f6838f81
DJ
4764 if { $gdb_wrapper_target != [current_target_name] } {
4765 set gdb_wrapper_initialized 0
4766 }
277254ba 4767
7b433602
JB
4768 # Unlike most tests, we have a small number of tests that generate
4769 # a very large amount of output. We therefore increase the expect
ff604a67
MR
4770 # buffer size to be able to contain the entire test output. This
4771 # is especially needed by gdb.base/info-macros.exp.
4772 match_max -d 65536
8d417781
PM
4773 # Also set this value for the currently running GDB.
4774 match_max [match_max -d]
c906108c
SS
4775
4776 # We want to add the name of the TCL testcase to the PASS/FAIL messages.
73c9764f 4777 set pf_prefix "[file tail [file dirname $test_file_name]]/[file tail $test_file_name]:"
c906108c 4778
4ec70201 4779 global gdb_prompt
c906108c 4780 if [target_info exists gdb_prompt] {
4ec70201 4781 set gdb_prompt [target_info gdb_prompt]
c906108c
SS
4782 } else {
4783 set gdb_prompt "\\(gdb\\)"
4784 }
e11ac3a3
JK
4785 global use_gdb_stub
4786 if [info exists use_gdb_stub] {
4787 unset use_gdb_stub
4788 }
c906108c
SS
4789}
4790
3d338901
DE
4791# Return a path using GDB_PARALLEL.
4792# ARGS is a list of path elements to append to "$objdir/$GDB_PARALLEL".
4793# GDB_PARALLEL must be defined, the caller must check.
4794#
4795# The default value for GDB_PARALLEL is, canonically, ".".
4796# The catch is that tests don't expect an additional "./" in file paths so
4797# omit any directory for the default case.
4798# GDB_PARALLEL is written as "yes" for the default case in Makefile.in to mark
4799# its special handling.
4800
4801proc make_gdb_parallel_path { args } {
4802 global GDB_PARALLEL objdir
4803 set joiner [list "file" "join" $objdir]
2151ccc5 4804 if { [info exists GDB_PARALLEL] && $GDB_PARALLEL != "yes" } {
3d338901
DE
4805 lappend joiner $GDB_PARALLEL
4806 }
4807 set joiner [concat $joiner $args]
4808 return [eval $joiner]
4809}
4810
0a6d0306 4811# Turn BASENAME into a full file name in the standard output
8a3e1f8d
TT
4812# directory. It is ok if BASENAME is the empty string; in this case
4813# the directory is returned.
0a6d0306
TT
4814
4815proc standard_output_file {basename} {
2151ccc5 4816 global objdir subdir gdb_test_file_name
0a6d0306 4817
2151ccc5
SM
4818 set dir [make_gdb_parallel_path outputs $subdir $gdb_test_file_name]
4819 file mkdir $dir
97dd8e07
CB
4820 # If running on MinGW, replace /c/foo with c:/foo
4821 if { [ishost *-*-mingw*] } {
4822 set dir [regsub {^/([a-z])/} $dir {\1:/}]
4823 }
2151ccc5 4824 return [file join $dir $basename]
0a6d0306
TT
4825}
4826
f9e2e39d
AH
4827# Turn BASENAME into a full file name in the standard output directory. If
4828# GDB has been launched more than once then append the count, starting with
4829# a ".1" postfix.
4830
4831proc standard_output_file_with_gdb_instance {basename} {
4832 global gdb_instances
4833 set count [expr $gdb_instances - 1 ]
4834
4835 if {$count == 0} {
4836 return [standard_output_file $basename]
4837 }
4838 return [standard_output_file ${basename}.${count}]
4839}
4840
4e234898
TT
4841# Return the name of a file in our standard temporary directory.
4842
4843proc standard_temp_file {basename} {
c4ef31bf
SM
4844 # Since a particular runtest invocation is only executing a single test
4845 # file at any given time, we can use the runtest pid to build the
4846 # path of the temp directory.
4847 set dir [make_gdb_parallel_path temp [pid]]
4848 file mkdir $dir
4849 return [file join $dir $basename]
4e234898
TT
4850}
4851
0a6d0306
TT
4852# Set 'testfile', 'srcfile', and 'binfile'.
4853#
4854# ARGS is a list of source file specifications.
4855# Without any arguments, the .exp file's base name is used to
4856# compute the source file name. The ".c" extension is added in this case.
4857# If ARGS is not empty, each entry is a source file specification.
4858# If the specification starts with a ".", it is treated as a suffix
4859# to append to the .exp file's base name.
4860# If the specification is the empty string, it is treated as if it
4861# were ".c".
4862# Otherwise it is a file name.
4863# The first file in the list is used to set the 'srcfile' global.
4864# Each subsequent name is used to set 'srcfile2', 'srcfile3', etc.
4865#
4866# Most tests should call this without arguments.
4867#
4868# If a completely different binary file name is needed, then it
4869# should be handled in the .exp file with a suitable comment.
4870
4871proc standard_testfile {args} {
4872 global gdb_test_file_name
93c0ef37 4873 global subdir
686f09d0 4874 global gdb_test_file_last_vars
0a6d0306
TT
4875
4876 # Outputs.
4877 global testfile binfile
4878
4879 set testfile $gdb_test_file_name
4880 set binfile [standard_output_file ${testfile}]
4881
4882 if {[llength $args] == 0} {
4883 set args .c
4884 }
4885
686f09d0
TT
4886 # Unset our previous output variables.
4887 # This can help catch hidden bugs.
4888 if {[info exists gdb_test_file_last_vars]} {
4889 foreach varname $gdb_test_file_last_vars {
4890 global $varname
4891 catch {unset $varname}
4892 }
4893 }
4894 # 'executable' is often set by tests.
4895 set gdb_test_file_last_vars {executable}
4896
0a6d0306
TT
4897 set suffix ""
4898 foreach arg $args {
4899 set varname srcfile$suffix
4900 global $varname
4901
4902 # Handle an extension.
4903 if {$arg == ""} {
4904 set arg $testfile.c
4905 } elseif {[string range $arg 0 0] == "."} {
4906 set arg $testfile$arg
4907 }
4908
4909 set $varname $arg
686f09d0 4910 lappend gdb_test_file_last_vars $varname
0a6d0306
TT
4911
4912 if {$suffix == ""} {
4913 set suffix 2
4914 } else {
4915 incr suffix
4916 }
4917 }
4918}
4919
7b356089
JB
4920# The default timeout used when testing GDB commands. We want to use
4921# the same timeout as the default dejagnu timeout, unless the user has
4922# already provided a specific value (probably through a site.exp file).
4923global gdb_test_timeout
4924if ![info exists gdb_test_timeout] {
4925 set gdb_test_timeout $timeout
4926}
4927
47050449
JB
4928# A list of global variables that GDB testcases should not use.
4929# We try to prevent their use by monitoring write accesses and raising
4930# an error when that happens.
4931set banned_variables { bug_id prms_id }
4932
abcc4978
PA
4933# A list of procedures that GDB testcases should not use.
4934# We try to prevent their use by monitoring invocations and raising
4935# an error when that happens.
4936set banned_procedures { strace }
4937
41b2c92d
PM
4938# gdb_init is called by runtest at start, but also by several
4939# tests directly; gdb_finish is only called from within runtest after
4940# each test source execution.
4941# Placing several traces by repetitive calls to gdb_init leads
4942# to problems, as only one trace is removed in gdb_finish.
4943# To overcome this possible problem, we add a variable that records
abcc4978
PA
4944# if the banned variables and procedures are already traced.
4945set banned_traced 0
41b2c92d 4946
73c9764f 4947proc gdb_init { test_file_name } {
7b356089
JB
4948 # Reset the timeout value to the default. This way, any testcase
4949 # that changes the timeout value without resetting it cannot affect
4950 # the timeout used in subsequent testcases.
4951 global gdb_test_timeout
4952 global timeout
4953 set timeout $gdb_test_timeout
4954
8b696e31
YQ
4955 if { [regexp ".*gdb\.reverse\/.*" $test_file_name]
4956 && [target_info exists gdb_reverse_timeout] } {
4957 set timeout [target_info gdb_reverse_timeout]
4958 }
4959
5e92f71a
TT
4960 # If GDB_INOTIFY is given, check for writes to '.'. This is a
4961 # debugging tool to help confirm that the test suite is
4962 # parallel-safe. You need "inotifywait" from the
4963 # inotify-tools package to use this.
4964 global GDB_INOTIFY inotify_pid
4965 if {[info exists GDB_INOTIFY] && ![info exists inotify_pid]} {
4966 global outdir tool inotify_log_file
4967
4968 set exclusions {outputs temp gdb[.](log|sum) cache}
4969 set exclusion_re ([join $exclusions |])
4970
4971 set inotify_log_file [standard_temp_file inotify.out]
4972 set inotify_pid [exec inotifywait -r -m -e move,create,delete . \
4973 --exclude $exclusion_re \
4974 |& tee -a $outdir/$tool.log $inotify_log_file &]
4975
4976 # Wait for the watches; hopefully this is long enough.
4977 sleep 2
4978
4979 # Clear the log so that we don't emit a warning the first time
4980 # we check it.
4981 set fd [open $inotify_log_file w]
4982 close $fd
4983 }
4984
abcc4978
PA
4985 # Block writes to all banned variables, and invocation of all
4986 # banned procedures...
47050449 4987 global banned_variables
abcc4978
PA
4988 global banned_procedures
4989 global banned_traced
4990 if (!$banned_traced) {
41b2c92d
PM
4991 foreach banned_var $banned_variables {
4992 global "$banned_var"
4993 trace add variable "$banned_var" write error
4994 }
abcc4978
PA
4995 foreach banned_proc $banned_procedures {
4996 global "$banned_proc"
4997 trace add execution "$banned_proc" enter error
4998 }
4999 set banned_traced 1
47050449
JB
5000 }
5001
e7ab5e63
AB
5002 # We set LC_ALL, LC_CTYPE, and LANG to C so that we get the same
5003 # messages as expected.
c6f2ac43 5004 setenv LC_ALL C
e7ab5e63 5005 setenv LC_CTYPE C
c6f2ac43
PA
5006 setenv LANG C
5007
e7ab5e63
AB
5008 # Don't let a .inputrc file or an existing setting of INPUTRC mess up
5009 # the test results. Even if /dev/null doesn't exist on the particular
5010 # platform, the readline library will use the default setting just by
5011 # failing to open the file. OTOH, opening /dev/null successfully will
5012 # also result in the default settings being used since nothing will be
5013 # read from this file.
5014 setenv INPUTRC "/dev/null"
5015
9162a27c
TT
5016 # This disables style output, which would interfere with many
5017 # tests.
5018 setenv TERM "dumb"
e7ab5e63 5019
bd447abb
SM
5020 # Initialize GDB's pty with a fixed size, to make sure we avoid pagination
5021 # during startup. See "man expect" for details about stty_init.
5022 global stty_init
5023 set stty_init "rows 25 cols 80"
5024
e7ab5e63 5025 # Some tests (for example gdb.base/maint.exp) shell out from gdb to use
e4b8388f 5026 # grep. Clear GREP_OPTIONS to make the behavior predictable,
e7ab5e63
AB
5027 # especially having color output turned on can cause tests to fail.
5028 setenv GREP_OPTIONS ""
5029
03f2bd59
JK
5030 # Clear $gdbserver_reconnect_p.
5031 global gdbserver_reconnect_p
5032 set gdbserver_reconnect_p 1
5033 unset gdbserver_reconnect_p
5034
f9e2e39d
AH
5035 # Reset GDB number of instances
5036 global gdb_instances
5037 set gdb_instances 0
5038
73c9764f 5039 return [default_gdb_init $test_file_name]
c906108c
SS
5040}
5041
5042proc gdb_finish { } {
a35cfb40
MR
5043 global gdbserver_reconnect_p
5044 global gdb_prompt
93f02886
DJ
5045 global cleanfiles
5046
5047 # Exit first, so that the files are no longer in use.
5048 gdb_exit
5049
5050 if { [llength $cleanfiles] > 0 } {
5051 eval remote_file target delete $cleanfiles
5052 set cleanfiles {}
5053 }
47050449
JB
5054
5055 # Unblock write access to the banned variables. Dejagnu typically
5056 # resets some of them between testcases.
5057 global banned_variables
abcc4978
PA
5058 global banned_procedures
5059 global banned_traced
5060 if ($banned_traced) {
41b2c92d
PM
5061 foreach banned_var $banned_variables {
5062 global "$banned_var"
5063 trace remove variable "$banned_var" write error
5064 }
abcc4978
PA
5065 foreach banned_proc $banned_procedures {
5066 global "$banned_proc"
5067 trace remove execution "$banned_proc" enter error
5068 }
5069 set banned_traced 0
47050449 5070 }
c906108c
SS
5071}
5072
5073global debug_format
7a292a7a 5074set debug_format "unknown"
c906108c
SS
5075
5076# Run the gdb command "info source" and extract the debugging format
5077# information from the output and save it in debug_format.
5078
5079proc get_debug_format { } {
5080 global gdb_prompt
5081 global verbose
5082 global expect_out
5083 global debug_format
5084
5085 set debug_format "unknown"
5086 send_gdb "info source\n"
5087 gdb_expect 10 {
919d772c 5088 -re "Compiled with (.*) debugging format.\r\n.*$gdb_prompt $" {
c906108c
SS
5089 set debug_format $expect_out(1,string)
5090 verbose "debug format is $debug_format"
ae59b1da 5091 return 1
c906108c
SS
5092 }
5093 -re "No current source file.\r\n$gdb_prompt $" {
5094 perror "get_debug_format used when no current source file"
ae59b1da 5095 return 0
c906108c
SS
5096 }
5097 -re "$gdb_prompt $" {
5098 warning "couldn't check debug format (no valid response)."
ae59b1da 5099 return 1
c906108c
SS
5100 }
5101 timeout {
975531db 5102 warning "couldn't check debug format (timeout)."
ae59b1da 5103 return 1
c906108c
SS
5104 }
5105 }
5106}
5107
838ae6c4
JB
5108# Return true if FORMAT matches the debug format the current test was
5109# compiled with. FORMAT is a shell-style globbing pattern; it can use
5110# `*', `[...]', and so on.
5111#
5112# This function depends on variables set by `get_debug_format', above.
5113
5114proc test_debug_format {format} {
5115 global debug_format
5116
5117 return [expr [string match $format $debug_format] != 0]
5118}
5119
c906108c
SS
5120# Like setup_xfail, but takes the name of a debug format (DWARF 1,
5121# COFF, stabs, etc). If that format matches the format that the
5122# current test was compiled with, then the next test is expected to
5123# fail for any target. Returns 1 if the next test or set of tests is
5124# expected to fail, 0 otherwise (or if it is unknown). Must have
5125# previously called get_debug_format.
b55a4771 5126proc setup_xfail_format { format } {
4ec70201 5127 set ret [test_debug_format $format]
b55a4771 5128
838ae6c4 5129 if {$ret} then {
b55a4771
MS
5130 setup_xfail "*-*-*"
5131 }
ae59b1da 5132 return $ret
b55a4771 5133}
c906108c 5134
c6fee705
MC
5135# gdb_get_line_number TEXT [FILE]
5136#
5137# Search the source file FILE, and return the line number of the
0d7941a9 5138# first line containing TEXT. If no match is found, an error is thrown.
c6fee705
MC
5139#
5140# TEXT is a string literal, not a regular expression.
5141#
5142# The default value of FILE is "$srcdir/$subdir/$srcfile". If FILE is
5143# specified, and does not start with "/", then it is assumed to be in
5144# "$srcdir/$subdir". This is awkward, and can be fixed in the future,
5145# by changing the callers and the interface at the same time.
5146# In particular: gdb.base/break.exp, gdb.base/condbreak.exp,
5147# gdb.base/ena-dis-br.exp.
5148#
5149# Use this function to keep your test scripts independent of the
5150# exact line numbering of the source file. Don't write:
5151#
5152# send_gdb "break 20"
5153#
5154# This means that if anyone ever edits your test's source file,
5155# your test could break. Instead, put a comment like this on the
5156# source file line you want to break at:
5157#
5158# /* breakpoint spot: frotz.exp: test name */
5159#
5160# and then write, in your test script (which we assume is named
5161# frotz.exp):
5162#
5163# send_gdb "break [gdb_get_line_number "frotz.exp: test name"]\n"
5164#
5165# (Yes, Tcl knows how to handle the nested quotes and brackets.
5166# Try this:
5167# $ tclsh
5168# % puts "foo [lindex "bar baz" 1]"
5169# foo baz
5170# %
5171# Tcl is quite clever, for a little stringy language.)
5172#
5173# ===
5174#
5175# The previous implementation of this procedure used the gdb search command.
5176# This version is different:
5177#
5178# . It works with MI, and it also works when gdb is not running.
5179#
5180# . It operates on the build machine, not the host machine.
5181#
5182# . For now, this implementation fakes a current directory of
5183# $srcdir/$subdir to be compatible with the old implementation.
5184# This will go away eventually and some callers will need to
5185# be changed.
5186#
5187# . The TEXT argument is literal text and matches literally,
5188# not a regular expression as it was before.
5189#
5190# . State changes in gdb, such as changing the current file
5191# and setting $_, no longer happen.
5192#
5193# After a bit of time we can forget about the differences from the
5194# old implementation.
5195#
5196# --chastain 2004-08-05
5197
5198proc gdb_get_line_number { text { file "" } } {
5199 global srcdir
5200 global subdir
5201 global srcfile
c906108c 5202
c6fee705
MC
5203 if { "$file" == "" } then {
5204 set file "$srcfile"
5205 }
5206 if { ! [regexp "^/" "$file"] } then {
5207 set file "$srcdir/$subdir/$file"
c906108c
SS
5208 }
5209
c6fee705 5210 if { [ catch { set fd [open "$file"] } message ] } then {
0d7941a9 5211 error "$message"
c906108c 5212 }
c6fee705
MC
5213
5214 set found -1
5215 for { set line 1 } { 1 } { incr line } {
5216 if { [ catch { set nchar [gets "$fd" body] } message ] } then {
0d7941a9 5217 error "$message"
c6fee705
MC
5218 }
5219 if { $nchar < 0 } then {
5220 break
5221 }
5222 if { [string first "$text" "$body"] >= 0 } then {
5223 set found $line
5224 break
5225 }
5226 }
5227
5228 if { [ catch { close "$fd" } message ] } then {
0d7941a9
KS
5229 error "$message"
5230 }
5231
5232 if {$found == -1} {
5233 error "undefined tag \"$text\""
c6fee705
MC
5234 }
5235
5236 return $found
c906108c
SS
5237}
5238
b477a5e6
PA
5239# Continue the program until it ends.
5240#
fda326dd
TT
5241# MSSG is the error message that gets printed. If not given, a
5242# default is used.
5243# COMMAND is the command to invoke. If not given, "continue" is
5244# used.
eceb0c5f
TT
5245# ALLOW_EXTRA is a flag indicating whether the test should expect
5246# extra output between the "Continuing." line and the program
5247# exiting. By default it is zero; if nonzero, any extra output
5248# is accepted.
fda326dd 5249
eceb0c5f 5250proc gdb_continue_to_end {{mssg ""} {command continue} {allow_extra 0}} {
e11ac3a3 5251 global inferior_exited_re use_gdb_stub
7a292a7a 5252
fda326dd
TT
5253 if {$mssg == ""} {
5254 set text "continue until exit"
5255 } else {
5256 set text "continue until exit at $mssg"
5257 }
eceb0c5f
TT
5258 if {$allow_extra} {
5259 set extra ".*"
5260 } else {
5261 set extra ""
5262 }
b477a5e6
PA
5263
5264 # By default, we don't rely on exit() behavior of remote stubs --
5265 # it's common for exit() to be implemented as a simple infinite
5266 # loop, or a forced crash/reset. For native targets, by default, we
5267 # assume process exit is reported as such. If a non-reliable target
5268 # is used, we set a breakpoint at exit, and continue to that.
5269 if { [target_info exists exit_is_reliable] } {
5270 set exit_is_reliable [target_info exit_is_reliable]
5271 } else {
5272 set exit_is_reliable [expr ! $use_gdb_stub]
5273 }
5274
5275 if { ! $exit_is_reliable } {
7a292a7a
SS
5276 if {![gdb_breakpoint "exit"]} {
5277 return 0
5278 }
eceb0c5f 5279 gdb_test $command "Continuing..*Breakpoint .*exit.*" \
fda326dd 5280 $text
7a292a7a
SS
5281 } else {
5282 # Continue until we exit. Should not stop again.
5283 # Don't bother to check the output of the program, that may be
5284 # extremely tough for some remote systems.
eceb0c5f
TT
5285 gdb_test $command \
5286 "Continuing.\[\r\n0-9\]+${extra}(... EXIT code 0\[\r\n\]+|$inferior_exited_re normally).*"\
fda326dd 5287 $text
7a292a7a
SS
5288 }
5289}
5290
5291proc rerun_to_main {} {
e11ac3a3 5292 global gdb_prompt use_gdb_stub
7a292a7a 5293
e11ac3a3 5294 if $use_gdb_stub {
7a292a7a
SS
5295 gdb_run_cmd
5296 gdb_expect {
5297 -re ".*Breakpoint .*main .*$gdb_prompt $"\
5298 {pass "rerun to main" ; return 0}
5299 -re "$gdb_prompt $"\
5300 {fail "rerun to main" ; return 0}
5301 timeout {fail "(timeout) rerun to main" ; return 0}
5302 }
5303 } else {
5304 send_gdb "run\n"
5305 gdb_expect {
11350d2a 5306 -re "The program .* has been started already.*y or n. $" {
f9e2e39d 5307 send_gdb "y\n" answer
11350d2a
CV
5308 exp_continue
5309 }
7a292a7a
SS
5310 -re "Starting program.*$gdb_prompt $"\
5311 {pass "rerun to main" ; return 0}
5312 -re "$gdb_prompt $"\
5313 {fail "rerun to main" ; return 0}
5314 timeout {fail "(timeout) rerun to main" ; return 0}
5315 }
5316 }
5317}
c906108c 5318
5a56d6a6
TV
5319# Return true if EXECUTABLE contains a .gdb_index or .debug_names index section.
5320
5321proc exec_has_index_section { executable } {
5322 set readelf_program [gdb_find_readelf]
5323 set res [catch {exec $readelf_program -S $executable \
5324 | grep -E "\.gdb_index|\.debug_names" }]
5325 if { $res == 0 } {
5326 return 1
5327 }
5328 return 0
5329}
5330
a80cf5d8
TV
5331# Return list with major and minor version of readelf, or an empty list.
5332gdb_caching_proc readelf_version {
5333 set readelf_program [gdb_find_readelf]
5334 set res [catch {exec $readelf_program --version} output]
5335 if { $res != 0 } {
5336 return [list]
5337 }
5338 set lines [split $output \n]
5339 set line [lindex $lines 0]
5340 set res [regexp {[ \t]+([0-9]+)[.]([0-9]+)[^ \t]*$} \
5341 $line dummy major minor]
5342 if { $res != 1 } {
5343 return [list]
5344 }
5345 return [list $major $minor]
5346}
5347
5348# Return 1 if readelf prints the PIE flag, 0 if is doesn't, and -1 if unknown.
5349proc readelf_prints_pie { } {
5350 set version [readelf_version]
5351 if { [llength $version] == 0 } {
5352 return -1
5353 }
5354 set major [lindex $version 0]
5355 set minor [lindex $version 1]
5356 # It would be better to construct a PIE executable and test if the PIE
5357 # flag is printed by readelf, but we cannot reliably construct a PIE
5358 # executable if the multilib_flags dictate otherwise
5359 # (--target_board=unix/-no-pie/-fno-PIE).
5360 return [version_at_least $major $minor 2 26]
5361}
5362
5363# Return 1 if EXECUTABLE is a Position Independent Executable, 0 if it is not,
5364# and -1 if unknown.
b13057d9
TV
5365
5366proc exec_is_pie { executable } {
a80cf5d8
TV
5367 set res [readelf_prints_pie]
5368 if { $res != 1 } {
5369 return -1
5370 }
b13057d9 5371 set readelf_program [gdb_find_readelf]
a80cf5d8
TV
5372 set res [catch {exec $readelf_program -d $executable} output]
5373 if { $res != 0 } {
5374 return -1
5375 }
5376 set res [regexp -line {\(FLAGS_1\).*Flags:.* PIE($| )} $output]
5377 if { $res == 1 } {
b13057d9
TV
5378 return 1
5379 }
5380 return 0
5381}
5382
27aba047
YQ
5383# Return true if a test should be skipped due to lack of floating
5384# point support or GDB can't fetch the contents from floating point
5385# registers.
13a5e3b8 5386
27aba047 5387gdb_caching_proc gdb_skip_float_test {
13a5e3b8 5388 if [target_info exists gdb,skip_float_tests] {
ae59b1da 5389 return 1
13a5e3b8 5390 }
27aba047
YQ
5391
5392 # There is an ARM kernel ptrace bug that hardware VFP registers
5393 # are not updated after GDB ptrace set VFP registers. The bug
5394 # was introduced by kernel commit 8130b9d7b9d858aa04ce67805e8951e3cb6e9b2f
5395 # in 2012 and is fixed in e2dfb4b880146bfd4b6aa8e138c0205407cebbaf
5396 # in May 2016. In other words, kernels older than 4.6.3, 4.4.14,
5397 # 4.1.27, 3.18.36, and 3.14.73 have this bug.
5398 # This kernel bug is detected by check how does GDB change the
5399 # program result by changing one VFP register.
5400 if { [istarget "arm*-*-linux*"] } {
5401
5402 set compile_flags {debug nowarnings }
5403
5404 # Set up, compile, and execute a test program having VFP
5405 # operations.
5406 set src [standard_temp_file arm_vfp[pid].c]
5407 set exe [standard_temp_file arm_vfp[pid].x]
5408
5409 gdb_produce_source $src {
5410 int main() {
5411 double d = 4.0;
5412 int ret;
5413
5414 asm ("vldr d0, [%0]" : : "r" (&d));
5415 asm ("vldr d1, [%0]" : : "r" (&d));
5416 asm (".global break_here\n"
5417 "break_here:");
5418 asm ("vcmp.f64 d0, d1\n"
5419 "vmrs APSR_nzcv, fpscr\n"
5420 "bne L_value_different\n"
5421 "movs %0, #0\n"
5422 "b L_end\n"
5423 "L_value_different:\n"
5424 "movs %0, #1\n"
5425 "L_end:\n" : "=r" (ret) :);
5426
5427 /* Return $d0 != $d1. */
5428 return ret;
5429 }
5430 }
5431
5432 verbose "compiling testfile $src" 2
5433 set lines [gdb_compile $src $exe executable $compile_flags]
5434 file delete $src
5435
5436 if ![string match "" $lines] then {
5437 verbose "testfile compilation failed, returning 1" 2
5438 return 0
5439 }
5440
5441 # No error message, compilation succeeded so now run it via gdb.
5442 # Run the test up to 5 times to detect whether ptrace can
5443 # correctly update VFP registers or not.
5444 set skip_vfp_test 0
5445 for {set i 0} {$i < 5} {incr i} {
5446 global gdb_prompt srcdir subdir
5447
5448 gdb_exit
5449 gdb_start
5450 gdb_reinitialize_dir $srcdir/$subdir
5451 gdb_load "$exe"
5452
5453 runto_main
5454 gdb_test "break *break_here"
5455 gdb_continue_to_breakpoint "break_here"
5456
5457 # Modify $d0 to a different value, so the exit code should
5458 # be 1.
5459 gdb_test "set \$d0 = 5.0"
5460
5461 set test "continue to exit"
5462 gdb_test_multiple "continue" "$test" {
5463 -re "exited with code 01.*$gdb_prompt $" {
5464 }
5465 -re "exited normally.*$gdb_prompt $" {
5466 # However, the exit code is 0. That means something
5467 # wrong in setting VFP registers.
5468 set skip_vfp_test 1
5469 break
5470 }
5471 }
5472 }
5473
5474 gdb_exit
5475 remote_file build delete $exe
5476
5477 return $skip_vfp_test
5478 }
ae59b1da 5479 return 0
13a5e3b8
MS
5480}
5481
5482# Print a message and return true if a test should be skipped
5483# due to lack of stdio support.
5484
5485proc gdb_skip_stdio_test { msg } {
5486 if [target_info exists gdb,noinferiorio] {
4ec70201 5487 verbose "Skipping test '$msg': no inferior i/o."
ae59b1da 5488 return 1
13a5e3b8 5489 }
ae59b1da 5490 return 0
13a5e3b8
MS
5491}
5492
5493proc gdb_skip_bogus_test { msg } {
ae59b1da 5494 return 0
13a5e3b8
MS
5495}
5496
e515b470
DJ
5497# Return true if a test should be skipped due to lack of XML support
5498# in the host GDB.
d0ef5df8 5499# NOTE: This must be called while gdb is *not* running.
e515b470 5500
17e1c970 5501gdb_caching_proc gdb_skip_xml_test {
787f0025 5502 global gdb_spawn_id
e515b470
DJ
5503 global gdb_prompt
5504 global srcdir
e515b470 5505
787f0025
MM
5506 if { [info exists gdb_spawn_id] } {
5507 error "GDB must not be running in gdb_skip_xml_tests."
5508 }
5509
b22089ab
YQ
5510 set xml_file [gdb_remote_download host "${srcdir}/gdb.xml/trivial.xml"]
5511
e515b470 5512 gdb_start
17e1c970 5513 set xml_missing 0
b22089ab 5514 gdb_test_multiple "set tdesc filename $xml_file" "" {
e515b470 5515 -re ".*XML support was disabled at compile time.*$gdb_prompt $" {
17e1c970 5516 set xml_missing 1
e515b470
DJ
5517 }
5518 -re ".*$gdb_prompt $" { }
5519 }
5520 gdb_exit
17e1c970 5521 return $xml_missing
e515b470 5522}
1f8a6abb 5523
673dc4a0
YQ
5524# Return true if argv[0] is available.
5525
5526gdb_caching_proc gdb_has_argv0 {
5527 set result 0
5528
bf326452
AH
5529 # Compile and execute a test program to check whether argv[0] is available.
5530 gdb_simple_compile has_argv0 {
673dc4a0
YQ
5531 int main (int argc, char **argv) {
5532 return 0;
5533 }
bf326452 5534 } executable
673dc4a0 5535
673dc4a0
YQ
5536
5537 # Helper proc.
5538 proc gdb_has_argv0_1 { exe } {
5539 global srcdir subdir
5540 global gdb_prompt hex
5541
5542 gdb_exit
5543 gdb_start
5544 gdb_reinitialize_dir $srcdir/$subdir
5545 gdb_load "$exe"
5546
5547 # Set breakpoint on main.
5548 gdb_test_multiple "break main" "break main" {
5549 -re "Breakpoint.*${gdb_prompt} $" {
5550 }
5551 -re "${gdb_prompt} $" {
5552 return 0
5553 }
5554 }
5555
5556 # Run to main.
5557 gdb_run_cmd
5558 gdb_test_multiple "" "run to main" {
5559 -re "Breakpoint.*${gdb_prompt} $" {
5560 }
5561 -re "${gdb_prompt} $" {
5562 return 0
5563 }
5564 }
5565
c0ecb95f
JK
5566 set old_elements "200"
5567 set test "show print elements"
5568 gdb_test_multiple $test $test {
5569 -re "Limit on string chars or array elements to print is (\[^\r\n\]+)\\.\r\n$gdb_prompt $" {
5570 set old_elements $expect_out(1,string)
5571 }
5572 }
5573 set old_repeats "200"
5574 set test "show print repeats"
5575 gdb_test_multiple $test $test {
5576 -re "Threshold for repeated print elements is (\[^\r\n\]+)\\.\r\n$gdb_prompt $" {
5577 set old_repeats $expect_out(1,string)
5578 }
5579 }
5580 gdb_test_no_output "set print elements unlimited" ""
5581 gdb_test_no_output "set print repeats unlimited" ""
5582
5583 set retval 0
673dc4a0
YQ
5584 # Check whether argc is 1.
5585 gdb_test_multiple "p argc" "p argc" {
5586 -re " = 1\r\n${gdb_prompt} $" {
5587
5588 gdb_test_multiple "p argv\[0\]" "p argv\[0\]" {
5589 -re " = $hex \".*[file tail $exe]\"\r\n${gdb_prompt} $" {
c0ecb95f 5590 set retval 1
673dc4a0
YQ
5591 }
5592 -re "${gdb_prompt} $" {
673dc4a0
YQ
5593 }
5594 }
5595 }
5596 -re "${gdb_prompt} $" {
673dc4a0
YQ
5597 }
5598 }
c0ecb95f
JK
5599
5600 gdb_test_no_output "set print elements $old_elements" ""
5601 gdb_test_no_output "set print repeats $old_repeats" ""
5602
5603 return $retval
673dc4a0
YQ
5604 }
5605
bf326452 5606 set result [gdb_has_argv0_1 $obj]
673dc4a0
YQ
5607
5608 gdb_exit
bf326452 5609 file delete $obj
673dc4a0
YQ
5610
5611 if { !$result
5612 && ([istarget *-*-linux*]
5613 || [istarget *-*-freebsd*] || [istarget *-*-kfreebsd*]
5614 || [istarget *-*-netbsd*] || [istarget *-*-knetbsd*]
5615 || [istarget *-*-openbsd*]
5616 || [istarget *-*-darwin*]
5617 || [istarget *-*-solaris*]
5618 || [istarget *-*-aix*]
5619 || [istarget *-*-gnu*]
5620 || [istarget *-*-cygwin*] || [istarget *-*-mingw32*]
5621 || [istarget *-*-*djgpp*] || [istarget *-*-go32*]
5622 || [istarget *-wince-pe] || [istarget *-*-mingw32ce*]
5623 || [istarget *-*-symbianelf*]
5624 || [istarget *-*-osf*]
673dc4a0
YQ
5625 || [istarget *-*-dicos*]
5626 || [istarget *-*-nto*]
5627 || [istarget *-*-*vms*]
5628 || [istarget *-*-lynx*178]) } {
5629 fail "argv\[0\] should be available on this target"
5630 }
5631
5632 return $result
5633}
5634
1f8a6abb
EZ
5635# Note: the procedure gdb_gnu_strip_debug will produce an executable called
5636# ${binfile}.dbglnk, which is just like the executable ($binfile) but without
5637# the debuginfo. Instead $binfile has a .gnu_debuglink section which contains
8e1d0c49
JK
5638# the name of a debuginfo only file. This file will be stored in the same
5639# subdirectory.
1f8a6abb
EZ
5640
5641# Functions for separate debug info testing
5642
5643# starting with an executable:
5644# foo --> original executable
5645
5646# at the end of the process we have:
5647# foo.stripped --> foo w/o debug info
8e1d0c49 5648# foo.debug --> foo's debug info
1f8a6abb
EZ
5649# foo --> like foo, but with a new .gnu_debuglink section pointing to foo.debug.
5650
7c50a931
DE
5651# Fetch the build id from the file.
5652# Returns "" if there is none.
5653
5654proc get_build_id { filename } {
c74f7d1c
JT
5655 if { ([istarget "*-*-mingw*"]
5656 || [istarget *-*-cygwin*]) } {
5657 set objdump_program [gdb_find_objdump]
5658 set result [catch {set data [exec $objdump_program -p $filename | grep signature | cut "-d " -f4]} output]
5659 verbose "result is $result"
5660 verbose "output is $output"
5661 if {$result == 1} {
5662 return ""
5663 }
5664 return $data
92046791 5665 } else {
c74f7d1c
JT
5666 set tmp [standard_output_file "${filename}-tmp"]
5667 set objcopy_program [gdb_find_objcopy]
5668 set result [catch "exec $objcopy_program -j .note.gnu.build-id -O binary $filename $tmp" output]
5669 verbose "result is $result"
5670 verbose "output is $output"
5671 if {$result == 1} {
5672 return ""
5673 }
5674 set fi [open $tmp]
5675 fconfigure $fi -translation binary
5676 # Skip the NOTE header.
5677 read $fi 16
5678 set data [read $fi]
5679 close $fi
5680 file delete $tmp
5681 if ![string compare $data ""] then {
5682 return ""
5683 }
5684 # Convert it to hex.
5685 binary scan $data H* data
5686 return $data
4935890f 5687 }
7c50a931
DE
5688}
5689
5690# Return the build-id hex string (usually 160 bits as 40 hex characters)
5691# converted to the form: .build-id/ab/cdef1234...89.debug
5692# Return "" if no build-id found.
5693proc build_id_debug_filename_get { filename } {
5694 set data [get_build_id $filename]
5695 if { $data == "" } {
5696 return ""
5697 }
061b5285 5698 regsub {^..} $data {\0/} data
ae59b1da 5699 return ".build-id/${data}.debug"
4935890f
JK
5700}
5701
94277a38
DJ
5702# Create stripped files for DEST, replacing it. If ARGS is passed, it is a
5703# list of optional flags. The only currently supported flag is no-main,
5704# which removes the symbol entry for main from the separate debug file.
c0201579
JK
5705#
5706# Function returns zero on success. Function will return non-zero failure code
5707# on some targets not supporting separate debug info (such as i386-msdos).
1f8a6abb 5708
94277a38
DJ
5709proc gdb_gnu_strip_debug { dest args } {
5710
8e1d0c49
JK
5711 # Use the first separate debug info file location searched by GDB so the
5712 # run cannot be broken by some stale file searched with higher precedence.
5713 set debug_file "${dest}.debug"
5714
b741e217 5715 set strip_to_file_program [transform strip]
4fa7d390 5716 set objcopy_program [gdb_find_objcopy]
1f8a6abb 5717
1f8a6abb
EZ
5718 set debug_link [file tail $debug_file]
5719 set stripped_file "${dest}.stripped"
5720
5721 # Get rid of the debug info, and store result in stripped_file
5722 # something like gdb/testsuite/gdb.base/blah.stripped.
5723 set result [catch "exec $strip_to_file_program --strip-debug ${dest} -o ${stripped_file}" output]
5724 verbose "result is $result"
5725 verbose "output is $output"
5726 if {$result == 1} {
5727 return 1
5728 }
5729
d521f563
JK
5730 # Workaround PR binutils/10802:
5731 # Preserve the 'x' bit also for PIEs (Position Independent Executables).
5732 set perm [file attributes ${dest} -permissions]
5733 file attributes ${stripped_file} -permissions $perm
5734
1f8a6abb
EZ
5735 # Get rid of everything but the debug info, and store result in debug_file
5736 # This will be in the .debug subdirectory, see above.
5737 set result [catch "exec $strip_to_file_program --only-keep-debug ${dest} -o ${debug_file}" output]
5738 verbose "result is $result"
5739 verbose "output is $output"
5740 if {$result == 1} {
5741 return 1
5742 }
5743
94277a38
DJ
5744 # If no-main is passed, strip the symbol for main from the separate
5745 # file. This is to simulate the behavior of elfutils's eu-strip, which
5746 # leaves the symtab in the original file only. There's no way to get
5747 # objcopy or strip to remove the symbol table without also removing the
5748 # debugging sections, so this is as close as we can get.
5749 if { [llength $args] == 1 && [lindex $args 0] == "no-main" } {
5750 set result [catch "exec $objcopy_program -N main ${debug_file} ${debug_file}-tmp" output]
5751 verbose "result is $result"
5752 verbose "output is $output"
5753 if {$result == 1} {
5754 return 1
5755 }
5756 file delete "${debug_file}"
5757 file rename "${debug_file}-tmp" "${debug_file}"
5758 }
5759
1f8a6abb
EZ
5760 # Link the two previous output files together, adding the .gnu_debuglink
5761 # section to the stripped_file, containing a pointer to the debug_file,
5762 # save the new file in dest.
5763 # This will be the regular executable filename, in the usual location.
5764 set result [catch "exec $objcopy_program --add-gnu-debuglink=${debug_file} ${stripped_file} ${dest}" output]
5765 verbose "result is $result"
5766 verbose "output is $output"
5767 if {$result == 1} {
5768 return 1
5769 }
5770
d521f563
JK
5771 # Workaround PR binutils/10802:
5772 # Preserve the 'x' bit also for PIEs (Position Independent Executables).
5773 set perm [file attributes ${stripped_file} -permissions]
5774 file attributes ${dest} -permissions $perm
5775
5776 return 0
1f8a6abb
EZ
5777}
5778
d8295fe9
VP
5779# Test the output of GDB_COMMAND matches the pattern obtained
5780# by concatenating all elements of EXPECTED_LINES. This makes
5781# it possible to split otherwise very long string into pieces.
206584bd 5782# If third argument TESTNAME is not empty, it's used as the name of the
d8295fe9 5783# test to be printed on pass/fail.
206584bd 5784proc help_test_raw { gdb_command expected_lines {testname {}} } {
d8295fe9 5785 set expected_output [join $expected_lines ""]
d1e36019
TV
5786 if {$testname != {}} {
5787 gdb_test "${gdb_command}" "${expected_output}" $testname
5788 return
5789 }
5790
5791 gdb_test "${gdb_command}" "${expected_output}"
d8295fe9
VP
5792}
5793
206584bd
PW
5794# A regexp that matches the end of help CLASS|PREFIX_COMMAND
5795set help_list_trailer {
5796 "Type \"apropos word\" to search for commands related to \"word\"\.[\r\n]+"
5797 "Type \"apropos -v word\" for full documentation of commands related to \"word\"\.[\r\n]+"
5798 "Command name abbreviations are allowed if unambiguous\."
5799}
5800
5801# Test the output of "help COMMAND_CLASS". EXPECTED_INITIAL_LINES
d8295fe9 5802# are regular expressions that should match the beginning of output,
206584bd
PW
5803# before the list of commands in that class.
5804# LIST_OF_COMMANDS are regular expressions that should match the
5805# list of commands in that class. If empty, the command list will be
5806# matched automatically. The presence of standard epilogue will be tested
5807# automatically.
5808# If last argument TESTNAME is not empty, it's used as the name of the
5809# test to be printed on pass/fail.
06f810bd
MG
5810# Notice that the '[' and ']' characters don't need to be escaped for strings
5811# wrapped in {} braces.
206584bd
PW
5812proc test_class_help { command_class expected_initial_lines {list_of_commands {}} {testname {}} } {
5813 global help_list_trailer
5814 if {[llength $list_of_commands]>0} {
5815 set l_list_of_commands {"List of commands:[\r\n]+[\r\n]+"}
5816 set l_list_of_commands [concat $l_list_of_commands $list_of_commands]
5817 set l_list_of_commands [concat $l_list_of_commands {"[\r\n]+[\r\n]+"}]
5818 } else {
5819 set l_list_of_commands {"List of commands\:.*[\r\n]+"}
5820 }
d8295fe9 5821 set l_stock_body {
06f810bd 5822 "Type \"help\" followed by command name for full documentation\.[\r\n]+"
d8295fe9 5823 }
206584bd
PW
5824 set l_entire_body [concat $expected_initial_lines $l_list_of_commands \
5825 $l_stock_body $help_list_trailer]
d8295fe9 5826
206584bd 5827 help_test_raw "help ${command_class}" $l_entire_body $testname
d8295fe9
VP
5828}
5829
206584bd
PW
5830# Like test_class_help but specialised to test "help user-defined".
5831proc test_user_defined_class_help { {list_of_commands {}} {testname {}} } {
5832 test_class_help "user-defined" {
5833 "User-defined commands\.[\r\n]+"
5834 "The commands in this class are those defined by the user\.[\r\n]+"
5835 "Use the \"define\" command to define a command\.[\r\n]+"
5836 } $list_of_commands $testname
5837}
5838
5839
d8295fe9
VP
5840# COMMAND_LIST should have either one element -- command to test, or
5841# two elements -- abbreviated command to test, and full command the first
5842# element is abbreviation of.
5843# The command must be a prefix command. EXPECTED_INITIAL_LINES
5844# are regular expressions that should match the beginning of output,
5845# before the list of subcommands. The presence of
5846# subcommand list and standard epilogue will be tested automatically.
5847proc test_prefix_command_help { command_list expected_initial_lines args } {
206584bd 5848 global help_list_trailer
d8295fe9
VP
5849 set command [lindex $command_list 0]
5850 if {[llength $command_list]>1} {
5851 set full_command [lindex $command_list 1]
5852 } else {
5853 set full_command $command
5854 }
5855 # Use 'list' and not just {} because we want variables to
5856 # be expanded in this list.
5857 set l_stock_body [list\
5858 "List of $full_command subcommands\:.*\[\r\n\]+"\
206584bd
PW
5859 "Type \"help $full_command\" followed by $full_command subcommand name for full documentation\.\[\r\n\]+"]
5860 set l_entire_body [concat $expected_initial_lines $l_stock_body $help_list_trailer]
d8295fe9
VP
5861 if {[llength $args]>0} {
5862 help_test_raw "help ${command}" $l_entire_body [lindex $args 0]
5863 } else {
5864 help_test_raw "help ${command}" $l_entire_body
5865 }
5866}
dbc52822 5867
85b4440a
TT
5868# Build executable named EXECUTABLE from specifications that allow
5869# different options to be passed to different sub-compilations.
5870# TESTNAME is the name of the test; this is passed to 'untested' if
5871# something fails.
a0d3f2f5
SCR
5872# OPTIONS is passed to the final link, using gdb_compile. If OPTIONS
5873# contains the option "pthreads", then gdb_compile_pthreads is used.
85b4440a
TT
5874# ARGS is a flat list of source specifications, of the form:
5875# { SOURCE1 OPTIONS1 [ SOURCE2 OPTIONS2 ]... }
5876# Each SOURCE is compiled to an object file using its OPTIONS,
5877# using gdb_compile.
5878# Returns 0 on success, -1 on failure.
5879proc build_executable_from_specs {testname executable options args} {
dbc52822
VP
5880 global subdir
5881 global srcdir
dbc52822 5882
0a6d0306 5883 set binfile [standard_output_file $executable]
dbc52822 5884
fd961404
DE
5885 set info_options ""
5886 if { [lsearch -exact $options "c++"] >= 0 } {
5887 set info_options "c++"
5888 }
4c93b1db 5889 if [get_compiler_info ${info_options}] {
dbc52822
VP
5890 return -1
5891 }
a29a3fb7 5892
a29a3fb7
GB
5893 set func gdb_compile
5894 set func_index [lsearch -regexp $options {^(pthreads|shlib|shlib_pthreads)$}]
5895 if {$func_index != -1} {
5896 set func "${func}_[lindex $options $func_index]"
5897 }
5898
5899 # gdb_compile_shlib and gdb_compile_shlib_pthreads do not use the 3rd
5900 # parameter. They also requires $sources while gdb_compile and
5901 # gdb_compile_pthreads require $objects. Moreover they ignore any options.
5902 if [string match gdb_compile_shlib* $func] {
5903 set sources_path {}
5904 foreach {s local_options} $args {
0e5c4555
AA
5905 if { [regexp "^/" "$s"] } then {
5906 lappend sources_path "$s"
5907 } else {
5908 lappend sources_path "$srcdir/$subdir/$s"
5909 }
a29a3fb7
GB
5910 }
5911 set ret [$func $sources_path "${binfile}" $options]
67218854
TT
5912 } elseif {[lsearch -exact $options rust] != -1} {
5913 set sources_path {}
5914 foreach {s local_options} $args {
5915 if { [regexp "^/" "$s"] } then {
5916 lappend sources_path "$s"
5917 } else {
5918 lappend sources_path "$srcdir/$subdir/$s"
5919 }
5920 }
5921 set ret [gdb_compile_rust $sources_path "${binfile}" $options]
a29a3fb7
GB
5922 } else {
5923 set objects {}
5924 set i 0
5925 foreach {s local_options} $args {
0e5c4555
AA
5926 if { ! [regexp "^/" "$s"] } then {
5927 set s "$srcdir/$subdir/$s"
5928 }
5929 if { [gdb_compile "${s}" "${binfile}${i}.o" object $local_options] != "" } {
a29a3fb7
GB
5930 untested $testname
5931 return -1
5932 }
5933 lappend objects "${binfile}${i}.o"
5934 incr i
5935 }
5936 set ret [$func $objects "${binfile}" executable $options]
5937 }
5938 if { $ret != "" } {
5939 untested $testname
5940 return -1
5941 }
5942
dbc52822
VP
5943 return 0
5944}
5945
85b4440a
TT
5946# Build executable named EXECUTABLE, from SOURCES. If SOURCES are not
5947# provided, uses $EXECUTABLE.c. The TESTNAME paramer is the name of test
5948# to pass to untested, if something is wrong. OPTIONS are passed
5949# to gdb_compile directly.
5950proc build_executable { testname executable {sources ""} {options {debug}} } {
5951 if {[llength $sources]==0} {
5952 set sources ${executable}.c
5953 }
5954
5955 set arglist [list $testname $executable $options]
5956 foreach source $sources {
5957 lappend arglist $source $options
5958 }
5959
5960 return [eval build_executable_from_specs $arglist]
5961}
5962
7b606f95
DE
5963# Starts fresh GDB binary and loads an optional executable into GDB.
5964# Usage: clean_restart [executable]
5965# EXECUTABLE is the basename of the binary.
5966
5967proc clean_restart { args } {
dbc52822 5968 global srcdir
dbc52822 5969 global subdir
7b606f95
DE
5970
5971 if { [llength $args] > 1 } {
5972 error "bad number of args: [llength $args]"
5973 }
dbc52822
VP
5974
5975 gdb_exit
5976 gdb_start
5977 gdb_reinitialize_dir $srcdir/$subdir
7b606f95
DE
5978
5979 if { [llength $args] >= 1 } {
5980 set executable [lindex $args 0]
5981 set binfile [standard_output_file ${executable}]
5982 gdb_load ${binfile}
5983 }
dbc52822
VP
5984}
5985
85b4440a
TT
5986# Prepares for testing by calling build_executable_full, then
5987# clean_restart.
5988# TESTNAME is the name of the test.
5989# Each element in ARGS is a list of the form
5990# { EXECUTABLE OPTIONS SOURCE_SPEC... }
5991# These are passed to build_executable_from_specs, which see.
5992# The last EXECUTABLE is passed to clean_restart.
5993# Returns 0 on success, non-zero on failure.
5994proc prepare_for_testing_full {testname args} {
5995 foreach spec $args {
5996 if {[eval build_executable_from_specs [list $testname] $spec] == -1} {
5997 return -1
5998 }
5999 set executable [lindex $spec 0]
6000 }
6001 clean_restart $executable
6002 return 0
6003}
6004
dbc52822
VP
6005# Prepares for testing, by calling build_executable, and then clean_restart.
6006# Please refer to build_executable for parameter description.
6007proc prepare_for_testing { testname executable {sources ""} {options {debug}}} {
6008
734a5c36 6009 if {[build_executable $testname $executable $sources $options] == -1} {
dbc52822
VP
6010 return -1
6011 }
6012 clean_restart $executable
6013
6014 return 0
6015}
7065b901 6016
0efcde63
AK
6017# Retrieve the value of EXP in the inferior, represented in format
6018# specified in FMT (using "printFMT"). DEFAULT is used as fallback if
6019# print fails. TEST is the test message to use. It can be omitted,
6020# in which case a test message is built from EXP.
6021
6022proc get_valueof { fmt exp default {test ""} } {
7065b901
TT
6023 global gdb_prompt
6024
0efcde63
AK
6025 if {$test == "" } {
6026 set test "get valueof \"${exp}\""
6027 }
6028
7065b901
TT
6029 set val ${default}
6030 gdb_test_multiple "print${fmt} ${exp}" "$test" {
c2c2dd9f 6031 -re "\\$\[0-9\]* = (\[^\r\n\]*)\[\r\n\]*$gdb_prompt $" {
417e16e2 6032 set val $expect_out(1,string)
1443936e 6033 pass "$test"
417e16e2
PM
6034 }
6035 timeout {
6036 fail "$test (timeout)"
6037 }
6038 }
6039 return ${val}
6040}
6041
0efcde63
AK
6042# Retrieve the value of EXP in the inferior, as a signed decimal value
6043# (using "print /d"). DEFAULT is used as fallback if print fails.
6044# TEST is the test message to use. It can be omitted, in which case
6045# a test message is built from EXP.
6046
6047proc get_integer_valueof { exp default {test ""} } {
417e16e2
PM
6048 global gdb_prompt
6049
0efcde63
AK
6050 if {$test == ""} {
6051 set test "get integer valueof \"${exp}\""
6052 }
6053
417e16e2
PM
6054 set val ${default}
6055 gdb_test_multiple "print /d ${exp}" "$test" {
7065b901
TT
6056 -re "\\$\[0-9\]* = (\[-\]*\[0-9\]*).*$gdb_prompt $" {
6057 set val $expect_out(1,string)
2f20e312 6058 pass "$test"
7065b901
TT
6059 }
6060 timeout {
417e16e2 6061 fail "$test (timeout)"
7065b901
TT
6062 }
6063 }
6064 return ${val}
6065}
6066
20aa2c60
PA
6067# Retrieve the value of EXP in the inferior, as an hexadecimal value
6068# (using "print /x"). DEFAULT is used as fallback if print fails.
0efcde63 6069# TEST is the test message to use. It can be omitted, in which case
20aa2c60
PA
6070# a test message is built from EXP.
6071
6072proc get_hexadecimal_valueof { exp default {test ""} } {
faafb047 6073 global gdb_prompt
20aa2c60
PA
6074
6075 if {$test == ""} {
6076 set test "get hexadecimal valueof \"${exp}\""
6077 }
6078
6079 set val ${default}
6080 gdb_test_multiple "print /x ${exp}" $test {
faafb047
PM
6081 -re "\\$\[0-9\]* = (0x\[0-9a-zA-Z\]+).*$gdb_prompt $" {
6082 set val $expect_out(1,string)
6083 pass "$test"
6084 }
faafb047
PM
6085 }
6086 return ${val}
6087}
417e16e2 6088
0efcde63
AK
6089# Retrieve the size of TYPE in the inferior, as a decimal value. DEFAULT
6090# is used as fallback if print fails. TEST is the test message to use.
6091# It can be omitted, in which case a test message is 'sizeof (TYPE)'.
6092
6093proc get_sizeof { type default {test ""} } {
6094 return [get_integer_valueof "sizeof (${type})" $default $test]
7065b901
TT
6095}
6096
ed3ef339
DE
6097proc get_target_charset { } {
6098 global gdb_prompt
6099
6100 gdb_test_multiple "show target-charset" "" {
6101 -re "The target character set is \"auto; currently (\[^\"\]*)\".*$gdb_prompt $" {
6102 return $expect_out(1,string)
6103 }
6104 -re "The target character set is \"(\[^\"\]*)\".*$gdb_prompt $" {
6105 return $expect_out(1,string)
6106 }
6107 }
6108
6109 # Pick a reasonable default.
6110 warning "Unable to read target-charset."
6111 return "UTF-8"
6112}
6113
5ad9dba7
YQ
6114# Get the address of VAR.
6115
6116proc get_var_address { var } {
6117 global gdb_prompt hex
6118
6119 # Match output like:
6120 # $1 = (int *) 0x0
6121 # $5 = (int (*)()) 0
6122 # $6 = (int (*)()) 0x24 <function_bar>
6123
6124 gdb_test_multiple "print &${var}" "get address of ${var}" {
6125 -re "\\\$\[0-9\]+ = \\(.*\\) (0|$hex)( <${var}>)?\[\r\n\]+${gdb_prompt} $"
6126 {
6127 pass "get address of ${var}"
6128 if { $expect_out(1,string) == "0" } {
6129 return "0x0"
6130 } else {
6131 return $expect_out(1,string)
6132 }
6133 }
6134 }
6135 return ""
6136}
6137
45f25d6c
AB
6138# Return the frame number for the currently selected frame
6139proc get_current_frame_number {{test_name ""}} {
6140 global gdb_prompt
6141
6142 if { $test_name == "" } {
6143 set test_name "get current frame number"
6144 }
6145 set frame_num -1
6146 gdb_test_multiple "frame" $test_name {
6147 -re "#(\[0-9\]+) .*$gdb_prompt $" {
6148 set frame_num $expect_out(1,string)
6149 }
6150 }
6151 return $frame_num
6152}
6153
db863c42
MF
6154# Get the current value for remotetimeout and return it.
6155proc get_remotetimeout { } {
6156 global gdb_prompt
6157 global decimal
6158
6159 gdb_test_multiple "show remotetimeout" "" {
6160 -re "Timeout limit to wait for target to respond is ($decimal).*$gdb_prompt $" {
ae59b1da 6161 return $expect_out(1,string)
db863c42
MF
6162 }
6163 }
6164
6165 # Pick the default that gdb uses
6166 warning "Unable to read remotetimeout"
6167 return 300
6168}
6169
6170# Set the remotetimeout to the specified timeout. Nothing is returned.
6171proc set_remotetimeout { timeout } {
6172 global gdb_prompt
6173
6174 gdb_test_multiple "set remotetimeout $timeout" "" {
6175 -re "$gdb_prompt $" {
6176 verbose "Set remotetimeout to $timeout\n"
6177 }
6178 }
6179}
6180
805acca0
AA
6181# Get the target's current endianness and return it.
6182proc get_endianness { } {
6183 global gdb_prompt
6184
6185 gdb_test_multiple "show endian" "determine endianness" {
6186 -re ".* (little|big) endian.*\r\n$gdb_prompt $" {
6187 # Pass silently.
6188 return $expect_out(1,string)
6189 }
6190 }
6191 return "little"
6192}
6193
1e537771
TT
6194# ROOT and FULL are file names. Returns the relative path from ROOT
6195# to FULL. Note that FULL must be in a subdirectory of ROOT.
6196# For example, given ROOT = /usr/bin and FULL = /usr/bin/ls, this
6197# will return "ls".
6198
6199proc relative_filename {root full} {
6200 set root_split [file split $root]
6201 set full_split [file split $full]
6202
6203 set len [llength $root_split]
6204
6205 if {[eval file join $root_split]
6206 != [eval file join [lrange $full_split 0 [expr {$len - 1}]]]} {
6207 error "$full not a subdir of $root"
6208 }
6209
6210 return [eval file join [lrange $full_split $len end]]
6211}
6212
5e92f71a
TT
6213# If GDB_PARALLEL exists, then set up the parallel-mode directories.
6214if {[info exists GDB_PARALLEL]} {
6215 if {[is_remote host]} {
6216 unset GDB_PARALLEL
6217 } else {
3d338901
DE
6218 file mkdir \
6219 [make_gdb_parallel_path outputs] \
6220 [make_gdb_parallel_path temp] \
6221 [make_gdb_parallel_path cache]
5e92f71a
TT
6222 }
6223}
6224
bbfba9ed 6225proc core_find {binfile {deletefiles {}} {arg ""}} {
37aeb5df
JK
6226 global objdir subdir
6227
6228 set destcore "$binfile.core"
6229 file delete $destcore
6230
6231 # Create a core file named "$destcore" rather than just "core", to
6232 # avoid problems with sys admin types that like to regularly prune all
6233 # files named "core" from the system.
6234 #
6235 # Arbitrarily try setting the core size limit to "unlimited" since
6236 # this does not hurt on systems where the command does not work and
6237 # allows us to generate a core on systems where it does.
6238 #
6239 # Some systems append "core" to the name of the program; others append
6240 # the name of the program to "core"; still others (like Linux, as of
6241 # May 2003) create cores named "core.PID". In the latter case, we
6242 # could have many core files lying around, and it may be difficult to
6243 # tell which one is ours, so let's run the program in a subdirectory.
6244 set found 0
93c0ef37 6245 set coredir [standard_output_file coredir.[getpid]]
37aeb5df 6246 file mkdir $coredir
bbfba9ed 6247 catch "system \"(cd ${coredir}; ulimit -c unlimited; ${binfile} ${arg}; true) >/dev/null 2>&1\""
37aeb5df
JK
6248 # remote_exec host "${binfile}"
6249 foreach i "${coredir}/core ${coredir}/core.coremaker.c ${binfile}.core" {
6250 if [remote_file build exists $i] {
6251 remote_exec build "mv $i $destcore"
6252 set found 1
6253 }
6254 }
6255 # Check for "core.PID".
6256 if { $found == 0 } {
6257 set names [glob -nocomplain -directory $coredir core.*]
6258 if {[llength $names] == 1} {
6259 set corefile [file join $coredir [lindex $names 0]]
6260 remote_exec build "mv $corefile $destcore"
6261 set found 1
6262 }
6263 }
6264 if { $found == 0 } {
6265 # The braindamaged HPUX shell quits after the ulimit -c above
6266 # without executing ${binfile}. So we try again without the
6267 # ulimit here if we didn't find a core file above.
6268 # Oh, I should mention that any "braindamaged" non-Unix system has
6269 # the same problem. I like the cd bit too, it's really neat'n stuff.
6270 catch "system \"(cd ${objdir}/${subdir}; ${binfile}; true) >/dev/null 2>&1\""
6271 foreach i "${objdir}/${subdir}/core ${objdir}/${subdir}/core.coremaker.c ${binfile}.core" {
6272 if [remote_file build exists $i] {
6273 remote_exec build "mv $i $destcore"
6274 set found 1
6275 }
6276 }
6277 }
6278
6279 # Try to clean up after ourselves.
6280 foreach deletefile $deletefiles {
6281 remote_file build delete [file join $coredir $deletefile]
6282 }
6283 remote_exec build "rmdir $coredir"
6284
6285 if { $found == 0 } {
6286 warning "can't generate a core file - core tests suppressed - check ulimit -c"
6287 return ""
6288 }
6289 return $destcore
6290}
ee5683ab 6291
2223449a
KB
6292# gdb_target_symbol_prefix compiles a test program and then examines
6293# the output from objdump to determine the prefix (such as underscore)
6294# for linker symbol prefixes.
6295
6296gdb_caching_proc gdb_target_symbol_prefix {
bf326452
AH
6297 # Compile a simple test program...
6298 set src { int main() { return 0; } }
6299 if {![gdb_simple_compile target_symbol_prefix $src executable]} {
6300 return 0
2223449a
KB
6301 }
6302
2223449a
KB
6303 set prefix ""
6304
bf326452
AH
6305 set objdump_program [gdb_find_objdump]
6306 set result [catch "exec $objdump_program --syms $obj" output]
2223449a 6307
bf326452
AH
6308 if { $result == 0 \
6309 && ![regexp -lineanchor \
6310 { ([^ a-zA-Z0-9]*)main$} $output dummy prefix] } {
6311 verbose "gdb_target_symbol_prefix: Could not find main in objdump output; returning null prefix" 2
2223449a
KB
6312 }
6313
bf326452 6314 file delete $obj
2223449a
KB
6315
6316 return $prefix
6317}
6318
5bd18990
AB
6319# Return 1 if target supports scheduler locking, otherwise return 0.
6320
6321gdb_caching_proc target_supports_scheduler_locking {
6322 global gdb_prompt
6323
6324 set me "gdb_target_supports_scheduler_locking"
6325
bf326452
AH
6326 set src { int main() { return 0; } }
6327 if {![gdb_simple_compile $me $src executable]} {
5bd18990
AB
6328 return 0
6329 }
6330
bf326452 6331 clean_restart $obj
58bbcd02
TV
6332 if ![runto_main] {
6333 return 0
6334 }
5bd18990
AB
6335
6336 set supports_schedule_locking -1
6337 set current_schedule_locking_mode ""
6338
6339 set test "reading current scheduler-locking mode"
6340 gdb_test_multiple "show scheduler-locking" $test {
6341 -re "Mode for locking scheduler during execution is \"(\[\^\"\]*)\".*$gdb_prompt" {
6342 set current_schedule_locking_mode $expect_out(1,string)
6343 }
6344 -re "$gdb_prompt $" {
6345 set supports_schedule_locking 0
6346 }
6347 timeout {
6348 set supports_schedule_locking 0
6349 }
6350 }
6351
6352 if { $supports_schedule_locking == -1 } {
6353 set test "checking for scheduler-locking support"
6354 gdb_test_multiple "set scheduler-locking $current_schedule_locking_mode" $test {
6355 -re "Target '\[^'\]+' cannot support this command\..*$gdb_prompt $" {
6356 set supports_schedule_locking 0
6357 }
6358 -re "$gdb_prompt $" {
6359 set supports_schedule_locking 1
6360 }
6361 timeout {
6362 set supports_schedule_locking 0
6363 }
6364 }
6365 }
6366
6367 if { $supports_schedule_locking == -1 } {
6368 set supports_schedule_locking 0
6369 }
6370
6371 gdb_exit
bf326452 6372 remote_file build delete $obj
5bd18990
AB
6373 verbose "$me: returning $supports_schedule_locking" 2
6374 return $supports_schedule_locking
6375}
6376
2223449a
KB
6377# gdb_target_symbol returns the provided symbol with the correct prefix
6378# prepended. (See gdb_target_symbol_prefix, above.)
6379
6380proc gdb_target_symbol { symbol } {
6381 set prefix [gdb_target_symbol_prefix]
6382 return "${prefix}${symbol}"
6383}
6384
f01dcfd9
KB
6385# gdb_target_symbol_prefix_flags_asm returns a string that can be
6386# added to gdb_compile options to define the C-preprocessor macro
6387# SYMBOL_PREFIX with a value that can be prepended to symbols
6388# for targets which require a prefix, such as underscore.
6389#
6390# This version (_asm) defines the prefix without double quotes
6391# surrounding the prefix. It is used to define the macro
6392# SYMBOL_PREFIX for assembly language files. Another version, below,
6393# is used for symbols in inline assembler in C/C++ files.
6394#
6395# The lack of quotes in this version (_asm) makes it possible to
6396# define supporting macros in the .S file. (The version which
6397# uses quotes for the prefix won't work for such files since it's
6398# impossible to define a quote-stripping macro in C.)
6399#
6400# It's possible to use this version (_asm) for C/C++ source files too,
6401# but a string is usually required in such files; providing a version
6402# (no _asm) which encloses the prefix with double quotes makes it
6403# somewhat easier to define the supporting macros in the test case.
6404
6405proc gdb_target_symbol_prefix_flags_asm {} {
6406 set prefix [gdb_target_symbol_prefix]
6407 if {$prefix ne ""} {
6408 return "additional_flags=-DSYMBOL_PREFIX=$prefix"
6409 } else {
6410 return "";
6411 }
6412}
6413
6414# gdb_target_symbol_prefix_flags returns the same string as
6415# gdb_target_symbol_prefix_flags_asm, above, but with the prefix
6416# enclosed in double quotes if there is a prefix.
6417#
6418# See the comment for gdb_target_symbol_prefix_flags_asm for an
6419# extended discussion.
ee5683ab
PM
6420
6421proc gdb_target_symbol_prefix_flags {} {
f01dcfd9
KB
6422 set prefix [gdb_target_symbol_prefix]
6423 if {$prefix ne ""} {
6424 return "additional_flags=-DSYMBOL_PREFIX=\"$prefix\""
ee5683ab 6425 } else {
f01dcfd9 6426 return "";
ee5683ab
PM
6427 }
6428}
6429
6e45f158
DE
6430# A wrapper for 'remote_exec host' that passes or fails a test.
6431# Returns 0 if all went well, nonzero on failure.
6432# TEST is the name of the test, other arguments are as for remote_exec.
6433
6434proc run_on_host { test program args } {
6435 verbose -log "run_on_host: $program $args"
6436 # remote_exec doesn't work properly if the output is set but the
6437 # input is the empty string -- so replace an empty input with
6438 # /dev/null.
6439 if {[llength $args] > 1 && [lindex $args 1] == ""} {
6440 set args [lreplace $args 1 1 "/dev/null"]
6441 }
6442 set result [eval remote_exec host [list $program] $args]
6443 verbose "result is $result"
6444 set status [lindex $result 0]
6445 set output [lindex $result 1]
6446 if {$status == 0} {
6447 pass $test
6448 return 0
6449 } else {
50cc37c8 6450 verbose -log "run_on_host failed: $output"
6e45f158
DE
6451 fail $test
6452 return -1
6453 }
6454}
6455
a587b477
DE
6456# Return non-zero if "board_info debug_flags" mentions Fission.
6457# http://gcc.gnu.org/wiki/DebugFission
6458# Fission doesn't support everything yet.
6459# This supports working around bug 15954.
6460
6461proc using_fission { } {
6462 set debug_flags [board_info [target_info name] debug_flags]
6463 return [regexp -- "-gsplit-dwarf" $debug_flags]
6464}
6465
4b48d439
KS
6466# Search the caller's ARGS list and set variables according to the list of
6467# valid options described by ARGSET.
6468#
6469# The first member of each one- or two-element list in ARGSET defines the
6470# name of a variable that will be added to the caller's scope.
6471#
6472# If only one element is given to describe an option, it the value is
6473# 0 if the option is not present in (the caller's) ARGS or 1 if
6474# it is.
6475#
6476# If two elements are given, the second element is the default value of
6477# the variable. This is then overwritten if the option exists in ARGS.
6478#
6479# Any parse_args elements in (the caller's) ARGS will be removed, leaving
6480# any optional components.
6481
6482# Example:
6483# proc myproc {foo args} {
6484# parse_args {{bar} {baz "abc"} {qux}}
6485# # ...
6486# }
6487# myproc ABC -bar -baz DEF peanut butter
6488# will define the following variables in myproc:
6489# foo (=ABC), bar (=1), baz (=DEF), and qux (=0)
6490# args will be the list {peanut butter}
6491
6492proc parse_args { argset } {
6493 upvar args args
6494
6495 foreach argument $argset {
6496 if {[llength $argument] == 1} {
6497 # No default specified, so we assume that we should set
6498 # the value to 1 if the arg is present and 0 if it's not.
6499 # It is assumed that no value is given with the argument.
6500 set result [lsearch -exact $args "-$argument"]
6501 if {$result != -1} then {
6502 uplevel 1 [list set $argument 1]
6503 set args [lreplace $args $result $result]
6504 } else {
6505 uplevel 1 [list set $argument 0]
6506 }
6507 } elseif {[llength $argument] == 2} {
6508 # There are two items in the argument. The second is a
6509 # default value to use if the item is not present.
6510 # Otherwise, the variable is set to whatever is provided
6511 # after the item in the args.
6512 set arg [lindex $argument 0]
6513 set result [lsearch -exact $args "-[lindex $arg 0]"]
6514 if {$result != -1} then {
6515 uplevel 1 [list set $arg [lindex $args [expr $result+1]]]
6516 set args [lreplace $args $result [expr $result+1]]
6517 } else {
6518 uplevel 1 [list set $arg [lindex $argument 1]]
6519 }
6520 } else {
6521 error "Badly formatted argument \"$argument\" in argument set"
6522 }
6523 }
6524
6525 # The remaining args should be checked to see that they match the
6526 # number of items expected to be passed into the procedure...
6527}
6528
87f0e720
KS
6529# Capture the output of COMMAND in a string ignoring PREFIX (a regexp);
6530# return that string.
6531
e9089e05
MM
6532proc capture_command_output { command prefix } {
6533 global gdb_prompt
6534 global expect_out
6535
6536 set output_string ""
6537 gdb_test_multiple "$command" "capture_command_output for $command" {
87f0e720 6538 -re "[string_to_regexp ${command}]\[\r\n\]+${prefix}(.*)\[\r\n\]+$gdb_prompt $" {
e9089e05
MM
6539 set output_string $expect_out(1,string)
6540 }
6541 }
6542 return $output_string
6543}
6544
3c724c8c
PMR
6545# A convenience function that joins all the arguments together, with a
6546# regexp that matches exactly one end of line in between each argument.
6547# This function is ideal to write the expected output of a GDB command
6548# that generates more than a couple of lines, as this allows us to write
6549# each line as a separate string, which is easier to read by a human
6550# being.
6551
6552proc multi_line { args } {
6553 return [join $args "\r\n"]
6554}
6555
fad0c9fb
PA
6556# Similar to the above, but while multi_line is meant to be used to
6557# match GDB output, this one is meant to be used to build strings to
6558# send as GDB input.
6559
6560proc multi_line_input { args } {
6561 return [join $args "\n"]
6562}
6563
896c0c1e
SM
6564# Return the version of the DejaGnu framework.
6565#
6566# The return value is a list containing the major, minor and patch version
6567# numbers. If the version does not contain a minor or patch number, they will
6568# be set to 0. For example:
6569#
6570# 1.6 -> {1 6 0}
6571# 1.6.1 -> {1 6 1}
6572# 2 -> {2 0 0}
6573
6574proc dejagnu_version { } {
6575 # The frame_version variable is defined by DejaGnu, in runtest.exp.
6576 global frame_version
6577
6578 verbose -log "DejaGnu version: $frame_version"
6579 verbose -log "Expect version: [exp_version]"
6580 verbose -log "Tcl version: [info tclversion]"
6581
6582 set dg_ver [split $frame_version .]
6583
6584 while { [llength $dg_ver] < 3 } {
6585 lappend dg_ver 0
6586 }
6587
6588 return $dg_ver
6589}
fad0c9fb 6590
3a3fd0fd
PA
6591# Define user-defined command COMMAND using the COMMAND_LIST as the
6592# command's definition. The terminating "end" is added automatically.
6593
6594proc gdb_define_cmd {command command_list} {
6595 global gdb_prompt
6596
6597 set input [multi_line_input {*}$command_list "end"]
6598 set test "define $command"
6599
6600 gdb_test_multiple "define $command" $test {
6601 -re "End with" {
6602 gdb_test_multiple $input $test {
6603 -re "\r\n$gdb_prompt " {
6604 }
6605 }
6606 }
6607 }
6608}
6609
c3734e09
AH
6610# Override the 'cd' builtin with a version that ensures that the
6611# log file keeps pointing at the same file. We need this because
6612# unfortunately the path to the log file is recorded using an
6613# relative path name, and, we sometimes need to close/reopen the log
6614# after changing the current directory. See get_compiler_info.
6615
6616rename cd builtin_cd
6617
6618proc cd { dir } {
6619
6620 # Get the existing log file flags.
6621 set log_file_info [log_file -info]
6622
6623 # Split the flags into args and file name.
6624 set log_file_flags ""
6625 set log_file_file ""
6626 foreach arg [ split "$log_file_info" " "] {
6627 if [string match "-*" $arg] {
6628 lappend log_file_flags $arg
6629 } else {
6630 lappend log_file_file $arg
6631 }
6632 }
6633
6634 # If there was an existing file, ensure it is an absolute path, and then
6635 # reset logging.
6636 if { $log_file_file != "" } {
6637 set log_file_file [file normalize $log_file_file]
6638 log_file
6639 log_file $log_file_flags "$log_file_file"
6640 }
6641
6642 # Call the builtin version of cd.
6643 builtin_cd $dir
6644}
6645
d7df6549
AB
6646# Return a list of all languages supported by GDB, suitable for use in
6647# 'set language NAME'. This doesn't include either the 'local' or
6648# 'auto' keywords.
6649proc gdb_supported_languages {} {
6650 return [list c objective-c c++ d go fortran modula-2 asm pascal \
6651 opencl rust minimal ada]
6652}
6653
29b52314
AH
6654# Check if debugging is enabled for gdb.
6655
6656proc gdb_debug_enabled { } {
6657 global gdbdebug
6658
6659 # If not already read, get the debug setting from environment or board setting.
6660 if {![info exists gdbdebug]} {
6661 global env
6662 if [info exists env(GDB_DEBUG)] {
6663 set gdbdebug $env(GDB_DEBUG)
6664 } elseif [target_info exists gdb,debug] {
6665 set gdbdebug [target_info gdb,debug]
6666 } else {
6667 return 0
6668 }
6669 }
6670
6671 # Ensure it not empty.
6672 return [expr { $gdbdebug != "" }]
6673}
6674
6675# Turn on debugging if enabled, or reset if already on.
6676
6677proc gdb_debug_init { } {
6678
6679 global gdb_prompt
6680
6681 if ![gdb_debug_enabled] {
6682 return;
6683 }
6684
6685 # First ensure logging is off.
6686 send_gdb "set logging off\n"
6687
6688 set debugfile [standard_output_file gdb.debug]
6689 send_gdb "set logging file $debugfile\n"
6690
6691 send_gdb "set logging debugredirect\n"
6692
6693 global gdbdebug
6694 foreach entry [split $gdbdebug ,] {
6695 send_gdb "set debug $entry 1\n"
6696 }
6697
6698 # Now that everything is set, enable logging.
6699 send_gdb "set logging on\n"
6700 gdb_expect 10 {
6701 -re "Copying output to $debugfile.*Redirecting debug output to $debugfile.*$gdb_prompt $" {}
6702 timeout { warning "Couldn't set logging file" }
6703 }
6704}
6705
dd06d4d6
AH
6706# Check if debugging is enabled for gdbserver.
6707
6708proc gdbserver_debug_enabled { } {
6709 # Always disabled for GDB only setups.
6710 return 0
6711}
6712
f9e2e39d
AH
6713# Open the file for logging gdb input
6714
6715proc gdb_stdin_log_init { } {
6716 global in_file
6717
6718 if {[info exists in_file]} {
6719 # Close existing file.
6720 catch "close $in_file"
6721 }
6722
6723 set logfile [standard_output_file_with_gdb_instance gdb.in]
6724 set in_file [open $logfile w]
6725}
6726
6727# Write to the file for logging gdb input.
6728# TYPE can be one of the following:
6729# "standard" : Default. Standard message written to the log
6730# "answer" : Answer to a question (eg "Y"). Not written the log.
6731# "optional" : Optional message. Not written to the log.
6732
6733proc gdb_stdin_log_write { message {type standard} } {
6734
6735 global in_file
6736 if {![info exists in_file]} {
6737 return
6738 }
6739
6740 # Check message types.
6741 switch -regexp -- $type {
6742 "answer" {
6743 return
6744 }
6745 "optional" {
6746 return
6747 }
6748 }
6749
6750 #Write to the log
6751 puts -nonewline $in_file "$message"
6752}
6753
408e9b8b
AH
6754# Write the command line used to invocate gdb to the cmd file.
6755
6756proc gdb_write_cmd_file { cmdline } {
6757 set logfile [standard_output_file_with_gdb_instance gdb.cmd]
6758 set cmd_file [open $logfile w]
6759 puts $cmd_file $cmdline
6760 catch "close $cmd_file"
6761}
6762
30331a6c
TV
6763# Compare contents of FILE to string STR. Pass with MSG if equal, otherwise
6764# fail with MSG.
6765
6766proc cmp_file_string { file str msg } {
6767 if { ![file exists $file]} {
6768 fail "$msg"
6769 return
6770 }
6771
6772 set caught_error [catch {
6773 set fp [open "$file" r]
6774 set file_contents [read $fp]
6775 close $fp
6776 } error_message]
6777 if { $caught_error } then {
6778 error "$error_message"
6779 fail "$msg"
6780 return
6781 }
6782
6783 if { $file_contents == $str } {
6784 pass "$msg"
6785 } else {
6786 fail "$msg"
6787 }
6788}
6789
30d0a636
AB
6790# Does the compiler support CTF debug output using '-gt' compiler
6791# flag? If not then we should skip these tests.
6792
6793gdb_caching_proc skip_ctf_tests {
6794 return ![gdb_can_simple_compile ctfdebug {
6795 int main () {
6796 return 0;
6797 }
6798 } executable "additional_flags=-gt"]
6799}
6800
42159ca5
TT
6801# Always load compatibility stuff.
6802load_lib future.exp
This page took 3.234825 seconds and 4 git commands to generate.