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