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