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