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