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