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