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