[gdb/testsuite] Handle missing xz in gdb.base/gnu-debugdata.exp
[deliverable/binutils-gdb.git] / gdb / testsuite / lib / gdb.exp
1 # Copyright 1992-2020 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 # List of procs to run in gdb_finish.
29 set gdb_finish_hooks [list]
30
31 # Variable in which we keep track of globals that are allowed to be live
32 # across test-cases.
33 array set gdb_persistent_globals {}
34
35 # Mark variable names in ARG as a persistent global, and declare them as
36 # global in the calling context. Can be used to rewrite "global var_a var_b"
37 # into "gdb_persistent_global var_a var_b".
38 proc gdb_persistent_global { args } {
39 global gdb_persistent_globals
40 foreach varname $args {
41 uplevel 1 global $varname
42 set gdb_persistent_globals($varname) 1
43 }
44 }
45
46 # Mark variable names in ARG as a persistent global.
47 proc gdb_persistent_global_no_decl { args } {
48 global gdb_persistent_globals
49 foreach varname $args {
50 set gdb_persistent_globals($varname) 1
51 }
52 }
53
54 # Override proc load_lib.
55 rename load_lib saved_load_lib
56 # Run the runtest version of load_lib, and mark all variables that were
57 # created by this call as persistent.
58 proc load_lib { file } {
59 array set known_global {}
60 foreach varname [info globals] {
61 set known_globals($varname) 1
62 }
63
64 set code [catch "saved_load_lib $file" result]
65
66 foreach varname [info globals] {
67 if { ![info exists known_globals($varname)] } {
68 gdb_persistent_global_no_decl $varname
69 }
70 }
71
72 if {$code == 1} {
73 global errorInfo errorCode
74 return -code error -errorinfo $errorInfo -errorcode $errorCode $result
75 } elseif {$code > 1} {
76 return -code $code $result
77 }
78
79 return $result
80 }
81
82 load_lib libgloss.exp
83 load_lib cache.exp
84 load_lib gdb-utils.exp
85 load_lib memory.exp
86 load_lib check-test-names.exp
87
88 global GDB
89
90 # The spawn ID used for I/O interaction with the inferior. For native
91 # targets, or remote targets that can do I/O through GDB
92 # (semi-hosting) this will be the same as the host/GDB's spawn ID.
93 # Otherwise, the board may set this to some other spawn ID. E.g.,
94 # when debugging with GDBserver, this is set to GDBserver's spawn ID,
95 # so input/output is done on gdbserver's tty.
96 global inferior_spawn_id
97
98 if [info exists TOOL_EXECUTABLE] {
99 set GDB $TOOL_EXECUTABLE
100 }
101 if ![info exists GDB] {
102 if ![is_remote host] {
103 set GDB [findfile $base_dir/../../gdb/gdb "$base_dir/../../gdb/gdb" [transform gdb]]
104 } else {
105 set GDB [transform gdb]
106 }
107 }
108 verbose "using GDB = $GDB" 2
109
110 # GDBFLAGS is available for the user to set on the command line.
111 # E.g. make check RUNTESTFLAGS=GDBFLAGS=mumble
112 # Testcases may use it to add additional flags, but they must:
113 # - append new flags, not overwrite
114 # - restore the original value when done
115 global GDBFLAGS
116 if ![info exists GDBFLAGS] {
117 set GDBFLAGS ""
118 }
119 verbose "using GDBFLAGS = $GDBFLAGS" 2
120
121 # Make the build data directory available to tests.
122 set BUILD_DATA_DIRECTORY "[pwd]/../data-directory"
123
124 # INTERNAL_GDBFLAGS contains flags that the testsuite requires.
125 global INTERNAL_GDBFLAGS
126 if ![info exists INTERNAL_GDBFLAGS] {
127 set INTERNAL_GDBFLAGS \
128 [join [list \
129 "-nw" \
130 "-nx" \
131 "-data-directory $BUILD_DATA_DIRECTORY" \
132 {-iex "set height 0"} \
133 {-iex "set width 0"}]]
134 }
135
136 # The variable gdb_prompt is a regexp which matches the gdb prompt.
137 # Set it if it is not already set. This is also set by default_gdb_init
138 # but it's not clear what removing one of them will break.
139 # See with_gdb_prompt for more details on prompt handling.
140 global gdb_prompt
141 if ![info exists gdb_prompt] then {
142 set gdb_prompt "\\(gdb\\)"
143 }
144
145 # A regexp that matches the pagination prompt.
146 set pagination_prompt \
147 "--Type <RET> for more, q to quit, c to continue without paging--"
148
149 # The variable fullname_syntax_POSIX is a regexp which matches a POSIX
150 # absolute path ie. /foo/
151 set fullname_syntax_POSIX {/[^\n]*/}
152 # The variable fullname_syntax_UNC is a regexp which matches a Windows
153 # UNC path ie. \\D\foo\
154 set fullname_syntax_UNC {\\\\[^\\]+\\[^\n]+\\}
155 # The variable fullname_syntax_DOS_CASE is a regexp which matches a
156 # particular DOS case that GDB most likely will output
157 # ie. \foo\, but don't match \\.*\
158 set fullname_syntax_DOS_CASE {\\[^\\][^\n]*\\}
159 # The variable fullname_syntax_DOS is a regexp which matches a DOS path
160 # ie. a:\foo\ && a:foo\
161 set fullname_syntax_DOS {[a-zA-Z]:[^\n]*\\}
162 # The variable fullname_syntax is a regexp which matches what GDB considers
163 # an absolute path. It is currently debatable if the Windows style paths
164 # d:foo and \abc should be considered valid as an absolute path.
165 # Also, the purpse of this regexp is not to recognize a well formed
166 # absolute path, but to say with certainty that a path is absolute.
167 set fullname_syntax "($fullname_syntax_POSIX|$fullname_syntax_UNC|$fullname_syntax_DOS_CASE|$fullname_syntax_DOS)"
168
169 # Needed for some tests under Cygwin.
170 global EXEEXT
171 global env
172
173 if ![info exists env(EXEEXT)] {
174 set EXEEXT ""
175 } else {
176 set EXEEXT $env(EXEEXT)
177 }
178
179 set octal "\[0-7\]+"
180
181 set inferior_exited_re "(?:\\\[Inferior \[0-9\]+ \\(\[^\n\r\]*\\) exited)"
182
183 # A regular expression that matches a value history number.
184 # E.g., $1, $2, etc.
185 set valnum_re "\\\$$decimal"
186
187 ### Only procedures should come after this point.
188
189 #
190 # gdb_version -- extract and print the version number of GDB
191 #
192 proc default_gdb_version {} {
193 global GDB
194 global INTERNAL_GDBFLAGS GDBFLAGS
195 global gdb_prompt
196 global inotify_pid
197
198 if {[info exists inotify_pid]} {
199 eval exec kill $inotify_pid
200 }
201
202 set output [remote_exec host "$GDB $INTERNAL_GDBFLAGS --version"]
203 set tmp [lindex $output 1]
204 set version ""
205 regexp " \[0-9\]\[^ \t\n\r\]+" "$tmp" version
206 if ![is_remote host] {
207 clone_output "[which $GDB] version $version $INTERNAL_GDBFLAGS $GDBFLAGS\n"
208 } else {
209 clone_output "$GDB on remote host version $version $INTERNAL_GDBFLAGS $GDBFLAGS\n"
210 }
211 }
212
213 proc gdb_version { } {
214 return [default_gdb_version]
215 }
216
217 #
218 # gdb_unload -- unload a file if one is loaded
219 # Return 0 on success, -1 on error.
220 #
221
222 proc gdb_unload {} {
223 global GDB
224 global gdb_prompt
225 send_gdb "file\n"
226 gdb_expect 60 {
227 -re "No executable file now\[^\r\n\]*\[\r\n\]" { exp_continue }
228 -re "No symbol file now\[^\r\n\]*\[\r\n\]" { exp_continue }
229 -re "A program is being debugged already.*Are you sure you want to change the file.*y or n. $" {
230 send_gdb "y\n" answer
231 exp_continue
232 }
233 -re "Discard symbol table from .*y or n.*$" {
234 send_gdb "y\n" answer
235 exp_continue
236 }
237 -re "$gdb_prompt $" {}
238 timeout {
239 perror "couldn't unload file in $GDB (timeout)."
240 return -1
241 }
242 }
243 return 0
244 }
245
246 # Many of the tests depend on setting breakpoints at various places and
247 # running until that breakpoint is reached. At times, we want to start
248 # with a clean-slate with respect to breakpoints, so this utility proc
249 # lets us do this without duplicating this code everywhere.
250 #
251
252 proc delete_breakpoints {} {
253 global gdb_prompt
254
255 # we need a larger timeout value here or this thing just confuses
256 # itself. May need a better implementation if possible. - guo
257 #
258 set timeout 100
259
260 set msg "delete all breakpoints in delete_breakpoints"
261 set deleted 0
262 gdb_test_multiple "delete breakpoints" "$msg" {
263 -re "Delete all breakpoints.*y or n.*$" {
264 send_gdb "y\n" answer
265 exp_continue
266 }
267 -re "$gdb_prompt $" {
268 set deleted 1
269 }
270 }
271
272 if {$deleted} {
273 # Confirm with "info breakpoints".
274 set deleted 0
275 set msg "info breakpoints"
276 gdb_test_multiple $msg $msg {
277 -re "No breakpoints or watchpoints..*$gdb_prompt $" {
278 set deleted 1
279 }
280 -re "$gdb_prompt $" {
281 }
282 }
283 }
284
285 if {!$deleted} {
286 perror "breakpoints not deleted"
287 }
288 }
289
290 # Returns true iff the target supports using the "run" command.
291
292 proc target_can_use_run_cmd {} {
293 if [target_info exists use_gdb_stub] {
294 # In this case, when we connect, the inferior is already
295 # running.
296 return 0
297 }
298
299 # Assume yes.
300 return 1
301 }
302
303 # Generic run command.
304 #
305 # Return 0 if we could start the program, -1 if we could not.
306 #
307 # The second pattern below matches up to the first newline *only*.
308 # Using ``.*$'' could swallow up output that we attempt to match
309 # elsewhere.
310 #
311 # INFERIOR_ARGS is passed as arguments to the start command, so may contain
312 # inferior arguments.
313 #
314 # N.B. This function does not wait for gdb to return to the prompt,
315 # that is the caller's responsibility.
316
317 proc gdb_run_cmd { {inferior_args {}} } {
318 global gdb_prompt use_gdb_stub
319
320 foreach command [gdb_init_commands] {
321 send_gdb "$command\n"
322 gdb_expect 30 {
323 -re "$gdb_prompt $" { }
324 default {
325 perror "gdb_init_command for target failed"
326 return
327 }
328 }
329 }
330
331 if $use_gdb_stub {
332 if [target_info exists gdb,do_reload_on_run] {
333 if { [gdb_reload $inferior_args] != 0 } {
334 return -1
335 }
336 send_gdb "continue\n"
337 gdb_expect 60 {
338 -re "Continu\[^\r\n\]*\[\r\n\]" {}
339 default {}
340 }
341 return 0
342 }
343
344 if [target_info exists gdb,start_symbol] {
345 set start [target_info gdb,start_symbol]
346 } else {
347 set start "start"
348 }
349 send_gdb "jump *$start\n"
350 set start_attempt 1
351 while { $start_attempt } {
352 # Cap (re)start attempts at three to ensure that this loop
353 # always eventually fails. Don't worry about trying to be
354 # clever and not send a command when it has failed.
355 if [expr $start_attempt > 3] {
356 perror "Jump to start() failed (retry count exceeded)"
357 return -1
358 }
359 set start_attempt [expr $start_attempt + 1]
360 gdb_expect 30 {
361 -re "Continuing at \[^\r\n\]*\[\r\n\]" {
362 set start_attempt 0
363 }
364 -re "No symbol \"_start\" in current.*$gdb_prompt $" {
365 perror "Can't find start symbol to run in gdb_run"
366 return -1
367 }
368 -re "No symbol \"start\" in current.*$gdb_prompt $" {
369 send_gdb "jump *_start\n"
370 }
371 -re "No symbol.*context.*$gdb_prompt $" {
372 set start_attempt 0
373 }
374 -re "Line.* Jump anyway.*y or n. $" {
375 send_gdb "y\n" answer
376 }
377 -re "The program is not being run.*$gdb_prompt $" {
378 if { [gdb_reload $inferior_args] != 0 } {
379 return -1
380 }
381 send_gdb "jump *$start\n"
382 }
383 timeout {
384 perror "Jump to start() failed (timeout)"
385 return -1
386 }
387 }
388 }
389
390 return 0
391 }
392
393 if [target_info exists gdb,do_reload_on_run] {
394 if { [gdb_reload $inferior_args] != 0 } {
395 return -1
396 }
397 }
398 send_gdb "run $inferior_args\n"
399 # This doesn't work quite right yet.
400 # Use -notransfer here so that test cases (like chng-sym.exp)
401 # may test for additional start-up messages.
402 gdb_expect 60 {
403 -re "The program .* has been started already.*y or n. $" {
404 send_gdb "y\n" answer
405 exp_continue
406 }
407 -notransfer -re "Starting program: \[^\r\n\]*" {}
408 -notransfer -re "$gdb_prompt $" {
409 # There is no more input expected.
410 }
411 }
412
413 return 0
414 }
415
416 # Generic start command. Return 0 if we could start the program, -1
417 # if we could not.
418 #
419 # INFERIOR_ARGS is passed as arguments to the start command, so may contain
420 # inferior arguments.
421 #
422 # N.B. This function does not wait for gdb to return to the prompt,
423 # that is the caller's responsibility.
424
425 proc gdb_start_cmd { {inferior_args {}} } {
426 global gdb_prompt use_gdb_stub
427
428 foreach command [gdb_init_commands] {
429 send_gdb "$command\n"
430 gdb_expect 30 {
431 -re "$gdb_prompt $" { }
432 default {
433 perror "gdb_init_command for target failed"
434 return -1
435 }
436 }
437 }
438
439 if $use_gdb_stub {
440 return -1
441 }
442
443 send_gdb "start $inferior_args\n"
444 # Use -notransfer here so that test cases (like chng-sym.exp)
445 # may test for additional start-up messages.
446 gdb_expect 60 {
447 -re "The program .* has been started already.*y or n. $" {
448 send_gdb "y\n" answer
449 exp_continue
450 }
451 -notransfer -re "Starting program: \[^\r\n\]*" {
452 return 0
453 }
454 }
455 return -1
456 }
457
458 # Generic starti command. Return 0 if we could start the program, -1
459 # if we could not.
460 #
461 # INFERIOR_ARGS is passed as arguments to the starti command, so may contain
462 # inferior arguments.
463 #
464 # N.B. This function does not wait for gdb to return to the prompt,
465 # that is the caller's responsibility.
466
467 proc gdb_starti_cmd { {inferior_args {}} } {
468 global gdb_prompt use_gdb_stub
469
470 foreach command [gdb_init_commands] {
471 send_gdb "$command\n"
472 gdb_expect 30 {
473 -re "$gdb_prompt $" { }
474 default {
475 perror "gdb_init_command for target failed"
476 return -1
477 }
478 }
479 }
480
481 if $use_gdb_stub {
482 return -1
483 }
484
485 send_gdb "starti $inferior_args\n"
486 gdb_expect 60 {
487 -re "The program .* has been started already.*y or n. $" {
488 send_gdb "y\n" answer
489 exp_continue
490 }
491 -re "Starting program: \[^\r\n\]*" {
492 return 0
493 }
494 }
495 return -1
496 }
497
498 # Set a breakpoint at FUNCTION. If there is an additional argument it is
499 # a list of options; the supported options are allow-pending, temporary,
500 # message, no-message and qualified.
501 # The result is 1 for success, 0 for failure.
502 #
503 # Note: The handling of message vs no-message is messed up, but it's based
504 # on historical usage. By default this function does not print passes,
505 # only fails.
506 # no-message: turns off printing of fails (and passes, but they're already off)
507 # message: turns on printing of passes (and fails, but they're already on)
508
509 proc gdb_breakpoint { function args } {
510 global gdb_prompt
511 global decimal
512
513 set pending_response n
514 if {[lsearch -exact $args allow-pending] != -1} {
515 set pending_response y
516 }
517
518 set break_command "break"
519 set break_message "Breakpoint"
520 if {[lsearch -exact $args temporary] != -1} {
521 set break_command "tbreak"
522 set break_message "Temporary breakpoint"
523 }
524
525 if {[lsearch -exact $args qualified] != -1} {
526 append break_command " -qualified"
527 }
528
529 set print_pass 0
530 set print_fail 1
531 set no_message_loc [lsearch -exact $args no-message]
532 set message_loc [lsearch -exact $args message]
533 # The last one to appear in args wins.
534 if { $no_message_loc > $message_loc } {
535 set print_fail 0
536 } elseif { $message_loc > $no_message_loc } {
537 set print_pass 1
538 }
539
540 set test_name "setting breakpoint at $function"
541
542 send_gdb "$break_command $function\n"
543 # The first two regexps are what we get with -g, the third is without -g.
544 gdb_expect 30 {
545 -re "$break_message \[0-9\]* at .*: file .*, line $decimal.\r\n$gdb_prompt $" {}
546 -re "$break_message \[0-9\]*: file .*, line $decimal.\r\n$gdb_prompt $" {}
547 -re "$break_message \[0-9\]* at .*$gdb_prompt $" {}
548 -re "$break_message \[0-9\]* \\(.*\\) pending.*$gdb_prompt $" {
549 if {$pending_response == "n"} {
550 if { $print_fail } {
551 fail $test_name
552 }
553 return 0
554 }
555 }
556 -re "Make breakpoint pending.*y or \\\[n\\\]. $" {
557 send_gdb "$pending_response\n"
558 exp_continue
559 }
560 -re "A problem internal to GDB has been detected" {
561 if { $print_fail } {
562 fail "$test_name (GDB internal error)"
563 }
564 gdb_internal_error_resync
565 return 0
566 }
567 -re "$gdb_prompt $" {
568 if { $print_fail } {
569 fail $test_name
570 }
571 return 0
572 }
573 eof {
574 perror "GDB process no longer exists"
575 global gdb_spawn_id
576 set wait_status [wait -i $gdb_spawn_id]
577 verbose -log "GDB process exited with wait status $wait_status"
578 if { $print_fail } {
579 fail "$test_name (eof)"
580 }
581 return 0
582 }
583 timeout {
584 if { $print_fail } {
585 fail "$test_name (timeout)"
586 }
587 return 0
588 }
589 }
590 if { $print_pass } {
591 pass $test_name
592 }
593 return 1
594 }
595
596 # Set breakpoint at function and run gdb until it breaks there.
597 # Since this is the only breakpoint that will be set, if it stops
598 # at a breakpoint, we will assume it is the one we want. We can't
599 # just compare to "function" because it might be a fully qualified,
600 # single quoted C++ function specifier.
601 #
602 # If there are additional arguments, pass them to gdb_breakpoint.
603 # We recognize no-message/message ourselves.
604 # The default is no-message.
605 # no-message is messed up here, like gdb_breakpoint: to preserve
606 # historical usage fails are always printed by default.
607 # no-message: turns off printing of fails (and passes, but they're already off)
608 # message: turns on printing of passes (and fails, but they're already on)
609
610 proc runto { function args } {
611 global gdb_prompt
612 global decimal
613
614 delete_breakpoints
615
616 # Default to "no-message".
617 set args "no-message $args"
618
619 set print_pass 0
620 set print_fail 1
621 set no_message_loc [lsearch -exact $args no-message]
622 set message_loc [lsearch -exact $args message]
623 # The last one to appear in args wins.
624 if { $no_message_loc > $message_loc } {
625 set print_fail 0
626 } elseif { $message_loc > $no_message_loc } {
627 set print_pass 1
628 }
629
630 set test_name "running to $function in runto"
631
632 # We need to use eval here to pass our varargs args to gdb_breakpoint
633 # which is also a varargs function.
634 # But we also have to be careful because $function may have multiple
635 # elements, and we don't want Tcl to move the remaining elements after
636 # the first to $args. That is why $function is wrapped in {}.
637 if ![eval gdb_breakpoint {$function} $args] {
638 return 0
639 }
640
641 gdb_run_cmd
642
643 # the "at foo.c:36" output we get with -g.
644 # the "in func" output we get without -g.
645 gdb_expect 30 {
646 -re "Break.* at .*:$decimal.*$gdb_prompt $" {
647 if { $print_pass } {
648 pass $test_name
649 }
650 return 1
651 }
652 -re "Breakpoint \[0-9\]*, \[0-9xa-f\]* in .*$gdb_prompt $" {
653 if { $print_pass } {
654 pass $test_name
655 }
656 return 1
657 }
658 -re "The target does not support running in non-stop mode.\r\n$gdb_prompt $" {
659 if { $print_fail } {
660 unsupported "non-stop mode not supported"
661 }
662 return 0
663 }
664 -re ".*A problem internal to GDB has been detected" {
665 # Always emit a FAIL if we encounter an internal error: internal
666 # errors are never expected.
667 fail "$test_name (GDB internal error)"
668 gdb_internal_error_resync
669 return 0
670 }
671 -re "$gdb_prompt $" {
672 if { $print_fail } {
673 fail $test_name
674 }
675 return 0
676 }
677 eof {
678 if { $print_fail } {
679 fail "$test_name (eof)"
680 }
681 return 0
682 }
683 timeout {
684 if { $print_fail } {
685 fail "$test_name (timeout)"
686 }
687 return 0
688 }
689 }
690 if { $print_pass } {
691 pass $test_name
692 }
693 return 1
694 }
695
696 # Ask gdb to run until we hit a breakpoint at main.
697 #
698 # N.B. This function deletes all existing breakpoints.
699 # If you don't want that, use gdb_start_cmd.
700
701 proc runto_main { } {
702 return [runto main no-message qualified]
703 }
704
705 ### Continue, and expect to hit a breakpoint.
706 ### Report a pass or fail, depending on whether it seems to have
707 ### worked. Use NAME as part of the test name; each call to
708 ### continue_to_breakpoint should use a NAME which is unique within
709 ### that test file.
710 proc gdb_continue_to_breakpoint {name {location_pattern .*}} {
711 global gdb_prompt
712 set full_name "continue to breakpoint: $name"
713
714 set kfail_pattern "Process record does not support instruction 0xfae64 at.*"
715 gdb_test_multiple "continue" $full_name {
716 -re "(?:Breakpoint|Temporary breakpoint) .* (at|in) $location_pattern\r\n$gdb_prompt $" {
717 pass $full_name
718 }
719 -re "\[\r\n\]*(?:$kfail_pattern)\[\r\n\]+$gdb_prompt $" {
720 kfail "gdb/25038" $full_name
721 }
722 }
723 }
724
725
726 # gdb_internal_error_resync:
727 #
728 # Answer the questions GDB asks after it reports an internal error
729 # until we get back to a GDB prompt. Decline to quit the debugging
730 # session, and decline to create a core file. Return non-zero if the
731 # resync succeeds.
732 #
733 # This procedure just answers whatever questions come up until it sees
734 # a GDB prompt; it doesn't require you to have matched the input up to
735 # any specific point. However, it only answers questions it sees in
736 # the output itself, so if you've matched a question, you had better
737 # answer it yourself before calling this.
738 #
739 # You can use this function thus:
740 #
741 # gdb_expect {
742 # ...
743 # -re ".*A problem internal to GDB has been detected" {
744 # gdb_internal_error_resync
745 # }
746 # ...
747 # }
748 #
749 proc gdb_internal_error_resync {} {
750 global gdb_prompt
751
752 verbose -log "Resyncing due to internal error."
753
754 set count 0
755 while {$count < 10} {
756 gdb_expect {
757 -re "Quit this debugging session\\? \\(y or n\\) $" {
758 send_gdb "n\n" answer
759 incr count
760 }
761 -re "Create a core file of GDB\\? \\(y or n\\) $" {
762 send_gdb "n\n" answer
763 incr count
764 }
765 -re "$gdb_prompt $" {
766 # We're resynchronized.
767 return 1
768 }
769 timeout {
770 perror "Could not resync from internal error (timeout)"
771 return 0
772 }
773 }
774 }
775 perror "Could not resync from internal error (resync count exceeded)"
776 return 0
777 }
778
779
780 # gdb_test_multiple COMMAND MESSAGE [ -promp PROMPT_REGEXP] [ -lbl ]
781 # EXPECT_ARGUMENTS
782 # Send a command to gdb; test the result.
783 #
784 # COMMAND is the command to execute, send to GDB with send_gdb. If
785 # this is the null string no command is sent.
786 # MESSAGE is a message to be printed with the built-in failure patterns
787 # if one of them matches. If MESSAGE is empty COMMAND will be used.
788 # -prompt PROMPT_REGEXP specifies a regexp matching the expected prompt
789 # after the command output. If empty, defaults to "$gdb_prompt $".
790 # -lbl specifies that line-by-line matching will be used.
791 # EXPECT_ARGUMENTS will be fed to expect in addition to the standard
792 # patterns. Pattern elements will be evaluated in the caller's
793 # context; action elements will be executed in the caller's context.
794 # Unlike patterns for gdb_test, these patterns should generally include
795 # the final newline and prompt.
796 #
797 # Returns:
798 # 1 if the test failed, according to a built-in failure pattern
799 # 0 if only user-supplied patterns matched
800 # -1 if there was an internal error.
801 #
802 # You can use this function thus:
803 #
804 # gdb_test_multiple "print foo" "test foo" {
805 # -re "expected output 1" {
806 # pass "test foo"
807 # }
808 # -re "expected output 2" {
809 # fail "test foo"
810 # }
811 # }
812 #
813 # Within action elements you can also make use of the variable
814 # gdb_test_name. This variable is setup automatically by
815 # gdb_test_multiple, and contains the value of MESSAGE. You can then
816 # write this, which is equivalent to the above:
817 #
818 # gdb_test_multiple "print foo" "test foo" {
819 # -re "expected output 1" {
820 # pass $gdb_test_name
821 # }
822 # -re "expected output 2" {
823 # fail $gdb_test_name
824 # }
825 # }
826 #
827 # Like with "expect", you can also specify the spawn id to match with
828 # -i "$id". Interesting spawn ids are $inferior_spawn_id and
829 # $gdb_spawn_id. The former matches inferior I/O, while the latter
830 # matches GDB I/O. E.g.:
831 #
832 # send_inferior "hello\n"
833 # gdb_test_multiple "continue" "test echo" {
834 # -i "$inferior_spawn_id" -re "^hello\r\nhello\r\n$" {
835 # pass "got echo"
836 # }
837 # -i "$gdb_spawn_id" -re "Breakpoint.*$gdb_prompt $" {
838 # fail "hit breakpoint"
839 # }
840 # }
841 #
842 # The standard patterns, such as "Inferior exited..." and "A problem
843 # ...", all being implicitly appended to that list. These are always
844 # expected from $gdb_spawn_id. IOW, callers do not need to worry
845 # about resetting "-i" back to $gdb_spawn_id explicitly.
846 #
847 # In EXPECT_ARGUMENTS we can use a -wrap pattern flag, that wraps the regexp
848 # pattern as gdb_test wraps its message argument.
849 # This allows us to rewrite:
850 # gdb_test <command> <pattern> <message>
851 # into:
852 # gdb_test_multiple <command> <message> {
853 # -re -wrap <pattern> {
854 # pass $gdb_test_name
855 # }
856 # }
857 #
858 # In EXPECT_ARGUMENTS, a pattern flag -early can be used. It makes sure the
859 # pattern is inserted before any implicit pattern added by gdb_test_multiple.
860 # Using this pattern flag, we can f.i. setup a kfail for an assertion failure
861 # <assert> during gdb_continue_to_breakpoint by the rewrite:
862 # gdb_continue_to_breakpoint <msg> <pattern>
863 # into:
864 # set breakpoint_pattern "(?:Breakpoint|Temporary breakpoint) .* (at|in)"
865 # gdb_test_multiple "continue" "continue to breakpoint: <msg>" {
866 # -early -re "internal-error: <assert>" {
867 # setup_kfail gdb/nnnnn "*-*-*"
868 # exp_continue
869 # }
870 # -re "$breakpoint_pattern <pattern>\r\n$gdb_prompt $" {
871 # pass $gdb_test_name
872 # }
873 # }
874 #
875 proc gdb_test_multiple { command message args } {
876 global verbose use_gdb_stub
877 global gdb_prompt pagination_prompt
878 global GDB
879 global gdb_spawn_id
880 global inferior_exited_re
881 upvar timeout timeout
882 upvar expect_out expect_out
883 global any_spawn_id
884
885 set line_by_line 0
886 set prompt_regexp ""
887 for {set i 0} {$i < [llength $args]} {incr i} {
888 set arg [lindex $args $i]
889 if { $arg == "-prompt" } {
890 incr i
891 set prompt_regexp [lindex $args $i]
892 } elseif { $arg == "-lbl" } {
893 set line_by_line 1
894 } else {
895 set user_code $arg
896 break
897 }
898 }
899 if { [expr $i + 1] < [llength $args] } {
900 error "Too many arguments to gdb_test_multiple"
901 } elseif { ![info exists user_code] } {
902 error "Too few arguments to gdb_test_multiple"
903 }
904
905 if { "$prompt_regexp" == "" } {
906 set prompt_regexp "$gdb_prompt $"
907 }
908
909 if { $message == "" } {
910 set message $command
911 }
912
913 if [string match "*\[\r\n\]" $command] {
914 error "Invalid trailing newline in \"$message\" test"
915 }
916
917 if [string match "*\[\r\n\]*" $message] {
918 error "Invalid newline in \"$message\" test"
919 }
920
921 if {$use_gdb_stub
922 && [regexp -nocase {^\s*(r|run|star|start|at|att|atta|attac|attach)\M} \
923 $command]} {
924 error "gdbserver does not support $command without extended-remote"
925 }
926
927 # TCL/EXPECT WART ALERT
928 # Expect does something very strange when it receives a single braced
929 # argument. It splits it along word separators and performs substitutions.
930 # This means that { "[ab]" } is evaluated as "[ab]", but { "\[ab\]" } is
931 # evaluated as "\[ab\]". But that's not how TCL normally works; inside a
932 # double-quoted list item, "\[ab\]" is just a long way of representing
933 # "[ab]", because the backslashes will be removed by lindex.
934
935 # Unfortunately, there appears to be no easy way to duplicate the splitting
936 # that expect will do from within TCL. And many places make use of the
937 # "\[0-9\]" construct, so we need to support that; and some places make use
938 # of the "[func]" construct, so we need to support that too. In order to
939 # get this right we have to substitute quoted list elements differently
940 # from braced list elements.
941
942 # We do this roughly the same way that Expect does it. We have to use two
943 # lists, because if we leave unquoted newlines in the argument to uplevel
944 # they'll be treated as command separators, and if we escape newlines
945 # we mangle newlines inside of command blocks. This assumes that the
946 # input doesn't contain a pattern which contains actual embedded newlines
947 # at this point!
948
949 regsub -all {\n} ${user_code} { } subst_code
950 set subst_code [uplevel list $subst_code]
951
952 set processed_code ""
953 set early_processed_code ""
954 # The variable current_list holds the name of the currently processed
955 # list, either processed_code or early_processed_code.
956 set current_list "processed_code"
957 set patterns ""
958 set expecting_action 0
959 set expecting_arg 0
960 set wrap_pattern 0
961 foreach item $user_code subst_item $subst_code {
962 if { $item == "-n" || $item == "-notransfer" || $item == "-nocase" } {
963 lappend $current_list $item
964 continue
965 }
966 if { $item == "-indices" || $item == "-re" || $item == "-ex" } {
967 lappend $current_list $item
968 continue
969 }
970 if { $item == "-early" } {
971 set current_list "early_processed_code"
972 continue
973 }
974 if { $item == "-timeout" || $item == "-i" } {
975 set expecting_arg 1
976 lappend $current_list $item
977 continue
978 }
979 if { $item == "-wrap" } {
980 set wrap_pattern 1
981 continue
982 }
983 if { $expecting_arg } {
984 set expecting_arg 0
985 lappend $current_list $subst_item
986 continue
987 }
988 if { $expecting_action } {
989 lappend $current_list "uplevel [list $item]"
990 set expecting_action 0
991 # Cosmetic, no effect on the list.
992 append $current_list "\n"
993 # End the effect of -early, it only applies to one action.
994 set current_list "processed_code"
995 continue
996 }
997 set expecting_action 1
998 if { $wrap_pattern } {
999 # Wrap subst_item as is done for the gdb_test PATTERN argument.
1000 lappend $current_list \
1001 "\[\r\n\]*(?:$subst_item)\[\r\n\]+$gdb_prompt $"
1002 set wrap_pattern 0
1003 } else {
1004 lappend $current_list $subst_item
1005 }
1006 if {$patterns != ""} {
1007 append patterns "; "
1008 }
1009 append patterns "\"$subst_item\""
1010 }
1011
1012 # Also purely cosmetic.
1013 regsub -all {\r} $patterns {\\r} patterns
1014 regsub -all {\n} $patterns {\\n} patterns
1015
1016 if $verbose>2 then {
1017 send_user "Sending \"$command\" to gdb\n"
1018 send_user "Looking to match \"$patterns\"\n"
1019 send_user "Message is \"$message\"\n"
1020 }
1021
1022 set result -1
1023 set string "${command}\n"
1024 if { $command != "" } {
1025 set multi_line_re "\[\r\n\] *>"
1026 while { "$string" != "" } {
1027 set foo [string first "\n" "$string"]
1028 set len [string length "$string"]
1029 if { $foo < [expr $len - 1] } {
1030 set str [string range "$string" 0 $foo]
1031 if { [send_gdb "$str"] != "" } {
1032 global suppress_flag
1033
1034 if { ! $suppress_flag } {
1035 perror "Couldn't send $command to GDB."
1036 }
1037 fail "$message"
1038 return $result
1039 }
1040 # since we're checking if each line of the multi-line
1041 # command are 'accepted' by GDB here,
1042 # we need to set -notransfer expect option so that
1043 # command output is not lost for pattern matching
1044 # - guo
1045 gdb_expect 2 {
1046 -notransfer -re "$multi_line_re$" { verbose "partial: match" 3 }
1047 timeout { verbose "partial: timeout" 3 }
1048 }
1049 set string [string range "$string" [expr $foo + 1] end]
1050 set multi_line_re "$multi_line_re.*\[\r\n\] *>"
1051 } else {
1052 break
1053 }
1054 }
1055 if { "$string" != "" } {
1056 if { [send_gdb "$string"] != "" } {
1057 global suppress_flag
1058
1059 if { ! $suppress_flag } {
1060 perror "Couldn't send $command to GDB."
1061 }
1062 fail "$message"
1063 return $result
1064 }
1065 }
1066 }
1067
1068 set code $early_processed_code
1069 append code {
1070 -re ".*A problem internal to GDB has been detected" {
1071 fail "$message (GDB internal error)"
1072 gdb_internal_error_resync
1073 set result -1
1074 }
1075 -re "\\*\\*\\* DOSEXIT code.*" {
1076 if { $message != "" } {
1077 fail "$message"
1078 }
1079 gdb_suppress_entire_file "GDB died"
1080 set result -1
1081 }
1082 }
1083 append code $processed_code
1084
1085 # Reset the spawn id, in case the processed code used -i.
1086 append code {
1087 -i "$gdb_spawn_id"
1088 }
1089
1090 append code {
1091 -re "Ending remote debugging.*$prompt_regexp" {
1092 if ![isnative] then {
1093 warning "Can`t communicate to remote target."
1094 }
1095 gdb_exit
1096 gdb_start
1097 set result -1
1098 }
1099 -re "Undefined\[a-z\]* command:.*$prompt_regexp" {
1100 perror "Undefined command \"$command\"."
1101 fail "$message"
1102 set result 1
1103 }
1104 -re "Ambiguous command.*$prompt_regexp" {
1105 perror "\"$command\" is not a unique command name."
1106 fail "$message"
1107 set result 1
1108 }
1109 -re "$inferior_exited_re with code \[0-9\]+.*$prompt_regexp" {
1110 if ![string match "" $message] then {
1111 set errmsg "$message (the program exited)"
1112 } else {
1113 set errmsg "$command (the program exited)"
1114 }
1115 fail "$errmsg"
1116 set result -1
1117 }
1118 -re "$inferior_exited_re normally.*$prompt_regexp" {
1119 if ![string match "" $message] then {
1120 set errmsg "$message (the program exited)"
1121 } else {
1122 set errmsg "$command (the program exited)"
1123 }
1124 fail "$errmsg"
1125 set result -1
1126 }
1127 -re "The program is not being run.*$prompt_regexp" {
1128 if ![string match "" $message] then {
1129 set errmsg "$message (the program is no longer running)"
1130 } else {
1131 set errmsg "$command (the program is no longer running)"
1132 }
1133 fail "$errmsg"
1134 set result -1
1135 }
1136 -re "\r\n$prompt_regexp" {
1137 if ![string match "" $message] then {
1138 fail "$message"
1139 }
1140 set result 1
1141 }
1142 -re "$pagination_prompt" {
1143 send_gdb "\n"
1144 perror "Window too small."
1145 fail "$message"
1146 set result -1
1147 }
1148 -re "\\((y or n|y or \\\[n\\\]|\\\[y\\\] or n)\\) " {
1149 send_gdb "n\n" answer
1150 gdb_expect -re "$prompt_regexp"
1151 fail "$message (got interactive prompt)"
1152 set result -1
1153 }
1154 -re "\\\[0\\\] cancel\r\n\\\[1\\\] all.*\r\n> $" {
1155 send_gdb "0\n"
1156 gdb_expect -re "$prompt_regexp"
1157 fail "$message (got breakpoint menu)"
1158 set result -1
1159 }
1160
1161 -i $gdb_spawn_id
1162 eof {
1163 perror "GDB process no longer exists"
1164 set wait_status [wait -i $gdb_spawn_id]
1165 verbose -log "GDB process exited with wait status $wait_status"
1166 if { $message != "" } {
1167 fail "$message"
1168 }
1169 return -1
1170 }
1171 }
1172
1173 if {$line_by_line} {
1174 append code {
1175 -re "\r\n\[^\r\n\]*(?=\r\n)" {
1176 exp_continue
1177 }
1178 }
1179 }
1180
1181 # Now patterns that apply to any spawn id specified.
1182 append code {
1183 -i $any_spawn_id
1184 eof {
1185 perror "Process no longer exists"
1186 if { $message != "" } {
1187 fail "$message"
1188 }
1189 return -1
1190 }
1191 full_buffer {
1192 perror "internal buffer is full."
1193 fail "$message"
1194 set result -1
1195 }
1196 timeout {
1197 if ![string match "" $message] then {
1198 fail "$message (timeout)"
1199 }
1200 set result 1
1201 }
1202 }
1203
1204 # remote_expect calls the eof section if there is an error on the
1205 # expect call. We already have eof sections above, and we don't
1206 # want them to get called in that situation. Since the last eof
1207 # section becomes the error section, here we define another eof
1208 # section, but with an empty spawn_id list, so that it won't ever
1209 # match.
1210 append code {
1211 -i "" eof {
1212 # This comment is here because the eof section must not be
1213 # the empty string, otherwise remote_expect won't realize
1214 # it exists.
1215 }
1216 }
1217
1218 # Create gdb_test_name in the parent scope. If this variable
1219 # already exists, which it might if we have nested calls to
1220 # gdb_test_multiple, then preserve the old value, otherwise,
1221 # create a new variable in the parent scope.
1222 upvar gdb_test_name gdb_test_name
1223 if { [info exists gdb_test_name] } {
1224 set gdb_test_name_old "$gdb_test_name"
1225 }
1226 set gdb_test_name "$message"
1227
1228 set result 0
1229 set code [catch {gdb_expect $code} string]
1230
1231 # Clean up the gdb_test_name variable. If we had a
1232 # previous value then restore it, otherwise, delete the variable
1233 # from the parent scope.
1234 if { [info exists gdb_test_name_old] } {
1235 set gdb_test_name "$gdb_test_name_old"
1236 } else {
1237 unset gdb_test_name
1238 }
1239
1240 if {$code == 1} {
1241 global errorInfo errorCode
1242 return -code error -errorinfo $errorInfo -errorcode $errorCode $string
1243 } elseif {$code > 1} {
1244 return -code $code $string
1245 }
1246 return $result
1247 }
1248
1249 # Usage: gdb_test_multiline NAME INPUT RESULT {INPUT RESULT} ...
1250 # Run a test named NAME, consisting of multiple lines of input.
1251 # After each input line INPUT, search for result line RESULT.
1252 # Succeed if all results are seen; fail otherwise.
1253
1254 proc gdb_test_multiline { name args } {
1255 global gdb_prompt
1256 set inputnr 0
1257 foreach {input result} $args {
1258 incr inputnr
1259 if {[gdb_test_multiple $input "$name: input $inputnr: $input" {
1260 -re "\[\r\n\]*($result)\[\r\n\]+($gdb_prompt | *>)$" {
1261 pass $gdb_test_name
1262 }
1263 }]} {
1264 return 1
1265 }
1266 }
1267 return 0
1268 }
1269
1270
1271 # gdb_test COMMAND PATTERN MESSAGE QUESTION RESPONSE
1272 # Send a command to gdb; test the result.
1273 #
1274 # COMMAND is the command to execute, send to GDB with send_gdb. If
1275 # this is the null string no command is sent.
1276 # PATTERN is the pattern to match for a PASS, and must NOT include
1277 # the \r\n sequence immediately before the gdb prompt. This argument
1278 # may be omitted to just match the prompt, ignoring whatever output
1279 # precedes it.
1280 # MESSAGE is an optional message to be printed. If this is
1281 # omitted, then the pass/fail messages use the command string as the
1282 # message. (If this is the empty string, then sometimes we don't
1283 # call pass or fail at all; I don't understand this at all.)
1284 # QUESTION is a question GDB may ask in response to COMMAND, like
1285 # "are you sure?"
1286 # RESPONSE is the response to send if QUESTION appears.
1287 #
1288 # Returns:
1289 # 1 if the test failed,
1290 # 0 if the test passes,
1291 # -1 if there was an internal error.
1292 #
1293 proc gdb_test { args } {
1294 global gdb_prompt
1295 upvar timeout timeout
1296
1297 if [llength $args]>2 then {
1298 set message [lindex $args 2]
1299 } else {
1300 set message [lindex $args 0]
1301 }
1302 set command [lindex $args 0]
1303 set pattern [lindex $args 1]
1304
1305 set user_code {}
1306 lappend user_code {
1307 -re "\[\r\n\]*(?:$pattern)\[\r\n\]+$gdb_prompt $" {
1308 if ![string match "" $message] then {
1309 pass "$message"
1310 }
1311 }
1312 }
1313
1314 if { [llength $args] == 5 } {
1315 set question_string [lindex $args 3]
1316 set response_string [lindex $args 4]
1317 lappend user_code {
1318 -re "(${question_string})$" {
1319 send_gdb "$response_string\n"
1320 exp_continue
1321 }
1322 }
1323 }
1324
1325 set user_code [join $user_code]
1326 return [gdb_test_multiple $command $message $user_code]
1327 }
1328
1329 # Return 1 if version MAJOR.MINOR is at least AT_LEAST_MAJOR.AT_LEAST_MINOR.
1330 proc version_at_least { major minor at_least_major at_least_minor} {
1331 if { $major > $at_least_major } {
1332 return 1
1333 } elseif { $major == $at_least_major \
1334 && $minor >= $at_least_minor } {
1335 return 1
1336 } else {
1337 return 0
1338 }
1339 }
1340
1341 # Return 1 if tcl version used is at least MAJOR.MINOR
1342 proc tcl_version_at_least { major minor } {
1343 global tcl_version
1344 regexp {^([0-9]+)\.([0-9]+)$} $tcl_version \
1345 dummy tcl_version_major tcl_version_minor
1346 return [version_at_least $tcl_version_major $tcl_version_minor \
1347 $major $minor]
1348 }
1349
1350 if { [tcl_version_at_least 8 5] == 0 } {
1351 # lrepeat was added in tcl 8.5. Only add if missing.
1352 proc lrepeat { n element } {
1353 if { [string is integer -strict $n] == 0 } {
1354 error "expected integer but got \"$n\""
1355 }
1356 if { $n < 0 } {
1357 error "bad count \"$n\": must be integer >= 0"
1358 }
1359 set res [list]
1360 for {set i 0} {$i < $n} {incr i} {
1361 lappend res $element
1362 }
1363 return $res
1364 }
1365 }
1366
1367 # gdb_test_no_output COMMAND MESSAGE
1368 # Send a command to GDB and verify that this command generated no output.
1369 #
1370 # See gdb_test_multiple for a description of the COMMAND and MESSAGE
1371 # parameters. If MESSAGE is ommitted, then COMMAND will be used as
1372 # the message. (If MESSAGE is the empty string, then sometimes we do not
1373 # call pass or fail at all; I don't understand this at all.)
1374
1375 proc gdb_test_no_output { args } {
1376 global gdb_prompt
1377 set command [lindex $args 0]
1378 if [llength $args]>1 then {
1379 set message [lindex $args 1]
1380 } else {
1381 set message $command
1382 }
1383
1384 set command_regex [string_to_regexp $command]
1385 gdb_test_multiple $command $message {
1386 -re "^$command_regex\r\n$gdb_prompt $" {
1387 if ![string match "" $message] then {
1388 pass "$message"
1389 }
1390 }
1391 }
1392 }
1393
1394 # Send a command and then wait for a sequence of outputs.
1395 # This is useful when the sequence is long and contains ".*", a single
1396 # regexp to match the entire output can get a timeout much easier.
1397 #
1398 # COMMAND is the command to execute, send to GDB with send_gdb. If
1399 # this is the null string no command is sent.
1400 # TEST_NAME is passed to pass/fail. COMMAND is used if TEST_NAME is "".
1401 # EXPECTED_OUTPUT_LIST is a list of regexps of expected output, which are
1402 # processed in order, and all must be present in the output.
1403 #
1404 # It is unnecessary to specify ".*" at the beginning or end of any regexp,
1405 # there is an implicit ".*" between each element of EXPECTED_OUTPUT_LIST.
1406 # There is also an implicit ".*" between the last regexp and the gdb prompt.
1407 #
1408 # Like gdb_test and gdb_test_multiple, the output is expected to end with the
1409 # gdb prompt, which must not be specified in EXPECTED_OUTPUT_LIST.
1410 #
1411 # Returns:
1412 # 1 if the test failed,
1413 # 0 if the test passes,
1414 # -1 if there was an internal error.
1415
1416 proc gdb_test_sequence { command test_name expected_output_list } {
1417 global gdb_prompt
1418 if { $test_name == "" } {
1419 set test_name $command
1420 }
1421 lappend expected_output_list ""; # implicit ".*" before gdb prompt
1422 if { $command != "" } {
1423 send_gdb "$command\n"
1424 }
1425 return [gdb_expect_list $test_name "$gdb_prompt $" $expected_output_list]
1426 }
1427
1428 \f
1429 # Test that a command gives an error. For pass or fail, return
1430 # a 1 to indicate that more tests can proceed. However a timeout
1431 # is a serious error, generates a special fail message, and causes
1432 # a 0 to be returned to indicate that more tests are likely to fail
1433 # as well.
1434
1435 proc test_print_reject { args } {
1436 global gdb_prompt
1437 global verbose
1438
1439 if [llength $args]==2 then {
1440 set expectthis [lindex $args 1]
1441 } else {
1442 set expectthis "should never match this bogus string"
1443 }
1444 set sendthis [lindex $args 0]
1445 if $verbose>2 then {
1446 send_user "Sending \"$sendthis\" to gdb\n"
1447 send_user "Looking to match \"$expectthis\"\n"
1448 }
1449 send_gdb "$sendthis\n"
1450 #FIXME: Should add timeout as parameter.
1451 gdb_expect {
1452 -re "A .* in expression.*\\.*$gdb_prompt $" {
1453 pass "reject $sendthis"
1454 return 1
1455 }
1456 -re "Invalid syntax in expression.*$gdb_prompt $" {
1457 pass "reject $sendthis"
1458 return 1
1459 }
1460 -re "Junk after end of expression.*$gdb_prompt $" {
1461 pass "reject $sendthis"
1462 return 1
1463 }
1464 -re "Invalid number.*$gdb_prompt $" {
1465 pass "reject $sendthis"
1466 return 1
1467 }
1468 -re "Invalid character constant.*$gdb_prompt $" {
1469 pass "reject $sendthis"
1470 return 1
1471 }
1472 -re "No symbol table is loaded.*$gdb_prompt $" {
1473 pass "reject $sendthis"
1474 return 1
1475 }
1476 -re "No symbol .* in current context.*$gdb_prompt $" {
1477 pass "reject $sendthis"
1478 return 1
1479 }
1480 -re "Unmatched single quote.*$gdb_prompt $" {
1481 pass "reject $sendthis"
1482 return 1
1483 }
1484 -re "A character constant must contain at least one character.*$gdb_prompt $" {
1485 pass "reject $sendthis"
1486 return 1
1487 }
1488 -re "$expectthis.*$gdb_prompt $" {
1489 pass "reject $sendthis"
1490 return 1
1491 }
1492 -re ".*$gdb_prompt $" {
1493 fail "reject $sendthis"
1494 return 1
1495 }
1496 default {
1497 fail "reject $sendthis (eof or timeout)"
1498 return 0
1499 }
1500 }
1501 }
1502 \f
1503
1504 # Same as gdb_test, but the second parameter is not a regexp,
1505 # but a string that must match exactly.
1506
1507 proc gdb_test_exact { args } {
1508 upvar timeout timeout
1509
1510 set command [lindex $args 0]
1511
1512 # This applies a special meaning to a null string pattern. Without
1513 # this, "$pattern\r\n$gdb_prompt $" will match anything, including error
1514 # messages from commands that should have no output except a new
1515 # prompt. With this, only results of a null string will match a null
1516 # string pattern.
1517
1518 set pattern [lindex $args 1]
1519 if [string match $pattern ""] {
1520 set pattern [string_to_regexp [lindex $args 0]]
1521 } else {
1522 set pattern [string_to_regexp [lindex $args 1]]
1523 }
1524
1525 # It is most natural to write the pattern argument with only
1526 # embedded \n's, especially if you are trying to avoid Tcl quoting
1527 # problems. But gdb_expect really wants to see \r\n in patterns. So
1528 # transform the pattern here. First transform \r\n back to \n, in
1529 # case some users of gdb_test_exact already do the right thing.
1530 regsub -all "\r\n" $pattern "\n" pattern
1531 regsub -all "\n" $pattern "\r\n" pattern
1532 if [llength $args]==3 then {
1533 set message [lindex $args 2]
1534 return [gdb_test $command $pattern $message]
1535 }
1536
1537 return [gdb_test $command $pattern]
1538 }
1539
1540 # Wrapper around gdb_test_multiple that looks for a list of expected
1541 # output elements, but which can appear in any order.
1542 # CMD is the gdb command.
1543 # NAME is the name of the test.
1544 # ELM_FIND_REGEXP specifies how to partition the output into elements to
1545 # compare.
1546 # ELM_EXTRACT_REGEXP specifies the part of ELM_FIND_REGEXP to compare.
1547 # RESULT_MATCH_LIST is a list of exact matches for each expected element.
1548 # All elements of RESULT_MATCH_LIST must appear for the test to pass.
1549 #
1550 # A typical use of ELM_FIND_REGEXP/ELM_EXTRACT_REGEXP is to extract one line
1551 # of text per element and then strip trailing \r\n's.
1552 # Example:
1553 # gdb_test_list_exact "foo" "bar" \
1554 # "\[^\r\n\]+\[\r\n\]+" \
1555 # "\[^\r\n\]+" \
1556 # { \
1557 # {expected result 1} \
1558 # {expected result 2} \
1559 # }
1560
1561 proc gdb_test_list_exact { cmd name elm_find_regexp elm_extract_regexp result_match_list } {
1562 global gdb_prompt
1563
1564 set matches [lsort $result_match_list]
1565 set seen {}
1566 gdb_test_multiple $cmd $name {
1567 "$cmd\[\r\n\]" { exp_continue }
1568 -re $elm_find_regexp {
1569 set str $expect_out(0,string)
1570 verbose -log "seen: $str" 3
1571 regexp -- $elm_extract_regexp $str elm_seen
1572 verbose -log "extracted: $elm_seen" 3
1573 lappend seen $elm_seen
1574 exp_continue
1575 }
1576 -re "$gdb_prompt $" {
1577 set failed ""
1578 foreach got [lsort $seen] have $matches {
1579 if {![string equal $got $have]} {
1580 set failed $have
1581 break
1582 }
1583 }
1584 if {[string length $failed] != 0} {
1585 fail "$name ($failed not found)"
1586 } else {
1587 pass $name
1588 }
1589 }
1590 }
1591 }
1592
1593 # gdb_test_stdio COMMAND INFERIOR_PATTERN GDB_PATTERN MESSAGE
1594 # Send a command to gdb; expect inferior and gdb output.
1595 #
1596 # See gdb_test_multiple for a description of the COMMAND and MESSAGE
1597 # parameters.
1598 #
1599 # INFERIOR_PATTERN is the pattern to match against inferior output.
1600 #
1601 # GDB_PATTERN is the pattern to match against gdb output, and must NOT
1602 # include the \r\n sequence immediately before the gdb prompt, nor the
1603 # prompt. The default is empty.
1604 #
1605 # Both inferior and gdb patterns must match for a PASS.
1606 #
1607 # If MESSAGE is ommitted, then COMMAND will be used as the message.
1608 #
1609 # Returns:
1610 # 1 if the test failed,
1611 # 0 if the test passes,
1612 # -1 if there was an internal error.
1613 #
1614
1615 proc gdb_test_stdio {command inferior_pattern {gdb_pattern ""} {message ""}} {
1616 global inferior_spawn_id gdb_spawn_id
1617 global gdb_prompt
1618
1619 if {$message == ""} {
1620 set message $command
1621 }
1622
1623 set inferior_matched 0
1624 set gdb_matched 0
1625
1626 # Use an indirect spawn id list, and remove the inferior spawn id
1627 # from the expected output as soon as it matches, in case
1628 # $inferior_pattern happens to be a prefix of the resulting full
1629 # gdb pattern below (e.g., "\r\n").
1630 global gdb_test_stdio_spawn_id_list
1631 set gdb_test_stdio_spawn_id_list "$inferior_spawn_id"
1632
1633 # Note that if $inferior_spawn_id and $gdb_spawn_id are different,
1634 # then we may see gdb's output arriving before the inferior's
1635 # output.
1636 set res [gdb_test_multiple $command $message {
1637 -i gdb_test_stdio_spawn_id_list -re "$inferior_pattern" {
1638 set inferior_matched 1
1639 if {!$gdb_matched} {
1640 set gdb_test_stdio_spawn_id_list ""
1641 exp_continue
1642 }
1643 }
1644 -i $gdb_spawn_id -re "$gdb_pattern\r\n$gdb_prompt $" {
1645 set gdb_matched 1
1646 if {!$inferior_matched} {
1647 exp_continue
1648 }
1649 }
1650 }]
1651 if {$res == 0} {
1652 pass $message
1653 } else {
1654 verbose -log "inferior_matched=$inferior_matched, gdb_matched=$gdb_matched"
1655 }
1656 return $res
1657 }
1658
1659 # Wrapper around gdb_test_multiple to be used when testing expression
1660 # evaluation while 'set debug expression 1' is in effect.
1661 # Looks for some patterns that indicates the expression was rejected.
1662 #
1663 # CMD is the command to execute, which should include an expression
1664 # that GDB will need to parse.
1665 #
1666 # OUTPUT is the expected output pattern.
1667 #
1668 # TESTNAME is the name to be used for the test, defaults to CMD if not
1669 # given.
1670 proc gdb_test_debug_expr { cmd output {testname "" }} {
1671 global gdb_prompt
1672
1673 if { ${testname} == "" } {
1674 set testname $cmd
1675 }
1676
1677 gdb_test_multiple $cmd $testname {
1678 -re ".*Invalid expression.*\r\n$gdb_prompt $" {
1679 fail $gdb_test_name
1680 }
1681 -re ".*\[\r\n\]$output\r\n$gdb_prompt $" {
1682 pass $gdb_test_name
1683 }
1684 }
1685 }
1686
1687 # get_print_expr_at_depths EXP OUTPUTS
1688 #
1689 # Used for testing 'set print max-depth'. Prints the expression EXP
1690 # with 'set print max-depth' set to various depths. OUTPUTS is a list
1691 # of `n` different patterns to match at each of the depths from 0 to
1692 # (`n` - 1).
1693 #
1694 # This proc does one final check with the max-depth set to 'unlimited'
1695 # which is tested against the last pattern in the OUTPUTS list. The
1696 # OUTPUTS list is therefore required to match every depth from 0 to a
1697 # depth where the whole of EXP is printed with no ellipsis.
1698 #
1699 # This proc leaves the 'set print max-depth' set to 'unlimited'.
1700 proc gdb_print_expr_at_depths {exp outputs} {
1701 for { set depth 0 } { $depth <= [llength $outputs] } { incr depth } {
1702 if { $depth == [llength $outputs] } {
1703 set expected_result [lindex $outputs [expr [llength $outputs] - 1]]
1704 set depth_string "unlimited"
1705 } else {
1706 set expected_result [lindex $outputs $depth]
1707 set depth_string $depth
1708 }
1709
1710 with_test_prefix "exp='$exp': depth=${depth_string}" {
1711 gdb_test_no_output "set print max-depth ${depth_string}"
1712 gdb_test "p $exp" "$expected_result"
1713 }
1714 }
1715 }
1716
1717 \f
1718
1719 # Issue a PASS and return true if evaluating CONDITION in the caller's
1720 # frame returns true, and issue a FAIL and return false otherwise.
1721 # MESSAGE is the pass/fail message to be printed. If MESSAGE is
1722 # omitted or is empty, then the pass/fail messages use the condition
1723 # string as the message.
1724
1725 proc gdb_assert { condition {message ""} } {
1726 if { $message == ""} {
1727 set message $condition
1728 }
1729
1730 set code [catch {uplevel 1 expr $condition} res]
1731 if {$code == 1} {
1732 # If code is 1 (TCL_ERROR), it means evaluation failed and res contains
1733 # an error message. Print the error message, and set res to 0 since we
1734 # want to return a boolean.
1735 warning "While evaluating expression in gdb_assert: $res"
1736 unresolved $message
1737 set res 0
1738 } elseif { !$res } {
1739 fail $message
1740 } else {
1741 pass $message
1742 }
1743 return $res
1744 }
1745
1746 proc gdb_reinitialize_dir { subdir } {
1747 global gdb_prompt
1748
1749 if [is_remote host] {
1750 return ""
1751 }
1752 send_gdb "dir\n"
1753 gdb_expect 60 {
1754 -re "Reinitialize source path to empty.*y or n. " {
1755 send_gdb "y\n" answer
1756 gdb_expect 60 {
1757 -re "Source directories searched.*$gdb_prompt $" {
1758 send_gdb "dir $subdir\n"
1759 gdb_expect 60 {
1760 -re "Source directories searched.*$gdb_prompt $" {
1761 verbose "Dir set to $subdir"
1762 }
1763 -re "$gdb_prompt $" {
1764 perror "Dir \"$subdir\" failed."
1765 }
1766 }
1767 }
1768 -re "$gdb_prompt $" {
1769 perror "Dir \"$subdir\" failed."
1770 }
1771 }
1772 }
1773 -re "$gdb_prompt $" {
1774 perror "Dir \"$subdir\" failed."
1775 }
1776 }
1777 }
1778
1779 #
1780 # gdb_exit -- exit the GDB, killing the target program if necessary
1781 #
1782 proc default_gdb_exit {} {
1783 global GDB
1784 global INTERNAL_GDBFLAGS GDBFLAGS
1785 global gdb_spawn_id inferior_spawn_id
1786 global inotify_log_file
1787
1788 gdb_stop_suppressing_tests
1789
1790 if ![info exists gdb_spawn_id] {
1791 return
1792 }
1793
1794 verbose "Quitting $GDB $INTERNAL_GDBFLAGS $GDBFLAGS"
1795
1796 if {[info exists inotify_log_file] && [file exists $inotify_log_file]} {
1797 set fd [open $inotify_log_file]
1798 set data [read -nonewline $fd]
1799 close $fd
1800
1801 if {[string compare $data ""] != 0} {
1802 warning "parallel-unsafe file creations noticed"
1803
1804 # Clear the log.
1805 set fd [open $inotify_log_file w]
1806 close $fd
1807 }
1808 }
1809
1810 if { [is_remote host] && [board_info host exists fileid] } {
1811 send_gdb "quit\n"
1812 gdb_expect 10 {
1813 -re "y or n" {
1814 send_gdb "y\n" answer
1815 exp_continue
1816 }
1817 -re "DOSEXIT code" { }
1818 default { }
1819 }
1820 }
1821
1822 if ![is_remote host] {
1823 remote_close host
1824 }
1825 unset gdb_spawn_id
1826 unset inferior_spawn_id
1827 }
1828
1829 # Load a file into the debugger.
1830 # The return value is 0 for success, -1 for failure.
1831 #
1832 # This procedure also set the global variable GDB_FILE_CMD_DEBUG_INFO
1833 # to one of these values:
1834 #
1835 # debug file was loaded successfully and has debug information
1836 # nodebug file was loaded successfully and has no debug information
1837 # lzma file was loaded, .gnu_debugdata found, but no LZMA support
1838 # compiled in
1839 # fail file was not loaded
1840 #
1841 # This procedure also set the global variable GDB_FILE_CMD_MSG to the
1842 # output of the file command in case of success.
1843 #
1844 # I tried returning this information as part of the return value,
1845 # but ran into a mess because of the many re-implementations of
1846 # gdb_load in config/*.exp.
1847 #
1848 # TODO: gdb.base/sepdebug.exp and gdb.stabs/weird.exp might be able to use
1849 # this if they can get more information set.
1850
1851 proc gdb_file_cmd { arg } {
1852 global gdb_prompt
1853 global GDB
1854 global last_loaded_file
1855
1856 # GCC for Windows target may create foo.exe given "-o foo".
1857 if { ![file exists $arg] && [file exists "$arg.exe"] } {
1858 set arg "$arg.exe"
1859 }
1860
1861 # Save this for the benefit of gdbserver-support.exp.
1862 set last_loaded_file $arg
1863
1864 # Set whether debug info was found.
1865 # Default to "fail".
1866 global gdb_file_cmd_debug_info gdb_file_cmd_msg
1867 set gdb_file_cmd_debug_info "fail"
1868
1869 if [is_remote host] {
1870 set arg [remote_download host $arg]
1871 if { $arg == "" } {
1872 perror "download failed"
1873 return -1
1874 }
1875 }
1876
1877 # The file command used to kill the remote target. For the benefit
1878 # of the testsuite, preserve this behavior. Mark as optional so it doesn't
1879 # get written to the stdin log.
1880 send_gdb "kill\n" optional
1881 gdb_expect 120 {
1882 -re "Kill the program being debugged. .y or n. $" {
1883 send_gdb "y\n" answer
1884 verbose "\t\tKilling previous program being debugged"
1885 exp_continue
1886 }
1887 -re "$gdb_prompt $" {
1888 # OK.
1889 }
1890 }
1891
1892 send_gdb "file $arg\n"
1893 set new_symbol_table 0
1894 set basename [file tail $arg]
1895 gdb_expect 120 {
1896 -re "(Reading symbols from.*LZMA support was disabled.*$gdb_prompt $)" {
1897 verbose "\t\tLoaded $arg into $GDB; .gnu_debugdata found but no LZMA available"
1898 set gdb_file_cmd_msg $expect_out(1,string)
1899 set gdb_file_cmd_debug_info "lzma"
1900 return 0
1901 }
1902 -re "(Reading symbols from.*no debugging symbols found.*$gdb_prompt $)" {
1903 verbose "\t\tLoaded $arg into $GDB with no debugging symbols"
1904 set gdb_file_cmd_msg $expect_out(1,string)
1905 set gdb_file_cmd_debug_info "nodebug"
1906 return 0
1907 }
1908 -re "(Reading symbols from.*$gdb_prompt $)" {
1909 verbose "\t\tLoaded $arg into $GDB"
1910 set gdb_file_cmd_msg $expect_out(1,string)
1911 set gdb_file_cmd_debug_info "debug"
1912 return 0
1913 }
1914 -re "Load new symbol table from \".*\".*y or n. $" {
1915 if { $new_symbol_table > 0 } {
1916 perror [join [list "Couldn't load $basename,"
1917 "interactive prompt loop detected."]]
1918 return -1
1919 }
1920 send_gdb "y\n" answer
1921 incr new_symbol_table
1922 set suffix "-- with new symbol table"
1923 set arg "$arg $suffix"
1924 set basename "$basename $suffix"
1925 exp_continue
1926 }
1927 -re "No such file or directory.*$gdb_prompt $" {
1928 perror "($basename) No such file or directory"
1929 return -1
1930 }
1931 -re "A problem internal to GDB has been detected" {
1932 perror "Couldn't load $basename into GDB (GDB internal error)."
1933 gdb_internal_error_resync
1934 return -1
1935 }
1936 -re "$gdb_prompt $" {
1937 perror "Couldn't load $basename into GDB."
1938 return -1
1939 }
1940 timeout {
1941 perror "Couldn't load $basename into GDB (timeout)."
1942 return -1
1943 }
1944 eof {
1945 # This is an attempt to detect a core dump, but seems not to
1946 # work. Perhaps we need to match .* followed by eof, in which
1947 # gdb_expect does not seem to have a way to do that.
1948 perror "Couldn't load $basename into GDB (eof)."
1949 return -1
1950 }
1951 }
1952 }
1953
1954 # Default gdb_spawn procedure.
1955
1956 proc default_gdb_spawn { } {
1957 global use_gdb_stub
1958 global GDB
1959 global INTERNAL_GDBFLAGS GDBFLAGS
1960 global gdb_spawn_id
1961
1962 gdb_stop_suppressing_tests
1963
1964 # Set the default value, it may be overriden later by specific testfile.
1965 #
1966 # Use `set_board_info use_gdb_stub' for the board file to flag the inferior
1967 # is already started after connecting and run/attach are not supported.
1968 # This is used for the "remote" protocol. After GDB starts you should
1969 # check global $use_gdb_stub instead of the board as the testfile may force
1970 # a specific different target protocol itself.
1971 set use_gdb_stub [target_info exists use_gdb_stub]
1972
1973 verbose "Spawning $GDB $INTERNAL_GDBFLAGS $GDBFLAGS"
1974 gdb_write_cmd_file "$GDB $INTERNAL_GDBFLAGS $GDBFLAGS"
1975
1976 if [info exists gdb_spawn_id] {
1977 return 0
1978 }
1979
1980 if ![is_remote host] {
1981 if { [which $GDB] == 0 } then {
1982 perror "$GDB does not exist."
1983 exit 1
1984 }
1985 }
1986 set res [remote_spawn host "$GDB $INTERNAL_GDBFLAGS $GDBFLAGS [host_info gdb_opts]"]
1987 if { $res < 0 || $res == "" } {
1988 perror "Spawning $GDB failed."
1989 return 1
1990 }
1991
1992 set gdb_spawn_id $res
1993 return 0
1994 }
1995
1996 # Default gdb_start procedure.
1997
1998 proc default_gdb_start { } {
1999 global gdb_prompt
2000 global gdb_spawn_id
2001 global inferior_spawn_id
2002
2003 if [info exists gdb_spawn_id] {
2004 return 0
2005 }
2006
2007 # Keep track of the number of times GDB has been launched.
2008 global gdb_instances
2009 incr gdb_instances
2010
2011 gdb_stdin_log_init
2012
2013 set res [gdb_spawn]
2014 if { $res != 0} {
2015 return $res
2016 }
2017
2018 # Default to assuming inferior I/O is done on GDB's terminal.
2019 if {![info exists inferior_spawn_id]} {
2020 set inferior_spawn_id $gdb_spawn_id
2021 }
2022
2023 # When running over NFS, particularly if running many simultaneous
2024 # tests on different hosts all using the same server, things can
2025 # get really slow. Give gdb at least 3 minutes to start up.
2026 gdb_expect 360 {
2027 -re "\[\r\n\]$gdb_prompt $" {
2028 verbose "GDB initialized."
2029 }
2030 -re "$gdb_prompt $" {
2031 perror "GDB never initialized."
2032 unset gdb_spawn_id
2033 return -1
2034 }
2035 timeout {
2036 perror "(timeout) GDB never initialized after 10 seconds."
2037 remote_close host
2038 unset gdb_spawn_id
2039 return -1
2040 }
2041 eof {
2042 perror "(eof) GDB never initialized."
2043 unset gdb_spawn_id
2044 return -1
2045 }
2046 }
2047
2048 # force the height to "unlimited", so no pagers get used
2049
2050 send_gdb "set height 0\n"
2051 gdb_expect 10 {
2052 -re "$gdb_prompt $" {
2053 verbose "Setting height to 0." 2
2054 }
2055 timeout {
2056 warning "Couldn't set the height to 0"
2057 }
2058 }
2059 # force the width to "unlimited", so no wraparound occurs
2060 send_gdb "set width 0\n"
2061 gdb_expect 10 {
2062 -re "$gdb_prompt $" {
2063 verbose "Setting width to 0." 2
2064 }
2065 timeout {
2066 warning "Couldn't set the width to 0."
2067 }
2068 }
2069
2070 gdb_debug_init
2071 return 0
2072 }
2073
2074 # Utility procedure to give user control of the gdb prompt in a script. It is
2075 # meant to be used for debugging test cases, and should not be left in the
2076 # test cases code.
2077
2078 proc gdb_interact { } {
2079 global gdb_spawn_id
2080 set spawn_id $gdb_spawn_id
2081
2082 send_user "+------------------------------------------+\n"
2083 send_user "| Script interrupted, you can now interact |\n"
2084 send_user "| with by gdb. Type >>> to continue. |\n"
2085 send_user "+------------------------------------------+\n"
2086
2087 interact {
2088 ">>>" return
2089 }
2090 }
2091
2092 # Examine the output of compilation to determine whether compilation
2093 # failed or not. If it failed determine whether it is due to missing
2094 # compiler or due to compiler error. Report pass, fail or unsupported
2095 # as appropriate
2096
2097 proc gdb_compile_test {src output} {
2098 if { $output == "" } {
2099 pass "compilation [file tail $src]"
2100 } elseif { [regexp {^[a-zA-Z_0-9]+: Can't find [^ ]+\.$} $output] } {
2101 unsupported "compilation [file tail $src]"
2102 } elseif { [regexp {.*: command not found[\r|\n]*$} $output] } {
2103 unsupported "compilation [file tail $src]"
2104 } elseif { [regexp {.*: [^\r\n]*compiler not installed[^\r\n]*[\r|\n]*$} $output] } {
2105 unsupported "compilation [file tail $src]"
2106 } else {
2107 verbose -log "compilation failed: $output" 2
2108 fail "compilation [file tail $src]"
2109 }
2110 }
2111
2112 # Return a 1 for configurations for which we don't even want to try to
2113 # test C++.
2114
2115 proc skip_cplus_tests {} {
2116 if { [istarget "h8300-*-*"] } {
2117 return 1
2118 }
2119
2120 # The C++ IO streams are too large for HC11/HC12 and are thus not
2121 # available. The gdb C++ tests use them and don't compile.
2122 if { [istarget "m6811-*-*"] } {
2123 return 1
2124 }
2125 if { [istarget "m6812-*-*"] } {
2126 return 1
2127 }
2128 return 0
2129 }
2130
2131 # Return a 1 for configurations for which don't have both C++ and the STL.
2132
2133 proc skip_stl_tests {} {
2134 # Symbian supports the C++ language, but the STL is missing
2135 # (both headers and libraries).
2136 if { [istarget "arm*-*-symbianelf*"] } {
2137 return 1
2138 }
2139
2140 return [skip_cplus_tests]
2141 }
2142
2143 # Return a 1 if I don't even want to try to test FORTRAN.
2144
2145 proc skip_fortran_tests {} {
2146 return 0
2147 }
2148
2149 # Return a 1 if I don't even want to try to test ada.
2150
2151 proc skip_ada_tests {} {
2152 return 0
2153 }
2154
2155 # Return a 1 if I don't even want to try to test GO.
2156
2157 proc skip_go_tests {} {
2158 return 0
2159 }
2160
2161 # Return a 1 if I don't even want to try to test D.
2162
2163 proc skip_d_tests {} {
2164 return 0
2165 }
2166
2167 # Return 1 to skip Rust tests, 0 to try them.
2168 proc skip_rust_tests {} {
2169 return [expr {![isnative]}]
2170 }
2171
2172 # Return a 1 for configurations that do not support Python scripting.
2173 # PROMPT_REGEXP is the expected prompt.
2174
2175 proc skip_python_tests_prompt { prompt_regexp } {
2176 global gdb_py_is_py3k
2177
2178 gdb_test_multiple "python print ('test')" "verify python support" \
2179 -prompt "$prompt_regexp" {
2180 -re "not supported.*$prompt_regexp" {
2181 unsupported "Python support is disabled."
2182 return 1
2183 }
2184 -re "$prompt_regexp" {}
2185 }
2186
2187 gdb_test_multiple "python print (sys.version_info\[0\])" "check if python 3" \
2188 -prompt "$prompt_regexp" {
2189 -re "3.*$prompt_regexp" {
2190 set gdb_py_is_py3k 1
2191 }
2192 -re ".*$prompt_regexp" {
2193 set gdb_py_is_py3k 0
2194 }
2195 }
2196
2197 return 0
2198 }
2199
2200 # Return a 1 for configurations that do not support Python scripting.
2201 # Note: This also sets various globals that specify which version of Python
2202 # is in use. See skip_python_tests_prompt.
2203
2204 proc skip_python_tests {} {
2205 global gdb_prompt
2206 return [skip_python_tests_prompt "$gdb_prompt $"]
2207 }
2208
2209 # Return a 1 if we should skip shared library tests.
2210
2211 proc skip_shlib_tests {} {
2212 # Run the shared library tests on native systems.
2213 if {[isnative]} {
2214 return 0
2215 }
2216
2217 # An abbreviated list of remote targets where we should be able to
2218 # run shared library tests.
2219 if {([istarget *-*-linux*]
2220 || [istarget *-*-*bsd*]
2221 || [istarget *-*-solaris2*]
2222 || [istarget arm*-*-symbianelf*]
2223 || [istarget *-*-mingw*]
2224 || [istarget *-*-cygwin*]
2225 || [istarget *-*-pe*])} {
2226 return 0
2227 }
2228
2229 return 1
2230 }
2231
2232 # Return 1 if we should skip tui related tests.
2233
2234 proc skip_tui_tests {} {
2235 global gdb_prompt
2236
2237 gdb_test_multiple "help layout" "verify tui support" {
2238 -re "Undefined command: \"layout\".*$gdb_prompt $" {
2239 return 1
2240 }
2241 -re "$gdb_prompt $" {
2242 }
2243 }
2244
2245 return 0
2246 }
2247
2248 # Test files shall make sure all the test result lines in gdb.sum are
2249 # unique in a test run, so that comparing the gdb.sum files of two
2250 # test runs gives correct results. Test files that exercise
2251 # variations of the same tests more than once, shall prefix the
2252 # different test invocations with different identifying strings in
2253 # order to make them unique.
2254 #
2255 # About test prefixes:
2256 #
2257 # $pf_prefix is the string that dejagnu prints after the result (FAIL,
2258 # PASS, etc.), and before the test message/name in gdb.sum. E.g., the
2259 # underlined substring in
2260 #
2261 # PASS: gdb.base/mytest.exp: some test
2262 # ^^^^^^^^^^^^^^^^^^^^
2263 #
2264 # is $pf_prefix.
2265 #
2266 # The easiest way to adjust the test prefix is to append a test
2267 # variation prefix to the $pf_prefix, using the with_test_prefix
2268 # procedure. E.g.,
2269 #
2270 # proc do_tests {} {
2271 # gdb_test ... ... "test foo"
2272 # gdb_test ... ... "test bar"
2273 #
2274 # with_test_prefix "subvariation a" {
2275 # gdb_test ... ... "test x"
2276 # }
2277 #
2278 # with_test_prefix "subvariation b" {
2279 # gdb_test ... ... "test x"
2280 # }
2281 # }
2282 #
2283 # with_test_prefix "variation1" {
2284 # ...do setup for variation 1...
2285 # do_tests
2286 # }
2287 #
2288 # with_test_prefix "variation2" {
2289 # ...do setup for variation 2...
2290 # do_tests
2291 # }
2292 #
2293 # Results in:
2294 #
2295 # PASS: gdb.base/mytest.exp: variation1: test foo
2296 # PASS: gdb.base/mytest.exp: variation1: test bar
2297 # PASS: gdb.base/mytest.exp: variation1: subvariation a: test x
2298 # PASS: gdb.base/mytest.exp: variation1: subvariation b: test x
2299 # PASS: gdb.base/mytest.exp: variation2: test foo
2300 # PASS: gdb.base/mytest.exp: variation2: test bar
2301 # PASS: gdb.base/mytest.exp: variation2: subvariation a: test x
2302 # PASS: gdb.base/mytest.exp: variation2: subvariation b: test x
2303 #
2304 # If for some reason more flexibility is necessary, one can also
2305 # manipulate the pf_prefix global directly, treating it as a string.
2306 # E.g.,
2307 #
2308 # global pf_prefix
2309 # set saved_pf_prefix
2310 # append pf_prefix "${foo}: bar"
2311 # ... actual tests ...
2312 # set pf_prefix $saved_pf_prefix
2313 #
2314
2315 # Run BODY in the context of the caller, with the current test prefix
2316 # (pf_prefix) appended with one space, then PREFIX, and then a colon.
2317 # Returns the result of BODY.
2318 #
2319 proc with_test_prefix { prefix body } {
2320 global pf_prefix
2321
2322 set saved $pf_prefix
2323 append pf_prefix " " $prefix ":"
2324 set code [catch {uplevel 1 $body} result]
2325 set pf_prefix $saved
2326
2327 if {$code == 1} {
2328 global errorInfo errorCode
2329 return -code $code -errorinfo $errorInfo -errorcode $errorCode $result
2330 } else {
2331 return -code $code $result
2332 }
2333 }
2334
2335 # Wrapper for foreach that calls with_test_prefix on each iteration,
2336 # including the iterator's name and current value in the prefix.
2337
2338 proc foreach_with_prefix {var list body} {
2339 upvar 1 $var myvar
2340 foreach myvar $list {
2341 with_test_prefix "$var=$myvar" {
2342 set code [catch {uplevel 1 $body} result]
2343 }
2344
2345 if {$code == 1} {
2346 global errorInfo errorCode
2347 return -code $code -errorinfo $errorInfo -errorcode $errorCode $result
2348 } elseif {$code == 3} {
2349 break
2350 } elseif {$code == 2} {
2351 return -code $code $result
2352 }
2353 }
2354 }
2355
2356 # Like TCL's native proc, but defines a procedure that wraps its body
2357 # within 'with_test_prefix "$proc_name" { ... }'.
2358 proc proc_with_prefix {name arguments body} {
2359 # Define the advertised proc.
2360 proc $name $arguments [list with_test_prefix $name $body]
2361 }
2362
2363
2364 # Run BODY in the context of the caller. After BODY is run, the variables
2365 # listed in VARS will be reset to the values they had before BODY was run.
2366 #
2367 # This is useful for providing a scope in which it is safe to temporarily
2368 # modify global variables, e.g.
2369 #
2370 # global INTERNAL_GDBFLAGS
2371 # global env
2372 #
2373 # set foo GDBHISTSIZE
2374 #
2375 # save_vars { INTERNAL_GDBFLAGS env($foo) env(HOME) } {
2376 # append INTERNAL_GDBFLAGS " -nx"
2377 # unset -nocomplain env(GDBHISTSIZE)
2378 # gdb_start
2379 # gdb_test ...
2380 # }
2381 #
2382 # Here, although INTERNAL_GDBFLAGS, env(GDBHISTSIZE) and env(HOME) may be
2383 # modified inside BODY, this proc guarantees that the modifications will be
2384 # undone after BODY finishes executing.
2385
2386 proc save_vars { vars body } {
2387 array set saved_scalars { }
2388 array set saved_arrays { }
2389 set unset_vars { }
2390
2391 foreach var $vars {
2392 # First evaluate VAR in the context of the caller in case the variable
2393 # name may be a not-yet-interpolated string like env($foo)
2394 set var [uplevel 1 list $var]
2395
2396 if [uplevel 1 [list info exists $var]] {
2397 if [uplevel 1 [list array exists $var]] {
2398 set saved_arrays($var) [uplevel 1 [list array get $var]]
2399 } else {
2400 set saved_scalars($var) [uplevel 1 [list set $var]]
2401 }
2402 } else {
2403 lappend unset_vars $var
2404 }
2405 }
2406
2407 set code [catch {uplevel 1 $body} result]
2408
2409 foreach {var value} [array get saved_scalars] {
2410 uplevel 1 [list set $var $value]
2411 }
2412
2413 foreach {var value} [array get saved_arrays] {
2414 uplevel 1 [list unset $var]
2415 uplevel 1 [list array set $var $value]
2416 }
2417
2418 foreach var $unset_vars {
2419 uplevel 1 [list unset -nocomplain $var]
2420 }
2421
2422 if {$code == 1} {
2423 global errorInfo errorCode
2424 return -code $code -errorinfo $errorInfo -errorcode $errorCode $result
2425 } else {
2426 return -code $code $result
2427 }
2428 }
2429
2430 # Run tests in BODY with the current working directory (CWD) set to
2431 # DIR. When BODY is finished, restore the original CWD. Return the
2432 # result of BODY.
2433 #
2434 # This procedure doesn't check if DIR is a valid directory, so you
2435 # have to make sure of that.
2436
2437 proc with_cwd { dir body } {
2438 set saved_dir [pwd]
2439 verbose -log "Switching to directory $dir (saved CWD: $saved_dir)."
2440 cd $dir
2441
2442 set code [catch {uplevel 1 $body} result]
2443
2444 verbose -log "Switching back to $saved_dir."
2445 cd $saved_dir
2446
2447 if {$code == 1} {
2448 global errorInfo errorCode
2449 return -code $code -errorinfo $errorInfo -errorcode $errorCode $result
2450 } else {
2451 return -code $code $result
2452 }
2453 }
2454
2455 # Run tests in BODY with GDB prompt and variable $gdb_prompt set to
2456 # PROMPT. When BODY is finished, restore GDB prompt and variable
2457 # $gdb_prompt.
2458 # Returns the result of BODY.
2459 #
2460 # Notes:
2461 #
2462 # 1) If you want to use, for example, "(foo)" as the prompt you must pass it
2463 # as "(foo)", and not the regexp form "\(foo\)" (expressed as "\\(foo\\)" in
2464 # TCL). PROMPT is internally converted to a suitable regexp for matching.
2465 # We do the conversion from "(foo)" to "\(foo\)" here for a few reasons:
2466 # a) It's more intuitive for callers to pass the plain text form.
2467 # b) We need two forms of the prompt:
2468 # - a regexp to use in output matching,
2469 # - a value to pass to the "set prompt" command.
2470 # c) It's easier to convert the plain text form to its regexp form.
2471 #
2472 # 2) Don't add a trailing space, we do that here.
2473
2474 proc with_gdb_prompt { prompt body } {
2475 global gdb_prompt
2476
2477 # Convert "(foo)" to "\(foo\)".
2478 # We don't use string_to_regexp because while it works today it's not
2479 # clear it will work tomorrow: the value we need must work as both a
2480 # regexp *and* as the argument to the "set prompt" command, at least until
2481 # we start recording both forms separately instead of just $gdb_prompt.
2482 # The testsuite is pretty-much hardwired to interpret $gdb_prompt as the
2483 # regexp form.
2484 regsub -all {[]*+.|()^$\[\\]} $prompt {\\&} prompt
2485
2486 set saved $gdb_prompt
2487
2488 verbose -log "Setting gdb prompt to \"$prompt \"."
2489 set gdb_prompt $prompt
2490 gdb_test_no_output "set prompt $prompt " ""
2491
2492 set code [catch {uplevel 1 $body} result]
2493
2494 verbose -log "Restoring gdb prompt to \"$saved \"."
2495 set gdb_prompt $saved
2496 gdb_test_no_output "set prompt $saved " ""
2497
2498 if {$code == 1} {
2499 global errorInfo errorCode
2500 return -code $code -errorinfo $errorInfo -errorcode $errorCode $result
2501 } else {
2502 return -code $code $result
2503 }
2504 }
2505
2506 # Run tests in BODY with target-charset setting to TARGET_CHARSET. When
2507 # BODY is finished, restore target-charset.
2508
2509 proc with_target_charset { target_charset body } {
2510 global gdb_prompt
2511
2512 set saved ""
2513 gdb_test_multiple "show target-charset" "" {
2514 -re "The target character set is \".*; currently (.*)\"\..*$gdb_prompt " {
2515 set saved $expect_out(1,string)
2516 }
2517 -re "The target character set is \"(.*)\".*$gdb_prompt " {
2518 set saved $expect_out(1,string)
2519 }
2520 -re ".*$gdb_prompt " {
2521 fail "get target-charset"
2522 }
2523 }
2524
2525 gdb_test_no_output "set target-charset $target_charset" ""
2526
2527 set code [catch {uplevel 1 $body} result]
2528
2529 gdb_test_no_output "set target-charset $saved" ""
2530
2531 if {$code == 1} {
2532 global errorInfo errorCode
2533 return -code $code -errorinfo $errorInfo -errorcode $errorCode $result
2534 } else {
2535 return -code $code $result
2536 }
2537 }
2538
2539 # Switch the default spawn id to SPAWN_ID, so that gdb_test,
2540 # mi_gdb_test etc. default to using it.
2541
2542 proc switch_gdb_spawn_id {spawn_id} {
2543 global gdb_spawn_id
2544 global board board_info
2545
2546 set gdb_spawn_id $spawn_id
2547 set board [host_info name]
2548 set board_info($board,fileid) $spawn_id
2549 }
2550
2551 # Clear the default spawn id.
2552
2553 proc clear_gdb_spawn_id {} {
2554 global gdb_spawn_id
2555 global board board_info
2556
2557 unset -nocomplain gdb_spawn_id
2558 set board [host_info name]
2559 unset -nocomplain board_info($board,fileid)
2560 }
2561
2562 # Run BODY with SPAWN_ID as current spawn id.
2563
2564 proc with_spawn_id { spawn_id body } {
2565 global gdb_spawn_id
2566
2567 if [info exists gdb_spawn_id] {
2568 set saved_spawn_id $gdb_spawn_id
2569 }
2570
2571 switch_gdb_spawn_id $spawn_id
2572
2573 set code [catch {uplevel 1 $body} result]
2574
2575 if [info exists saved_spawn_id] {
2576 switch_gdb_spawn_id $saved_spawn_id
2577 } else {
2578 clear_gdb_spawn_id
2579 }
2580
2581 if {$code == 1} {
2582 global errorInfo errorCode
2583 return -code $code -errorinfo $errorInfo -errorcode $errorCode $result
2584 } else {
2585 return -code $code $result
2586 }
2587 }
2588
2589 # Select the largest timeout from all the timeouts:
2590 # - the local "timeout" variable of the scope two levels above,
2591 # - the global "timeout" variable,
2592 # - the board variable "gdb,timeout".
2593
2594 proc get_largest_timeout {} {
2595 upvar #0 timeout gtimeout
2596 upvar 2 timeout timeout
2597
2598 set tmt 0
2599 if [info exists timeout] {
2600 set tmt $timeout
2601 }
2602 if { [info exists gtimeout] && $gtimeout > $tmt } {
2603 set tmt $gtimeout
2604 }
2605 if { [target_info exists gdb,timeout]
2606 && [target_info gdb,timeout] > $tmt } {
2607 set tmt [target_info gdb,timeout]
2608 }
2609 if { $tmt == 0 } {
2610 # Eeeeew.
2611 set tmt 60
2612 }
2613
2614 return $tmt
2615 }
2616
2617 # Run tests in BODY with timeout increased by factor of FACTOR. When
2618 # BODY is finished, restore timeout.
2619
2620 proc with_timeout_factor { factor body } {
2621 global timeout
2622
2623 set savedtimeout $timeout
2624
2625 set timeout [expr [get_largest_timeout] * $factor]
2626 set code [catch {uplevel 1 $body} result]
2627
2628 set timeout $savedtimeout
2629 if {$code == 1} {
2630 global errorInfo errorCode
2631 return -code $code -errorinfo $errorInfo -errorcode $errorCode $result
2632 } else {
2633 return -code $code $result
2634 }
2635 }
2636
2637 # Run BODY with timeout factor FACTOR if check-read1 is used.
2638
2639 proc with_read1_timeout_factor { factor body } {
2640 if { [info exists ::env(READ1)] == 1 && $::env(READ1) == 1 } {
2641 # Use timeout factor
2642 } else {
2643 # Reset timeout factor
2644 set factor 1
2645 }
2646 return [uplevel [list with_timeout_factor $factor $body]]
2647 }
2648
2649 # Return 1 if _Complex types are supported, otherwise, return 0.
2650
2651 gdb_caching_proc support_complex_tests {
2652
2653 if { [gdb_skip_float_test] } {
2654 # If floating point is not supported, _Complex is not
2655 # supported.
2656 return 0
2657 }
2658
2659 # Compile a test program containing _Complex types.
2660
2661 return [gdb_can_simple_compile complex {
2662 int main() {
2663 _Complex float cf;
2664 _Complex double cd;
2665 _Complex long double cld;
2666 return 0;
2667 }
2668 } executable]
2669 }
2670
2671 # Return 1 if compiling go is supported.
2672 gdb_caching_proc support_go_compile {
2673
2674 return [gdb_can_simple_compile go-hello {
2675 package main
2676 import "fmt"
2677 func main() {
2678 fmt.Println("hello world")
2679 }
2680 } executable go]
2681 }
2682
2683 # Return 1 if GDB can get a type for siginfo from the target, otherwise
2684 # return 0.
2685
2686 proc supports_get_siginfo_type {} {
2687 if { [istarget "*-*-linux*"] } {
2688 return 1
2689 } else {
2690 return 0
2691 }
2692 }
2693
2694 # Return 1 if the target supports hardware single stepping.
2695
2696 proc can_hardware_single_step {} {
2697
2698 if { [istarget "arm*-*-*"] || [istarget "mips*-*-*"]
2699 || [istarget "tic6x-*-*"] || [istarget "sparc*-*-linux*"]
2700 || [istarget "nios2-*-*"] } {
2701 return 0
2702 }
2703
2704 return 1
2705 }
2706
2707 # Return 1 if target hardware or OS supports single stepping to signal
2708 # handler, otherwise, return 0.
2709
2710 proc can_single_step_to_signal_handler {} {
2711 # Targets don't have hardware single step. On these targets, when
2712 # a signal is delivered during software single step, gdb is unable
2713 # to determine the next instruction addresses, because start of signal
2714 # handler is one of them.
2715 return [can_hardware_single_step]
2716 }
2717
2718 # Return 1 if target supports process record, otherwise return 0.
2719
2720 proc supports_process_record {} {
2721
2722 if [target_info exists gdb,use_precord] {
2723 return [target_info gdb,use_precord]
2724 }
2725
2726 if { [istarget "arm*-*-linux*"] || [istarget "x86_64-*-linux*"]
2727 || [istarget "i\[34567\]86-*-linux*"]
2728 || [istarget "aarch64*-*-linux*"]
2729 || [istarget "powerpc*-*-linux*"]
2730 || [istarget "s390*-*-linux*"] } {
2731 return 1
2732 }
2733
2734 return 0
2735 }
2736
2737 # Return 1 if target supports reverse debugging, otherwise return 0.
2738
2739 proc supports_reverse {} {
2740
2741 if [target_info exists gdb,can_reverse] {
2742 return [target_info gdb,can_reverse]
2743 }
2744
2745 if { [istarget "arm*-*-linux*"] || [istarget "x86_64-*-linux*"]
2746 || [istarget "i\[34567\]86-*-linux*"]
2747 || [istarget "aarch64*-*-linux*"]
2748 || [istarget "powerpc*-*-linux*"]
2749 || [istarget "s390*-*-linux*"] } {
2750 return 1
2751 }
2752
2753 return 0
2754 }
2755
2756 # Return 1 if readline library is used.
2757
2758 proc readline_is_used { } {
2759 global gdb_prompt
2760
2761 gdb_test_multiple "show editing" "" {
2762 -re ".*Editing of command lines as they are typed is on\..*$gdb_prompt $" {
2763 return 1
2764 }
2765 -re ".*$gdb_prompt $" {
2766 return 0
2767 }
2768 }
2769 }
2770
2771 # Return 1 if target is ELF.
2772 gdb_caching_proc is_elf_target {
2773 set me "is_elf_target"
2774
2775 set src { int foo () {return 0;} }
2776 if {![gdb_simple_compile elf_target $src]} {
2777 return 0
2778 }
2779
2780 set fp_obj [open $obj "r"]
2781 fconfigure $fp_obj -translation binary
2782 set data [read $fp_obj]
2783 close $fp_obj
2784
2785 file delete $obj
2786
2787 set ELFMAG "\u007FELF"
2788
2789 if {[string compare -length 4 $data $ELFMAG] != 0} {
2790 verbose "$me: returning 0" 2
2791 return 0
2792 }
2793
2794 verbose "$me: returning 1" 2
2795 return 1
2796 }
2797
2798 # Return 1 if the memory at address zero is readable.
2799
2800 gdb_caching_proc is_address_zero_readable {
2801 global gdb_prompt
2802
2803 set ret 0
2804 gdb_test_multiple "x 0" "" {
2805 -re "Cannot access memory at address 0x0.*$gdb_prompt $" {
2806 set ret 0
2807 }
2808 -re ".*$gdb_prompt $" {
2809 set ret 1
2810 }
2811 }
2812
2813 return $ret
2814 }
2815
2816 # Produce source file NAME and write SOURCES into it.
2817
2818 proc gdb_produce_source { name sources } {
2819 set index 0
2820 set f [open $name "w"]
2821
2822 puts $f $sources
2823 close $f
2824 }
2825
2826 # Return 1 if target is ILP32.
2827 # This cannot be decided simply from looking at the target string,
2828 # as it might depend on externally passed compiler options like -m64.
2829 gdb_caching_proc is_ilp32_target {
2830 return [gdb_can_simple_compile is_ilp32_target {
2831 int dummy[sizeof (int) == 4
2832 && sizeof (void *) == 4
2833 && sizeof (long) == 4 ? 1 : -1];
2834 }]
2835 }
2836
2837 # Return 1 if target is LP64.
2838 # This cannot be decided simply from looking at the target string,
2839 # as it might depend on externally passed compiler options like -m64.
2840 gdb_caching_proc is_lp64_target {
2841 return [gdb_can_simple_compile is_lp64_target {
2842 int dummy[sizeof (int) == 4
2843 && sizeof (void *) == 8
2844 && sizeof (long) == 8 ? 1 : -1];
2845 }]
2846 }
2847
2848 # Return 1 if target has 64 bit addresses.
2849 # This cannot be decided simply from looking at the target string,
2850 # as it might depend on externally passed compiler options like -m64.
2851 gdb_caching_proc is_64_target {
2852 return [gdb_can_simple_compile is_64_target {
2853 int function(void) { return 3; }
2854 int dummy[sizeof (&function) == 8 ? 1 : -1];
2855 }]
2856 }
2857
2858 # Return 1 if target has x86_64 registers - either amd64 or x32.
2859 # x32 target identifies as x86_64-*-linux*, therefore it cannot be determined
2860 # just from the target string.
2861 gdb_caching_proc is_amd64_regs_target {
2862 if {![istarget "x86_64-*-*"] && ![istarget "i?86-*"]} {
2863 return 0
2864 }
2865
2866 return [gdb_can_simple_compile is_amd64_regs_target {
2867 int main (void) {
2868 asm ("incq %rax");
2869 asm ("incq %r15");
2870
2871 return 0;
2872 }
2873 }]
2874 }
2875
2876 # Return 1 if this target is an x86 or x86-64 with -m32.
2877 proc is_x86_like_target {} {
2878 if {![istarget "x86_64-*-*"] && ![istarget i?86-*]} {
2879 return 0
2880 }
2881 return [expr [is_ilp32_target] && ![is_amd64_regs_target]]
2882 }
2883
2884 # Return 1 if this target is an arm or aarch32 on aarch64.
2885
2886 gdb_caching_proc is_aarch32_target {
2887 if { [istarget "arm*-*-*"] } {
2888 return 1
2889 }
2890
2891 if { ![istarget "aarch64*-*-*"] } {
2892 return 0
2893 }
2894
2895 set list {}
2896 foreach reg \
2897 {r0 r1 r2 r3} {
2898 lappend list "\tmov $reg, $reg"
2899 }
2900
2901 return [gdb_can_simple_compile aarch32 [join $list \n]]
2902 }
2903
2904 # Return 1 if this target is an aarch64, either lp64 or ilp32.
2905
2906 proc is_aarch64_target {} {
2907 if { ![istarget "aarch64*-*-*"] } {
2908 return 0
2909 }
2910
2911 return [expr ![is_aarch32_target]]
2912 }
2913
2914 # Return 1 if displaced stepping is supported on target, otherwise, return 0.
2915 proc support_displaced_stepping {} {
2916
2917 if { [istarget "x86_64-*-linux*"] || [istarget "i\[34567\]86-*-linux*"]
2918 || [istarget "arm*-*-linux*"] || [istarget "powerpc-*-linux*"]
2919 || [istarget "powerpc64-*-linux*"] || [istarget "s390*-*-*"]
2920 || [istarget "aarch64*-*-linux*"] } {
2921 return 1
2922 }
2923
2924 return 0
2925 }
2926
2927 # Run a test on the target to see if it supports vmx hardware. Return 0 if so,
2928 # 1 if it does not. Based on 'check_vmx_hw_available' from the GCC testsuite.
2929
2930 gdb_caching_proc skip_altivec_tests {
2931 global srcdir subdir gdb_prompt inferior_exited_re
2932
2933 set me "skip_altivec_tests"
2934
2935 # Some simulators are known to not support VMX instructions.
2936 if { [istarget powerpc-*-eabi] || [istarget powerpc*-*-eabispe] } {
2937 verbose "$me: target known to not support VMX, returning 1" 2
2938 return 1
2939 }
2940
2941 # Make sure we have a compiler that understands altivec.
2942 if [get_compiler_info] {
2943 warning "Could not get compiler info"
2944 return 1
2945 }
2946 if [test_compiler_info gcc*] {
2947 set compile_flags "additional_flags=-maltivec"
2948 } elseif [test_compiler_info xlc*] {
2949 set compile_flags "additional_flags=-qaltivec"
2950 } else {
2951 verbose "Could not compile with altivec support, returning 1" 2
2952 return 1
2953 }
2954
2955 # Compile a test program containing VMX instructions.
2956 set src {
2957 int main() {
2958 #ifdef __MACH__
2959 asm volatile ("vor v0,v0,v0");
2960 #else
2961 asm volatile ("vor 0,0,0");
2962 #endif
2963 return 0;
2964 }
2965 }
2966 if {![gdb_simple_compile $me $src executable $compile_flags]} {
2967 return 1
2968 }
2969
2970 # Compilation succeeded so now run it via gdb.
2971
2972 gdb_exit
2973 gdb_start
2974 gdb_reinitialize_dir $srcdir/$subdir
2975 gdb_load "$obj"
2976 gdb_run_cmd
2977 gdb_expect {
2978 -re ".*Illegal instruction.*${gdb_prompt} $" {
2979 verbose -log "\n$me altivec hardware not detected"
2980 set skip_vmx_tests 1
2981 }
2982 -re ".*$inferior_exited_re normally.*${gdb_prompt} $" {
2983 verbose -log "\n$me: altivec hardware detected"
2984 set skip_vmx_tests 0
2985 }
2986 default {
2987 warning "\n$me: default case taken"
2988 set skip_vmx_tests 1
2989 }
2990 }
2991 gdb_exit
2992 remote_file build delete $obj
2993
2994 verbose "$me: returning $skip_vmx_tests" 2
2995 return $skip_vmx_tests
2996 }
2997
2998 # Run a test on the target to see if it supports vmx hardware. Return 0 if so,
2999 # 1 if it does not. Based on 'check_vmx_hw_available' from the GCC testsuite.
3000
3001 gdb_caching_proc skip_vsx_tests {
3002 global srcdir subdir gdb_prompt inferior_exited_re
3003
3004 set me "skip_vsx_tests"
3005
3006 # Some simulators are known to not support Altivec instructions, so
3007 # they won't support VSX instructions as well.
3008 if { [istarget powerpc-*-eabi] || [istarget powerpc*-*-eabispe] } {
3009 verbose "$me: target known to not support VSX, returning 1" 2
3010 return 1
3011 }
3012
3013 # Make sure we have a compiler that understands altivec.
3014 if [get_compiler_info] {
3015 warning "Could not get compiler info"
3016 return 1
3017 }
3018 if [test_compiler_info gcc*] {
3019 set compile_flags "additional_flags=-mvsx"
3020 } elseif [test_compiler_info xlc*] {
3021 set compile_flags "additional_flags=-qasm=gcc"
3022 } else {
3023 verbose "Could not compile with vsx support, returning 1" 2
3024 return 1
3025 }
3026
3027 # Compile a test program containing VSX instructions.
3028 set src {
3029 int main() {
3030 double a[2] = { 1.0, 2.0 };
3031 #ifdef __MACH__
3032 asm volatile ("lxvd2x v0,v0,%[addr]" : : [addr] "r" (a));
3033 #else
3034 asm volatile ("lxvd2x 0,0,%[addr]" : : [addr] "r" (a));
3035 #endif
3036 return 0;
3037 }
3038 }
3039 if {![gdb_simple_compile $me $src executable $compile_flags]} {
3040 return 1
3041 }
3042
3043 # No error message, compilation succeeded so now run it via gdb.
3044
3045 gdb_exit
3046 gdb_start
3047 gdb_reinitialize_dir $srcdir/$subdir
3048 gdb_load "$obj"
3049 gdb_run_cmd
3050 gdb_expect {
3051 -re ".*Illegal instruction.*${gdb_prompt} $" {
3052 verbose -log "\n$me VSX hardware not detected"
3053 set skip_vsx_tests 1
3054 }
3055 -re ".*$inferior_exited_re normally.*${gdb_prompt} $" {
3056 verbose -log "\n$me: VSX hardware detected"
3057 set skip_vsx_tests 0
3058 }
3059 default {
3060 warning "\n$me: default case taken"
3061 set skip_vsx_tests 1
3062 }
3063 }
3064 gdb_exit
3065 remote_file build delete $obj
3066
3067 verbose "$me: returning $skip_vsx_tests" 2
3068 return $skip_vsx_tests
3069 }
3070
3071 # Run a test on the target to see if it supports TSX hardware. Return 0 if so,
3072 # 1 if it does not. Based on 'check_vmx_hw_available' from the GCC testsuite.
3073
3074 gdb_caching_proc skip_tsx_tests {
3075 global srcdir subdir gdb_prompt inferior_exited_re
3076
3077 set me "skip_tsx_tests"
3078
3079 # Compile a test program.
3080 set src {
3081 int main() {
3082 asm volatile ("xbegin .L0");
3083 asm volatile ("xend");
3084 asm volatile (".L0: nop");
3085 return 0;
3086 }
3087 }
3088 if {![gdb_simple_compile $me $src executable]} {
3089 return 1
3090 }
3091
3092 # No error message, compilation succeeded so now run it via gdb.
3093
3094 gdb_exit
3095 gdb_start
3096 gdb_reinitialize_dir $srcdir/$subdir
3097 gdb_load "$obj"
3098 gdb_run_cmd
3099 gdb_expect {
3100 -re ".*Illegal instruction.*${gdb_prompt} $" {
3101 verbose -log "$me: TSX hardware not detected."
3102 set skip_tsx_tests 1
3103 }
3104 -re ".*$inferior_exited_re normally.*${gdb_prompt} $" {
3105 verbose -log "$me: TSX hardware detected."
3106 set skip_tsx_tests 0
3107 }
3108 default {
3109 warning "\n$me: default case taken."
3110 set skip_tsx_tests 1
3111 }
3112 }
3113 gdb_exit
3114 remote_file build delete $obj
3115
3116 verbose "$me: returning $skip_tsx_tests" 2
3117 return $skip_tsx_tests
3118 }
3119
3120 # Run a test on the target to see if it supports avx512bf16. Return 0 if so,
3121 # 1 if it does not. Based on 'check_vmx_hw_available' from the GCC testsuite.
3122
3123 gdb_caching_proc skip_avx512bf16_tests {
3124 global srcdir subdir gdb_prompt inferior_exited_re
3125
3126 set me "skip_avx512bf16_tests"
3127 if { ![istarget "i?86-*-*"] && ![istarget "x86_64-*-*"] } {
3128 verbose "$me: target does not support avx512bf16, returning 1" 2
3129 return 1
3130 }
3131
3132 # Compile a test program.
3133 set src {
3134 int main() {
3135 asm volatile ("vcvtne2ps2bf16 %xmm0, %xmm1, %xmm0");
3136 return 0;
3137 }
3138 }
3139 if {![gdb_simple_compile $me $src executable]} {
3140 return 1
3141 }
3142
3143 # No error message, compilation succeeded so now run it via gdb.
3144
3145 gdb_exit
3146 gdb_start
3147 gdb_reinitialize_dir $srcdir/$subdir
3148 gdb_load "$obj"
3149 gdb_run_cmd
3150 gdb_expect {
3151 -re ".*Illegal instruction.*${gdb_prompt} $" {
3152 verbose -log "$me: avx512bf16 hardware not detected."
3153 set skip_avx512bf16_tests 1
3154 }
3155 -re ".*$inferior_exited_re normally.*${gdb_prompt} $" {
3156 verbose -log "$me: avx512bf16 hardware detected."
3157 set skip_avx512bf16_tests 0
3158 }
3159 default {
3160 warning "\n$me: default case taken."
3161 set skip_avx512bf16_tests 1
3162 }
3163 }
3164 gdb_exit
3165 remote_file build delete $obj
3166
3167 verbose "$me: returning $skip_avx512bf16_tests" 2
3168 return $skip_avx512bf16_tests
3169 }
3170
3171 # Run a test on the target to see if it supports btrace hardware. Return 0 if so,
3172 # 1 if it does not. Based on 'check_vmx_hw_available' from the GCC testsuite.
3173
3174 gdb_caching_proc skip_btrace_tests {
3175 global srcdir subdir gdb_prompt inferior_exited_re
3176
3177 set me "skip_btrace_tests"
3178 if { ![istarget "i?86-*-*"] && ![istarget "x86_64-*-*"] } {
3179 verbose "$me: target does not support btrace, returning 1" 2
3180 return 1
3181 }
3182
3183 # Compile a test program.
3184 set src { int main() { return 0; } }
3185 if {![gdb_simple_compile $me $src executable]} {
3186 return 1
3187 }
3188
3189 # No error message, compilation succeeded so now run it via gdb.
3190
3191 gdb_exit
3192 gdb_start
3193 gdb_reinitialize_dir $srcdir/$subdir
3194 gdb_load $obj
3195 if ![runto_main] {
3196 return 1
3197 }
3198 # In case of an unexpected output, we return 2 as a fail value.
3199 set skip_btrace_tests 2
3200 gdb_test_multiple "record btrace" "check btrace support" {
3201 -re "You can't do that when your target is.*\r\n$gdb_prompt $" {
3202 set skip_btrace_tests 1
3203 }
3204 -re "Target does not support branch tracing.*\r\n$gdb_prompt $" {
3205 set skip_btrace_tests 1
3206 }
3207 -re "Could not enable branch tracing.*\r\n$gdb_prompt $" {
3208 set skip_btrace_tests 1
3209 }
3210 -re "^record btrace\r\n$gdb_prompt $" {
3211 set skip_btrace_tests 0
3212 }
3213 }
3214 gdb_exit
3215 remote_file build delete $obj
3216
3217 verbose "$me: returning $skip_btrace_tests" 2
3218 return $skip_btrace_tests
3219 }
3220
3221 # Run a test on the target to see if it supports btrace pt hardware.
3222 # Return 0 if so, 1 if it does not. Based on 'check_vmx_hw_available'
3223 # from the GCC testsuite.
3224
3225 gdb_caching_proc skip_btrace_pt_tests {
3226 global srcdir subdir gdb_prompt inferior_exited_re
3227
3228 set me "skip_btrace_tests"
3229 if { ![istarget "i?86-*-*"] && ![istarget "x86_64-*-*"] } {
3230 verbose "$me: target does not support btrace, returning 1" 2
3231 return 1
3232 }
3233
3234 # Compile a test program.
3235 set src { int main() { return 0; } }
3236 if {![gdb_simple_compile $me $src executable]} {
3237 return 1
3238 }
3239
3240 # No error message, compilation succeeded so now run it via gdb.
3241
3242 gdb_exit
3243 gdb_start
3244 gdb_reinitialize_dir $srcdir/$subdir
3245 gdb_load $obj
3246 if ![runto_main] {
3247 return 1
3248 }
3249 # In case of an unexpected output, we return 2 as a fail value.
3250 set skip_btrace_tests 2
3251 gdb_test_multiple "record btrace pt" "check btrace pt support" {
3252 -re "You can't do that when your target is.*\r\n$gdb_prompt $" {
3253 set skip_btrace_tests 1
3254 }
3255 -re "Target does not support branch tracing.*\r\n$gdb_prompt $" {
3256 set skip_btrace_tests 1
3257 }
3258 -re "Could not enable branch tracing.*\r\n$gdb_prompt $" {
3259 set skip_btrace_tests 1
3260 }
3261 -re "support was disabled at compile time.*\r\n$gdb_prompt $" {
3262 set skip_btrace_tests 1
3263 }
3264 -re "^record btrace pt\r\n$gdb_prompt $" {
3265 set skip_btrace_tests 0
3266 }
3267 }
3268 gdb_exit
3269 remote_file build delete $obj
3270
3271 verbose "$me: returning $skip_btrace_tests" 2
3272 return $skip_btrace_tests
3273 }
3274
3275 # Run a test on the target to see if it supports Aarch64 SVE hardware.
3276 # Return 0 if so, 1 if it does not. Note this causes a restart of GDB.
3277
3278 gdb_caching_proc skip_aarch64_sve_tests {
3279 global srcdir subdir gdb_prompt inferior_exited_re
3280
3281 set me "skip_aarch64_sve_tests"
3282
3283 if { ![is_aarch64_target]} {
3284 return 1
3285 }
3286
3287 set compile_flags "{additional_flags=-march=armv8-a+sve}"
3288
3289 # Compile a test program containing SVE instructions.
3290 set src {
3291 int main() {
3292 asm volatile ("ptrue p0.b");
3293 return 0;
3294 }
3295 }
3296 if {![gdb_simple_compile $me $src executable $compile_flags]} {
3297 return 1
3298 }
3299
3300 # Compilation succeeded so now run it via gdb.
3301 clean_restart $obj
3302 gdb_run_cmd
3303 gdb_expect {
3304 -re ".*Illegal instruction.*${gdb_prompt} $" {
3305 verbose -log "\n$me sve hardware not detected"
3306 set skip_sve_tests 1
3307 }
3308 -re ".*$inferior_exited_re normally.*${gdb_prompt} $" {
3309 verbose -log "\n$me: sve hardware detected"
3310 set skip_sve_tests 0
3311 }
3312 default {
3313 warning "\n$me: default case taken"
3314 set skip_sve_tests 1
3315 }
3316 }
3317 gdb_exit
3318 remote_file build delete $obj
3319
3320 verbose "$me: returning $skip_sve_tests" 2
3321 return $skip_sve_tests
3322 }
3323
3324
3325 # A helper that compiles a test case to see if __int128 is supported.
3326 proc gdb_int128_helper {lang} {
3327 return [gdb_can_simple_compile "i128-for-$lang" {
3328 __int128 x;
3329 int main() { return 0; }
3330 } executable $lang]
3331 }
3332
3333 # Return true if the C compiler understands the __int128 type.
3334 gdb_caching_proc has_int128_c {
3335 return [gdb_int128_helper c]
3336 }
3337
3338 # Return true if the C++ compiler understands the __int128 type.
3339 gdb_caching_proc has_int128_cxx {
3340 return [gdb_int128_helper c++]
3341 }
3342
3343 # Return true if the IFUNC feature is unsupported.
3344 gdb_caching_proc skip_ifunc_tests {
3345 if [gdb_can_simple_compile ifunc {
3346 extern void f_ ();
3347 typedef void F (void);
3348 F* g (void) { return &f_; }
3349 void f () __attribute__ ((ifunc ("g")));
3350 } object] {
3351 return 0
3352 } else {
3353 return 1
3354 }
3355 }
3356
3357 # Return whether we should skip tests for showing inlined functions in
3358 # backtraces. Requires get_compiler_info and get_debug_format.
3359
3360 proc skip_inline_frame_tests {} {
3361 # GDB only recognizes inlining information in DWARF 2 (DWARF 3).
3362 if { ! [test_debug_format "DWARF 2"] } {
3363 return 1
3364 }
3365
3366 # GCC before 4.1 does not emit DW_AT_call_file / DW_AT_call_line.
3367 if { ([test_compiler_info "gcc-2-*"]
3368 || [test_compiler_info "gcc-3-*"]
3369 || [test_compiler_info "gcc-4-0-*"]) } {
3370 return 1
3371 }
3372
3373 return 0
3374 }
3375
3376 # Return whether we should skip tests for showing variables from
3377 # inlined functions. Requires get_compiler_info and get_debug_format.
3378
3379 proc skip_inline_var_tests {} {
3380 # GDB only recognizes inlining information in DWARF 2 (DWARF 3).
3381 if { ! [test_debug_format "DWARF 2"] } {
3382 return 1
3383 }
3384
3385 return 0
3386 }
3387
3388 # Return a 1 if we should skip tests that require hardware breakpoints
3389
3390 proc skip_hw_breakpoint_tests {} {
3391 # Skip tests if requested by the board (note that no_hardware_watchpoints
3392 # disables both watchpoints and breakpoints)
3393 if { [target_info exists gdb,no_hardware_watchpoints]} {
3394 return 1
3395 }
3396
3397 # These targets support hardware breakpoints natively
3398 if { [istarget "i?86-*-*"]
3399 || [istarget "x86_64-*-*"]
3400 || [istarget "ia64-*-*"]
3401 || [istarget "arm*-*-*"]
3402 || [istarget "aarch64*-*-*"]
3403 || [istarget "s390*-*-*"] } {
3404 return 0
3405 }
3406
3407 return 1
3408 }
3409
3410 # Return a 1 if we should skip tests that require hardware watchpoints
3411
3412 proc skip_hw_watchpoint_tests {} {
3413 # Skip tests if requested by the board
3414 if { [target_info exists gdb,no_hardware_watchpoints]} {
3415 return 1
3416 }
3417
3418 # These targets support hardware watchpoints natively
3419 if { [istarget "i?86-*-*"]
3420 || [istarget "x86_64-*-*"]
3421 || [istarget "ia64-*-*"]
3422 || [istarget "arm*-*-*"]
3423 || [istarget "aarch64*-*-*"]
3424 || [istarget "powerpc*-*-linux*"]
3425 || [istarget "s390*-*-*"] } {
3426 return 0
3427 }
3428
3429 return 1
3430 }
3431
3432 # Return a 1 if we should skip tests that require *multiple* hardware
3433 # watchpoints to be active at the same time
3434
3435 proc skip_hw_watchpoint_multi_tests {} {
3436 if { [skip_hw_watchpoint_tests] } {
3437 return 1
3438 }
3439
3440 # These targets support just a single hardware watchpoint
3441 if { [istarget "arm*-*-*"]
3442 || [istarget "powerpc*-*-linux*"] } {
3443 return 1
3444 }
3445
3446 return 0
3447 }
3448
3449 # Return a 1 if we should skip tests that require read/access watchpoints
3450
3451 proc skip_hw_watchpoint_access_tests {} {
3452 if { [skip_hw_watchpoint_tests] } {
3453 return 1
3454 }
3455
3456 # These targets support just write watchpoints
3457 if { [istarget "s390*-*-*"] } {
3458 return 1
3459 }
3460
3461 return 0
3462 }
3463
3464 # Return 1 if we should skip tests that require the runtime unwinder
3465 # hook. This must be invoked while gdb is running, after shared
3466 # libraries have been loaded. This is needed because otherwise a
3467 # shared libgcc won't be visible.
3468
3469 proc skip_unwinder_tests {} {
3470 global gdb_prompt
3471
3472 set ok 0
3473 gdb_test_multiple "print _Unwind_DebugHook" "check for unwinder hook" {
3474 -re "= .*no debug info.*_Unwind_DebugHook.*\r\n$gdb_prompt $" {
3475 }
3476 -re "= .*_Unwind_DebugHook.*\r\n$gdb_prompt $" {
3477 set ok 1
3478 }
3479 -re "No symbol .* in current context.\r\n$gdb_prompt $" {
3480 }
3481 }
3482 if {!$ok} {
3483 gdb_test_multiple "info probe" "check for stap probe in unwinder" {
3484 -re ".*libgcc.*unwind.*\r\n$gdb_prompt $" {
3485 set ok 1
3486 }
3487 -re "\r\n$gdb_prompt $" {
3488 }
3489 }
3490 }
3491 return $ok
3492 }
3493
3494 # Return 1 if we should skip tests that require the libstdc++ stap
3495 # probes. This must be invoked while gdb is running, after shared
3496 # libraries have been loaded. PROMPT_REGEXP is the expected prompt.
3497
3498 proc skip_libstdcxx_probe_tests_prompt { prompt_regexp } {
3499 set supported 0
3500 gdb_test_multiple "info probe" "check for stap probe in libstdc++" \
3501 -prompt "$prompt_regexp" {
3502 -re ".*libstdcxx.*catch.*\r\n$prompt_regexp" {
3503 set supported 1
3504 }
3505 -re "\r\n$prompt_regexp" {
3506 }
3507 }
3508 set skip [expr !$supported]
3509 return $skip
3510 }
3511
3512 # As skip_libstdcxx_probe_tests_prompt, with gdb_prompt.
3513
3514 proc skip_libstdcxx_probe_tests {} {
3515 global gdb_prompt
3516 return [skip_libstdcxx_probe_tests_prompt "$gdb_prompt $"]
3517 }
3518
3519 # Return 1 if we should skip tests of the "compile" feature.
3520 # This must be invoked after the inferior has been started.
3521
3522 proc skip_compile_feature_tests {} {
3523 global gdb_prompt
3524
3525 set result 0
3526 gdb_test_multiple "compile code -- ;" "check for working compile command" {
3527 "Could not load libcc1.*\r\n$gdb_prompt $" {
3528 set result 1
3529 }
3530 -re "Command not supported on this host\\..*\r\n$gdb_prompt $" {
3531 set result 1
3532 }
3533 -re "\r\n$gdb_prompt $" {
3534 }
3535 }
3536 return $result
3537 }
3538
3539 # Helper for gdb_is_target_* procs. TARGET_NAME is the name of the target
3540 # we're looking for (used to build the test name). TARGET_STACK_REGEXP
3541 # is a regexp that will match the output of "maint print target-stack" if
3542 # the target in question is currently pushed. PROMPT_REGEXP is a regexp
3543 # matching the expected prompt after the command output.
3544
3545 proc gdb_is_target_1 { target_name target_stack_regexp prompt_regexp } {
3546 set test "probe for target ${target_name}"
3547 gdb_test_multiple "maint print target-stack" $test \
3548 -prompt "$prompt_regexp" {
3549 -re "${target_stack_regexp}${prompt_regexp}" {
3550 pass $test
3551 return 1
3552 }
3553 -re "$prompt_regexp" {
3554 pass $test
3555 }
3556 }
3557 return 0
3558 }
3559
3560 # Helper for gdb_is_target_remote where the expected prompt is variable.
3561
3562 proc gdb_is_target_remote_prompt { prompt_regexp } {
3563 return [gdb_is_target_1 "remote" ".*emote serial target in gdb-specific protocol.*" $prompt_regexp]
3564 }
3565
3566 # Check whether we're testing with the remote or extended-remote
3567 # targets.
3568
3569 proc gdb_is_target_remote { } {
3570 global gdb_prompt
3571
3572 return [gdb_is_target_remote_prompt "$gdb_prompt $"]
3573 }
3574
3575 # Check whether we're testing with the native target.
3576
3577 proc gdb_is_target_native { } {
3578 global gdb_prompt
3579
3580 return [gdb_is_target_1 "native" ".*native \\(Native process\\).*" "$gdb_prompt $"]
3581 }
3582
3583 # Return the effective value of use_gdb_stub.
3584 #
3585 # If the use_gdb_stub global has been set (it is set when the gdb process is
3586 # spawned), return that. Otherwise, return the value of the use_gdb_stub
3587 # property from the board file.
3588 #
3589 # This is the preferred way of checking use_gdb_stub, since it allows to check
3590 # the value before the gdb has been spawned and it will return the correct value
3591 # even when it was overriden by the test.
3592
3593 proc use_gdb_stub {} {
3594 global use_gdb_stub
3595
3596 if [info exists use_gdb_stub] {
3597 return $use_gdb_stub
3598 }
3599
3600 return [target_info exists use_gdb_stub]
3601 }
3602
3603 # Return 1 if the current remote target is an instance of our GDBserver, 0
3604 # otherwise. Return -1 if there was an error and we can't tell.
3605
3606 gdb_caching_proc target_is_gdbserver {
3607 global gdb_prompt
3608
3609 set is_gdbserver -1
3610 set test "probing for GDBserver"
3611
3612 gdb_test_multiple "monitor help" $test {
3613 -re "The following monitor commands are supported.*Quit GDBserver.*$gdb_prompt $" {
3614 set is_gdbserver 1
3615 }
3616 -re "$gdb_prompt $" {
3617 set is_gdbserver 0
3618 }
3619 }
3620
3621 if { $is_gdbserver == -1 } {
3622 verbose -log "Unable to tell whether we are using GDBserver or not."
3623 }
3624
3625 return $is_gdbserver
3626 }
3627
3628 # N.B. compiler_info is intended to be local to this file.
3629 # Call test_compiler_info with no arguments to fetch its value.
3630 # Yes, this is counterintuitive when there's get_compiler_info,
3631 # but that's the current API.
3632 if [info exists compiler_info] {
3633 unset compiler_info
3634 }
3635
3636 set gcc_compiled 0
3637
3638 # Figure out what compiler I am using.
3639 # The result is cached so only the first invocation runs the compiler.
3640 #
3641 # ARG can be empty or "C++". If empty, "C" is assumed.
3642 #
3643 # There are several ways to do this, with various problems.
3644 #
3645 # [ gdb_compile -E $ifile -o $binfile.ci ]
3646 # source $binfile.ci
3647 #
3648 # Single Unix Spec v3 says that "-E -o ..." together are not
3649 # specified. And in fact, the native compiler on hp-ux 11 (among
3650 # others) does not work with "-E -o ...". Most targets used to do
3651 # this, and it mostly worked, because it works with gcc.
3652 #
3653 # [ catch "exec $compiler -E $ifile > $binfile.ci" exec_output ]
3654 # source $binfile.ci
3655 #
3656 # This avoids the problem with -E and -o together. This almost works
3657 # if the build machine is the same as the host machine, which is
3658 # usually true of the targets which are not gcc. But this code does
3659 # not figure which compiler to call, and it always ends up using the C
3660 # compiler. Not good for setting hp_aCC_compiler. Target
3661 # hppa*-*-hpux* used to do this.
3662 #
3663 # [ gdb_compile -E $ifile > $binfile.ci ]
3664 # source $binfile.ci
3665 #
3666 # dejagnu target_compile says that it supports output redirection,
3667 # but the code is completely different from the normal path and I
3668 # don't want to sweep the mines from that path. So I didn't even try
3669 # this.
3670 #
3671 # set cppout [ gdb_compile $ifile "" preprocess $args quiet ]
3672 # eval $cppout
3673 #
3674 # I actually do this for all targets now. gdb_compile runs the right
3675 # compiler, and TCL captures the output, and I eval the output.
3676 #
3677 # Unfortunately, expect logs the output of the command as it goes by,
3678 # and dejagnu helpfully prints a second copy of it right afterwards.
3679 # So I turn off expect logging for a moment.
3680 #
3681 # [ gdb_compile $ifile $ciexe_file executable $args ]
3682 # [ remote_exec $ciexe_file ]
3683 # [ source $ci_file.out ]
3684 #
3685 # I could give up on -E and just do this.
3686 # I didn't get desperate enough to try this.
3687 #
3688 # -- chastain 2004-01-06
3689
3690 proc get_compiler_info {{arg ""}} {
3691 # For compiler.c and compiler.cc
3692 global srcdir
3693
3694 # I am going to play with the log to keep noise out.
3695 global outdir
3696 global tool
3697
3698 # These come from compiler.c or compiler.cc
3699 global compiler_info
3700
3701 # Legacy global data symbols.
3702 global gcc_compiled
3703
3704 if [info exists compiler_info] {
3705 # Already computed.
3706 return 0
3707 }
3708
3709 # Choose which file to preprocess.
3710 set ifile "${srcdir}/lib/compiler.c"
3711 if { $arg == "c++" } {
3712 set ifile "${srcdir}/lib/compiler.cc"
3713 }
3714
3715 # Run $ifile through the right preprocessor.
3716 # Toggle gdb.log to keep the compiler output out of the log.
3717 set saved_log [log_file -info]
3718 log_file
3719 if [is_remote host] {
3720 # We have to use -E and -o together, despite the comments
3721 # above, because of how DejaGnu handles remote host testing.
3722 set ppout "$outdir/compiler.i"
3723 gdb_compile "${ifile}" "$ppout" preprocess [list "$arg" quiet getting_compiler_info]
3724 set file [open $ppout r]
3725 set cppout [read $file]
3726 close $file
3727 } else {
3728 set cppout [ gdb_compile "${ifile}" "" preprocess [list "$arg" quiet getting_compiler_info] ]
3729 }
3730 eval log_file $saved_log
3731
3732 # Eval the output.
3733 set unknown 0
3734 foreach cppline [ split "$cppout" "\n" ] {
3735 if { [ regexp "^#" "$cppline" ] } {
3736 # line marker
3737 } elseif { [ regexp "^\[\n\r\t \]*$" "$cppline" ] } {
3738 # blank line
3739 } elseif { [ regexp "^\[\n\r\t \]*set\[\n\r\t \]" "$cppline" ] } {
3740 # eval this line
3741 verbose "get_compiler_info: $cppline" 2
3742 eval "$cppline"
3743 } else {
3744 # unknown line
3745 verbose -log "get_compiler_info: $cppline"
3746 set unknown 1
3747 }
3748 }
3749
3750 # Set to unknown if for some reason compiler_info didn't get defined.
3751 if ![info exists compiler_info] {
3752 verbose -log "get_compiler_info: compiler_info not provided"
3753 set compiler_info "unknown"
3754 }
3755 # Also set to unknown compiler if any diagnostics happened.
3756 if { $unknown } {
3757 verbose -log "get_compiler_info: got unexpected diagnostics"
3758 set compiler_info "unknown"
3759 }
3760
3761 # Set the legacy symbols.
3762 set gcc_compiled 0
3763 regexp "^gcc-(\[0-9\]+)-" "$compiler_info" matchall gcc_compiled
3764
3765 # Log what happened.
3766 verbose -log "get_compiler_info: $compiler_info"
3767
3768 # Most compilers will evaluate comparisons and other boolean
3769 # operations to 0 or 1.
3770 uplevel \#0 { set true 1 }
3771 uplevel \#0 { set false 0 }
3772
3773 return 0
3774 }
3775
3776 # Return the compiler_info string if no arg is provided.
3777 # Otherwise the argument is a glob-style expression to match against
3778 # compiler_info.
3779
3780 proc test_compiler_info { {compiler ""} } {
3781 global compiler_info
3782 get_compiler_info
3783
3784 # If no arg, return the compiler_info string.
3785 if [string match "" $compiler] {
3786 return $compiler_info
3787 }
3788
3789 return [string match $compiler $compiler_info]
3790 }
3791
3792 proc current_target_name { } {
3793 global target_info
3794 if [info exists target_info(target,name)] {
3795 set answer $target_info(target,name)
3796 } else {
3797 set answer ""
3798 }
3799 return $answer
3800 }
3801
3802 set gdb_wrapper_initialized 0
3803 set gdb_wrapper_target ""
3804 set gdb_wrapper_file ""
3805 set gdb_wrapper_flags ""
3806
3807 proc gdb_wrapper_init { args } {
3808 global gdb_wrapper_initialized
3809 global gdb_wrapper_file
3810 global gdb_wrapper_flags
3811 global gdb_wrapper_target
3812
3813 if { $gdb_wrapper_initialized == 1 } { return; }
3814
3815 if {[target_info exists needs_status_wrapper] && \
3816 [target_info needs_status_wrapper] != "0"} {
3817 set result [build_wrapper "testglue.o"]
3818 if { $result != "" } {
3819 set gdb_wrapper_file [lindex $result 0]
3820 if ![is_remote host] {
3821 set gdb_wrapper_file [file join [pwd] $gdb_wrapper_file]
3822 }
3823 set gdb_wrapper_flags [lindex $result 1]
3824 } else {
3825 warning "Status wrapper failed to build."
3826 }
3827 } else {
3828 set gdb_wrapper_file ""
3829 set gdb_wrapper_flags ""
3830 }
3831 verbose "set gdb_wrapper_file = $gdb_wrapper_file"
3832 set gdb_wrapper_initialized 1
3833 set gdb_wrapper_target [current_target_name]
3834 }
3835
3836 # Determine options that we always want to pass to the compiler.
3837 gdb_caching_proc universal_compile_options {
3838 set me "universal_compile_options"
3839 set options {}
3840
3841 set src [standard_temp_file ccopts[pid].c]
3842 set obj [standard_temp_file ccopts[pid].o]
3843
3844 gdb_produce_source $src {
3845 int foo(void) { return 0; }
3846 }
3847
3848 # Try an option for disabling colored diagnostics. Some compilers
3849 # yield colored diagnostics by default (when run from a tty) unless
3850 # such an option is specified.
3851 set opt "additional_flags=-fdiagnostics-color=never"
3852 set lines [target_compile $src $obj object [list "quiet" $opt]]
3853 if [string match "" $lines] then {
3854 # Seems to have worked; use the option.
3855 lappend options $opt
3856 }
3857 file delete $src
3858 file delete $obj
3859
3860 verbose "$me: returning $options" 2
3861 return $options
3862 }
3863
3864 # Compile the code in $code to a file based on $name, using the flags
3865 # $compile_flag as well as debug, nowarning and quiet.
3866 # Return 1 if code can be compiled
3867 # Leave the file name of the resulting object in the upvar object.
3868
3869 proc gdb_simple_compile {name code {type object} {compile_flags {}} {object obj}} {
3870 upvar $object obj
3871
3872 switch -regexp -- $type {
3873 "executable" {
3874 set postfix "x"
3875 }
3876 "object" {
3877 set postfix "o"
3878 }
3879 "preprocess" {
3880 set postfix "i"
3881 }
3882 "assembly" {
3883 set postfix "s"
3884 }
3885 }
3886 set ext "c"
3887 foreach flag $compile_flags {
3888 if { "$flag" == "go" } {
3889 set ext "go"
3890 break
3891 }
3892 }
3893 set src [standard_temp_file $name-[pid].$ext]
3894 set obj [standard_temp_file $name-[pid].$postfix]
3895 set compile_flags [concat $compile_flags {debug nowarnings quiet}]
3896
3897 gdb_produce_source $src $code
3898
3899 verbose "$name: compiling testfile $src" 2
3900 set lines [gdb_compile $src $obj $type $compile_flags]
3901
3902 file delete $src
3903
3904 if ![string match "" $lines] then {
3905 verbose "$name: compilation failed, returning 0" 2
3906 return 0
3907 }
3908 return 1
3909 }
3910
3911 # Compile the code in $code to a file based on $name, using the flags
3912 # $compile_flag as well as debug, nowarning and quiet.
3913 # Return 1 if code can be compiled
3914 # Delete all created files and objects.
3915
3916 proc gdb_can_simple_compile {name code {type object} {compile_flags ""}} {
3917 set ret [gdb_simple_compile $name $code $type $compile_flags temp_obj]
3918 file delete $temp_obj
3919 return $ret
3920 }
3921
3922 # Some targets need to always link a special object in. Save its path here.
3923 global gdb_saved_set_unbuffered_mode_obj
3924 set gdb_saved_set_unbuffered_mode_obj ""
3925
3926 # Compile source files specified by SOURCE into a binary of type TYPE at path
3927 # DEST. gdb_compile is implemented using DejaGnu's target_compile, so the type
3928 # parameter and most options are passed directly to it.
3929 #
3930 # The type can be one of the following:
3931 #
3932 # - object: Compile into an object file.
3933 # - executable: Compile and link into an executable.
3934 # - preprocess: Preprocess the source files.
3935 # - assembly: Generate assembly listing.
3936 #
3937 # The following options are understood and processed by gdb_compile:
3938 #
3939 # - shlib=so_path: Add SO_PATH to the sources, and enable some target-specific
3940 # quirks to be able to use shared libraries.
3941 # - shlib_load: Link with appropriate libraries to allow the test to
3942 # dynamically load libraries at runtime. For example, on Linux, this adds
3943 # -ldl so that the test can use dlopen.
3944 # - nowarnings: Inhibit all compiler warnings.
3945 # - pie: Force creation of PIE executables.
3946 # - nopie: Prevent creation of PIE executables.
3947 #
3948 # And here are some of the not too obscure options understood by DejaGnu that
3949 # influence the compilation:
3950 #
3951 # - additional_flags=flag: Add FLAG to the compiler flags.
3952 # - libs=library: Add LIBRARY to the libraries passed to the linker. The
3953 # argument can be a file, in which case it's added to the sources, or a
3954 # linker flag.
3955 # - ldflags=flag: Add FLAG to the linker flags.
3956 # - incdir=path: Add PATH to the searched include directories.
3957 # - libdir=path: Add PATH to the linker searched directories.
3958 # - ada, c++, f77, f90, go, rust: Compile the file as Ada, C++,
3959 # Fortran 77, Fortran 90, Go or Rust.
3960 # - debug: Build with debug information.
3961 # - optimize: Build with optimization.
3962
3963 proc gdb_compile {source dest type options} {
3964 global GDB_TESTCASE_OPTIONS
3965 global gdb_wrapper_file
3966 global gdb_wrapper_flags
3967 global srcdir
3968 global objdir
3969 global gdb_saved_set_unbuffered_mode_obj
3970
3971 set outdir [file dirname $dest]
3972
3973 # Add platform-specific options if a shared library was specified using
3974 # "shlib=librarypath" in OPTIONS.
3975 set new_options {}
3976 if {[lsearch -exact $options rust] != -1} {
3977 # -fdiagnostics-color is not a rustcc option.
3978 } else {
3979 set new_options [universal_compile_options]
3980 }
3981
3982 # Some C/C++ testcases unconditionally pass -Wno-foo as additional
3983 # options to disable some warning. That is OK with GCC, because
3984 # by design, GCC accepts any -Wno-foo option, even if it doesn't
3985 # support -Wfoo. Clang however warns about unknown -Wno-foo by
3986 # default, unless you pass -Wno-unknown-warning-option as well.
3987 # We do that here, so that individual testcases don't have to
3988 # worry about it.
3989 if {[lsearch -exact $options getting_compiler_info] == -1
3990 && [lsearch -exact $options rust] == -1
3991 && [lsearch -exact $options ada] == -1
3992 && [lsearch -exact $options f77] == -1
3993 && [lsearch -exact $options f90] == -1
3994 && [lsearch -exact $options go] == -1
3995 && [test_compiler_info "clang-*"]} {
3996 lappend new_options "additional_flags=-Wno-unknown-warning-option"
3997 }
3998
3999 # Treating .c input files as C++ is deprecated in Clang, so
4000 # explicitly force C++ language.
4001 if { [lsearch -exact $options getting_compiler_info] == -1
4002 && [lsearch -exact $options c++] != -1
4003 && [string match *.c $source] != 0 } {
4004
4005 # gdb_compile cannot handle this combination of options, the
4006 # result is a command like "clang -x c++ foo.c bar.so -o baz"
4007 # which tells Clang to treat bar.so as C++. The solution is
4008 # to call gdb_compile twice--once to compile, once to link--
4009 # either directly, or via build_executable_from_specs.
4010 if { [lsearch $options shlib=*] != -1 } {
4011 error "incompatible gdb_compile options"
4012 }
4013
4014 if {[test_compiler_info "clang-*"]} {
4015 lappend new_options early_flags=-x\ c++
4016 }
4017 }
4018
4019 # Place (and look for) Fortran `.mod` files in the output
4020 # directory for this specific test.
4021 if {[lsearch -exact $options f77] != -1 \
4022 || [lsearch -exact $options f90] != -1 } {
4023 # Fortran compile.
4024 set mod_path [standard_output_file ""]
4025 lappend new_options "additional_flags=-J${mod_path}"
4026 }
4027
4028 set shlib_found 0
4029 set shlib_load 0
4030 set getting_compiler_info 0
4031 foreach opt $options {
4032 if {[regexp {^shlib=(.*)} $opt dummy_var shlib_name]
4033 && $type == "executable"} {
4034 if [test_compiler_info "xlc-*"] {
4035 # IBM xlc compiler doesn't accept shared library named other
4036 # than .so: use "-Wl," to bypass this
4037 lappend source "-Wl,$shlib_name"
4038 } elseif { ([istarget "*-*-mingw*"]
4039 || [istarget *-*-cygwin*]
4040 || [istarget *-*-pe*])} {
4041 lappend source "${shlib_name}.a"
4042 } else {
4043 lappend source $shlib_name
4044 }
4045 if { $shlib_found == 0 } {
4046 set shlib_found 1
4047 if { ([istarget "*-*-mingw*"]
4048 || [istarget *-*-cygwin*]) } {
4049 lappend new_options "additional_flags=-Wl,--enable-auto-import"
4050 }
4051 if { [test_compiler_info "gcc-*"] || [test_compiler_info "clang-*"] } {
4052 # Undo debian's change in the default.
4053 # Put it at the front to not override any user-provided
4054 # value, and to make sure it appears in front of all the
4055 # shlibs!
4056 lappend new_options "early_flags=-Wl,--no-as-needed"
4057 }
4058 }
4059 } elseif { $opt == "shlib_load" && $type == "executable" } {
4060 set shlib_load 1
4061 } elseif { $opt == "getting_compiler_info" } {
4062 # If this is set, calling test_compiler_info will cause recursion.
4063 set getting_compiler_info 1
4064 } else {
4065 lappend new_options $opt
4066 }
4067 }
4068
4069 # Ensure stack protector is disabled for GCC, as this causes problems with
4070 # DWARF line numbering.
4071 # See https://gcc.gnu.org/bugzilla/show_bug.cgi?id=88432
4072 # This option defaults to on for Debian/Ubuntu.
4073 if { $getting_compiler_info == 0
4074 && [test_compiler_info {gcc-*-*}]
4075 && !([test_compiler_info {gcc-[0-3]-*}]
4076 || [test_compiler_info {gcc-4-0-*}])
4077 && [lsearch -exact $options rust] == -1} {
4078 # Put it at the front to not override any user-provided value.
4079 lappend new_options "early_flags=-fno-stack-protector"
4080 }
4081
4082 # Because we link with libraries using their basename, we may need
4083 # (depending on the platform) to set a special rpath value, to allow
4084 # the executable to find the libraries it depends on.
4085 if { $shlib_load || $shlib_found } {
4086 if { ([istarget "*-*-mingw*"]
4087 || [istarget *-*-cygwin*]
4088 || [istarget *-*-pe*]) } {
4089 # Do not need anything.
4090 } elseif { [istarget *-*-freebsd*] || [istarget *-*-openbsd*] } {
4091 lappend new_options "ldflags=-Wl,-rpath,${outdir}"
4092 } elseif { [istarget arm*-*-symbianelf*] } {
4093 if { $shlib_load } {
4094 lappend new_options "libs=-ldl"
4095 }
4096 } else {
4097 if { $shlib_load } {
4098 lappend new_options "libs=-ldl"
4099 }
4100 lappend new_options "ldflags=-Wl,-rpath,\\\$ORIGIN"
4101 }
4102 }
4103 set options $new_options
4104
4105 if [info exists GDB_TESTCASE_OPTIONS] {
4106 lappend options "additional_flags=$GDB_TESTCASE_OPTIONS"
4107 }
4108 verbose "options are $options"
4109 verbose "source is $source $dest $type $options"
4110
4111 gdb_wrapper_init
4112
4113 if {[target_info exists needs_status_wrapper] && \
4114 [target_info needs_status_wrapper] != "0" && \
4115 $gdb_wrapper_file != "" } {
4116 lappend options "libs=${gdb_wrapper_file}"
4117 lappend options "ldflags=${gdb_wrapper_flags}"
4118 }
4119
4120 # Replace the "nowarnings" option with the appropriate additional_flags
4121 # to disable compiler warnings.
4122 set nowarnings [lsearch -exact $options nowarnings]
4123 if {$nowarnings != -1} {
4124 if [target_info exists gdb,nowarnings_flag] {
4125 set flag "additional_flags=[target_info gdb,nowarnings_flag]"
4126 } else {
4127 set flag "additional_flags=-w"
4128 }
4129 set options [lreplace $options $nowarnings $nowarnings $flag]
4130 }
4131
4132 # Replace the "pie" option with the appropriate compiler and linker flags
4133 # to enable PIE executables.
4134 set pie [lsearch -exact $options pie]
4135 if {$pie != -1} {
4136 if [target_info exists gdb,pie_flag] {
4137 set flag "additional_flags=[target_info gdb,pie_flag]"
4138 } else {
4139 # For safety, use fPIE rather than fpie. On AArch64, m68k, PowerPC
4140 # and SPARC, fpie can cause compile errors due to the GOT exceeding
4141 # a maximum size. On other architectures the two flags are
4142 # identical (see the GCC manual). Note Debian9 and Ubuntu16.10
4143 # onwards default GCC to using fPIE. If you do require fpie, then
4144 # it can be set using the pie_flag.
4145 set flag "additional_flags=-fPIE"
4146 }
4147 set options [lreplace $options $pie $pie $flag]
4148
4149 if [target_info exists gdb,pie_ldflag] {
4150 set flag "ldflags=[target_info gdb,pie_ldflag]"
4151 } else {
4152 set flag "ldflags=-pie"
4153 }
4154 lappend options "$flag"
4155 }
4156
4157 # Replace the "nopie" option with the appropriate linker flag to disable
4158 # PIE executables. There are no compiler flags for this option.
4159 set nopie [lsearch -exact $options nopie]
4160 if {$nopie != -1} {
4161 if [target_info exists gdb,nopie_flag] {
4162 set flag "ldflags=[target_info gdb,nopie_flag]"
4163 } else {
4164 set flag "ldflags=-no-pie"
4165 }
4166 set options [lreplace $options $nopie $nopie $flag]
4167 }
4168
4169 if { $type == "executable" } {
4170 if { ([istarget "*-*-mingw*"]
4171 || [istarget "*-*-*djgpp"]
4172 || [istarget "*-*-cygwin*"])} {
4173 # Force output to unbuffered mode, by linking in an object file
4174 # with a global contructor that calls setvbuf.
4175 #
4176 # Compile the special object separately for two reasons:
4177 # 1) Insulate it from $options.
4178 # 2) Avoid compiling it for every gdb_compile invocation,
4179 # which is time consuming, especially if we're remote
4180 # host testing.
4181 #
4182 if { $gdb_saved_set_unbuffered_mode_obj == "" } {
4183 verbose "compiling gdb_saved_set_unbuffered_obj"
4184 set unbuf_src ${srcdir}/lib/set_unbuffered_mode.c
4185 set unbuf_obj ${objdir}/set_unbuffered_mode.o
4186
4187 set result [gdb_compile "${unbuf_src}" "${unbuf_obj}" object {nowarnings}]
4188 if { $result != "" } {
4189 return $result
4190 }
4191 if {[is_remote host]} {
4192 set gdb_saved_set_unbuffered_mode_obj set_unbuffered_mode_saved.o
4193 } else {
4194 set gdb_saved_set_unbuffered_mode_obj ${objdir}/set_unbuffered_mode_saved.o
4195 }
4196 # Link a copy of the output object, because the
4197 # original may be automatically deleted.
4198 remote_download host $unbuf_obj $gdb_saved_set_unbuffered_mode_obj
4199 } else {
4200 verbose "gdb_saved_set_unbuffered_obj already compiled"
4201 }
4202
4203 # Rely on the internal knowledge that the global ctors are ran in
4204 # reverse link order. In that case, we can use ldflags to
4205 # avoid copying the object file to the host multiple
4206 # times.
4207 # This object can only be added if standard libraries are
4208 # used. Thus, we need to disable it if -nostdlib option is used
4209 if {[lsearch -regexp $options "-nostdlib"] < 0 } {
4210 lappend options "ldflags=$gdb_saved_set_unbuffered_mode_obj"
4211 }
4212 }
4213 }
4214
4215 set result [target_compile $source $dest $type $options]
4216
4217 # Prune uninteresting compiler (and linker) output.
4218 regsub "Creating library file: \[^\r\n\]*\[\r\n\]+" $result "" result
4219
4220 regsub "\[\r\n\]*$" "$result" "" result
4221 regsub "^\[\r\n\]*" "$result" "" result
4222
4223 if { $type == "executable" && $result == "" \
4224 && ($nopie != -1 || $pie != -1) } {
4225 set is_pie [exec_is_pie "$dest"]
4226 if { $nopie != -1 && $is_pie == 1 } {
4227 set result "nopie failed to prevent PIE executable"
4228 } elseif { $pie != -1 && $is_pie == 0 } {
4229 set result "pie failed to generate PIE executable"
4230 }
4231 }
4232
4233 if {[lsearch $options quiet] < 0} {
4234 # We shall update this on a per language basis, to avoid
4235 # changing the entire testsuite in one go.
4236 if {[lsearch $options f77] >= 0} {
4237 gdb_compile_test $source $result
4238 } elseif { $result != "" } {
4239 clone_output "gdb compile failed, $result"
4240 }
4241 }
4242 return $result
4243 }
4244
4245
4246 # This is just like gdb_compile, above, except that it tries compiling
4247 # against several different thread libraries, to see which one this
4248 # system has.
4249 proc gdb_compile_pthreads {source dest type options} {
4250 if {$type != "executable"} {
4251 return [gdb_compile $source $dest $type $options]
4252 }
4253 set built_binfile 0
4254 set why_msg "unrecognized error"
4255 foreach lib {-lpthreads -lpthread -lthread ""} {
4256 # This kind of wipes out whatever libs the caller may have
4257 # set. Or maybe theirs will override ours. How infelicitous.
4258 set options_with_lib [concat $options [list libs=$lib quiet]]
4259 set ccout [gdb_compile $source $dest $type $options_with_lib]
4260 switch -regexp -- $ccout {
4261 ".*no posix threads support.*" {
4262 set why_msg "missing threads include file"
4263 break
4264 }
4265 ".*cannot open -lpthread.*" {
4266 set why_msg "missing runtime threads library"
4267 }
4268 ".*Can't find library for -lpthread.*" {
4269 set why_msg "missing runtime threads library"
4270 }
4271 {^$} {
4272 pass "successfully compiled posix threads test case"
4273 set built_binfile 1
4274 break
4275 }
4276 }
4277 }
4278 if {!$built_binfile} {
4279 unsupported "couldn't compile [file tail $source]: ${why_msg}"
4280 return -1
4281 }
4282 }
4283
4284 # Build a shared library from SOURCES.
4285
4286 proc gdb_compile_shlib {sources dest options} {
4287 set obj_options $options
4288
4289 set ada 0
4290 if { [lsearch -exact $options "ada"] >= 0 } {
4291 set ada 1
4292 }
4293
4294 set info_options ""
4295 if { [lsearch -exact $options "c++"] >= 0 } {
4296 set info_options "c++"
4297 }
4298 if [get_compiler_info ${info_options}] {
4299 return -1
4300 }
4301
4302 switch -glob [test_compiler_info] {
4303 "xlc-*" {
4304 lappend obj_options "additional_flags=-qpic"
4305 }
4306 "clang-*" {
4307 if { !([istarget "*-*-cygwin*"]
4308 || [istarget "*-*-mingw*"]) } {
4309 lappend obj_options "additional_flags=-fpic"
4310 }
4311 }
4312 "gcc-*" {
4313 if { !([istarget "powerpc*-*-aix*"]
4314 || [istarget "rs6000*-*-aix*"]
4315 || [istarget "*-*-cygwin*"]
4316 || [istarget "*-*-mingw*"]
4317 || [istarget "*-*-pe*"]) } {
4318 lappend obj_options "additional_flags=-fpic"
4319 }
4320 }
4321 "icc-*" {
4322 lappend obj_options "additional_flags=-fpic"
4323 }
4324 default {
4325 # don't know what the compiler is...
4326 }
4327 }
4328
4329 set outdir [file dirname $dest]
4330 set objects ""
4331 foreach source $sources {
4332 if {[file extension $source] == ".o"} {
4333 # Already a .o file.
4334 lappend objects $source
4335 continue
4336 }
4337
4338 set sourcebase [file tail $source]
4339
4340 if { $ada } {
4341 # Gnatmake doesn't like object name foo.adb.o, use foo.o.
4342 set sourcebase [file rootname $sourcebase]
4343 }
4344 set object ${outdir}/${sourcebase}.o
4345
4346 if { $ada } {
4347 # Use gdb_compile_ada_1 instead of gdb_compile_ada to avoid the
4348 # PASS message.
4349 if {[gdb_compile_ada_1 $source $object object \
4350 $obj_options] != ""} {
4351 return -1
4352 }
4353 } else {
4354 if {[gdb_compile $source $object object \
4355 $obj_options] != ""} {
4356 return -1
4357 }
4358 }
4359
4360 lappend objects $object
4361 }
4362
4363 set link_options $options
4364 if { $ada } {
4365 # If we try to use gnatmake for the link, it will interpret the
4366 # object file as an .adb file. Remove ada from the options to
4367 # avoid it.
4368 set idx [lsearch $link_options "ada"]
4369 set link_options [lreplace $link_options $idx $idx]
4370 }
4371 if [test_compiler_info "xlc-*"] {
4372 lappend link_options "additional_flags=-qmkshrobj"
4373 } else {
4374 lappend link_options "additional_flags=-shared"
4375
4376 if { ([istarget "*-*-mingw*"]
4377 || [istarget *-*-cygwin*]
4378 || [istarget *-*-pe*]) } {
4379 if { [is_remote host] } {
4380 set name [file tail ${dest}]
4381 } else {
4382 set name ${dest}
4383 }
4384 lappend link_options "additional_flags=-Wl,--out-implib,${name}.a"
4385 } else {
4386 # Set the soname of the library. This causes the linker on ELF
4387 # systems to create the DT_NEEDED entry in the executable referring
4388 # to the soname of the library, and not its absolute path. This
4389 # (using the absolute path) would be problem when testing on a
4390 # remote target.
4391 #
4392 # In conjunction with setting the soname, we add the special
4393 # rpath=$ORIGIN value when building the executable, so that it's
4394 # able to find the library in its own directory.
4395 set destbase [file tail $dest]
4396 lappend link_options "additional_flags=-Wl,-soname,$destbase"
4397 }
4398 }
4399 if {[gdb_compile "${objects}" "${dest}" executable $link_options] != ""} {
4400 return -1
4401 }
4402 if { [is_remote host]
4403 && ([istarget "*-*-mingw*"]
4404 || [istarget *-*-cygwin*]
4405 || [istarget *-*-pe*]) } {
4406 set dest_tail_name [file tail ${dest}]
4407 remote_upload host $dest_tail_name.a ${dest}.a
4408 remote_file host delete $dest_tail_name.a
4409 }
4410
4411 return ""
4412 }
4413
4414 # This is just like gdb_compile_shlib, above, except that it tries compiling
4415 # against several different thread libraries, to see which one this
4416 # system has.
4417 proc gdb_compile_shlib_pthreads {sources dest options} {
4418 set built_binfile 0
4419 set why_msg "unrecognized error"
4420 foreach lib {-lpthreads -lpthread -lthread ""} {
4421 # This kind of wipes out whatever libs the caller may have
4422 # set. Or maybe theirs will override ours. How infelicitous.
4423 set options_with_lib [concat $options [list libs=$lib quiet]]
4424 set ccout [gdb_compile_shlib $sources $dest $options_with_lib]
4425 switch -regexp -- $ccout {
4426 ".*no posix threads support.*" {
4427 set why_msg "missing threads include file"
4428 break
4429 }
4430 ".*cannot open -lpthread.*" {
4431 set why_msg "missing runtime threads library"
4432 }
4433 ".*Can't find library for -lpthread.*" {
4434 set why_msg "missing runtime threads library"
4435 }
4436 {^$} {
4437 pass "successfully compiled posix threads test case"
4438 set built_binfile 1
4439 break
4440 }
4441 }
4442 }
4443 if {!$built_binfile} {
4444 unsupported "couldn't compile $sources: ${why_msg}"
4445 return -1
4446 }
4447 }
4448
4449 # This is just like gdb_compile_pthreads, above, except that we always add the
4450 # objc library for compiling Objective-C programs
4451 proc gdb_compile_objc {source dest type options} {
4452 set built_binfile 0
4453 set why_msg "unrecognized error"
4454 foreach lib {-lobjc -lpthreads -lpthread -lthread solaris} {
4455 # This kind of wipes out whatever libs the caller may have
4456 # set. Or maybe theirs will override ours. How infelicitous.
4457 if { $lib == "solaris" } {
4458 set lib "-lpthread -lposix4"
4459 }
4460 if { $lib != "-lobjc" } {
4461 set lib "-lobjc $lib"
4462 }
4463 set options_with_lib [concat $options [list libs=$lib quiet]]
4464 set ccout [gdb_compile $source $dest $type $options_with_lib]
4465 switch -regexp -- $ccout {
4466 ".*no posix threads support.*" {
4467 set why_msg "missing threads include file"
4468 break
4469 }
4470 ".*cannot open -lpthread.*" {
4471 set why_msg "missing runtime threads library"
4472 }
4473 ".*Can't find library for -lpthread.*" {
4474 set why_msg "missing runtime threads library"
4475 }
4476 {^$} {
4477 pass "successfully compiled objc with posix threads test case"
4478 set built_binfile 1
4479 break
4480 }
4481 }
4482 }
4483 if {!$built_binfile} {
4484 unsupported "couldn't compile [file tail $source]: ${why_msg}"
4485 return -1
4486 }
4487 }
4488
4489 # Build an OpenMP program from SOURCE. See prefatory comment for
4490 # gdb_compile, above, for discussion of the parameters to this proc.
4491
4492 proc gdb_compile_openmp {source dest type options} {
4493 lappend options "additional_flags=-fopenmp"
4494 return [gdb_compile $source $dest $type $options]
4495 }
4496
4497 # Send a command to GDB.
4498 # For options for TYPE see gdb_stdin_log_write
4499
4500 proc send_gdb { string {type standard}} {
4501 global suppress_flag
4502 if { $suppress_flag } {
4503 return "suppressed"
4504 }
4505 gdb_stdin_log_write $string $type
4506 return [remote_send host "$string"]
4507 }
4508
4509 # Send STRING to the inferior's terminal.
4510
4511 proc send_inferior { string } {
4512 global inferior_spawn_id
4513
4514 if {[catch "send -i $inferior_spawn_id -- \$string" errorInfo]} {
4515 return "$errorInfo"
4516 } else {
4517 return ""
4518 }
4519 }
4520
4521 #
4522 #
4523
4524 proc gdb_expect { args } {
4525 if { [llength $args] == 2 && [lindex $args 0] != "-re" } {
4526 set atimeout [lindex $args 0]
4527 set expcode [list [lindex $args 1]]
4528 } else {
4529 set expcode $args
4530 }
4531
4532 # A timeout argument takes precedence, otherwise of all the timeouts
4533 # select the largest.
4534 if [info exists atimeout] {
4535 set tmt $atimeout
4536 } else {
4537 set tmt [get_largest_timeout]
4538 }
4539
4540 global suppress_flag
4541 global remote_suppress_flag
4542 if [info exists remote_suppress_flag] {
4543 set old_val $remote_suppress_flag
4544 }
4545 if [info exists suppress_flag] {
4546 if { $suppress_flag } {
4547 set remote_suppress_flag 1
4548 }
4549 }
4550 set code [catch \
4551 {uplevel remote_expect host $tmt $expcode} string]
4552 if [info exists old_val] {
4553 set remote_suppress_flag $old_val
4554 } else {
4555 if [info exists remote_suppress_flag] {
4556 unset remote_suppress_flag
4557 }
4558 }
4559
4560 if {$code == 1} {
4561 global errorInfo errorCode
4562
4563 return -code error -errorinfo $errorInfo -errorcode $errorCode $string
4564 } else {
4565 return -code $code $string
4566 }
4567 }
4568
4569 # gdb_expect_list TEST SENTINEL LIST -- expect a sequence of outputs
4570 #
4571 # Check for long sequence of output by parts.
4572 # TEST: is the test message to be printed with the test success/fail.
4573 # SENTINEL: Is the terminal pattern indicating that output has finished.
4574 # LIST: is the sequence of outputs to match.
4575 # If the sentinel is recognized early, it is considered an error.
4576 #
4577 # Returns:
4578 # 1 if the test failed,
4579 # 0 if the test passes,
4580 # -1 if there was an internal error.
4581
4582 proc gdb_expect_list {test sentinel list} {
4583 global gdb_prompt
4584 global suppress_flag
4585 set index 0
4586 set ok 1
4587 if { $suppress_flag } {
4588 set ok 0
4589 unresolved "${test}"
4590 }
4591 while { ${index} < [llength ${list}] } {
4592 set pattern [lindex ${list} ${index}]
4593 set index [expr ${index} + 1]
4594 verbose -log "gdb_expect_list pattern: /$pattern/" 2
4595 if { ${index} == [llength ${list}] } {
4596 if { ${ok} } {
4597 gdb_expect {
4598 -re "${pattern}${sentinel}" {
4599 # pass "${test}, pattern ${index} + sentinel"
4600 }
4601 -re "${sentinel}" {
4602 fail "${test} (pattern ${index} + sentinel)"
4603 set ok 0
4604 }
4605 -re ".*A problem internal to GDB has been detected" {
4606 fail "${test} (GDB internal error)"
4607 set ok 0
4608 gdb_internal_error_resync
4609 }
4610 timeout {
4611 fail "${test} (pattern ${index} + sentinel) (timeout)"
4612 set ok 0
4613 }
4614 }
4615 } else {
4616 # unresolved "${test}, pattern ${index} + sentinel"
4617 }
4618 } else {
4619 if { ${ok} } {
4620 gdb_expect {
4621 -re "${pattern}" {
4622 # pass "${test}, pattern ${index}"
4623 }
4624 -re "${sentinel}" {
4625 fail "${test} (pattern ${index})"
4626 set ok 0
4627 }
4628 -re ".*A problem internal to GDB has been detected" {
4629 fail "${test} (GDB internal error)"
4630 set ok 0
4631 gdb_internal_error_resync
4632 }
4633 timeout {
4634 fail "${test} (pattern ${index}) (timeout)"
4635 set ok 0
4636 }
4637 }
4638 } else {
4639 # unresolved "${test}, pattern ${index}"
4640 }
4641 }
4642 }
4643 if { ${ok} } {
4644 pass "${test}"
4645 return 0
4646 } else {
4647 return 1
4648 }
4649 }
4650
4651 #
4652 #
4653 proc gdb_suppress_entire_file { reason } {
4654 global suppress_flag
4655
4656 warning "$reason\n"
4657 set suppress_flag -1
4658 }
4659
4660 #
4661 # Set suppress_flag, which will cause all subsequent calls to send_gdb and
4662 # gdb_expect to fail immediately (until the next call to
4663 # gdb_stop_suppressing_tests).
4664 #
4665 proc gdb_suppress_tests { args } {
4666 global suppress_flag
4667
4668 return; # fnf - disable pending review of results where
4669 # testsuite ran better without this
4670 incr suppress_flag
4671
4672 if { $suppress_flag == 1 } {
4673 if { [llength $args] > 0 } {
4674 warning "[lindex $args 0]\n"
4675 } else {
4676 warning "Because of previous failure, all subsequent tests in this group will automatically fail.\n"
4677 }
4678 }
4679 }
4680
4681 #
4682 # Clear suppress_flag.
4683 #
4684 proc gdb_stop_suppressing_tests { } {
4685 global suppress_flag
4686
4687 if [info exists suppress_flag] {
4688 if { $suppress_flag > 0 } {
4689 set suppress_flag 0
4690 clone_output "Tests restarted.\n"
4691 }
4692 } else {
4693 set suppress_flag 0
4694 }
4695 }
4696
4697 proc gdb_clear_suppressed { } {
4698 global suppress_flag
4699
4700 set suppress_flag 0
4701 }
4702
4703 # Spawn the gdb process.
4704 #
4705 # This doesn't expect any output or do any other initialization,
4706 # leaving those to the caller.
4707 #
4708 # Overridable function -- you can override this function in your
4709 # baseboard file.
4710
4711 proc gdb_spawn { } {
4712 default_gdb_spawn
4713 }
4714
4715 # Spawn GDB with CMDLINE_FLAGS appended to the GDBFLAGS global.
4716
4717 proc gdb_spawn_with_cmdline_opts { cmdline_flags } {
4718 global GDBFLAGS
4719
4720 set saved_gdbflags $GDBFLAGS
4721
4722 if {$GDBFLAGS != ""} {
4723 append GDBFLAGS " "
4724 }
4725 append GDBFLAGS $cmdline_flags
4726
4727 set res [gdb_spawn]
4728
4729 set GDBFLAGS $saved_gdbflags
4730
4731 return $res
4732 }
4733
4734 # Start gdb running, wait for prompt, and disable the pagers.
4735
4736 # Overridable function -- you can override this function in your
4737 # baseboard file.
4738
4739 proc gdb_start { } {
4740 default_gdb_start
4741 }
4742
4743 proc gdb_exit { } {
4744 catch default_gdb_exit
4745 }
4746
4747 # Return true if we can spawn a program on the target and attach to
4748 # it.
4749
4750 proc can_spawn_for_attach { } {
4751 # We use exp_pid to get the inferior's pid, assuming that gives
4752 # back the pid of the program. On remote boards, that would give
4753 # us instead the PID of e.g., the ssh client, etc.
4754 if [is_remote target] then {
4755 return 0
4756 }
4757
4758 # The "attach" command doesn't make sense when the target is
4759 # stub-like, where GDB finds the program already started on
4760 # initial connection.
4761 if {[target_info exists use_gdb_stub]} {
4762 return 0
4763 }
4764
4765 # Assume yes.
4766 return 1
4767 }
4768
4769 # Kill a progress previously started with spawn_wait_for_attach, and
4770 # reap its wait status. PROC_SPAWN_ID is the spawn id associated with
4771 # the process.
4772
4773 proc kill_wait_spawned_process { proc_spawn_id } {
4774 set pid [exp_pid -i $proc_spawn_id]
4775
4776 verbose -log "killing ${pid}"
4777 remote_exec build "kill -9 ${pid}"
4778
4779 verbose -log "closing ${proc_spawn_id}"
4780 catch "close -i $proc_spawn_id"
4781 verbose -log "waiting for ${proc_spawn_id}"
4782
4783 # If somehow GDB ends up still attached to the process here, a
4784 # blocking wait hangs until gdb is killed (or until gdb / the
4785 # ptracer reaps the exit status too, but that won't happen because
4786 # something went wrong.) Passing -nowait makes expect tell Tcl to
4787 # wait for the PID in the background. That's fine because we
4788 # don't care about the exit status. */
4789 wait -nowait -i $proc_spawn_id
4790 }
4791
4792 # Returns the process id corresponding to the given spawn id.
4793
4794 proc spawn_id_get_pid { spawn_id } {
4795 set testpid [exp_pid -i $spawn_id]
4796
4797 if { [istarget "*-*-cygwin*"] } {
4798 # testpid is the Cygwin PID, GDB uses the Windows PID, which
4799 # might be different due to the way fork/exec works.
4800 set testpid [ exec ps -e | gawk "{ if (\$1 == $testpid) print \$4; }" ]
4801 }
4802
4803 return $testpid
4804 }
4805
4806 # Start a set of programs running and then wait for a bit, to be sure
4807 # that they can be attached to. Return a list of processes spawn IDs,
4808 # one element for each process spawned. It's a test error to call
4809 # this when [can_spawn_for_attach] is false.
4810
4811 proc spawn_wait_for_attach { executable_list } {
4812 set spawn_id_list {}
4813
4814 if ![can_spawn_for_attach] {
4815 # The caller should have checked can_spawn_for_attach itself
4816 # before getting here.
4817 error "can't spawn for attach with this target/board"
4818 }
4819
4820 foreach {executable} $executable_list {
4821 # Note we use Expect's spawn, not Tcl's exec, because with
4822 # spawn we control when to wait for/reap the process. That
4823 # allows killing the process by PID without being subject to
4824 # pid-reuse races.
4825 lappend spawn_id_list [remote_spawn target $executable]
4826 }
4827
4828 sleep 2
4829
4830 return $spawn_id_list
4831 }
4832
4833 #
4834 # gdb_load_cmd -- load a file into the debugger.
4835 # ARGS - additional args to load command.
4836 # return a -1 if anything goes wrong.
4837 #
4838 proc gdb_load_cmd { args } {
4839 global gdb_prompt
4840
4841 if [target_info exists gdb_load_timeout] {
4842 set loadtimeout [target_info gdb_load_timeout]
4843 } else {
4844 set loadtimeout 1600
4845 }
4846 send_gdb "load $args\n"
4847 verbose "Timeout is now $loadtimeout seconds" 2
4848 gdb_expect $loadtimeout {
4849 -re "Loading section\[^\r\]*\r\n" {
4850 exp_continue
4851 }
4852 -re "Start address\[\r\]*\r\n" {
4853 exp_continue
4854 }
4855 -re "Transfer rate\[\r\]*\r\n" {
4856 exp_continue
4857 }
4858 -re "Memory access error\[^\r\]*\r\n" {
4859 perror "Failed to load program"
4860 return -1
4861 }
4862 -re "$gdb_prompt $" {
4863 return 0
4864 }
4865 -re "(.*)\r\n$gdb_prompt " {
4866 perror "Unexpected reponse from 'load' -- $expect_out(1,string)"
4867 return -1
4868 }
4869 timeout {
4870 perror "Timed out trying to load $args."
4871 return -1
4872 }
4873 }
4874 return -1
4875 }
4876
4877 # Invoke "gcore". CORE is the name of the core file to write. TEST
4878 # is the name of the test case. This will return 1 if the core file
4879 # was created, 0 otherwise. If this fails to make a core file because
4880 # this configuration of gdb does not support making core files, it
4881 # will call "unsupported", not "fail". However, if this fails to make
4882 # a core file for some other reason, then it will call "fail".
4883
4884 proc gdb_gcore_cmd {core test} {
4885 global gdb_prompt
4886
4887 set result 0
4888 gdb_test_multiple "gcore $core" $test {
4889 -re "Saved corefile .*\[\r\n\]+$gdb_prompt $" {
4890 pass $test
4891 set result 1
4892 }
4893 -re "(?:Can't create a corefile|Target does not support core file generation\\.)\[\r\n\]+$gdb_prompt $" {
4894 unsupported $test
4895 }
4896 }
4897
4898 return $result
4899 }
4900
4901 # Load core file CORE. TEST is the name of the test case.
4902 # This will record a pass/fail for loading the core file.
4903 # Returns:
4904 # 1 - core file is successfully loaded
4905 # 0 - core file loaded but has a non fatal error
4906 # -1 - core file failed to load
4907
4908 proc gdb_core_cmd { core test } {
4909 global gdb_prompt
4910
4911 gdb_test_multiple "core $core" "$test" {
4912 -re "\\\[Thread debugging using \[^ \r\n\]* enabled\\\]\r\n" {
4913 exp_continue
4914 }
4915 -re " is not a core dump:.*\r\n$gdb_prompt $" {
4916 fail "$test (bad file format)"
4917 return -1
4918 }
4919 -re -wrap "[string_to_regexp $core]: No such file or directory.*" {
4920 fail "$test (file not found)"
4921 return -1
4922 }
4923 -re "Couldn't find .* registers in core file.*\r\n$gdb_prompt $" {
4924 fail "$test (incomplete note section)"
4925 return 0
4926 }
4927 -re "Core was generated by .*\r\n$gdb_prompt $" {
4928 pass "$test"
4929 return 1
4930 }
4931 -re ".*$gdb_prompt $" {
4932 fail "$test"
4933 return -1
4934 }
4935 timeout {
4936 fail "$test (timeout)"
4937 return -1
4938 }
4939 }
4940 fail "unsupported output from 'core' command"
4941 return -1
4942 }
4943
4944 # Return the filename to download to the target and load on the target
4945 # for this shared library. Normally just LIBNAME, unless shared libraries
4946 # for this target have separate link and load images.
4947
4948 proc shlib_target_file { libname } {
4949 return $libname
4950 }
4951
4952 # Return the filename GDB will load symbols from when debugging this
4953 # shared library. Normally just LIBNAME, unless shared libraries for
4954 # this target have separate link and load images.
4955
4956 proc shlib_symbol_file { libname } {
4957 return $libname
4958 }
4959
4960 # Return the filename to download to the target and load for this
4961 # executable. Normally just BINFILE unless it is renamed to something
4962 # else for this target.
4963
4964 proc exec_target_file { binfile } {
4965 return $binfile
4966 }
4967
4968 # Return the filename GDB will load symbols from when debugging this
4969 # executable. Normally just BINFILE unless executables for this target
4970 # have separate files for symbols.
4971
4972 proc exec_symbol_file { binfile } {
4973 return $binfile
4974 }
4975
4976 # Rename the executable file. Normally this is just BINFILE1 being renamed
4977 # to BINFILE2, but some targets require multiple binary files.
4978 proc gdb_rename_execfile { binfile1 binfile2 } {
4979 file rename -force [exec_target_file ${binfile1}] \
4980 [exec_target_file ${binfile2}]
4981 if { [exec_target_file ${binfile1}] != [exec_symbol_file ${binfile1}] } {
4982 file rename -force [exec_symbol_file ${binfile1}] \
4983 [exec_symbol_file ${binfile2}]
4984 }
4985 }
4986
4987 # "Touch" the executable file to update the date. Normally this is just
4988 # BINFILE, but some targets require multiple files.
4989 proc gdb_touch_execfile { binfile } {
4990 set time [clock seconds]
4991 file mtime [exec_target_file ${binfile}] $time
4992 if { [exec_target_file ${binfile}] != [exec_symbol_file ${binfile}] } {
4993 file mtime [exec_symbol_file ${binfile}] $time
4994 }
4995 }
4996
4997 # Like remote_download but provides a gdb-specific behavior.
4998 #
4999 # If the destination board is remote, the local file FROMFILE is transferred as
5000 # usual with remote_download to TOFILE on the remote board. The destination
5001 # filename is added to the CLEANFILES global, so it can be cleaned up at the
5002 # end of the test.
5003 #
5004 # If the destination board is local, the destination path TOFILE is passed
5005 # through standard_output_file, and FROMFILE is copied there.
5006 #
5007 # In both cases, if TOFILE is omitted, it defaults to the [file tail] of
5008 # FROMFILE.
5009
5010 proc gdb_remote_download {dest fromfile {tofile {}}} {
5011 # If TOFILE is not given, default to the same filename as FROMFILE.
5012 if {[string length $tofile] == 0} {
5013 set tofile [file tail $fromfile]
5014 }
5015
5016 if {[is_remote $dest]} {
5017 # When the DEST is remote, we simply send the file to DEST.
5018 global cleanfiles
5019
5020 set destname [remote_download $dest $fromfile $tofile]
5021 lappend cleanfiles $destname
5022
5023 return $destname
5024 } else {
5025 # When the DEST is local, we copy the file to the test directory (where
5026 # the executable is).
5027 #
5028 # Note that we pass TOFILE through standard_output_file, regardless of
5029 # whether it is absolute or relative, because we don't want the tests
5030 # to be able to write outside their standard output directory.
5031
5032 set tofile [standard_output_file $tofile]
5033
5034 file copy -force $fromfile $tofile
5035
5036 return $tofile
5037 }
5038 }
5039
5040 # gdb_load_shlib LIB...
5041 #
5042 # Copy the listed library to the target.
5043
5044 proc gdb_load_shlib { file } {
5045 global gdb_spawn_id
5046
5047 if ![info exists gdb_spawn_id] {
5048 perror "gdb_load_shlib: GDB is not running"
5049 }
5050
5051 set dest [gdb_remote_download target [shlib_target_file $file]]
5052
5053 if {[is_remote target]} {
5054 # If the target is remote, we need to tell gdb where to find the
5055 # libraries.
5056 #
5057 # We could set this even when not testing remotely, but a user
5058 # generally won't set it unless necessary. In order to make the tests
5059 # more like the real-life scenarios, we don't set it for local testing.
5060 gdb_test "set solib-search-path [file dirname $file]" "" ""
5061 }
5062
5063 return $dest
5064 }
5065
5066 #
5067 # gdb_load -- load a file into the debugger. Specifying no file
5068 # defaults to the executable currently being debugged.
5069 # The return value is 0 for success, -1 for failure.
5070 # Many files in config/*.exp override this procedure.
5071 #
5072 proc gdb_load { arg } {
5073 if { $arg != "" } {
5074 return [gdb_file_cmd $arg]
5075 }
5076 return 0
5077 }
5078
5079 # gdb_reload -- load a file into the target. Called before "running",
5080 # either the first time or after already starting the program once,
5081 # for remote targets. Most files that override gdb_load should now
5082 # override this instead.
5083 #
5084 # INFERIOR_ARGS contains the arguments to pass to the inferiors, as a
5085 # single string to get interpreted by a shell. If the target board
5086 # overriding gdb_reload is a "stub", then it should arrange things such
5087 # these arguments make their way to the inferior process.
5088
5089 proc gdb_reload { {inferior_args {}} } {
5090 # For the benefit of existing configurations, default to gdb_load.
5091 # Specifying no file defaults to the executable currently being
5092 # debugged.
5093 return [gdb_load ""]
5094 }
5095
5096 proc gdb_continue { function } {
5097 global decimal
5098
5099 return [gdb_test "continue" ".*Breakpoint $decimal, $function .*" "continue to $function"]
5100 }
5101
5102 # Default implementation of gdb_init.
5103 proc default_gdb_init { test_file_name } {
5104 global gdb_wrapper_initialized
5105 global gdb_wrapper_target
5106 global gdb_test_file_name
5107 global cleanfiles
5108 global pf_prefix
5109
5110 # Reset the timeout value to the default. This way, any testcase
5111 # that changes the timeout value without resetting it cannot affect
5112 # the timeout used in subsequent testcases.
5113 global gdb_test_timeout
5114 global timeout
5115 set timeout $gdb_test_timeout
5116
5117 if { [regexp ".*gdb\.reverse\/.*" $test_file_name]
5118 && [target_info exists gdb_reverse_timeout] } {
5119 set timeout [target_info gdb_reverse_timeout]
5120 }
5121
5122 # If GDB_INOTIFY is given, check for writes to '.'. This is a
5123 # debugging tool to help confirm that the test suite is
5124 # parallel-safe. You need "inotifywait" from the
5125 # inotify-tools package to use this.
5126 global GDB_INOTIFY inotify_pid
5127 if {[info exists GDB_INOTIFY] && ![info exists inotify_pid]} {
5128 global outdir tool inotify_log_file
5129
5130 set exclusions {outputs temp gdb[.](log|sum) cache}
5131 set exclusion_re ([join $exclusions |])
5132
5133 set inotify_log_file [standard_temp_file inotify.out]
5134 set inotify_pid [exec inotifywait -r -m -e move,create,delete . \
5135 --exclude $exclusion_re \
5136 |& tee -a $outdir/$tool.log $inotify_log_file &]
5137
5138 # Wait for the watches; hopefully this is long enough.
5139 sleep 2
5140
5141 # Clear the log so that we don't emit a warning the first time
5142 # we check it.
5143 set fd [open $inotify_log_file w]
5144 close $fd
5145 }
5146
5147 # Block writes to all banned variables, and invocation of all
5148 # banned procedures...
5149 global banned_variables
5150 global banned_procedures
5151 global banned_traced
5152 if (!$banned_traced) {
5153 foreach banned_var $banned_variables {
5154 global "$banned_var"
5155 trace add variable "$banned_var" write error
5156 }
5157 foreach banned_proc $banned_procedures {
5158 global "$banned_proc"
5159 trace add execution "$banned_proc" enter error
5160 }
5161 set banned_traced 1
5162 }
5163
5164 # We set LC_ALL, LC_CTYPE, and LANG to C so that we get the same
5165 # messages as expected.
5166 setenv LC_ALL C
5167 setenv LC_CTYPE C
5168 setenv LANG C
5169
5170 # Don't let a .inputrc file or an existing setting of INPUTRC mess up
5171 # the test results. Even if /dev/null doesn't exist on the particular
5172 # platform, the readline library will use the default setting just by
5173 # failing to open the file. OTOH, opening /dev/null successfully will
5174 # also result in the default settings being used since nothing will be
5175 # read from this file.
5176 setenv INPUTRC "/dev/null"
5177
5178 # This disables style output, which would interfere with many
5179 # tests.
5180 setenv TERM "dumb"
5181
5182 # Ensure that GDBHISTFILE and GDBHISTSIZE are removed from the
5183 # environment, we don't want these modifications to the history
5184 # settings.
5185 unset -nocomplain ::env(GDBHISTFILE)
5186 unset -nocomplain ::env(GDBHISTSIZE)
5187
5188 # Initialize GDB's pty with a fixed size, to make sure we avoid pagination
5189 # during startup. See "man expect" for details about stty_init.
5190 global stty_init
5191 set stty_init "rows 25 cols 80"
5192
5193 # Some tests (for example gdb.base/maint.exp) shell out from gdb to use
5194 # grep. Clear GREP_OPTIONS to make the behavior predictable,
5195 # especially having color output turned on can cause tests to fail.
5196 setenv GREP_OPTIONS ""
5197
5198 # Clear $gdbserver_reconnect_p.
5199 global gdbserver_reconnect_p
5200 set gdbserver_reconnect_p 1
5201 unset gdbserver_reconnect_p
5202
5203 # Clear $last_loaded_file
5204 global last_loaded_file
5205 unset -nocomplain last_loaded_file
5206
5207 # Reset GDB number of instances
5208 global gdb_instances
5209 set gdb_instances 0
5210
5211 set cleanfiles {}
5212
5213 gdb_clear_suppressed
5214
5215 set gdb_test_file_name [file rootname [file tail $test_file_name]]
5216
5217 # Make sure that the wrapper is rebuilt
5218 # with the appropriate multilib option.
5219 if { $gdb_wrapper_target != [current_target_name] } {
5220 set gdb_wrapper_initialized 0
5221 }
5222
5223 # Unlike most tests, we have a small number of tests that generate
5224 # a very large amount of output. We therefore increase the expect
5225 # buffer size to be able to contain the entire test output. This
5226 # is especially needed by gdb.base/info-macros.exp.
5227 match_max -d 65536
5228 # Also set this value for the currently running GDB.
5229 match_max [match_max -d]
5230
5231 # We want to add the name of the TCL testcase to the PASS/FAIL messages.
5232 set pf_prefix "[file tail [file dirname $test_file_name]]/[file tail $test_file_name]:"
5233
5234 global gdb_prompt
5235 if [target_info exists gdb_prompt] {
5236 set gdb_prompt [target_info gdb_prompt]
5237 } else {
5238 set gdb_prompt "\\(gdb\\)"
5239 }
5240 global use_gdb_stub
5241 if [info exists use_gdb_stub] {
5242 unset use_gdb_stub
5243 }
5244
5245 gdb_setup_known_globals
5246
5247 if { [info procs ::gdb_tcl_unknown] != "" } {
5248 # Dejagnu overrides proc unknown. The dejagnu version may trigger in a
5249 # test-case but abort the entire test run. To fix this, we install a
5250 # local version here, which reverts dejagnu's override, and restore
5251 # dejagnu's version in gdb_finish.
5252 rename ::unknown ::dejagnu_unknown
5253 proc unknown { args } {
5254 # Use tcl's unknown.
5255 set cmd [lindex $args 0]
5256 unresolved "testcase aborted due to invalid command name: $cmd"
5257 return [uplevel 1 ::gdb_tcl_unknown $args]
5258 }
5259 }
5260 }
5261
5262 # Return a path using GDB_PARALLEL.
5263 # ARGS is a list of path elements to append to "$objdir/$GDB_PARALLEL".
5264 # GDB_PARALLEL must be defined, the caller must check.
5265 #
5266 # The default value for GDB_PARALLEL is, canonically, ".".
5267 # The catch is that tests don't expect an additional "./" in file paths so
5268 # omit any directory for the default case.
5269 # GDB_PARALLEL is written as "yes" for the default case in Makefile.in to mark
5270 # its special handling.
5271
5272 proc make_gdb_parallel_path { args } {
5273 global GDB_PARALLEL objdir
5274 set joiner [list "file" "join" $objdir]
5275 if { [info exists GDB_PARALLEL] && $GDB_PARALLEL != "yes" } {
5276 lappend joiner $GDB_PARALLEL
5277 }
5278 set joiner [concat $joiner $args]
5279 return [eval $joiner]
5280 }
5281
5282 # Turn BASENAME into a full file name in the standard output
5283 # directory. It is ok if BASENAME is the empty string; in this case
5284 # the directory is returned.
5285
5286 proc standard_output_file {basename} {
5287 global objdir subdir gdb_test_file_name
5288
5289 set dir [make_gdb_parallel_path outputs $subdir $gdb_test_file_name]
5290 file mkdir $dir
5291 # If running on MinGW, replace /c/foo with c:/foo
5292 if { [ishost *-*-mingw*] } {
5293 set dir [exec sh -c "cd ${dir} && pwd -W"]
5294 }
5295 return [file join $dir $basename]
5296 }
5297
5298 # Turn BASENAME into a full file name in the standard output directory. If
5299 # GDB has been launched more than once then append the count, starting with
5300 # a ".1" postfix.
5301
5302 proc standard_output_file_with_gdb_instance {basename} {
5303 global gdb_instances
5304 set count $gdb_instances
5305
5306 if {$count == 0} {
5307 return [standard_output_file $basename]
5308 }
5309 return [standard_output_file ${basename}.${count}]
5310 }
5311
5312 # Return the name of a file in our standard temporary directory.
5313
5314 proc standard_temp_file {basename} {
5315 # Since a particular runtest invocation is only executing a single test
5316 # file at any given time, we can use the runtest pid to build the
5317 # path of the temp directory.
5318 set dir [make_gdb_parallel_path temp [pid]]
5319 file mkdir $dir
5320 return [file join $dir $basename]
5321 }
5322
5323 # Rename file A to file B, if B does not already exists. Otherwise, leave B
5324 # as is and delete A. Return 1 if rename happened.
5325
5326 proc tentative_rename { a b } {
5327 global errorInfo errorCode
5328 set code [catch {file rename -- $a $b} result]
5329 if { $code == 1 && [lindex $errorCode 0] == "POSIX" \
5330 && [lindex $errorCode 1] == "EEXIST" } {
5331 file delete $a
5332 return 0
5333 }
5334 if {$code == 1} {
5335 return -code error -errorinfo $errorInfo -errorcode $errorCode $result
5336 } elseif {$code > 1} {
5337 return -code $code $result
5338 }
5339 return 1
5340 }
5341
5342 # Create a file with name FILENAME and contents TXT in the cache directory.
5343 # If EXECUTABLE, mark the new file for execution.
5344
5345 proc cached_file { filename txt {executable 0}} {
5346 set filename [make_gdb_parallel_path cache $filename]
5347
5348 if { [file exists $filename] } {
5349 return $filename
5350 }
5351
5352 set dir [file dirname $filename]
5353 file mkdir $dir
5354
5355 set tmp_filename $filename.[pid]
5356 set fd [open $tmp_filename w]
5357 puts $fd $txt
5358 close $fd
5359
5360 if { $executable } {
5361 exec chmod +x $tmp_filename
5362 }
5363 tentative_rename $tmp_filename $filename
5364
5365 return $filename
5366 }
5367
5368 # Set 'testfile', 'srcfile', and 'binfile'.
5369 #
5370 # ARGS is a list of source file specifications.
5371 # Without any arguments, the .exp file's base name is used to
5372 # compute the source file name. The ".c" extension is added in this case.
5373 # If ARGS is not empty, each entry is a source file specification.
5374 # If the specification starts with a "." or "-", it is treated as a suffix
5375 # to append to the .exp file's base name.
5376 # If the specification is the empty string, it is treated as if it
5377 # were ".c".
5378 # Otherwise it is a file name.
5379 # The first file in the list is used to set the 'srcfile' global.
5380 # Each subsequent name is used to set 'srcfile2', 'srcfile3', etc.
5381 #
5382 # Most tests should call this without arguments.
5383 #
5384 # If a completely different binary file name is needed, then it
5385 # should be handled in the .exp file with a suitable comment.
5386
5387 proc standard_testfile {args} {
5388 global gdb_test_file_name
5389 global subdir
5390 global gdb_test_file_last_vars
5391
5392 # Outputs.
5393 global testfile binfile
5394
5395 set testfile $gdb_test_file_name
5396 set binfile [standard_output_file ${testfile}]
5397
5398 if {[llength $args] == 0} {
5399 set args .c
5400 }
5401
5402 # Unset our previous output variables.
5403 # This can help catch hidden bugs.
5404 if {[info exists gdb_test_file_last_vars]} {
5405 foreach varname $gdb_test_file_last_vars {
5406 global $varname
5407 catch {unset $varname}
5408 }
5409 }
5410 # 'executable' is often set by tests.
5411 set gdb_test_file_last_vars {executable}
5412
5413 set suffix ""
5414 foreach arg $args {
5415 set varname srcfile$suffix
5416 global $varname
5417
5418 # Handle an extension.
5419 if {$arg == ""} {
5420 set arg $testfile.c
5421 } else {
5422 set first [string range $arg 0 0]
5423 if { $first == "." || $first == "-" } {
5424 set arg $testfile$arg
5425 }
5426 }
5427
5428 set $varname $arg
5429 lappend gdb_test_file_last_vars $varname
5430
5431 if {$suffix == ""} {
5432 set suffix 2
5433 } else {
5434 incr suffix
5435 }
5436 }
5437 }
5438
5439 # The default timeout used when testing GDB commands. We want to use
5440 # the same timeout as the default dejagnu timeout, unless the user has
5441 # already provided a specific value (probably through a site.exp file).
5442 global gdb_test_timeout
5443 if ![info exists gdb_test_timeout] {
5444 set gdb_test_timeout $timeout
5445 }
5446
5447 # A list of global variables that GDB testcases should not use.
5448 # We try to prevent their use by monitoring write accesses and raising
5449 # an error when that happens.
5450 set banned_variables { bug_id prms_id }
5451
5452 # A list of procedures that GDB testcases should not use.
5453 # We try to prevent their use by monitoring invocations and raising
5454 # an error when that happens.
5455 set banned_procedures { strace }
5456
5457 # gdb_init is called by runtest at start, but also by several
5458 # tests directly; gdb_finish is only called from within runtest after
5459 # each test source execution.
5460 # Placing several traces by repetitive calls to gdb_init leads
5461 # to problems, as only one trace is removed in gdb_finish.
5462 # To overcome this possible problem, we add a variable that records
5463 # if the banned variables and procedures are already traced.
5464 set banned_traced 0
5465
5466 # Global array that holds the name of all global variables at the time
5467 # a test script is started. After the test script has completed any
5468 # global not in this list is deleted.
5469 array set gdb_known_globals {}
5470
5471 # Setup the GDB_KNOWN_GLOBALS array with the names of all current
5472 # global variables.
5473 proc gdb_setup_known_globals {} {
5474 global gdb_known_globals
5475
5476 array set gdb_known_globals {}
5477 foreach varname [info globals] {
5478 set gdb_known_globals($varname) 1
5479 }
5480 }
5481
5482 # Cleanup the global namespace. Any global not in the
5483 # GDB_KNOWN_GLOBALS array is unset, this ensures we don't "leak"
5484 # globals from one test script to another.
5485 proc gdb_cleanup_globals {} {
5486 global gdb_known_globals gdb_persistent_globals
5487
5488 foreach varname [info globals] {
5489 if {![info exists gdb_known_globals($varname)]} {
5490 if { [info exists gdb_persistent_globals($varname)] } {
5491 continue
5492 }
5493 uplevel #0 unset $varname
5494 }
5495 }
5496 }
5497
5498 # Create gdb_tcl_unknown, a copy tcl's ::unknown, provided it's present as a
5499 # proc.
5500 set temp [interp create]
5501 if { [interp eval $temp "info procs ::unknown"] != "" } {
5502 set old_args [interp eval $temp "info args ::unknown"]
5503 set old_body [interp eval $temp "info body ::unknown"]
5504 eval proc gdb_tcl_unknown {$old_args} {$old_body}
5505 }
5506 interp delete $temp
5507 unset temp
5508
5509 # GDB implementation of ${tool}_init. Called right before executing the
5510 # test-case.
5511 # Overridable function -- you can override this function in your
5512 # baseboard file.
5513 proc gdb_init { args } {
5514 # A baseboard file overriding this proc and calling the default version
5515 # should behave the same as this proc. So, don't add code here, but to
5516 # the default version instead.
5517 return [default_gdb_init {*}$args]
5518 }
5519
5520 # GDB implementation of ${tool}_finish. Called right after executing the
5521 # test-case.
5522 proc gdb_finish { } {
5523 global gdbserver_reconnect_p
5524 global gdb_prompt
5525 global cleanfiles
5526 global known_globals
5527
5528 if { [info procs ::gdb_tcl_unknown] != "" } {
5529 # Restore dejagnu's version of proc unknown.
5530 rename ::unknown ""
5531 rename ::dejagnu_unknown ::unknown
5532 }
5533
5534 # Exit first, so that the files are no longer in use.
5535 gdb_exit
5536
5537 if { [llength $cleanfiles] > 0 } {
5538 eval remote_file target delete $cleanfiles
5539 set cleanfiles {}
5540 }
5541
5542 # Unblock write access to the banned variables. Dejagnu typically
5543 # resets some of them between testcases.
5544 global banned_variables
5545 global banned_procedures
5546 global banned_traced
5547 if ($banned_traced) {
5548 foreach banned_var $banned_variables {
5549 global "$banned_var"
5550 trace remove variable "$banned_var" write error
5551 }
5552 foreach banned_proc $banned_procedures {
5553 global "$banned_proc"
5554 trace remove execution "$banned_proc" enter error
5555 }
5556 set banned_traced 0
5557 }
5558
5559 global gdb_finish_hooks
5560 foreach gdb_finish_hook $gdb_finish_hooks {
5561 $gdb_finish_hook
5562 }
5563 set gdb_finish_hooks [list]
5564
5565 gdb_cleanup_globals
5566 }
5567
5568 global debug_format
5569 set debug_format "unknown"
5570
5571 # Run the gdb command "info source" and extract the debugging format
5572 # information from the output and save it in debug_format.
5573
5574 proc get_debug_format { } {
5575 global gdb_prompt
5576 global expect_out
5577 global debug_format
5578
5579 set debug_format "unknown"
5580 send_gdb "info source\n"
5581 gdb_expect 10 {
5582 -re "Compiled with (.*) debugging format.\r\n.*$gdb_prompt $" {
5583 set debug_format $expect_out(1,string)
5584 verbose "debug format is $debug_format"
5585 return 1
5586 }
5587 -re "No current source file.\r\n$gdb_prompt $" {
5588 perror "get_debug_format used when no current source file"
5589 return 0
5590 }
5591 -re "$gdb_prompt $" {
5592 warning "couldn't check debug format (no valid response)."
5593 return 1
5594 }
5595 timeout {
5596 warning "couldn't check debug format (timeout)."
5597 return 1
5598 }
5599 }
5600 }
5601
5602 # Return true if FORMAT matches the debug format the current test was
5603 # compiled with. FORMAT is a shell-style globbing pattern; it can use
5604 # `*', `[...]', and so on.
5605 #
5606 # This function depends on variables set by `get_debug_format', above.
5607
5608 proc test_debug_format {format} {
5609 global debug_format
5610
5611 return [expr [string match $format $debug_format] != 0]
5612 }
5613
5614 # Like setup_xfail, but takes the name of a debug format (DWARF 1,
5615 # COFF, stabs, etc). If that format matches the format that the
5616 # current test was compiled with, then the next test is expected to
5617 # fail for any target. Returns 1 if the next test or set of tests is
5618 # expected to fail, 0 otherwise (or if it is unknown). Must have
5619 # previously called get_debug_format.
5620 proc setup_xfail_format { format } {
5621 set ret [test_debug_format $format]
5622
5623 if {$ret} then {
5624 setup_xfail "*-*-*"
5625 }
5626 return $ret
5627 }
5628
5629 # gdb_get_line_number TEXT [FILE]
5630 #
5631 # Search the source file FILE, and return the line number of the
5632 # first line containing TEXT. If no match is found, an error is thrown.
5633 #
5634 # TEXT is a string literal, not a regular expression.
5635 #
5636 # The default value of FILE is "$srcdir/$subdir/$srcfile". If FILE is
5637 # specified, and does not start with "/", then it is assumed to be in
5638 # "$srcdir/$subdir". This is awkward, and can be fixed in the future,
5639 # by changing the callers and the interface at the same time.
5640 # In particular: gdb.base/break.exp, gdb.base/condbreak.exp,
5641 # gdb.base/ena-dis-br.exp.
5642 #
5643 # Use this function to keep your test scripts independent of the
5644 # exact line numbering of the source file. Don't write:
5645 #
5646 # send_gdb "break 20"
5647 #
5648 # This means that if anyone ever edits your test's source file,
5649 # your test could break. Instead, put a comment like this on the
5650 # source file line you want to break at:
5651 #
5652 # /* breakpoint spot: frotz.exp: test name */
5653 #
5654 # and then write, in your test script (which we assume is named
5655 # frotz.exp):
5656 #
5657 # send_gdb "break [gdb_get_line_number "frotz.exp: test name"]\n"
5658 #
5659 # (Yes, Tcl knows how to handle the nested quotes and brackets.
5660 # Try this:
5661 # $ tclsh
5662 # % puts "foo [lindex "bar baz" 1]"
5663 # foo baz
5664 # %
5665 # Tcl is quite clever, for a little stringy language.)
5666 #
5667 # ===
5668 #
5669 # The previous implementation of this procedure used the gdb search command.
5670 # This version is different:
5671 #
5672 # . It works with MI, and it also works when gdb is not running.
5673 #
5674 # . It operates on the build machine, not the host machine.
5675 #
5676 # . For now, this implementation fakes a current directory of
5677 # $srcdir/$subdir to be compatible with the old implementation.
5678 # This will go away eventually and some callers will need to
5679 # be changed.
5680 #
5681 # . The TEXT argument is literal text and matches literally,
5682 # not a regular expression as it was before.
5683 #
5684 # . State changes in gdb, such as changing the current file
5685 # and setting $_, no longer happen.
5686 #
5687 # After a bit of time we can forget about the differences from the
5688 # old implementation.
5689 #
5690 # --chastain 2004-08-05
5691
5692 proc gdb_get_line_number { text { file "" } } {
5693 global srcdir
5694 global subdir
5695 global srcfile
5696
5697 if { "$file" == "" } then {
5698 set file "$srcfile"
5699 }
5700 if { ! [regexp "^/" "$file"] } then {
5701 set file "$srcdir/$subdir/$file"
5702 }
5703
5704 if { [ catch { set fd [open "$file"] } message ] } then {
5705 error "$message"
5706 }
5707
5708 set found -1
5709 for { set line 1 } { 1 } { incr line } {
5710 if { [ catch { set nchar [gets "$fd" body] } message ] } then {
5711 error "$message"
5712 }
5713 if { $nchar < 0 } then {
5714 break
5715 }
5716 if { [string first "$text" "$body"] >= 0 } then {
5717 set found $line
5718 break
5719 }
5720 }
5721
5722 if { [ catch { close "$fd" } message ] } then {
5723 error "$message"
5724 }
5725
5726 if {$found == -1} {
5727 error "undefined tag \"$text\""
5728 }
5729
5730 return $found
5731 }
5732
5733 # Continue the program until it ends.
5734 #
5735 # MSSG is the error message that gets printed. If not given, a
5736 # default is used.
5737 # COMMAND is the command to invoke. If not given, "continue" is
5738 # used.
5739 # ALLOW_EXTRA is a flag indicating whether the test should expect
5740 # extra output between the "Continuing." line and the program
5741 # exiting. By default it is zero; if nonzero, any extra output
5742 # is accepted.
5743
5744 proc gdb_continue_to_end {{mssg ""} {command continue} {allow_extra 0}} {
5745 global inferior_exited_re use_gdb_stub
5746
5747 if {$mssg == ""} {
5748 set text "continue until exit"
5749 } else {
5750 set text "continue until exit at $mssg"
5751 }
5752 if {$allow_extra} {
5753 set extra ".*"
5754 } else {
5755 set extra ""
5756 }
5757
5758 # By default, we don't rely on exit() behavior of remote stubs --
5759 # it's common for exit() to be implemented as a simple infinite
5760 # loop, or a forced crash/reset. For native targets, by default, we
5761 # assume process exit is reported as such. If a non-reliable target
5762 # is used, we set a breakpoint at exit, and continue to that.
5763 if { [target_info exists exit_is_reliable] } {
5764 set exit_is_reliable [target_info exit_is_reliable]
5765 } else {
5766 set exit_is_reliable [expr ! $use_gdb_stub]
5767 }
5768
5769 if { ! $exit_is_reliable } {
5770 if {![gdb_breakpoint "exit"]} {
5771 return 0
5772 }
5773 gdb_test $command "Continuing..*Breakpoint .*exit.*" \
5774 $text
5775 } else {
5776 # Continue until we exit. Should not stop again.
5777 # Don't bother to check the output of the program, that may be
5778 # extremely tough for some remote systems.
5779 gdb_test $command \
5780 "Continuing.\[\r\n0-9\]+${extra}(... EXIT code 0\[\r\n\]+|$inferior_exited_re normally).*"\
5781 $text
5782 }
5783 }
5784
5785 proc rerun_to_main {} {
5786 global gdb_prompt use_gdb_stub
5787
5788 if $use_gdb_stub {
5789 gdb_run_cmd
5790 gdb_expect {
5791 -re ".*Breakpoint .*main .*$gdb_prompt $"\
5792 {pass "rerun to main" ; return 0}
5793 -re "$gdb_prompt $"\
5794 {fail "rerun to main" ; return 0}
5795 timeout {fail "(timeout) rerun to main" ; return 0}
5796 }
5797 } else {
5798 send_gdb "run\n"
5799 gdb_expect {
5800 -re "The program .* has been started already.*y or n. $" {
5801 send_gdb "y\n" answer
5802 exp_continue
5803 }
5804 -re "Starting program.*$gdb_prompt $"\
5805 {pass "rerun to main" ; return 0}
5806 -re "$gdb_prompt $"\
5807 {fail "rerun to main" ; return 0}
5808 timeout {fail "(timeout) rerun to main" ; return 0}
5809 }
5810 }
5811 }
5812
5813 # Return true if EXECUTABLE contains a .gdb_index or .debug_names index section.
5814
5815 proc exec_has_index_section { executable } {
5816 set readelf_program [gdb_find_readelf]
5817 set res [catch {exec $readelf_program -S $executable \
5818 | grep -E "\.gdb_index|\.debug_names" }]
5819 if { $res == 0 } {
5820 return 1
5821 }
5822 return 0
5823 }
5824
5825 # Return list with major and minor version of readelf, or an empty list.
5826 gdb_caching_proc readelf_version {
5827 set readelf_program [gdb_find_readelf]
5828 set res [catch {exec $readelf_program --version} output]
5829 if { $res != 0 } {
5830 return [list]
5831 }
5832 set lines [split $output \n]
5833 set line [lindex $lines 0]
5834 set res [regexp {[ \t]+([0-9]+)[.]([0-9]+)[^ \t]*$} \
5835 $line dummy major minor]
5836 if { $res != 1 } {
5837 return [list]
5838 }
5839 return [list $major $minor]
5840 }
5841
5842 # Return 1 if readelf prints the PIE flag, 0 if is doesn't, and -1 if unknown.
5843 proc readelf_prints_pie { } {
5844 set version [readelf_version]
5845 if { [llength $version] == 0 } {
5846 return -1
5847 }
5848 set major [lindex $version 0]
5849 set minor [lindex $version 1]
5850 # It would be better to construct a PIE executable and test if the PIE
5851 # flag is printed by readelf, but we cannot reliably construct a PIE
5852 # executable if the multilib_flags dictate otherwise
5853 # (--target_board=unix/-no-pie/-fno-PIE).
5854 return [version_at_least $major $minor 2 26]
5855 }
5856
5857 # Return 1 if EXECUTABLE is a Position Independent Executable, 0 if it is not,
5858 # and -1 if unknown.
5859
5860 proc exec_is_pie { executable } {
5861 set res [readelf_prints_pie]
5862 if { $res != 1 } {
5863 return -1
5864 }
5865 set readelf_program [gdb_find_readelf]
5866 # We're not testing readelf -d | grep "FLAGS_1.*Flags:.*PIE"
5867 # because the PIE flag is not set by all versions of gold, see PR
5868 # binutils/26039.
5869 set res [catch {exec $readelf_program -h $executable} output]
5870 if { $res != 0 } {
5871 return -1
5872 }
5873 set res [regexp -line {^[ \t]*Type:[ \t]*DYN \(Shared object file\)$} \
5874 $output]
5875 if { $res == 1 } {
5876 return 1
5877 }
5878 return 0
5879 }
5880
5881 # Return true if a test should be skipped due to lack of floating
5882 # point support or GDB can't fetch the contents from floating point
5883 # registers.
5884
5885 gdb_caching_proc gdb_skip_float_test {
5886 if [target_info exists gdb,skip_float_tests] {
5887 return 1
5888 }
5889
5890 # There is an ARM kernel ptrace bug that hardware VFP registers
5891 # are not updated after GDB ptrace set VFP registers. The bug
5892 # was introduced by kernel commit 8130b9d7b9d858aa04ce67805e8951e3cb6e9b2f
5893 # in 2012 and is fixed in e2dfb4b880146bfd4b6aa8e138c0205407cebbaf
5894 # in May 2016. In other words, kernels older than 4.6.3, 4.4.14,
5895 # 4.1.27, 3.18.36, and 3.14.73 have this bug.
5896 # This kernel bug is detected by check how does GDB change the
5897 # program result by changing one VFP register.
5898 if { [istarget "arm*-*-linux*"] } {
5899
5900 set compile_flags {debug nowarnings }
5901
5902 # Set up, compile, and execute a test program having VFP
5903 # operations.
5904 set src [standard_temp_file arm_vfp[pid].c]
5905 set exe [standard_temp_file arm_vfp[pid].x]
5906
5907 gdb_produce_source $src {
5908 int main() {
5909 double d = 4.0;
5910 int ret;
5911
5912 asm ("vldr d0, [%0]" : : "r" (&d));
5913 asm ("vldr d1, [%0]" : : "r" (&d));
5914 asm (".global break_here\n"
5915 "break_here:");
5916 asm ("vcmp.f64 d0, d1\n"
5917 "vmrs APSR_nzcv, fpscr\n"
5918 "bne L_value_different\n"
5919 "movs %0, #0\n"
5920 "b L_end\n"
5921 "L_value_different:\n"
5922 "movs %0, #1\n"
5923 "L_end:\n" : "=r" (ret) :);
5924
5925 /* Return $d0 != $d1. */
5926 return ret;
5927 }
5928 }
5929
5930 verbose "compiling testfile $src" 2
5931 set lines [gdb_compile $src $exe executable $compile_flags]
5932 file delete $src
5933
5934 if ![string match "" $lines] then {
5935 verbose "testfile compilation failed, returning 1" 2
5936 return 0
5937 }
5938
5939 # No error message, compilation succeeded so now run it via gdb.
5940 # Run the test up to 5 times to detect whether ptrace can
5941 # correctly update VFP registers or not.
5942 set skip_vfp_test 0
5943 for {set i 0} {$i < 5} {incr i} {
5944 global gdb_prompt srcdir subdir
5945
5946 gdb_exit
5947 gdb_start
5948 gdb_reinitialize_dir $srcdir/$subdir
5949 gdb_load "$exe"
5950
5951 runto_main
5952 gdb_test "break *break_here"
5953 gdb_continue_to_breakpoint "break_here"
5954
5955 # Modify $d0 to a different value, so the exit code should
5956 # be 1.
5957 gdb_test "set \$d0 = 5.0"
5958
5959 set test "continue to exit"
5960 gdb_test_multiple "continue" "$test" {
5961 -re "exited with code 01.*$gdb_prompt $" {
5962 }
5963 -re "exited normally.*$gdb_prompt $" {
5964 # However, the exit code is 0. That means something
5965 # wrong in setting VFP registers.
5966 set skip_vfp_test 1
5967 break
5968 }
5969 }
5970 }
5971
5972 gdb_exit
5973 remote_file build delete $exe
5974
5975 return $skip_vfp_test
5976 }
5977 return 0
5978 }
5979
5980 # Print a message and return true if a test should be skipped
5981 # due to lack of stdio support.
5982
5983 proc gdb_skip_stdio_test { msg } {
5984 if [target_info exists gdb,noinferiorio] {
5985 verbose "Skipping test '$msg': no inferior i/o."
5986 return 1
5987 }
5988 return 0
5989 }
5990
5991 proc gdb_skip_bogus_test { msg } {
5992 return 0
5993 }
5994
5995 # Return true if a test should be skipped due to lack of XML support
5996 # in the host GDB.
5997 # NOTE: This must be called while gdb is *not* running.
5998
5999 gdb_caching_proc gdb_skip_xml_test {
6000 global gdb_spawn_id
6001 global gdb_prompt
6002 global srcdir
6003
6004 if { [info exists gdb_spawn_id] } {
6005 error "GDB must not be running in gdb_skip_xml_tests."
6006 }
6007
6008 set xml_file [gdb_remote_download host "${srcdir}/gdb.xml/trivial.xml"]
6009
6010 gdb_start
6011 set xml_missing 0
6012 gdb_test_multiple "set tdesc filename $xml_file" "" {
6013 -re ".*XML support was disabled at compile time.*$gdb_prompt $" {
6014 set xml_missing 1
6015 }
6016 -re ".*$gdb_prompt $" { }
6017 }
6018 gdb_exit
6019 return $xml_missing
6020 }
6021
6022 # Return true if argv[0] is available.
6023
6024 gdb_caching_proc gdb_has_argv0 {
6025 set result 0
6026
6027 # Compile and execute a test program to check whether argv[0] is available.
6028 gdb_simple_compile has_argv0 {
6029 int main (int argc, char **argv) {
6030 return 0;
6031 }
6032 } executable
6033
6034
6035 # Helper proc.
6036 proc gdb_has_argv0_1 { exe } {
6037 global srcdir subdir
6038 global gdb_prompt hex
6039
6040 gdb_exit
6041 gdb_start
6042 gdb_reinitialize_dir $srcdir/$subdir
6043 gdb_load "$exe"
6044
6045 # Set breakpoint on main.
6046 gdb_test_multiple "break -q main" "break -q main" {
6047 -re "Breakpoint.*${gdb_prompt} $" {
6048 }
6049 -re "${gdb_prompt} $" {
6050 return 0
6051 }
6052 }
6053
6054 # Run to main.
6055 gdb_run_cmd
6056 gdb_test_multiple "" "run to main" {
6057 -re "Breakpoint.*${gdb_prompt} $" {
6058 }
6059 -re "${gdb_prompt} $" {
6060 return 0
6061 }
6062 }
6063
6064 set old_elements "200"
6065 set test "show print elements"
6066 gdb_test_multiple $test $test {
6067 -re "Limit on string chars or array elements to print is (\[^\r\n\]+)\\.\r\n$gdb_prompt $" {
6068 set old_elements $expect_out(1,string)
6069 }
6070 }
6071 set old_repeats "200"
6072 set test "show print repeats"
6073 gdb_test_multiple $test $test {
6074 -re "Threshold for repeated print elements is (\[^\r\n\]+)\\.\r\n$gdb_prompt $" {
6075 set old_repeats $expect_out(1,string)
6076 }
6077 }
6078 gdb_test_no_output "set print elements unlimited" ""
6079 gdb_test_no_output "set print repeats unlimited" ""
6080
6081 set retval 0
6082 # Check whether argc is 1.
6083 gdb_test_multiple "p argc" "p argc" {
6084 -re " = 1\r\n${gdb_prompt} $" {
6085
6086 gdb_test_multiple "p argv\[0\]" "p argv\[0\]" {
6087 -re " = $hex \".*[file tail $exe]\"\r\n${gdb_prompt} $" {
6088 set retval 1
6089 }
6090 -re "${gdb_prompt} $" {
6091 }
6092 }
6093 }
6094 -re "${gdb_prompt} $" {
6095 }
6096 }
6097
6098 gdb_test_no_output "set print elements $old_elements" ""
6099 gdb_test_no_output "set print repeats $old_repeats" ""
6100
6101 return $retval
6102 }
6103
6104 set result [gdb_has_argv0_1 $obj]
6105
6106 gdb_exit
6107 file delete $obj
6108
6109 if { !$result
6110 && ([istarget *-*-linux*]
6111 || [istarget *-*-freebsd*] || [istarget *-*-kfreebsd*]
6112 || [istarget *-*-netbsd*] || [istarget *-*-knetbsd*]
6113 || [istarget *-*-openbsd*]
6114 || [istarget *-*-darwin*]
6115 || [istarget *-*-solaris*]
6116 || [istarget *-*-aix*]
6117 || [istarget *-*-gnu*]
6118 || [istarget *-*-cygwin*] || [istarget *-*-mingw32*]
6119 || [istarget *-*-*djgpp*] || [istarget *-*-go32*]
6120 || [istarget *-wince-pe] || [istarget *-*-mingw32ce*]
6121 || [istarget *-*-symbianelf*]
6122 || [istarget *-*-osf*]
6123 || [istarget *-*-dicos*]
6124 || [istarget *-*-nto*]
6125 || [istarget *-*-*vms*]
6126 || [istarget *-*-lynx*178]) } {
6127 fail "argv\[0\] should be available on this target"
6128 }
6129
6130 return $result
6131 }
6132
6133 # Note: the procedure gdb_gnu_strip_debug will produce an executable called
6134 # ${binfile}.dbglnk, which is just like the executable ($binfile) but without
6135 # the debuginfo. Instead $binfile has a .gnu_debuglink section which contains
6136 # the name of a debuginfo only file. This file will be stored in the same
6137 # subdirectory.
6138
6139 # Functions for separate debug info testing
6140
6141 # starting with an executable:
6142 # foo --> original executable
6143
6144 # at the end of the process we have:
6145 # foo.stripped --> foo w/o debug info
6146 # foo.debug --> foo's debug info
6147 # foo --> like foo, but with a new .gnu_debuglink section pointing to foo.debug.
6148
6149 # Fetch the build id from the file.
6150 # Returns "" if there is none.
6151
6152 proc get_build_id { filename } {
6153 if { ([istarget "*-*-mingw*"]
6154 || [istarget *-*-cygwin*]) } {
6155 set objdump_program [gdb_find_objdump]
6156 set result [catch {set data [exec $objdump_program -p $filename | grep signature | cut "-d " -f4]} output]
6157 verbose "result is $result"
6158 verbose "output is $output"
6159 if {$result == 1} {
6160 return ""
6161 }
6162 return $data
6163 } else {
6164 set tmp [standard_output_file "${filename}-tmp"]
6165 set objcopy_program [gdb_find_objcopy]
6166 set result [catch "exec $objcopy_program -j .note.gnu.build-id -O binary $filename $tmp" output]
6167 verbose "result is $result"
6168 verbose "output is $output"
6169 if {$result == 1} {
6170 return ""
6171 }
6172 set fi [open $tmp]
6173 fconfigure $fi -translation binary
6174 # Skip the NOTE header.
6175 read $fi 16
6176 set data [read $fi]
6177 close $fi
6178 file delete $tmp
6179 if ![string compare $data ""] then {
6180 return ""
6181 }
6182 # Convert it to hex.
6183 binary scan $data H* data
6184 return $data
6185 }
6186 }
6187
6188 # Return the build-id hex string (usually 160 bits as 40 hex characters)
6189 # converted to the form: .build-id/ab/cdef1234...89.debug
6190 # Return "" if no build-id found.
6191 proc build_id_debug_filename_get { filename } {
6192 set data [get_build_id $filename]
6193 if { $data == "" } {
6194 return ""
6195 }
6196 regsub {^..} $data {\0/} data
6197 return ".build-id/${data}.debug"
6198 }
6199
6200 # Create stripped files for DEST, replacing it. If ARGS is passed, it is a
6201 # list of optional flags. The only currently supported flag is no-main,
6202 # which removes the symbol entry for main from the separate debug file.
6203 #
6204 # Function returns zero on success. Function will return non-zero failure code
6205 # on some targets not supporting separate debug info (such as i386-msdos).
6206
6207 proc gdb_gnu_strip_debug { dest args } {
6208
6209 # Use the first separate debug info file location searched by GDB so the
6210 # run cannot be broken by some stale file searched with higher precedence.
6211 set debug_file "${dest}.debug"
6212
6213 set strip_to_file_program [transform strip]
6214 set objcopy_program [gdb_find_objcopy]
6215
6216 set debug_link [file tail $debug_file]
6217 set stripped_file "${dest}.stripped"
6218
6219 # Get rid of the debug info, and store result in stripped_file
6220 # something like gdb/testsuite/gdb.base/blah.stripped.
6221 set result [catch "exec $strip_to_file_program --strip-debug ${dest} -o ${stripped_file}" output]
6222 verbose "result is $result"
6223 verbose "output is $output"
6224 if {$result == 1} {
6225 return 1
6226 }
6227
6228 # Workaround PR binutils/10802:
6229 # Preserve the 'x' bit also for PIEs (Position Independent Executables).
6230 set perm [file attributes ${dest} -permissions]
6231 file attributes ${stripped_file} -permissions $perm
6232
6233 # Get rid of everything but the debug info, and store result in debug_file
6234 # This will be in the .debug subdirectory, see above.
6235 set result [catch "exec $strip_to_file_program --only-keep-debug ${dest} -o ${debug_file}" output]
6236 verbose "result is $result"
6237 verbose "output is $output"
6238 if {$result == 1} {
6239 return 1
6240 }
6241
6242 # If no-main is passed, strip the symbol for main from the separate
6243 # file. This is to simulate the behavior of elfutils's eu-strip, which
6244 # leaves the symtab in the original file only. There's no way to get
6245 # objcopy or strip to remove the symbol table without also removing the
6246 # debugging sections, so this is as close as we can get.
6247 if { [llength $args] == 1 && [lindex $args 0] == "no-main" } {
6248 set result [catch "exec $objcopy_program -N main ${debug_file} ${debug_file}-tmp" output]
6249 verbose "result is $result"
6250 verbose "output is $output"
6251 if {$result == 1} {
6252 return 1
6253 }
6254 file delete "${debug_file}"
6255 file rename "${debug_file}-tmp" "${debug_file}"
6256 }
6257
6258 # Link the two previous output files together, adding the .gnu_debuglink
6259 # section to the stripped_file, containing a pointer to the debug_file,
6260 # save the new file in dest.
6261 # This will be the regular executable filename, in the usual location.
6262 set result [catch "exec $objcopy_program --add-gnu-debuglink=${debug_file} ${stripped_file} ${dest}" output]
6263 verbose "result is $result"
6264 verbose "output is $output"
6265 if {$result == 1} {
6266 return 1
6267 }
6268
6269 # Workaround PR binutils/10802:
6270 # Preserve the 'x' bit also for PIEs (Position Independent Executables).
6271 set perm [file attributes ${stripped_file} -permissions]
6272 file attributes ${dest} -permissions $perm
6273
6274 return 0
6275 }
6276
6277 # Test the output of GDB_COMMAND matches the pattern obtained
6278 # by concatenating all elements of EXPECTED_LINES. This makes
6279 # it possible to split otherwise very long string into pieces.
6280 # If third argument TESTNAME is not empty, it's used as the name of the
6281 # test to be printed on pass/fail.
6282 proc help_test_raw { gdb_command expected_lines {testname {}} } {
6283 set expected_output [join $expected_lines ""]
6284 if {$testname != {}} {
6285 gdb_test "${gdb_command}" "${expected_output}" $testname
6286 return
6287 }
6288
6289 gdb_test "${gdb_command}" "${expected_output}"
6290 }
6291
6292 # A regexp that matches the end of help CLASS|PREFIX_COMMAND
6293 set help_list_trailer {
6294 "Type \"apropos word\" to search for commands related to \"word\"\.[\r\n]+"
6295 "Type \"apropos -v word\" for full documentation of commands related to \"word\"\.[\r\n]+"
6296 "Command name abbreviations are allowed if unambiguous\."
6297 }
6298
6299 # Test the output of "help COMMAND_CLASS". EXPECTED_INITIAL_LINES
6300 # are regular expressions that should match the beginning of output,
6301 # before the list of commands in that class.
6302 # LIST_OF_COMMANDS are regular expressions that should match the
6303 # list of commands in that class. If empty, the command list will be
6304 # matched automatically. The presence of standard epilogue will be tested
6305 # automatically.
6306 # If last argument TESTNAME is not empty, it's used as the name of the
6307 # test to be printed on pass/fail.
6308 # Notice that the '[' and ']' characters don't need to be escaped for strings
6309 # wrapped in {} braces.
6310 proc test_class_help { command_class expected_initial_lines {list_of_commands {}} {testname {}} } {
6311 global help_list_trailer
6312 if {[llength $list_of_commands]>0} {
6313 set l_list_of_commands {"List of commands:[\r\n]+[\r\n]+"}
6314 set l_list_of_commands [concat $l_list_of_commands $list_of_commands]
6315 set l_list_of_commands [concat $l_list_of_commands {"[\r\n]+[\r\n]+"}]
6316 } else {
6317 set l_list_of_commands {"List of commands\:.*[\r\n]+"}
6318 }
6319 set l_stock_body {
6320 "Type \"help\" followed by command name for full documentation\.[\r\n]+"
6321 }
6322 set l_entire_body [concat $expected_initial_lines $l_list_of_commands \
6323 $l_stock_body $help_list_trailer]
6324
6325 help_test_raw "help ${command_class}" $l_entire_body $testname
6326 }
6327
6328 # Like test_class_help but specialised to test "help user-defined".
6329 proc test_user_defined_class_help { {list_of_commands {}} {testname {}} } {
6330 test_class_help "user-defined" {
6331 "User-defined commands\.[\r\n]+"
6332 "The commands in this class are those defined by the user\.[\r\n]+"
6333 "Use the \"define\" command to define a command\.[\r\n]+"
6334 } $list_of_commands $testname
6335 }
6336
6337
6338 # COMMAND_LIST should have either one element -- command to test, or
6339 # two elements -- abbreviated command to test, and full command the first
6340 # element is abbreviation of.
6341 # The command must be a prefix command. EXPECTED_INITIAL_LINES
6342 # are regular expressions that should match the beginning of output,
6343 # before the list of subcommands. The presence of
6344 # subcommand list and standard epilogue will be tested automatically.
6345 proc test_prefix_command_help { command_list expected_initial_lines args } {
6346 global help_list_trailer
6347 set command [lindex $command_list 0]
6348 if {[llength $command_list]>1} {
6349 set full_command [lindex $command_list 1]
6350 } else {
6351 set full_command $command
6352 }
6353 # Use 'list' and not just {} because we want variables to
6354 # be expanded in this list.
6355 set l_stock_body [list\
6356 "List of $full_command subcommands\:.*\[\r\n\]+"\
6357 "Type \"help $full_command\" followed by $full_command subcommand name for full documentation\.\[\r\n\]+"]
6358 set l_entire_body [concat $expected_initial_lines $l_stock_body $help_list_trailer]
6359 if {[llength $args]>0} {
6360 help_test_raw "help ${command}" $l_entire_body [lindex $args 0]
6361 } else {
6362 help_test_raw "help ${command}" $l_entire_body
6363 }
6364 }
6365
6366 # Build executable named EXECUTABLE from specifications that allow
6367 # different options to be passed to different sub-compilations.
6368 # TESTNAME is the name of the test; this is passed to 'untested' if
6369 # something fails.
6370 # OPTIONS is passed to the final link, using gdb_compile. If OPTIONS
6371 # contains the option "pthreads", then gdb_compile_pthreads is used.
6372 # ARGS is a flat list of source specifications, of the form:
6373 # { SOURCE1 OPTIONS1 [ SOURCE2 OPTIONS2 ]... }
6374 # Each SOURCE is compiled to an object file using its OPTIONS,
6375 # using gdb_compile.
6376 # Returns 0 on success, -1 on failure.
6377 proc build_executable_from_specs {testname executable options args} {
6378 global subdir
6379 global srcdir
6380
6381 set binfile [standard_output_file $executable]
6382
6383 set info_options ""
6384 if { [lsearch -exact $options "c++"] >= 0 } {
6385 set info_options "c++"
6386 }
6387 if [get_compiler_info ${info_options}] {
6388 return -1
6389 }
6390
6391 set func gdb_compile
6392 set func_index [lsearch -regexp $options {^(pthreads|shlib|shlib_pthreads|openmp)$}]
6393 if {$func_index != -1} {
6394 set func "${func}_[lindex $options $func_index]"
6395 }
6396
6397 # gdb_compile_shlib and gdb_compile_shlib_pthreads do not use the 3rd
6398 # parameter. They also requires $sources while gdb_compile and
6399 # gdb_compile_pthreads require $objects. Moreover they ignore any options.
6400 if [string match gdb_compile_shlib* $func] {
6401 set sources_path {}
6402 foreach {s local_options} $args {
6403 if { [regexp "^/" "$s"] } then {
6404 lappend sources_path "$s"
6405 } else {
6406 lappend sources_path "$srcdir/$subdir/$s"
6407 }
6408 }
6409 set ret [$func $sources_path "${binfile}" $options]
6410 } elseif {[lsearch -exact $options rust] != -1} {
6411 set sources_path {}
6412 foreach {s local_options} $args {
6413 if { [regexp "^/" "$s"] } then {
6414 lappend sources_path "$s"
6415 } else {
6416 lappend sources_path "$srcdir/$subdir/$s"
6417 }
6418 }
6419 set ret [gdb_compile_rust $sources_path "${binfile}" $options]
6420 } else {
6421 set objects {}
6422 set i 0
6423 foreach {s local_options} $args {
6424 if { ! [regexp "^/" "$s"] } then {
6425 set s "$srcdir/$subdir/$s"
6426 }
6427 if { [$func "${s}" "${binfile}${i}.o" object $local_options] != "" } {
6428 untested $testname
6429 return -1
6430 }
6431 lappend objects "${binfile}${i}.o"
6432 incr i
6433 }
6434 set ret [$func $objects "${binfile}" executable $options]
6435 }
6436 if { $ret != "" } {
6437 untested $testname
6438 return -1
6439 }
6440
6441 return 0
6442 }
6443
6444 # Build executable named EXECUTABLE, from SOURCES. If SOURCES are not
6445 # provided, uses $EXECUTABLE.c. The TESTNAME paramer is the name of test
6446 # to pass to untested, if something is wrong. OPTIONS are passed
6447 # to gdb_compile directly.
6448 proc build_executable { testname executable {sources ""} {options {debug}} } {
6449 if {[llength $sources]==0} {
6450 set sources ${executable}.c
6451 }
6452
6453 set arglist [list $testname $executable $options]
6454 foreach source $sources {
6455 lappend arglist $source $options
6456 }
6457
6458 return [eval build_executable_from_specs $arglist]
6459 }
6460
6461 # Starts fresh GDB binary and loads an optional executable into GDB.
6462 # Usage: clean_restart [executable]
6463 # EXECUTABLE is the basename of the binary.
6464 # Return -1 if starting gdb or loading the executable failed.
6465
6466 proc clean_restart { args } {
6467 global srcdir
6468 global subdir
6469 global errcnt
6470 global warncnt
6471
6472 if { [llength $args] > 1 } {
6473 error "bad number of args: [llength $args]"
6474 }
6475
6476 gdb_exit
6477
6478 # This is a clean restart, so reset error and warning count.
6479 set errcnt 0
6480 set warncnt 0
6481
6482 # We'd like to do:
6483 # if { [gdb_start] == -1 } {
6484 # return -1
6485 # }
6486 # but gdb_start is a ${tool}_start proc, which doesn't have a defined
6487 # return value. So instead, we test for errcnt.
6488 gdb_start
6489 if { $errcnt > 0 } {
6490 return -1
6491 }
6492
6493 gdb_reinitialize_dir $srcdir/$subdir
6494
6495 if { [llength $args] >= 1 } {
6496 set executable [lindex $args 0]
6497 set binfile [standard_output_file ${executable}]
6498 return [gdb_load ${binfile}]
6499 }
6500
6501 return 0
6502 }
6503
6504 # Prepares for testing by calling build_executable_full, then
6505 # clean_restart.
6506 # TESTNAME is the name of the test.
6507 # Each element in ARGS is a list of the form
6508 # { EXECUTABLE OPTIONS SOURCE_SPEC... }
6509 # These are passed to build_executable_from_specs, which see.
6510 # The last EXECUTABLE is passed to clean_restart.
6511 # Returns 0 on success, non-zero on failure.
6512 proc prepare_for_testing_full {testname args} {
6513 foreach spec $args {
6514 if {[eval build_executable_from_specs [list $testname] $spec] == -1} {
6515 return -1
6516 }
6517 set executable [lindex $spec 0]
6518 }
6519 clean_restart $executable
6520 return 0
6521 }
6522
6523 # Prepares for testing, by calling build_executable, and then clean_restart.
6524 # Please refer to build_executable for parameter description.
6525 proc prepare_for_testing { testname executable {sources ""} {options {debug}}} {
6526
6527 if {[build_executable $testname $executable $sources $options] == -1} {
6528 return -1
6529 }
6530 clean_restart $executable
6531
6532 return 0
6533 }
6534
6535 # Retrieve the value of EXP in the inferior, represented in format
6536 # specified in FMT (using "printFMT"). DEFAULT is used as fallback if
6537 # print fails. TEST is the test message to use. It can be omitted,
6538 # in which case a test message is built from EXP.
6539
6540 proc get_valueof { fmt exp default {test ""} } {
6541 global gdb_prompt
6542
6543 if {$test == "" } {
6544 set test "get valueof \"${exp}\""
6545 }
6546
6547 set val ${default}
6548 gdb_test_multiple "print${fmt} ${exp}" "$test" {
6549 -re "\\$\[0-9\]* = (\[^\r\n\]*)\[\r\n\]*$gdb_prompt $" {
6550 set val $expect_out(1,string)
6551 pass "$test"
6552 }
6553 timeout {
6554 fail "$test (timeout)"
6555 }
6556 }
6557 return ${val}
6558 }
6559
6560 # Retrieve the value of local var EXP in the inferior. DEFAULT is used as
6561 # fallback if print fails. TEST is the test message to use. It can be
6562 # omitted, in which case a test message is built from EXP.
6563
6564 proc get_local_valueof { exp default {test ""} } {
6565 global gdb_prompt
6566
6567 if {$test == "" } {
6568 set test "get local valueof \"${exp}\""
6569 }
6570
6571 set val ${default}
6572 gdb_test_multiple "info locals ${exp}" "$test" {
6573 -re "$exp = (\[^\r\n\]*)\[\r\n\]*$gdb_prompt $" {
6574 set val $expect_out(1,string)
6575 pass "$test"
6576 }
6577 timeout {
6578 fail "$test (timeout)"
6579 }
6580 }
6581 return ${val}
6582 }
6583
6584 # Retrieve the value of EXP in the inferior, as a signed decimal value
6585 # (using "print /d"). DEFAULT is used as fallback if print fails.
6586 # TEST is the test message to use. It can be omitted, in which case
6587 # a test message is built from EXP.
6588
6589 proc get_integer_valueof { exp default {test ""} } {
6590 global gdb_prompt
6591
6592 if {$test == ""} {
6593 set test "get integer valueof \"${exp}\""
6594 }
6595
6596 set val ${default}
6597 gdb_test_multiple "print /d ${exp}" "$test" {
6598 -re "\\$\[0-9\]* = (\[-\]*\[0-9\]*).*$gdb_prompt $" {
6599 set val $expect_out(1,string)
6600 pass "$test"
6601 }
6602 timeout {
6603 fail "$test (timeout)"
6604 }
6605 }
6606 return ${val}
6607 }
6608
6609 # Retrieve the value of EXP in the inferior, as an hexadecimal value
6610 # (using "print /x"). DEFAULT is used as fallback if print fails.
6611 # TEST is the test message to use. It can be omitted, in which case
6612 # a test message is built from EXP.
6613
6614 proc get_hexadecimal_valueof { exp default {test ""} } {
6615 global gdb_prompt
6616
6617 if {$test == ""} {
6618 set test "get hexadecimal valueof \"${exp}\""
6619 }
6620
6621 set val ${default}
6622 gdb_test_multiple "print /x ${exp}" $test {
6623 -re "\\$\[0-9\]* = (0x\[0-9a-zA-Z\]+).*$gdb_prompt $" {
6624 set val $expect_out(1,string)
6625 pass "$test"
6626 }
6627 }
6628 return ${val}
6629 }
6630
6631 # Retrieve the size of TYPE in the inferior, as a decimal value. DEFAULT
6632 # is used as fallback if print fails. TEST is the test message to use.
6633 # It can be omitted, in which case a test message is 'sizeof (TYPE)'.
6634
6635 proc get_sizeof { type default {test ""} } {
6636 return [get_integer_valueof "sizeof (${type})" $default $test]
6637 }
6638
6639 proc get_target_charset { } {
6640 global gdb_prompt
6641
6642 gdb_test_multiple "show target-charset" "" {
6643 -re "The target character set is \"auto; currently (\[^\"\]*)\".*$gdb_prompt $" {
6644 return $expect_out(1,string)
6645 }
6646 -re "The target character set is \"(\[^\"\]*)\".*$gdb_prompt $" {
6647 return $expect_out(1,string)
6648 }
6649 }
6650
6651 # Pick a reasonable default.
6652 warning "Unable to read target-charset."
6653 return "UTF-8"
6654 }
6655
6656 # Get the address of VAR.
6657
6658 proc get_var_address { var } {
6659 global gdb_prompt hex
6660
6661 # Match output like:
6662 # $1 = (int *) 0x0
6663 # $5 = (int (*)()) 0
6664 # $6 = (int (*)()) 0x24 <function_bar>
6665
6666 gdb_test_multiple "print &${var}" "get address of ${var}" {
6667 -re "\\\$\[0-9\]+ = \\(.*\\) (0|$hex)( <${var}>)?\[\r\n\]+${gdb_prompt} $"
6668 {
6669 pass "get address of ${var}"
6670 if { $expect_out(1,string) == "0" } {
6671 return "0x0"
6672 } else {
6673 return $expect_out(1,string)
6674 }
6675 }
6676 }
6677 return ""
6678 }
6679
6680 # Return the frame number for the currently selected frame
6681 proc get_current_frame_number {{test_name ""}} {
6682 global gdb_prompt
6683
6684 if { $test_name == "" } {
6685 set test_name "get current frame number"
6686 }
6687 set frame_num -1
6688 gdb_test_multiple "frame" $test_name {
6689 -re "#(\[0-9\]+) .*$gdb_prompt $" {
6690 set frame_num $expect_out(1,string)
6691 }
6692 }
6693 return $frame_num
6694 }
6695
6696 # Get the current value for remotetimeout and return it.
6697 proc get_remotetimeout { } {
6698 global gdb_prompt
6699 global decimal
6700
6701 gdb_test_multiple "show remotetimeout" "" {
6702 -re "Timeout limit to wait for target to respond is ($decimal).*$gdb_prompt $" {
6703 return $expect_out(1,string)
6704 }
6705 }
6706
6707 # Pick the default that gdb uses
6708 warning "Unable to read remotetimeout"
6709 return 300
6710 }
6711
6712 # Set the remotetimeout to the specified timeout. Nothing is returned.
6713 proc set_remotetimeout { timeout } {
6714 global gdb_prompt
6715
6716 gdb_test_multiple "set remotetimeout $timeout" "" {
6717 -re "$gdb_prompt $" {
6718 verbose "Set remotetimeout to $timeout\n"
6719 }
6720 }
6721 }
6722
6723 # Get the target's current endianness and return it.
6724 proc get_endianness { } {
6725 global gdb_prompt
6726
6727 gdb_test_multiple "show endian" "determine endianness" {
6728 -re ".* (little|big) endian.*\r\n$gdb_prompt $" {
6729 # Pass silently.
6730 return $expect_out(1,string)
6731 }
6732 }
6733 return "little"
6734 }
6735
6736 # ROOT and FULL are file names. Returns the relative path from ROOT
6737 # to FULL. Note that FULL must be in a subdirectory of ROOT.
6738 # For example, given ROOT = /usr/bin and FULL = /usr/bin/ls, this
6739 # will return "ls".
6740
6741 proc relative_filename {root full} {
6742 set root_split [file split $root]
6743 set full_split [file split $full]
6744
6745 set len [llength $root_split]
6746
6747 if {[eval file join $root_split]
6748 != [eval file join [lrange $full_split 0 [expr {$len - 1}]]]} {
6749 error "$full not a subdir of $root"
6750 }
6751
6752 return [eval file join [lrange $full_split $len end]]
6753 }
6754
6755 # If GDB_PARALLEL exists, then set up the parallel-mode directories.
6756 if {[info exists GDB_PARALLEL]} {
6757 if {[is_remote host]} {
6758 unset GDB_PARALLEL
6759 } else {
6760 file mkdir \
6761 [make_gdb_parallel_path outputs] \
6762 [make_gdb_parallel_path temp] \
6763 [make_gdb_parallel_path cache]
6764 }
6765 }
6766
6767 proc core_find {binfile {deletefiles {}} {arg ""}} {
6768 global objdir subdir
6769
6770 set destcore "$binfile.core"
6771 file delete $destcore
6772
6773 # Create a core file named "$destcore" rather than just "core", to
6774 # avoid problems with sys admin types that like to regularly prune all
6775 # files named "core" from the system.
6776 #
6777 # Arbitrarily try setting the core size limit to "unlimited" since
6778 # this does not hurt on systems where the command does not work and
6779 # allows us to generate a core on systems where it does.
6780 #
6781 # Some systems append "core" to the name of the program; others append
6782 # the name of the program to "core"; still others (like Linux, as of
6783 # May 2003) create cores named "core.PID". In the latter case, we
6784 # could have many core files lying around, and it may be difficult to
6785 # tell which one is ours, so let's run the program in a subdirectory.
6786 set found 0
6787 set coredir [standard_output_file coredir.[getpid]]
6788 file mkdir $coredir
6789 catch "system \"(cd ${coredir}; ulimit -c unlimited; ${binfile} ${arg}; true) >/dev/null 2>&1\""
6790 # remote_exec host "${binfile}"
6791 foreach i "${coredir}/core ${coredir}/core.coremaker.c ${binfile}.core" {
6792 if [remote_file build exists $i] {
6793 remote_exec build "mv $i $destcore"
6794 set found 1
6795 }
6796 }
6797 # Check for "core.PID".
6798 if { $found == 0 } {
6799 set names [glob -nocomplain -directory $coredir core.*]
6800 if {[llength $names] == 1} {
6801 set corefile [file join $coredir [lindex $names 0]]
6802 remote_exec build "mv $corefile $destcore"
6803 set found 1
6804 }
6805 }
6806 if { $found == 0 } {
6807 # The braindamaged HPUX shell quits after the ulimit -c above
6808 # without executing ${binfile}. So we try again without the
6809 # ulimit here if we didn't find a core file above.
6810 # Oh, I should mention that any "braindamaged" non-Unix system has
6811 # the same problem. I like the cd bit too, it's really neat'n stuff.
6812 catch "system \"(cd ${objdir}/${subdir}; ${binfile}; true) >/dev/null 2>&1\""
6813 foreach i "${objdir}/${subdir}/core ${objdir}/${subdir}/core.coremaker.c ${binfile}.core" {
6814 if [remote_file build exists $i] {
6815 remote_exec build "mv $i $destcore"
6816 set found 1
6817 }
6818 }
6819 }
6820
6821 # Try to clean up after ourselves.
6822 foreach deletefile $deletefiles {
6823 remote_file build delete [file join $coredir $deletefile]
6824 }
6825 remote_exec build "rmdir $coredir"
6826
6827 if { $found == 0 } {
6828 warning "can't generate a core file - core tests suppressed - check ulimit -c"
6829 return ""
6830 }
6831 return $destcore
6832 }
6833
6834 # gdb_target_symbol_prefix compiles a test program and then examines
6835 # the output from objdump to determine the prefix (such as underscore)
6836 # for linker symbol prefixes.
6837
6838 gdb_caching_proc gdb_target_symbol_prefix {
6839 # Compile a simple test program...
6840 set src { int main() { return 0; } }
6841 if {![gdb_simple_compile target_symbol_prefix $src executable]} {
6842 return 0
6843 }
6844
6845 set prefix ""
6846
6847 set objdump_program [gdb_find_objdump]
6848 set result [catch "exec $objdump_program --syms $obj" output]
6849
6850 if { $result == 0 \
6851 && ![regexp -lineanchor \
6852 { ([^ a-zA-Z0-9]*)main$} $output dummy prefix] } {
6853 verbose "gdb_target_symbol_prefix: Could not find main in objdump output; returning null prefix" 2
6854 }
6855
6856 file delete $obj
6857
6858 return $prefix
6859 }
6860
6861 # Return 1 if target supports scheduler locking, otherwise return 0.
6862
6863 gdb_caching_proc target_supports_scheduler_locking {
6864 global gdb_prompt
6865
6866 set me "gdb_target_supports_scheduler_locking"
6867
6868 set src { int main() { return 0; } }
6869 if {![gdb_simple_compile $me $src executable]} {
6870 return 0
6871 }
6872
6873 clean_restart $obj
6874 if ![runto_main] {
6875 return 0
6876 }
6877
6878 set supports_schedule_locking -1
6879 set current_schedule_locking_mode ""
6880
6881 set test "reading current scheduler-locking mode"
6882 gdb_test_multiple "show scheduler-locking" $test {
6883 -re "Mode for locking scheduler during execution is \"(\[\^\"\]*)\".*$gdb_prompt" {
6884 set current_schedule_locking_mode $expect_out(1,string)
6885 }
6886 -re "$gdb_prompt $" {
6887 set supports_schedule_locking 0
6888 }
6889 timeout {
6890 set supports_schedule_locking 0
6891 }
6892 }
6893
6894 if { $supports_schedule_locking == -1 } {
6895 set test "checking for scheduler-locking support"
6896 gdb_test_multiple "set scheduler-locking $current_schedule_locking_mode" $test {
6897 -re "Target '\[^'\]+' cannot support this command\..*$gdb_prompt $" {
6898 set supports_schedule_locking 0
6899 }
6900 -re "$gdb_prompt $" {
6901 set supports_schedule_locking 1
6902 }
6903 timeout {
6904 set supports_schedule_locking 0
6905 }
6906 }
6907 }
6908
6909 if { $supports_schedule_locking == -1 } {
6910 set supports_schedule_locking 0
6911 }
6912
6913 gdb_exit
6914 remote_file build delete $obj
6915 verbose "$me: returning $supports_schedule_locking" 2
6916 return $supports_schedule_locking
6917 }
6918
6919 # Return 1 if compiler supports use of nested functions. Otherwise,
6920 # return 0.
6921
6922 gdb_caching_proc support_nested_function_tests {
6923 # Compile a test program containing a nested function
6924 return [gdb_can_simple_compile nested_func {
6925 int main () {
6926 int foo () {
6927 return 0;
6928 }
6929 return foo ();
6930 }
6931 } executable]
6932 }
6933
6934 # gdb_target_symbol returns the provided symbol with the correct prefix
6935 # prepended. (See gdb_target_symbol_prefix, above.)
6936
6937 proc gdb_target_symbol { symbol } {
6938 set prefix [gdb_target_symbol_prefix]
6939 return "${prefix}${symbol}"
6940 }
6941
6942 # gdb_target_symbol_prefix_flags_asm returns a string that can be
6943 # added to gdb_compile options to define the C-preprocessor macro
6944 # SYMBOL_PREFIX with a value that can be prepended to symbols
6945 # for targets which require a prefix, such as underscore.
6946 #
6947 # This version (_asm) defines the prefix without double quotes
6948 # surrounding the prefix. It is used to define the macro
6949 # SYMBOL_PREFIX for assembly language files. Another version, below,
6950 # is used for symbols in inline assembler in C/C++ files.
6951 #
6952 # The lack of quotes in this version (_asm) makes it possible to
6953 # define supporting macros in the .S file. (The version which
6954 # uses quotes for the prefix won't work for such files since it's
6955 # impossible to define a quote-stripping macro in C.)
6956 #
6957 # It's possible to use this version (_asm) for C/C++ source files too,
6958 # but a string is usually required in such files; providing a version
6959 # (no _asm) which encloses the prefix with double quotes makes it
6960 # somewhat easier to define the supporting macros in the test case.
6961
6962 proc gdb_target_symbol_prefix_flags_asm {} {
6963 set prefix [gdb_target_symbol_prefix]
6964 if {$prefix ne ""} {
6965 return "additional_flags=-DSYMBOL_PREFIX=$prefix"
6966 } else {
6967 return "";
6968 }
6969 }
6970
6971 # gdb_target_symbol_prefix_flags returns the same string as
6972 # gdb_target_symbol_prefix_flags_asm, above, but with the prefix
6973 # enclosed in double quotes if there is a prefix.
6974 #
6975 # See the comment for gdb_target_symbol_prefix_flags_asm for an
6976 # extended discussion.
6977
6978 proc gdb_target_symbol_prefix_flags {} {
6979 set prefix [gdb_target_symbol_prefix]
6980 if {$prefix ne ""} {
6981 return "additional_flags=-DSYMBOL_PREFIX=\"$prefix\""
6982 } else {
6983 return "";
6984 }
6985 }
6986
6987 # A wrapper for 'remote_exec host' that passes or fails a test.
6988 # Returns 0 if all went well, nonzero on failure.
6989 # TEST is the name of the test, other arguments are as for remote_exec.
6990
6991 proc run_on_host { test program args } {
6992 verbose -log "run_on_host: $program $args"
6993 # remote_exec doesn't work properly if the output is set but the
6994 # input is the empty string -- so replace an empty input with
6995 # /dev/null.
6996 if {[llength $args] > 1 && [lindex $args 1] == ""} {
6997 set args [lreplace $args 1 1 "/dev/null"]
6998 }
6999 set result [eval remote_exec host [list $program] $args]
7000 verbose "result is $result"
7001 set status [lindex $result 0]
7002 set output [lindex $result 1]
7003 if {$status == 0} {
7004 pass $test
7005 return 0
7006 } else {
7007 verbose -log "run_on_host failed: $output"
7008 if { $output == "spawn failed" } {
7009 unsupported $test
7010 } else {
7011 fail $test
7012 }
7013 return -1
7014 }
7015 }
7016
7017 # Return non-zero if "board_info debug_flags" mentions Fission.
7018 # http://gcc.gnu.org/wiki/DebugFission
7019 # Fission doesn't support everything yet.
7020 # This supports working around bug 15954.
7021
7022 proc using_fission { } {
7023 set debug_flags [board_info [target_info name] debug_flags]
7024 return [regexp -- "-gsplit-dwarf" $debug_flags]
7025 }
7026
7027 # Search the caller's ARGS list and set variables according to the list of
7028 # valid options described by ARGSET.
7029 #
7030 # The first member of each one- or two-element list in ARGSET defines the
7031 # name of a variable that will be added to the caller's scope.
7032 #
7033 # If only one element is given to describe an option, it the value is
7034 # 0 if the option is not present in (the caller's) ARGS or 1 if
7035 # it is.
7036 #
7037 # If two elements are given, the second element is the default value of
7038 # the variable. This is then overwritten if the option exists in ARGS.
7039 #
7040 # Any parse_args elements in (the caller's) ARGS will be removed, leaving
7041 # any optional components.
7042
7043 # Example:
7044 # proc myproc {foo args} {
7045 # parse_args {{bar} {baz "abc"} {qux}}
7046 # # ...
7047 # }
7048 # myproc ABC -bar -baz DEF peanut butter
7049 # will define the following variables in myproc:
7050 # foo (=ABC), bar (=1), baz (=DEF), and qux (=0)
7051 # args will be the list {peanut butter}
7052
7053 proc parse_args { argset } {
7054 upvar args args
7055
7056 foreach argument $argset {
7057 if {[llength $argument] == 1} {
7058 # No default specified, so we assume that we should set
7059 # the value to 1 if the arg is present and 0 if it's not.
7060 # It is assumed that no value is given with the argument.
7061 set result [lsearch -exact $args "-$argument"]
7062 if {$result != -1} then {
7063 uplevel 1 [list set $argument 1]
7064 set args [lreplace $args $result $result]
7065 } else {
7066 uplevel 1 [list set $argument 0]
7067 }
7068 } elseif {[llength $argument] == 2} {
7069 # There are two items in the argument. The second is a
7070 # default value to use if the item is not present.
7071 # Otherwise, the variable is set to whatever is provided
7072 # after the item in the args.
7073 set arg [lindex $argument 0]
7074 set result [lsearch -exact $args "-[lindex $arg 0]"]
7075 if {$result != -1} then {
7076 uplevel 1 [list set $arg [lindex $args [expr $result+1]]]
7077 set args [lreplace $args $result [expr $result+1]]
7078 } else {
7079 uplevel 1 [list set $arg [lindex $argument 1]]
7080 }
7081 } else {
7082 error "Badly formatted argument \"$argument\" in argument set"
7083 }
7084 }
7085
7086 # The remaining args should be checked to see that they match the
7087 # number of items expected to be passed into the procedure...
7088 }
7089
7090 # Capture the output of COMMAND in a string ignoring PREFIX (a regexp);
7091 # return that string.
7092
7093 proc capture_command_output { command prefix } {
7094 global gdb_prompt
7095 global expect_out
7096
7097 set output_string ""
7098 gdb_test_multiple "$command" "capture_command_output for $command" {
7099 -re "[string_to_regexp ${command}]\[\r\n\]+${prefix}(.*)\[\r\n\]+$gdb_prompt $" {
7100 set output_string $expect_out(1,string)
7101 }
7102 }
7103 return $output_string
7104 }
7105
7106 # A convenience function that joins all the arguments together, with a
7107 # regexp that matches exactly one end of line in between each argument.
7108 # This function is ideal to write the expected output of a GDB command
7109 # that generates more than a couple of lines, as this allows us to write
7110 # each line as a separate string, which is easier to read by a human
7111 # being.
7112
7113 proc multi_line { args } {
7114 return [join $args "\r\n"]
7115 }
7116
7117 # Similar to the above, but while multi_line is meant to be used to
7118 # match GDB output, this one is meant to be used to build strings to
7119 # send as GDB input.
7120
7121 proc multi_line_input { args } {
7122 return [join $args "\n"]
7123 }
7124
7125 # Return the version of the DejaGnu framework.
7126 #
7127 # The return value is a list containing the major, minor and patch version
7128 # numbers. If the version does not contain a minor or patch number, they will
7129 # be set to 0. For example:
7130 #
7131 # 1.6 -> {1 6 0}
7132 # 1.6.1 -> {1 6 1}
7133 # 2 -> {2 0 0}
7134
7135 proc dejagnu_version { } {
7136 # The frame_version variable is defined by DejaGnu, in runtest.exp.
7137 global frame_version
7138
7139 verbose -log "DejaGnu version: $frame_version"
7140 verbose -log "Expect version: [exp_version]"
7141 verbose -log "Tcl version: [info tclversion]"
7142
7143 set dg_ver [split $frame_version .]
7144
7145 while { [llength $dg_ver] < 3 } {
7146 lappend dg_ver 0
7147 }
7148
7149 return $dg_ver
7150 }
7151
7152 # Define user-defined command COMMAND using the COMMAND_LIST as the
7153 # command's definition. The terminating "end" is added automatically.
7154
7155 proc gdb_define_cmd {command command_list} {
7156 global gdb_prompt
7157
7158 set input [multi_line_input {*}$command_list "end"]
7159 set test "define $command"
7160
7161 gdb_test_multiple "define $command" $test {
7162 -re "End with" {
7163 gdb_test_multiple $input $test {
7164 -re "\r\n$gdb_prompt " {
7165 }
7166 }
7167 }
7168 }
7169 }
7170
7171 # Override the 'cd' builtin with a version that ensures that the
7172 # log file keeps pointing at the same file. We need this because
7173 # unfortunately the path to the log file is recorded using an
7174 # relative path name, and, we sometimes need to close/reopen the log
7175 # after changing the current directory. See get_compiler_info.
7176
7177 rename cd builtin_cd
7178
7179 proc cd { dir } {
7180
7181 # Get the existing log file flags.
7182 set log_file_info [log_file -info]
7183
7184 # Split the flags into args and file name.
7185 set log_file_flags ""
7186 set log_file_file ""
7187 foreach arg [ split "$log_file_info" " "] {
7188 if [string match "-*" $arg] {
7189 lappend log_file_flags $arg
7190 } else {
7191 lappend log_file_file $arg
7192 }
7193 }
7194
7195 # If there was an existing file, ensure it is an absolute path, and then
7196 # reset logging.
7197 if { $log_file_file != "" } {
7198 set log_file_file [file normalize $log_file_file]
7199 log_file
7200 log_file $log_file_flags "$log_file_file"
7201 }
7202
7203 # Call the builtin version of cd.
7204 builtin_cd $dir
7205 }
7206
7207 # Return a list of all languages supported by GDB, suitable for use in
7208 # 'set language NAME'. This doesn't include either the 'local' or
7209 # 'auto' keywords.
7210 proc gdb_supported_languages {} {
7211 return [list c objective-c c++ d go fortran modula-2 asm pascal \
7212 opencl rust minimal ada]
7213 }
7214
7215 # Check if debugging is enabled for gdb.
7216
7217 proc gdb_debug_enabled { } {
7218 global gdbdebug
7219
7220 # If not already read, get the debug setting from environment or board setting.
7221 if {![info exists gdbdebug]} {
7222 global env
7223 if [info exists env(GDB_DEBUG)] {
7224 set gdbdebug $env(GDB_DEBUG)
7225 } elseif [target_info exists gdb,debug] {
7226 set gdbdebug [target_info gdb,debug]
7227 } else {
7228 return 0
7229 }
7230 }
7231
7232 # Ensure it not empty.
7233 return [expr { $gdbdebug != "" }]
7234 }
7235
7236 # Turn on debugging if enabled, or reset if already on.
7237
7238 proc gdb_debug_init { } {
7239
7240 global gdb_prompt
7241
7242 if ![gdb_debug_enabled] {
7243 return;
7244 }
7245
7246 # First ensure logging is off.
7247 send_gdb "set logging off\n"
7248
7249 set debugfile [standard_output_file gdb.debug]
7250 send_gdb "set logging file $debugfile\n"
7251
7252 send_gdb "set logging debugredirect\n"
7253
7254 global gdbdebug
7255 foreach entry [split $gdbdebug ,] {
7256 send_gdb "set debug $entry 1\n"
7257 }
7258
7259 # Now that everything is set, enable logging.
7260 send_gdb "set logging on\n"
7261 gdb_expect 10 {
7262 -re "Copying output to $debugfile.*Redirecting debug output to $debugfile.*$gdb_prompt $" {}
7263 timeout { warning "Couldn't set logging file" }
7264 }
7265 }
7266
7267 # Check if debugging is enabled for gdbserver.
7268
7269 proc gdbserver_debug_enabled { } {
7270 # Always disabled for GDB only setups.
7271 return 0
7272 }
7273
7274 # Open the file for logging gdb input
7275
7276 proc gdb_stdin_log_init { } {
7277 gdb_persistent_global in_file
7278
7279 if {[info exists in_file]} {
7280 # Close existing file.
7281 catch "close $in_file"
7282 }
7283
7284 set logfile [standard_output_file_with_gdb_instance gdb.in]
7285 set in_file [open $logfile w]
7286 }
7287
7288 # Write to the file for logging gdb input.
7289 # TYPE can be one of the following:
7290 # "standard" : Default. Standard message written to the log
7291 # "answer" : Answer to a question (eg "Y"). Not written the log.
7292 # "optional" : Optional message. Not written to the log.
7293
7294 proc gdb_stdin_log_write { message {type standard} } {
7295
7296 global in_file
7297 if {![info exists in_file]} {
7298 return
7299 }
7300
7301 # Check message types.
7302 switch -regexp -- $type {
7303 "answer" {
7304 return
7305 }
7306 "optional" {
7307 return
7308 }
7309 }
7310
7311 # Write to the log and make sure the output is there, even in case
7312 # of crash.
7313 puts -nonewline $in_file "$message"
7314 flush $in_file
7315 }
7316
7317 # Write the command line used to invocate gdb to the cmd file.
7318
7319 proc gdb_write_cmd_file { cmdline } {
7320 set logfile [standard_output_file_with_gdb_instance gdb.cmd]
7321 set cmd_file [open $logfile w]
7322 puts $cmd_file $cmdline
7323 catch "close $cmd_file"
7324 }
7325
7326 # Compare contents of FILE to string STR. Pass with MSG if equal, otherwise
7327 # fail with MSG.
7328
7329 proc cmp_file_string { file str msg } {
7330 if { ![file exists $file]} {
7331 fail "$msg"
7332 return
7333 }
7334
7335 set caught_error [catch {
7336 set fp [open "$file" r]
7337 set file_contents [read $fp]
7338 close $fp
7339 } error_message]
7340 if { $caught_error } then {
7341 error "$error_message"
7342 fail "$msg"
7343 return
7344 }
7345
7346 if { $file_contents == $str } {
7347 pass "$msg"
7348 } else {
7349 fail "$msg"
7350 }
7351 }
7352
7353 # Does the compiler support CTF debug output using '-gt' compiler
7354 # flag? If not then we should skip these tests. We should also
7355 # skip them if libctf was explicitly disabled.
7356
7357 gdb_caching_proc skip_ctf_tests {
7358 global enable_libctf
7359
7360 if {$enable_libctf eq "no"} {
7361 return 1
7362 }
7363
7364 return ![gdb_can_simple_compile ctfdebug {
7365 int main () {
7366 return 0;
7367 }
7368 } executable "additional_flags=-gt"]
7369 }
7370
7371 # Return 1 if compiler supports -gstatement-frontiers. Otherwise,
7372 # return 0.
7373
7374 gdb_caching_proc supports_statement_frontiers {
7375 return [gdb_can_simple_compile supports_statement_frontiers {
7376 int main () {
7377 return 0;
7378 }
7379 } executable "additional_flags=-gstatement-frontiers"]
7380 }
7381
7382 # Return 1 if compiler supports -mmpx -fcheck-pointer-bounds. Otherwise,
7383 # return 0.
7384
7385 gdb_caching_proc supports_mpx_check_pointer_bounds {
7386 set flags "additional_flags=-mmpx additional_flags=-fcheck-pointer-bounds"
7387 return [gdb_can_simple_compile supports_mpx_check_pointer_bounds {
7388 int main () {
7389 return 0;
7390 }
7391 } executable $flags]
7392 }
7393
7394 # Return 1 if compiler supports -fcf-protection=. Otherwise,
7395 # return 0.
7396
7397 gdb_caching_proc supports_fcf_protection {
7398 return [gdb_can_simple_compile supports_fcf_protection {
7399 int main () {
7400 return 0;
7401 }
7402 } executable "additional_flags=-fcf-protection=full"]
7403 }
7404
7405 # Return 1 if symbols were read in using -readnow. Otherwise, return 0.
7406
7407 proc readnow { args } {
7408 if { [llength $args] == 1 } {
7409 set re [lindex $args 0]
7410 } else {
7411 set re ""
7412 }
7413 set cmd "maint print objfiles $re"
7414 gdb_test_multiple $cmd "" {
7415 -re -wrap "\r\n.gdb_index: faked for \"readnow\"\r\n.*" {
7416 return 1
7417 }
7418 -re -wrap "" {
7419 return 0
7420 }
7421 }
7422
7423 return 0
7424 }
7425
7426 # Return 1 if partial symbols are available. Otherwise, return 0.
7427
7428 proc psymtabs_p { } {
7429 global gdb_prompt
7430
7431 set cmd "maint info psymtab"
7432 gdb_test_multiple $cmd "" {
7433 -re "$cmd\r\n$gdb_prompt $" {
7434 return 0
7435 }
7436 -re -wrap "" {
7437 return 1
7438 }
7439 }
7440
7441 return 0
7442 }
7443
7444 # Verify that partial symtab expansion for $filename has state $readin.
7445
7446 proc verify_psymtab_expanded { filename readin } {
7447 global gdb_prompt
7448
7449 set cmd "maint info psymtab"
7450 set test "$cmd: $filename: $readin"
7451 set re [multi_line \
7452 " \{ psymtab \[^\r\n\]*$filename\[^\r\n\]*" \
7453 " readin $readin" \
7454 ".*"]
7455
7456 gdb_test_multiple $cmd $test {
7457 -re "$cmd\r\n$gdb_prompt $" {
7458 unsupported $gdb_test_name
7459 }
7460 -re -wrap $re {
7461 pass $gdb_test_name
7462 }
7463 }
7464 }
7465
7466 # Add a .gdb_index section to PROGRAM.
7467 # PROGRAM is assumed to be the output of standard_output_file.
7468 # Returns the 0 if there is a failure, otherwise 1.
7469
7470 proc add_gdb_index { program } {
7471 global srcdir GDB env BUILD_DATA_DIRECTORY
7472 set contrib_dir "$srcdir/../contrib"
7473 set env(GDB) "$GDB --data-directory=$BUILD_DATA_DIRECTORY"
7474 set result [catch "exec $contrib_dir/gdb-add-index.sh $program" output]
7475 if { $result != 0 } {
7476 verbose -log "result is $result"
7477 verbose -log "output is $output"
7478 return 0
7479 }
7480
7481 return 1
7482 }
7483
7484 # Add a .gdb_index section to PROGRAM, unless it alread has an index
7485 # (.gdb_index/.debug_names). Gdb doesn't support building an index from a
7486 # program already using one. Return 1 if a .gdb_index was added, return 0
7487 # if it already contained an index, and -1 if an error occurred.
7488
7489 proc ensure_gdb_index { binfile } {
7490 set testfile [file tail $binfile]
7491 set test "check if index present"
7492 gdb_test_multiple "mt print objfiles ${testfile}" $test {
7493 -re -wrap "gdb_index.*" {
7494 return 0
7495 }
7496 -re -wrap "debug_names.*" {
7497 return 0
7498 }
7499 -re -wrap "Psymtabs.*" {
7500 if { [add_gdb_index $binfile] != "1" } {
7501 return -1
7502 }
7503 return 1
7504 }
7505 }
7506 return -1
7507 }
7508
7509 # Return 1 if executable contains .debug_types section. Otherwise, return 0.
7510
7511 proc debug_types { } {
7512 global hex
7513
7514 set cmd "maint info sections"
7515 gdb_test_multiple $cmd "" {
7516 -re -wrap "at $hex: .debug_types.*" {
7517 return 1
7518 }
7519 -re -wrap "" {
7520 return 0
7521 }
7522 }
7523
7524 return 0
7525 }
7526
7527 # Return the addresses in the line table for FILE for which is_stmt is true.
7528
7529 proc is_stmt_addresses { file } {
7530 global decimal
7531 global hex
7532
7533 set is_stmt [list]
7534
7535 gdb_test_multiple "maint info line-table $file" "" {
7536 -re "\r\n$decimal\[ \t\]+$decimal\[ \t\]+($hex)\[ \t\]+Y\[^\r\n\]*" {
7537 lappend is_stmt $expect_out(1,string)
7538 exp_continue
7539 }
7540 -re -wrap "" {
7541 }
7542 }
7543
7544 return $is_stmt
7545 }
7546
7547 # Return 1 if hex number VAL is an element of HEXLIST.
7548
7549 proc hex_in_list { val hexlist } {
7550 # Normalize val by removing 0x prefix, and leading zeros.
7551 set val [regsub ^0x $val ""]
7552 set val [regsub ^0+ $val "0"]
7553
7554 set re 0x0*$val
7555 set index [lsearch -regexp $hexlist $re]
7556 return [expr $index != -1]
7557 }
7558
7559 # Override proc NAME to proc OVERRIDE for the duration of the execution of
7560 # BODY.
7561
7562 proc with_override { name override body } {
7563 # Implementation note: It's possible to implement the override using
7564 # rename, like this:
7565 # rename $name save_$name
7566 # rename $override $name
7567 # set code [catch {uplevel 1 $body} result]
7568 # rename $name $override
7569 # rename save_$name $name
7570 # but there are two issues here:
7571 # - the save_$name might clash with an existing proc
7572 # - the override is no longer available under its original name during
7573 # the override
7574 # So, we use this more elaborate but cleaner mechanism.
7575
7576 # Save the old proc.
7577 set old_args [info args $name]
7578 set old_body [info body $name]
7579
7580 # Install the override.
7581 set new_args [info args $override]
7582 set new_body [info body $override]
7583 eval proc $name {$new_args} {$new_body}
7584
7585 # Execute body.
7586 set code [catch {uplevel 1 $body} result]
7587
7588 # Restore old proc.
7589 eval proc $name {$old_args} {$old_body}
7590
7591 # Return as appropriate.
7592 if { $code == 1 } {
7593 global errorInfo errorCode
7594 return -code error -errorinfo $errorInfo -errorcode $errorCode $result
7595 } elseif { $code > 1 } {
7596 return -code $code $result
7597 }
7598
7599 return $result
7600 }
7601
7602 # Setup tuiterm.exp environment. To be used in test-cases instead of
7603 # "load_lib tuiterm.exp". Calls initialization function and schedules
7604 # finalization function.
7605 proc tuiterm_env { } {
7606 load_lib tuiterm.exp
7607
7608 # Do initialization.
7609 tuiterm_env_init
7610
7611 # Schedule finalization.
7612 global gdb_finish_hooks
7613 lappend gdb_finish_hooks tuiterm_env_finish
7614 }
7615
7616 # Dejagnu has a version of note, but usage is not allowed outside of dejagnu.
7617 # Define a local version.
7618 proc gdb_note { message } {
7619 verbose -- "NOTE: $message" 0
7620 }
7621
7622 # Return 1 if compiler supports -fuse-ld=gold, otherwise return 0.
7623 gdb_caching_proc have_fuse_ld_gold {
7624 set me "have_fuse_ld_gold"
7625 set flags "additional_flags=-fuse-ld=gold"
7626 set src { int main() { return 0; } }
7627 return [gdb_simple_compile $me $src executable $flags]
7628 }
7629
7630 # Always load compatibility stuff.
7631 load_lib future.exp
This page took 0.177716 seconds and 5 git commands to generate.