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