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