4682f5d2f8fe0ce0806f2fa844ce6417fd290d04
[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 set shlib_found 0
3723 set shlib_load 0
3724 set getting_compiler_info 0
3725 foreach opt $options {
3726 if {[regexp {^shlib=(.*)} $opt dummy_var shlib_name]
3727 && $type == "executable"} {
3728 if [test_compiler_info "xlc-*"] {
3729 # IBM xlc compiler doesn't accept shared library named other
3730 # than .so: use "-Wl," to bypass this
3731 lappend source "-Wl,$shlib_name"
3732 } elseif { ([istarget "*-*-mingw*"]
3733 || [istarget *-*-cygwin*]
3734 || [istarget *-*-pe*])} {
3735 lappend source "${shlib_name}.a"
3736 } else {
3737 lappend source $shlib_name
3738 }
3739 if { $shlib_found == 0 } {
3740 set shlib_found 1
3741 if { ([istarget "*-*-mingw*"]
3742 || [istarget *-*-cygwin*]) } {
3743 lappend new_options "additional_flags=-Wl,--enable-auto-import"
3744 }
3745 if { [test_compiler_info "gcc-*"] || [test_compiler_info "clang-*"] } {
3746 # Undo debian's change in the default.
3747 # Put it at the front to not override any user-provided
3748 # value, and to make sure it appears in front of all the
3749 # shlibs!
3750 lappend new_options "early_flags=-Wl,--no-as-needed"
3751 }
3752 }
3753 } elseif { $opt == "shlib_load" && $type == "executable" } {
3754 set shlib_load 1
3755 } elseif { $opt == "getting_compiler_info" } {
3756 # If this is set, calling test_compiler_info will cause recursion.
3757 set getting_compiler_info 1
3758 } else {
3759 lappend new_options $opt
3760 }
3761 }
3762
3763 # Ensure stack protector is disabled for GCC, as this causes problems with
3764 # DWARF line numbering.
3765 # See https://gcc.gnu.org/bugzilla/show_bug.cgi?id=88432
3766 # This option defaults to on for Debian/Ubuntu.
3767 if { $getting_compiler_info == 0
3768 && [test_compiler_info {gcc-*-*}]
3769 && !([test_compiler_info {gcc-[0-3]-*}]
3770 || [test_compiler_info {gcc-4-0-*}])
3771 && [lsearch -exact $options rust] == -1} {
3772 # Put it at the front to not override any user-provided value.
3773 lappend new_options "early_flags=-fno-stack-protector"
3774 }
3775
3776 # Because we link with libraries using their basename, we may need
3777 # (depending on the platform) to set a special rpath value, to allow
3778 # the executable to find the libraries it depends on.
3779 if { $shlib_load || $shlib_found } {
3780 if { ([istarget "*-*-mingw*"]
3781 || [istarget *-*-cygwin*]
3782 || [istarget *-*-pe*]) } {
3783 # Do not need anything.
3784 } elseif { [istarget *-*-freebsd*] || [istarget *-*-openbsd*] } {
3785 lappend new_options "ldflags=-Wl,-rpath,${outdir}"
3786 } elseif { [istarget arm*-*-symbianelf*] } {
3787 if { $shlib_load } {
3788 lappend new_options "libs=-ldl"
3789 }
3790 } else {
3791 if { $shlib_load } {
3792 lappend new_options "libs=-ldl"
3793 }
3794 lappend new_options "ldflags=-Wl,-rpath,\\\$ORIGIN"
3795 }
3796 }
3797 set options $new_options
3798
3799 if [info exists GDB_TESTCASE_OPTIONS] {
3800 lappend options "additional_flags=$GDB_TESTCASE_OPTIONS"
3801 }
3802 verbose "options are $options"
3803 verbose "source is $source $dest $type $options"
3804
3805 if { $gdb_wrapper_initialized == 0 } { gdb_wrapper_init }
3806
3807 if {[target_info exists needs_status_wrapper] && \
3808 [target_info needs_status_wrapper] != "0" && \
3809 [info exists gdb_wrapper_file]} {
3810 lappend options "libs=${gdb_wrapper_file}"
3811 lappend options "ldflags=${gdb_wrapper_flags}"
3812 }
3813
3814 # Replace the "nowarnings" option with the appropriate additional_flags
3815 # to disable compiler warnings.
3816 set nowarnings [lsearch -exact $options nowarnings]
3817 if {$nowarnings != -1} {
3818 if [target_info exists gdb,nowarnings_flag] {
3819 set flag "additional_flags=[target_info gdb,nowarnings_flag]"
3820 } else {
3821 set flag "additional_flags=-w"
3822 }
3823 set options [lreplace $options $nowarnings $nowarnings $flag]
3824 }
3825
3826 # Replace the "pie" option with the appropriate compiler and linker flags
3827 # to enable PIE executables.
3828 set pie [lsearch -exact $options pie]
3829 if {$pie != -1} {
3830 if [target_info exists gdb,pie_flag] {
3831 set flag "additional_flags=[target_info gdb,pie_flag]"
3832 } else {
3833 # For safety, use fPIE rather than fpie. On AArch64, m68k, PowerPC
3834 # and SPARC, fpie can cause compile errors due to the GOT exceeding
3835 # a maximum size. On other architectures the two flags are
3836 # identical (see the GCC manual). Note Debian9 and Ubuntu16.10
3837 # onwards default GCC to using fPIE. If you do require fpie, then
3838 # it can be set using the pie_flag.
3839 set flag "additional_flags=-fPIE"
3840 }
3841 set options [lreplace $options $pie $pie $flag]
3842
3843 if [target_info exists gdb,pie_ldflag] {
3844 set flag "ldflags=[target_info gdb,pie_ldflag]"
3845 } else {
3846 set flag "ldflags=-pie"
3847 }
3848 lappend options "$flag"
3849 }
3850
3851 # Replace the "nopie" option with the appropriate linker flag to disable
3852 # PIE executables. There are no compiler flags for this option.
3853 set nopie [lsearch -exact $options nopie]
3854 if {$nopie != -1} {
3855 if [target_info exists gdb,nopie_flag] {
3856 set flag "ldflags=[target_info gdb,nopie_flag]"
3857 } else {
3858 set flag "ldflags=-no-pie"
3859 }
3860 set options [lreplace $options $nopie $nopie $flag]
3861 }
3862
3863 if { $type == "executable" } {
3864 if { ([istarget "*-*-mingw*"]
3865 || [istarget "*-*-*djgpp"]
3866 || [istarget "*-*-cygwin*"])} {
3867 # Force output to unbuffered mode, by linking in an object file
3868 # with a global contructor that calls setvbuf.
3869 #
3870 # Compile the special object seperatelly for two reasons:
3871 # 1) Insulate it from $options.
3872 # 2) Avoid compiling it for every gdb_compile invocation,
3873 # which is time consuming, especially if we're remote
3874 # host testing.
3875 #
3876 if { $gdb_saved_set_unbuffered_mode_obj == "" } {
3877 verbose "compiling gdb_saved_set_unbuffered_obj"
3878 set unbuf_src ${srcdir}/lib/set_unbuffered_mode.c
3879 set unbuf_obj ${objdir}/set_unbuffered_mode.o
3880
3881 set result [gdb_compile "${unbuf_src}" "${unbuf_obj}" object {nowarnings}]
3882 if { $result != "" } {
3883 return $result
3884 }
3885 if {[is_remote host]} {
3886 set gdb_saved_set_unbuffered_mode_obj set_unbuffered_mode_saved.o
3887 } else {
3888 set gdb_saved_set_unbuffered_mode_obj ${objdir}/set_unbuffered_mode_saved.o
3889 }
3890 # Link a copy of the output object, because the
3891 # original may be automatically deleted.
3892 remote_download host $unbuf_obj $gdb_saved_set_unbuffered_mode_obj
3893 } else {
3894 verbose "gdb_saved_set_unbuffered_obj already compiled"
3895 }
3896
3897 # Rely on the internal knowledge that the global ctors are ran in
3898 # reverse link order. In that case, we can use ldflags to
3899 # avoid copying the object file to the host multiple
3900 # times.
3901 # This object can only be added if standard libraries are
3902 # used. Thus, we need to disable it if -nostdlib option is used
3903 if {[lsearch -regexp $options "-nostdlib"] < 0 } {
3904 lappend options "ldflags=$gdb_saved_set_unbuffered_mode_obj"
3905 }
3906 }
3907 }
3908
3909 set result [target_compile $source $dest $type $options]
3910
3911 # Prune uninteresting compiler (and linker) output.
3912 regsub "Creating library file: \[^\r\n\]*\[\r\n\]+" $result "" result
3913
3914 regsub "\[\r\n\]*$" "$result" "" result
3915 regsub "^\[\r\n\]*" "$result" "" result
3916
3917 if { $type == "executable" && $result == "" \
3918 && ($nopie != -1 || $pie != -1) } {
3919 set is_pie [exec_is_pie "$dest"]
3920 if { $nopie != -1 && $is_pie == 1 } {
3921 set result "nopie failed to prevent PIE executable"
3922 } elseif { $pie != -1 && $is_pie == 0 } {
3923 set result "pie failed to generate PIE executable"
3924 }
3925 }
3926
3927 if {[lsearch $options quiet] < 0} {
3928 # We shall update this on a per language basis, to avoid
3929 # changing the entire testsuite in one go.
3930 if {[lsearch $options f77] >= 0} {
3931 gdb_compile_test $source $result
3932 } elseif { $result != "" } {
3933 clone_output "gdb compile failed, $result"
3934 }
3935 }
3936 return $result
3937 }
3938
3939
3940 # This is just like gdb_compile, above, except that it tries compiling
3941 # against several different thread libraries, to see which one this
3942 # system has.
3943 proc gdb_compile_pthreads {source dest type options} {
3944 set built_binfile 0
3945 set why_msg "unrecognized error"
3946 foreach lib {-lpthreads -lpthread -lthread ""} {
3947 # This kind of wipes out whatever libs the caller may have
3948 # set. Or maybe theirs will override ours. How infelicitous.
3949 set options_with_lib [concat $options [list libs=$lib quiet]]
3950 set ccout [gdb_compile $source $dest $type $options_with_lib]
3951 switch -regexp -- $ccout {
3952 ".*no posix threads support.*" {
3953 set why_msg "missing threads include file"
3954 break
3955 }
3956 ".*cannot open -lpthread.*" {
3957 set why_msg "missing runtime threads library"
3958 }
3959 ".*Can't find library for -lpthread.*" {
3960 set why_msg "missing runtime threads library"
3961 }
3962 {^$} {
3963 pass "successfully compiled posix threads test case"
3964 set built_binfile 1
3965 break
3966 }
3967 }
3968 }
3969 if {!$built_binfile} {
3970 unsupported "couldn't compile [file tail $source]: ${why_msg}"
3971 return -1
3972 }
3973 }
3974
3975 # Build a shared library from SOURCES.
3976
3977 proc gdb_compile_shlib {sources dest options} {
3978 set obj_options $options
3979
3980 set info_options ""
3981 if { [lsearch -exact $options "c++"] >= 0 } {
3982 set info_options "c++"
3983 }
3984 if [get_compiler_info ${info_options}] {
3985 return -1
3986 }
3987
3988 switch -glob [test_compiler_info] {
3989 "xlc-*" {
3990 lappend obj_options "additional_flags=-qpic"
3991 }
3992 "clang-*" {
3993 if { !([istarget "*-*-cygwin*"]
3994 || [istarget "*-*-mingw*"]) } {
3995 lappend obj_options "additional_flags=-fpic"
3996 }
3997 }
3998 "gcc-*" {
3999 if { !([istarget "powerpc*-*-aix*"]
4000 || [istarget "rs6000*-*-aix*"]
4001 || [istarget "*-*-cygwin*"]
4002 || [istarget "*-*-mingw*"]
4003 || [istarget "*-*-pe*"]) } {
4004 lappend obj_options "additional_flags=-fpic"
4005 }
4006 }
4007 "icc-*" {
4008 lappend obj_options "additional_flags=-fpic"
4009 }
4010 default {
4011 # don't know what the compiler is...
4012 }
4013 }
4014
4015 set outdir [file dirname $dest]
4016 set objects ""
4017 foreach source $sources {
4018 set sourcebase [file tail $source]
4019 if {[file extension $source] == ".o"} {
4020 # Already a .o file.
4021 lappend objects $source
4022 } elseif {[gdb_compile $source "${outdir}/${sourcebase}.o" object \
4023 $obj_options] != ""} {
4024 return -1
4025 } else {
4026 lappend objects ${outdir}/${sourcebase}.o
4027 }
4028 }
4029
4030 set link_options $options
4031 if [test_compiler_info "xlc-*"] {
4032 lappend link_options "additional_flags=-qmkshrobj"
4033 } else {
4034 lappend link_options "additional_flags=-shared"
4035
4036 if { ([istarget "*-*-mingw*"]
4037 || [istarget *-*-cygwin*]
4038 || [istarget *-*-pe*]) } {
4039 if { [is_remote host] } {
4040 set name [file tail ${dest}]
4041 } else {
4042 set name ${dest}
4043 }
4044 lappend link_options "additional_flags=-Wl,--out-implib,${name}.a"
4045 } else {
4046 # Set the soname of the library. This causes the linker on ELF
4047 # systems to create the DT_NEEDED entry in the executable referring
4048 # to the soname of the library, and not its absolute path. This
4049 # (using the absolute path) would be problem when testing on a
4050 # remote target.
4051 #
4052 # In conjunction with setting the soname, we add the special
4053 # rpath=$ORIGIN value when building the executable, so that it's
4054 # able to find the library in its own directory.
4055 set destbase [file tail $dest]
4056 lappend link_options "additional_flags=-Wl,-soname,$destbase"
4057 }
4058 }
4059 if {[gdb_compile "${objects}" "${dest}" executable $link_options] != ""} {
4060 return -1
4061 }
4062 if { [is_remote host]
4063 && ([istarget "*-*-mingw*"]
4064 || [istarget *-*-cygwin*]
4065 || [istarget *-*-pe*]) } {
4066 set dest_tail_name [file tail ${dest}]
4067 remote_upload host $dest_tail_name.a ${dest}.a
4068 remote_file host delete $dest_tail_name.a
4069 }
4070
4071 return ""
4072 }
4073
4074 # This is just like gdb_compile_shlib, above, except that it tries compiling
4075 # against several different thread libraries, to see which one this
4076 # system has.
4077 proc gdb_compile_shlib_pthreads {sources dest options} {
4078 set built_binfile 0
4079 set why_msg "unrecognized error"
4080 foreach lib {-lpthreads -lpthread -lthread ""} {
4081 # This kind of wipes out whatever libs the caller may have
4082 # set. Or maybe theirs will override ours. How infelicitous.
4083 set options_with_lib [concat $options [list libs=$lib quiet]]
4084 set ccout [gdb_compile_shlib $sources $dest $options_with_lib]
4085 switch -regexp -- $ccout {
4086 ".*no posix threads support.*" {
4087 set why_msg "missing threads include file"
4088 break
4089 }
4090 ".*cannot open -lpthread.*" {
4091 set why_msg "missing runtime threads library"
4092 }
4093 ".*Can't find library for -lpthread.*" {
4094 set why_msg "missing runtime threads library"
4095 }
4096 {^$} {
4097 pass "successfully compiled posix threads test case"
4098 set built_binfile 1
4099 break
4100 }
4101 }
4102 }
4103 if {!$built_binfile} {
4104 unsupported "couldn't compile $sources: ${why_msg}"
4105 return -1
4106 }
4107 }
4108
4109 # This is just like gdb_compile_pthreads, above, except that we always add the
4110 # objc library for compiling Objective-C programs
4111 proc gdb_compile_objc {source dest type options} {
4112 set built_binfile 0
4113 set why_msg "unrecognized error"
4114 foreach lib {-lobjc -lpthreads -lpthread -lthread solaris} {
4115 # This kind of wipes out whatever libs the caller may have
4116 # set. Or maybe theirs will override ours. How infelicitous.
4117 if { $lib == "solaris" } {
4118 set lib "-lpthread -lposix4"
4119 }
4120 if { $lib != "-lobjc" } {
4121 set lib "-lobjc $lib"
4122 }
4123 set options_with_lib [concat $options [list libs=$lib quiet]]
4124 set ccout [gdb_compile $source $dest $type $options_with_lib]
4125 switch -regexp -- $ccout {
4126 ".*no posix threads support.*" {
4127 set why_msg "missing threads include file"
4128 break
4129 }
4130 ".*cannot open -lpthread.*" {
4131 set why_msg "missing runtime threads library"
4132 }
4133 ".*Can't find library for -lpthread.*" {
4134 set why_msg "missing runtime threads library"
4135 }
4136 {^$} {
4137 pass "successfully compiled objc with posix threads test case"
4138 set built_binfile 1
4139 break
4140 }
4141 }
4142 }
4143 if {!$built_binfile} {
4144 unsupported "couldn't compile [file tail $source]: ${why_msg}"
4145 return -1
4146 }
4147 }
4148
4149 # Send a command to GDB.
4150 # For options for TYPE see gdb_stdin_log_write
4151
4152 proc send_gdb { string {type standard}} {
4153 global suppress_flag
4154 if { $suppress_flag } {
4155 return "suppressed"
4156 }
4157 gdb_stdin_log_write $string $type
4158 return [remote_send host "$string"]
4159 }
4160
4161 # Send STRING to the inferior's terminal.
4162
4163 proc send_inferior { string } {
4164 global inferior_spawn_id
4165
4166 if {[catch "send -i $inferior_spawn_id -- \$string" errorInfo]} {
4167 return "$errorInfo"
4168 } else {
4169 return ""
4170 }
4171 }
4172
4173 #
4174 #
4175
4176 proc gdb_expect { args } {
4177 if { [llength $args] == 2 && [lindex $args 0] != "-re" } {
4178 set atimeout [lindex $args 0]
4179 set expcode [list [lindex $args 1]]
4180 } else {
4181 set expcode $args
4182 }
4183
4184 # A timeout argument takes precedence, otherwise of all the timeouts
4185 # select the largest.
4186 if [info exists atimeout] {
4187 set tmt $atimeout
4188 } else {
4189 set tmt [get_largest_timeout]
4190 }
4191
4192 global suppress_flag
4193 global remote_suppress_flag
4194 if [info exists remote_suppress_flag] {
4195 set old_val $remote_suppress_flag
4196 }
4197 if [info exists suppress_flag] {
4198 if { $suppress_flag } {
4199 set remote_suppress_flag 1
4200 }
4201 }
4202 set code [catch \
4203 {uplevel remote_expect host $tmt $expcode} string]
4204 if [info exists old_val] {
4205 set remote_suppress_flag $old_val
4206 } else {
4207 if [info exists remote_suppress_flag] {
4208 unset remote_suppress_flag
4209 }
4210 }
4211
4212 if {$code == 1} {
4213 global errorInfo errorCode
4214
4215 return -code error -errorinfo $errorInfo -errorcode $errorCode $string
4216 } else {
4217 return -code $code $string
4218 }
4219 }
4220
4221 # gdb_expect_list TEST SENTINEL LIST -- expect a sequence of outputs
4222 #
4223 # Check for long sequence of output by parts.
4224 # TEST: is the test message to be printed with the test success/fail.
4225 # SENTINEL: Is the terminal pattern indicating that output has finished.
4226 # LIST: is the sequence of outputs to match.
4227 # If the sentinel is recognized early, it is considered an error.
4228 #
4229 # Returns:
4230 # 1 if the test failed,
4231 # 0 if the test passes,
4232 # -1 if there was an internal error.
4233
4234 proc gdb_expect_list {test sentinel list} {
4235 global gdb_prompt
4236 global suppress_flag
4237 set index 0
4238 set ok 1
4239 if { $suppress_flag } {
4240 set ok 0
4241 unresolved "${test}"
4242 }
4243 while { ${index} < [llength ${list}] } {
4244 set pattern [lindex ${list} ${index}]
4245 set index [expr ${index} + 1]
4246 verbose -log "gdb_expect_list pattern: /$pattern/" 2
4247 if { ${index} == [llength ${list}] } {
4248 if { ${ok} } {
4249 gdb_expect {
4250 -re "${pattern}${sentinel}" {
4251 # pass "${test}, pattern ${index} + sentinel"
4252 }
4253 -re "${sentinel}" {
4254 fail "${test} (pattern ${index} + sentinel)"
4255 set ok 0
4256 }
4257 -re ".*A problem internal to GDB has been detected" {
4258 fail "${test} (GDB internal error)"
4259 set ok 0
4260 gdb_internal_error_resync
4261 }
4262 timeout {
4263 fail "${test} (pattern ${index} + sentinel) (timeout)"
4264 set ok 0
4265 }
4266 }
4267 } else {
4268 # unresolved "${test}, pattern ${index} + sentinel"
4269 }
4270 } else {
4271 if { ${ok} } {
4272 gdb_expect {
4273 -re "${pattern}" {
4274 # pass "${test}, pattern ${index}"
4275 }
4276 -re "${sentinel}" {
4277 fail "${test} (pattern ${index})"
4278 set ok 0
4279 }
4280 -re ".*A problem internal to GDB has been detected" {
4281 fail "${test} (GDB internal error)"
4282 set ok 0
4283 gdb_internal_error_resync
4284 }
4285 timeout {
4286 fail "${test} (pattern ${index}) (timeout)"
4287 set ok 0
4288 }
4289 }
4290 } else {
4291 # unresolved "${test}, pattern ${index}"
4292 }
4293 }
4294 }
4295 if { ${ok} } {
4296 pass "${test}"
4297 return 0
4298 } else {
4299 return 1
4300 }
4301 }
4302
4303 #
4304 #
4305 proc gdb_suppress_entire_file { reason } {
4306 global suppress_flag
4307
4308 warning "$reason\n"
4309 set suppress_flag -1
4310 }
4311
4312 #
4313 # Set suppress_flag, which will cause all subsequent calls to send_gdb and
4314 # gdb_expect to fail immediately (until the next call to
4315 # gdb_stop_suppressing_tests).
4316 #
4317 proc gdb_suppress_tests { args } {
4318 global suppress_flag
4319
4320 return; # fnf - disable pending review of results where
4321 # testsuite ran better without this
4322 incr suppress_flag
4323
4324 if { $suppress_flag == 1 } {
4325 if { [llength $args] > 0 } {
4326 warning "[lindex $args 0]\n"
4327 } else {
4328 warning "Because of previous failure, all subsequent tests in this group will automatically fail.\n"
4329 }
4330 }
4331 }
4332
4333 #
4334 # Clear suppress_flag.
4335 #
4336 proc gdb_stop_suppressing_tests { } {
4337 global suppress_flag
4338
4339 if [info exists suppress_flag] {
4340 if { $suppress_flag > 0 } {
4341 set suppress_flag 0
4342 clone_output "Tests restarted.\n"
4343 }
4344 } else {
4345 set suppress_flag 0
4346 }
4347 }
4348
4349 proc gdb_clear_suppressed { } {
4350 global suppress_flag
4351
4352 set suppress_flag 0
4353 }
4354
4355 # Spawn the gdb process.
4356 #
4357 # This doesn't expect any output or do any other initialization,
4358 # leaving those to the caller.
4359 #
4360 # Overridable function -- you can override this function in your
4361 # baseboard file.
4362
4363 proc gdb_spawn { } {
4364 default_gdb_spawn
4365 }
4366
4367 # Spawn GDB with CMDLINE_FLAGS appended to the GDBFLAGS global.
4368
4369 proc gdb_spawn_with_cmdline_opts { cmdline_flags } {
4370 global GDBFLAGS
4371
4372 set saved_gdbflags $GDBFLAGS
4373
4374 if {$GDBFLAGS != ""} {
4375 append GDBFLAGS " "
4376 }
4377 append GDBFLAGS $cmdline_flags
4378
4379 set res [gdb_spawn]
4380
4381 set GDBFLAGS $saved_gdbflags
4382
4383 return $res
4384 }
4385
4386 # Start gdb running, wait for prompt, and disable the pagers.
4387
4388 # Overridable function -- you can override this function in your
4389 # baseboard file.
4390
4391 proc gdb_start { } {
4392 default_gdb_start
4393 }
4394
4395 proc gdb_exit { } {
4396 catch default_gdb_exit
4397 }
4398
4399 # Return true if we can spawn a program on the target and attach to
4400 # it.
4401
4402 proc can_spawn_for_attach { } {
4403 # We use exp_pid to get the inferior's pid, assuming that gives
4404 # back the pid of the program. On remote boards, that would give
4405 # us instead the PID of e.g., the ssh client, etc.
4406 if [is_remote target] then {
4407 return 0
4408 }
4409
4410 # The "attach" command doesn't make sense when the target is
4411 # stub-like, where GDB finds the program already started on
4412 # initial connection.
4413 if {[target_info exists use_gdb_stub]} {
4414 return 0
4415 }
4416
4417 # Assume yes.
4418 return 1
4419 }
4420
4421 # Kill a progress previously started with spawn_wait_for_attach, and
4422 # reap its wait status. PROC_SPAWN_ID is the spawn id associated with
4423 # the process.
4424
4425 proc kill_wait_spawned_process { proc_spawn_id } {
4426 set pid [exp_pid -i $proc_spawn_id]
4427
4428 verbose -log "killing ${pid}"
4429 remote_exec build "kill -9 ${pid}"
4430
4431 verbose -log "closing ${proc_spawn_id}"
4432 catch "close -i $proc_spawn_id"
4433 verbose -log "waiting for ${proc_spawn_id}"
4434
4435 # If somehow GDB ends up still attached to the process here, a
4436 # blocking wait hangs until gdb is killed (or until gdb / the
4437 # ptracer reaps the exit status too, but that won't happen because
4438 # something went wrong.) Passing -nowait makes expect tell Tcl to
4439 # wait for the PID in the background. That's fine because we
4440 # don't care about the exit status. */
4441 wait -nowait -i $proc_spawn_id
4442 }
4443
4444 # Returns the process id corresponding to the given spawn id.
4445
4446 proc spawn_id_get_pid { spawn_id } {
4447 set testpid [exp_pid -i $spawn_id]
4448
4449 if { [istarget "*-*-cygwin*"] } {
4450 # testpid is the Cygwin PID, GDB uses the Windows PID, which
4451 # might be different due to the way fork/exec works.
4452 set testpid [ exec ps -e | gawk "{ if (\$1 == $testpid) print \$4; }" ]
4453 }
4454
4455 return $testpid
4456 }
4457
4458 # Start a set of programs running and then wait for a bit, to be sure
4459 # that they can be attached to. Return a list of processes spawn IDs,
4460 # one element for each process spawned. It's a test error to call
4461 # this when [can_spawn_for_attach] is false.
4462
4463 proc spawn_wait_for_attach { executable_list } {
4464 set spawn_id_list {}
4465
4466 if ![can_spawn_for_attach] {
4467 # The caller should have checked can_spawn_for_attach itself
4468 # before getting here.
4469 error "can't spawn for attach with this target/board"
4470 }
4471
4472 foreach {executable} $executable_list {
4473 # Note we use Expect's spawn, not Tcl's exec, because with
4474 # spawn we control when to wait for/reap the process. That
4475 # allows killing the process by PID without being subject to
4476 # pid-reuse races.
4477 lappend spawn_id_list [remote_spawn target $executable]
4478 }
4479
4480 sleep 2
4481
4482 return $spawn_id_list
4483 }
4484
4485 #
4486 # gdb_load_cmd -- load a file into the debugger.
4487 # ARGS - additional args to load command.
4488 # return a -1 if anything goes wrong.
4489 #
4490 proc gdb_load_cmd { args } {
4491 global gdb_prompt
4492
4493 if [target_info exists gdb_load_timeout] {
4494 set loadtimeout [target_info gdb_load_timeout]
4495 } else {
4496 set loadtimeout 1600
4497 }
4498 send_gdb "load $args\n"
4499 verbose "Timeout is now $loadtimeout seconds" 2
4500 gdb_expect $loadtimeout {
4501 -re "Loading section\[^\r\]*\r\n" {
4502 exp_continue
4503 }
4504 -re "Start address\[\r\]*\r\n" {
4505 exp_continue
4506 }
4507 -re "Transfer rate\[\r\]*\r\n" {
4508 exp_continue
4509 }
4510 -re "Memory access error\[^\r\]*\r\n" {
4511 perror "Failed to load program"
4512 return -1
4513 }
4514 -re "$gdb_prompt $" {
4515 return 0
4516 }
4517 -re "(.*)\r\n$gdb_prompt " {
4518 perror "Unexpected reponse from 'load' -- $expect_out(1,string)"
4519 return -1
4520 }
4521 timeout {
4522 perror "Timed out trying to load $args."
4523 return -1
4524 }
4525 }
4526 return -1
4527 }
4528
4529 # Invoke "gcore". CORE is the name of the core file to write. TEST
4530 # is the name of the test case. This will return 1 if the core file
4531 # was created, 0 otherwise. If this fails to make a core file because
4532 # this configuration of gdb does not support making core files, it
4533 # will call "unsupported", not "fail". However, if this fails to make
4534 # a core file for some other reason, then it will call "fail".
4535
4536 proc gdb_gcore_cmd {core test} {
4537 global gdb_prompt
4538
4539 set result 0
4540 gdb_test_multiple "gcore $core" $test {
4541 -re "Saved corefile .*\[\r\n\]+$gdb_prompt $" {
4542 pass $test
4543 set result 1
4544 }
4545 -re "(?:Can't create a corefile|Target does not support core file generation\\.)\[\r\n\]+$gdb_prompt $" {
4546 unsupported $test
4547 }
4548 }
4549
4550 return $result
4551 }
4552
4553 # Load core file CORE. TEST is the name of the test case.
4554 # This will record a pass/fail for loading the core file.
4555 # Returns:
4556 # 1 - core file is successfully loaded
4557 # 0 - core file loaded but has a non fatal error
4558 # -1 - core file failed to load
4559
4560 proc gdb_core_cmd { core test } {
4561 global gdb_prompt
4562
4563 gdb_test_multiple "core $core" "$test" {
4564 -re "\\\[Thread debugging using \[^ \r\n\]* enabled\\\]\r\n" {
4565 exp_continue
4566 }
4567 -re " is not a core dump:.*\r\n$gdb_prompt $" {
4568 fail "$test (bad file format)"
4569 return -1
4570 }
4571 -re ": No such file or directory.*\r\n$gdb_prompt $" {
4572 fail "$test (file not found)"
4573 return -1
4574 }
4575 -re "Couldn't find .* registers in core file.*\r\n$gdb_prompt $" {
4576 fail "$test (incomplete note section)"
4577 return 0
4578 }
4579 -re "Core was generated by .*\r\n$gdb_prompt $" {
4580 pass "$test"
4581 return 1
4582 }
4583 -re ".*$gdb_prompt $" {
4584 fail "$test"
4585 return -1
4586 }
4587 timeout {
4588 fail "$test (timeout)"
4589 return -1
4590 }
4591 }
4592 fail "unsupported output from 'core' command"
4593 return -1
4594 }
4595
4596 # Return the filename to download to the target and load on the target
4597 # for this shared library. Normally just LIBNAME, unless shared libraries
4598 # for this target have separate link and load images.
4599
4600 proc shlib_target_file { libname } {
4601 return $libname
4602 }
4603
4604 # Return the filename GDB will load symbols from when debugging this
4605 # shared library. Normally just LIBNAME, unless shared libraries for
4606 # this target have separate link and load images.
4607
4608 proc shlib_symbol_file { libname } {
4609 return $libname
4610 }
4611
4612 # Return the filename to download to the target and load for this
4613 # executable. Normally just BINFILE unless it is renamed to something
4614 # else for this target.
4615
4616 proc exec_target_file { binfile } {
4617 return $binfile
4618 }
4619
4620 # Return the filename GDB will load symbols from when debugging this
4621 # executable. Normally just BINFILE unless executables for this target
4622 # have separate files for symbols.
4623
4624 proc exec_symbol_file { binfile } {
4625 return $binfile
4626 }
4627
4628 # Rename the executable file. Normally this is just BINFILE1 being renamed
4629 # to BINFILE2, but some targets require multiple binary files.
4630 proc gdb_rename_execfile { binfile1 binfile2 } {
4631 file rename -force [exec_target_file ${binfile1}] \
4632 [exec_target_file ${binfile2}]
4633 if { [exec_target_file ${binfile1}] != [exec_symbol_file ${binfile1}] } {
4634 file rename -force [exec_symbol_file ${binfile1}] \
4635 [exec_symbol_file ${binfile2}]
4636 }
4637 }
4638
4639 # "Touch" the executable file to update the date. Normally this is just
4640 # BINFILE, but some targets require multiple files.
4641 proc gdb_touch_execfile { binfile } {
4642 set time [clock seconds]
4643 file mtime [exec_target_file ${binfile}] $time
4644 if { [exec_target_file ${binfile}] != [exec_symbol_file ${binfile}] } {
4645 file mtime [exec_symbol_file ${binfile}] $time
4646 }
4647 }
4648
4649 # Like remote_download but provides a gdb-specific behavior.
4650 #
4651 # If the destination board is remote, the local file FROMFILE is transferred as
4652 # usual with remote_download to TOFILE on the remote board. The destination
4653 # filename is added to the CLEANFILES global, so it can be cleaned up at the
4654 # end of the test.
4655 #
4656 # If the destination board is local, the destination path TOFILE is passed
4657 # through standard_output_file, and FROMFILE is copied there.
4658 #
4659 # In both cases, if TOFILE is omitted, it defaults to the [file tail] of
4660 # FROMFILE.
4661
4662 proc gdb_remote_download {dest fromfile {tofile {}}} {
4663 # If TOFILE is not given, default to the same filename as FROMFILE.
4664 if {[string length $tofile] == 0} {
4665 set tofile [file tail $fromfile]
4666 }
4667
4668 if {[is_remote $dest]} {
4669 # When the DEST is remote, we simply send the file to DEST.
4670 global cleanfiles
4671
4672 set destname [remote_download $dest $fromfile $tofile]
4673 lappend cleanfiles $destname
4674
4675 return $destname
4676 } else {
4677 # When the DEST is local, we copy the file to the test directory (where
4678 # the executable is).
4679 #
4680 # Note that we pass TOFILE through standard_output_file, regardless of
4681 # whether it is absolute or relative, because we don't want the tests
4682 # to be able to write outside their standard output directory.
4683
4684 set tofile [standard_output_file $tofile]
4685
4686 file copy -force $fromfile $tofile
4687
4688 return $tofile
4689 }
4690 }
4691
4692 # gdb_load_shlib LIB...
4693 #
4694 # Copy the listed library to the target.
4695
4696 proc gdb_load_shlib { file } {
4697 global gdb_spawn_id
4698
4699 if ![info exists gdb_spawn_id] {
4700 perror "gdb_load_shlib: GDB is not running"
4701 }
4702
4703 set dest [gdb_remote_download target [shlib_target_file $file]]
4704
4705 if {[is_remote target]} {
4706 # If the target is remote, we need to tell gdb where to find the
4707 # libraries.
4708 #
4709 # We could set this even when not testing remotely, but a user
4710 # generally won't set it unless necessary. In order to make the tests
4711 # more like the real-life scenarios, we don't set it for local testing.
4712 gdb_test "set solib-search-path [file dirname $file]" "" ""
4713 }
4714
4715 return $dest
4716 }
4717
4718 #
4719 # gdb_load -- load a file into the debugger. Specifying no file
4720 # defaults to the executable currently being debugged.
4721 # The return value is 0 for success, -1 for failure.
4722 # Many files in config/*.exp override this procedure.
4723 #
4724 proc gdb_load { arg } {
4725 if { $arg != "" } {
4726 return [gdb_file_cmd $arg]
4727 }
4728 return 0
4729 }
4730
4731 # gdb_reload -- load a file into the target. Called before "running",
4732 # either the first time or after already starting the program once,
4733 # for remote targets. Most files that override gdb_load should now
4734 # override this instead.
4735
4736 proc gdb_reload { } {
4737 # For the benefit of existing configurations, default to gdb_load.
4738 # Specifying no file defaults to the executable currently being
4739 # debugged.
4740 return [gdb_load ""]
4741 }
4742
4743 proc gdb_continue { function } {
4744 global decimal
4745
4746 return [gdb_test "continue" ".*Breakpoint $decimal, $function .*" "continue to $function"]
4747 }
4748
4749 proc default_gdb_init { test_file_name } {
4750 global gdb_wrapper_initialized
4751 global gdb_wrapper_target
4752 global gdb_test_file_name
4753 global cleanfiles
4754 global pf_prefix
4755
4756 set cleanfiles {}
4757
4758 gdb_clear_suppressed
4759
4760 set gdb_test_file_name [file rootname [file tail $test_file_name]]
4761
4762 # Make sure that the wrapper is rebuilt
4763 # with the appropriate multilib option.
4764 if { $gdb_wrapper_target != [current_target_name] } {
4765 set gdb_wrapper_initialized 0
4766 }
4767
4768 # Unlike most tests, we have a small number of tests that generate
4769 # a very large amount of output. We therefore increase the expect
4770 # buffer size to be able to contain the entire test output. This
4771 # is especially needed by gdb.base/info-macros.exp.
4772 match_max -d 65536
4773 # Also set this value for the currently running GDB.
4774 match_max [match_max -d]
4775
4776 # We want to add the name of the TCL testcase to the PASS/FAIL messages.
4777 set pf_prefix "[file tail [file dirname $test_file_name]]/[file tail $test_file_name]:"
4778
4779 global gdb_prompt
4780 if [target_info exists gdb_prompt] {
4781 set gdb_prompt [target_info gdb_prompt]
4782 } else {
4783 set gdb_prompt "\\(gdb\\)"
4784 }
4785 global use_gdb_stub
4786 if [info exists use_gdb_stub] {
4787 unset use_gdb_stub
4788 }
4789 }
4790
4791 # Return a path using GDB_PARALLEL.
4792 # ARGS is a list of path elements to append to "$objdir/$GDB_PARALLEL".
4793 # GDB_PARALLEL must be defined, the caller must check.
4794 #
4795 # The default value for GDB_PARALLEL is, canonically, ".".
4796 # The catch is that tests don't expect an additional "./" in file paths so
4797 # omit any directory for the default case.
4798 # GDB_PARALLEL is written as "yes" for the default case in Makefile.in to mark
4799 # its special handling.
4800
4801 proc make_gdb_parallel_path { args } {
4802 global GDB_PARALLEL objdir
4803 set joiner [list "file" "join" $objdir]
4804 if { [info exists GDB_PARALLEL] && $GDB_PARALLEL != "yes" } {
4805 lappend joiner $GDB_PARALLEL
4806 }
4807 set joiner [concat $joiner $args]
4808 return [eval $joiner]
4809 }
4810
4811 # Turn BASENAME into a full file name in the standard output
4812 # directory. It is ok if BASENAME is the empty string; in this case
4813 # the directory is returned.
4814
4815 proc standard_output_file {basename} {
4816 global objdir subdir gdb_test_file_name
4817
4818 set dir [make_gdb_parallel_path outputs $subdir $gdb_test_file_name]
4819 file mkdir $dir
4820 # If running on MinGW, replace /c/foo with c:/foo
4821 if { [ishost *-*-mingw*] } {
4822 set dir [regsub {^/([a-z])/} $dir {\1:/}]
4823 }
4824 return [file join $dir $basename]
4825 }
4826
4827 # Turn BASENAME into a full file name in the standard output directory. If
4828 # GDB has been launched more than once then append the count, starting with
4829 # a ".1" postfix.
4830
4831 proc standard_output_file_with_gdb_instance {basename} {
4832 global gdb_instances
4833 set count [expr $gdb_instances - 1 ]
4834
4835 if {$count == 0} {
4836 return [standard_output_file $basename]
4837 }
4838 return [standard_output_file ${basename}.${count}]
4839 }
4840
4841 # Return the name of a file in our standard temporary directory.
4842
4843 proc standard_temp_file {basename} {
4844 # Since a particular runtest invocation is only executing a single test
4845 # file at any given time, we can use the runtest pid to build the
4846 # path of the temp directory.
4847 set dir [make_gdb_parallel_path temp [pid]]
4848 file mkdir $dir
4849 return [file join $dir $basename]
4850 }
4851
4852 # Set 'testfile', 'srcfile', and 'binfile'.
4853 #
4854 # ARGS is a list of source file specifications.
4855 # Without any arguments, the .exp file's base name is used to
4856 # compute the source file name. The ".c" extension is added in this case.
4857 # If ARGS is not empty, each entry is a source file specification.
4858 # If the specification starts with a ".", it is treated as a suffix
4859 # to append to the .exp file's base name.
4860 # If the specification is the empty string, it is treated as if it
4861 # were ".c".
4862 # Otherwise it is a file name.
4863 # The first file in the list is used to set the 'srcfile' global.
4864 # Each subsequent name is used to set 'srcfile2', 'srcfile3', etc.
4865 #
4866 # Most tests should call this without arguments.
4867 #
4868 # If a completely different binary file name is needed, then it
4869 # should be handled in the .exp file with a suitable comment.
4870
4871 proc standard_testfile {args} {
4872 global gdb_test_file_name
4873 global subdir
4874 global gdb_test_file_last_vars
4875
4876 # Outputs.
4877 global testfile binfile
4878
4879 set testfile $gdb_test_file_name
4880 set binfile [standard_output_file ${testfile}]
4881
4882 if {[llength $args] == 0} {
4883 set args .c
4884 }
4885
4886 # Unset our previous output variables.
4887 # This can help catch hidden bugs.
4888 if {[info exists gdb_test_file_last_vars]} {
4889 foreach varname $gdb_test_file_last_vars {
4890 global $varname
4891 catch {unset $varname}
4892 }
4893 }
4894 # 'executable' is often set by tests.
4895 set gdb_test_file_last_vars {executable}
4896
4897 set suffix ""
4898 foreach arg $args {
4899 set varname srcfile$suffix
4900 global $varname
4901
4902 # Handle an extension.
4903 if {$arg == ""} {
4904 set arg $testfile.c
4905 } elseif {[string range $arg 0 0] == "."} {
4906 set arg $testfile$arg
4907 }
4908
4909 set $varname $arg
4910 lappend gdb_test_file_last_vars $varname
4911
4912 if {$suffix == ""} {
4913 set suffix 2
4914 } else {
4915 incr suffix
4916 }
4917 }
4918 }
4919
4920 # The default timeout used when testing GDB commands. We want to use
4921 # the same timeout as the default dejagnu timeout, unless the user has
4922 # already provided a specific value (probably through a site.exp file).
4923 global gdb_test_timeout
4924 if ![info exists gdb_test_timeout] {
4925 set gdb_test_timeout $timeout
4926 }
4927
4928 # A list of global variables that GDB testcases should not use.
4929 # We try to prevent their use by monitoring write accesses and raising
4930 # an error when that happens.
4931 set banned_variables { bug_id prms_id }
4932
4933 # A list of procedures that GDB testcases should not use.
4934 # We try to prevent their use by monitoring invocations and raising
4935 # an error when that happens.
4936 set banned_procedures { strace }
4937
4938 # gdb_init is called by runtest at start, but also by several
4939 # tests directly; gdb_finish is only called from within runtest after
4940 # each test source execution.
4941 # Placing several traces by repetitive calls to gdb_init leads
4942 # to problems, as only one trace is removed in gdb_finish.
4943 # To overcome this possible problem, we add a variable that records
4944 # if the banned variables and procedures are already traced.
4945 set banned_traced 0
4946
4947 proc gdb_init { test_file_name } {
4948 # Reset the timeout value to the default. This way, any testcase
4949 # that changes the timeout value without resetting it cannot affect
4950 # the timeout used in subsequent testcases.
4951 global gdb_test_timeout
4952 global timeout
4953 set timeout $gdb_test_timeout
4954
4955 if { [regexp ".*gdb\.reverse\/.*" $test_file_name]
4956 && [target_info exists gdb_reverse_timeout] } {
4957 set timeout [target_info gdb_reverse_timeout]
4958 }
4959
4960 # If GDB_INOTIFY is given, check for writes to '.'. This is a
4961 # debugging tool to help confirm that the test suite is
4962 # parallel-safe. You need "inotifywait" from the
4963 # inotify-tools package to use this.
4964 global GDB_INOTIFY inotify_pid
4965 if {[info exists GDB_INOTIFY] && ![info exists inotify_pid]} {
4966 global outdir tool inotify_log_file
4967
4968 set exclusions {outputs temp gdb[.](log|sum) cache}
4969 set exclusion_re ([join $exclusions |])
4970
4971 set inotify_log_file [standard_temp_file inotify.out]
4972 set inotify_pid [exec inotifywait -r -m -e move,create,delete . \
4973 --exclude $exclusion_re \
4974 |& tee -a $outdir/$tool.log $inotify_log_file &]
4975
4976 # Wait for the watches; hopefully this is long enough.
4977 sleep 2
4978
4979 # Clear the log so that we don't emit a warning the first time
4980 # we check it.
4981 set fd [open $inotify_log_file w]
4982 close $fd
4983 }
4984
4985 # Block writes to all banned variables, and invocation of all
4986 # banned procedures...
4987 global banned_variables
4988 global banned_procedures
4989 global banned_traced
4990 if (!$banned_traced) {
4991 foreach banned_var $banned_variables {
4992 global "$banned_var"
4993 trace add variable "$banned_var" write error
4994 }
4995 foreach banned_proc $banned_procedures {
4996 global "$banned_proc"
4997 trace add execution "$banned_proc" enter error
4998 }
4999 set banned_traced 1
5000 }
5001
5002 # We set LC_ALL, LC_CTYPE, and LANG to C so that we get the same
5003 # messages as expected.
5004 setenv LC_ALL C
5005 setenv LC_CTYPE C
5006 setenv LANG C
5007
5008 # Don't let a .inputrc file or an existing setting of INPUTRC mess up
5009 # the test results. Even if /dev/null doesn't exist on the particular
5010 # platform, the readline library will use the default setting just by
5011 # failing to open the file. OTOH, opening /dev/null successfully will
5012 # also result in the default settings being used since nothing will be
5013 # read from this file.
5014 setenv INPUTRC "/dev/null"
5015
5016 # This disables style output, which would interfere with many
5017 # tests.
5018 setenv TERM "dumb"
5019
5020 # Initialize GDB's pty with a fixed size, to make sure we avoid pagination
5021 # during startup. See "man expect" for details about stty_init.
5022 global stty_init
5023 set stty_init "rows 25 cols 80"
5024
5025 # Some tests (for example gdb.base/maint.exp) shell out from gdb to use
5026 # grep. Clear GREP_OPTIONS to make the behavior predictable,
5027 # especially having color output turned on can cause tests to fail.
5028 setenv GREP_OPTIONS ""
5029
5030 # Clear $gdbserver_reconnect_p.
5031 global gdbserver_reconnect_p
5032 set gdbserver_reconnect_p 1
5033 unset gdbserver_reconnect_p
5034
5035 # Reset GDB number of instances
5036 global gdb_instances
5037 set gdb_instances 0
5038
5039 return [default_gdb_init $test_file_name]
5040 }
5041
5042 proc gdb_finish { } {
5043 global gdbserver_reconnect_p
5044 global gdb_prompt
5045 global cleanfiles
5046
5047 # Exit first, so that the files are no longer in use.
5048 gdb_exit
5049
5050 if { [llength $cleanfiles] > 0 } {
5051 eval remote_file target delete $cleanfiles
5052 set cleanfiles {}
5053 }
5054
5055 # Unblock write access to the banned variables. Dejagnu typically
5056 # resets some of them between testcases.
5057 global banned_variables
5058 global banned_procedures
5059 global banned_traced
5060 if ($banned_traced) {
5061 foreach banned_var $banned_variables {
5062 global "$banned_var"
5063 trace remove variable "$banned_var" write error
5064 }
5065 foreach banned_proc $banned_procedures {
5066 global "$banned_proc"
5067 trace remove execution "$banned_proc" enter error
5068 }
5069 set banned_traced 0
5070 }
5071 }
5072
5073 global debug_format
5074 set debug_format "unknown"
5075
5076 # Run the gdb command "info source" and extract the debugging format
5077 # information from the output and save it in debug_format.
5078
5079 proc get_debug_format { } {
5080 global gdb_prompt
5081 global verbose
5082 global expect_out
5083 global debug_format
5084
5085 set debug_format "unknown"
5086 send_gdb "info source\n"
5087 gdb_expect 10 {
5088 -re "Compiled with (.*) debugging format.\r\n.*$gdb_prompt $" {
5089 set debug_format $expect_out(1,string)
5090 verbose "debug format is $debug_format"
5091 return 1
5092 }
5093 -re "No current source file.\r\n$gdb_prompt $" {
5094 perror "get_debug_format used when no current source file"
5095 return 0
5096 }
5097 -re "$gdb_prompt $" {
5098 warning "couldn't check debug format (no valid response)."
5099 return 1
5100 }
5101 timeout {
5102 warning "couldn't check debug format (timeout)."
5103 return 1
5104 }
5105 }
5106 }
5107
5108 # Return true if FORMAT matches the debug format the current test was
5109 # compiled with. FORMAT is a shell-style globbing pattern; it can use
5110 # `*', `[...]', and so on.
5111 #
5112 # This function depends on variables set by `get_debug_format', above.
5113
5114 proc test_debug_format {format} {
5115 global debug_format
5116
5117 return [expr [string match $format $debug_format] != 0]
5118 }
5119
5120 # Like setup_xfail, but takes the name of a debug format (DWARF 1,
5121 # COFF, stabs, etc). If that format matches the format that the
5122 # current test was compiled with, then the next test is expected to
5123 # fail for any target. Returns 1 if the next test or set of tests is
5124 # expected to fail, 0 otherwise (or if it is unknown). Must have
5125 # previously called get_debug_format.
5126 proc setup_xfail_format { format } {
5127 set ret [test_debug_format $format]
5128
5129 if {$ret} then {
5130 setup_xfail "*-*-*"
5131 }
5132 return $ret
5133 }
5134
5135 # gdb_get_line_number TEXT [FILE]
5136 #
5137 # Search the source file FILE, and return the line number of the
5138 # first line containing TEXT. If no match is found, an error is thrown.
5139 #
5140 # TEXT is a string literal, not a regular expression.
5141 #
5142 # The default value of FILE is "$srcdir/$subdir/$srcfile". If FILE is
5143 # specified, and does not start with "/", then it is assumed to be in
5144 # "$srcdir/$subdir". This is awkward, and can be fixed in the future,
5145 # by changing the callers and the interface at the same time.
5146 # In particular: gdb.base/break.exp, gdb.base/condbreak.exp,
5147 # gdb.base/ena-dis-br.exp.
5148 #
5149 # Use this function to keep your test scripts independent of the
5150 # exact line numbering of the source file. Don't write:
5151 #
5152 # send_gdb "break 20"
5153 #
5154 # This means that if anyone ever edits your test's source file,
5155 # your test could break. Instead, put a comment like this on the
5156 # source file line you want to break at:
5157 #
5158 # /* breakpoint spot: frotz.exp: test name */
5159 #
5160 # and then write, in your test script (which we assume is named
5161 # frotz.exp):
5162 #
5163 # send_gdb "break [gdb_get_line_number "frotz.exp: test name"]\n"
5164 #
5165 # (Yes, Tcl knows how to handle the nested quotes and brackets.
5166 # Try this:
5167 # $ tclsh
5168 # % puts "foo [lindex "bar baz" 1]"
5169 # foo baz
5170 # %
5171 # Tcl is quite clever, for a little stringy language.)
5172 #
5173 # ===
5174 #
5175 # The previous implementation of this procedure used the gdb search command.
5176 # This version is different:
5177 #
5178 # . It works with MI, and it also works when gdb is not running.
5179 #
5180 # . It operates on the build machine, not the host machine.
5181 #
5182 # . For now, this implementation fakes a current directory of
5183 # $srcdir/$subdir to be compatible with the old implementation.
5184 # This will go away eventually and some callers will need to
5185 # be changed.
5186 #
5187 # . The TEXT argument is literal text and matches literally,
5188 # not a regular expression as it was before.
5189 #
5190 # . State changes in gdb, such as changing the current file
5191 # and setting $_, no longer happen.
5192 #
5193 # After a bit of time we can forget about the differences from the
5194 # old implementation.
5195 #
5196 # --chastain 2004-08-05
5197
5198 proc gdb_get_line_number { text { file "" } } {
5199 global srcdir
5200 global subdir
5201 global srcfile
5202
5203 if { "$file" == "" } then {
5204 set file "$srcfile"
5205 }
5206 if { ! [regexp "^/" "$file"] } then {
5207 set file "$srcdir/$subdir/$file"
5208 }
5209
5210 if { [ catch { set fd [open "$file"] } message ] } then {
5211 error "$message"
5212 }
5213
5214 set found -1
5215 for { set line 1 } { 1 } { incr line } {
5216 if { [ catch { set nchar [gets "$fd" body] } message ] } then {
5217 error "$message"
5218 }
5219 if { $nchar < 0 } then {
5220 break
5221 }
5222 if { [string first "$text" "$body"] >= 0 } then {
5223 set found $line
5224 break
5225 }
5226 }
5227
5228 if { [ catch { close "$fd" } message ] } then {
5229 error "$message"
5230 }
5231
5232 if {$found == -1} {
5233 error "undefined tag \"$text\""
5234 }
5235
5236 return $found
5237 }
5238
5239 # Continue the program until it ends.
5240 #
5241 # MSSG is the error message that gets printed. If not given, a
5242 # default is used.
5243 # COMMAND is the command to invoke. If not given, "continue" is
5244 # used.
5245 # ALLOW_EXTRA is a flag indicating whether the test should expect
5246 # extra output between the "Continuing." line and the program
5247 # exiting. By default it is zero; if nonzero, any extra output
5248 # is accepted.
5249
5250 proc gdb_continue_to_end {{mssg ""} {command continue} {allow_extra 0}} {
5251 global inferior_exited_re use_gdb_stub
5252
5253 if {$mssg == ""} {
5254 set text "continue until exit"
5255 } else {
5256 set text "continue until exit at $mssg"
5257 }
5258 if {$allow_extra} {
5259 set extra ".*"
5260 } else {
5261 set extra ""
5262 }
5263
5264 # By default, we don't rely on exit() behavior of remote stubs --
5265 # it's common for exit() to be implemented as a simple infinite
5266 # loop, or a forced crash/reset. For native targets, by default, we
5267 # assume process exit is reported as such. If a non-reliable target
5268 # is used, we set a breakpoint at exit, and continue to that.
5269 if { [target_info exists exit_is_reliable] } {
5270 set exit_is_reliable [target_info exit_is_reliable]
5271 } else {
5272 set exit_is_reliable [expr ! $use_gdb_stub]
5273 }
5274
5275 if { ! $exit_is_reliable } {
5276 if {![gdb_breakpoint "exit"]} {
5277 return 0
5278 }
5279 gdb_test $command "Continuing..*Breakpoint .*exit.*" \
5280 $text
5281 } else {
5282 # Continue until we exit. Should not stop again.
5283 # Don't bother to check the output of the program, that may be
5284 # extremely tough for some remote systems.
5285 gdb_test $command \
5286 "Continuing.\[\r\n0-9\]+${extra}(... EXIT code 0\[\r\n\]+|$inferior_exited_re normally).*"\
5287 $text
5288 }
5289 }
5290
5291 proc rerun_to_main {} {
5292 global gdb_prompt use_gdb_stub
5293
5294 if $use_gdb_stub {
5295 gdb_run_cmd
5296 gdb_expect {
5297 -re ".*Breakpoint .*main .*$gdb_prompt $"\
5298 {pass "rerun to main" ; return 0}
5299 -re "$gdb_prompt $"\
5300 {fail "rerun to main" ; return 0}
5301 timeout {fail "(timeout) rerun to main" ; return 0}
5302 }
5303 } else {
5304 send_gdb "run\n"
5305 gdb_expect {
5306 -re "The program .* has been started already.*y or n. $" {
5307 send_gdb "y\n" answer
5308 exp_continue
5309 }
5310 -re "Starting program.*$gdb_prompt $"\
5311 {pass "rerun to main" ; return 0}
5312 -re "$gdb_prompt $"\
5313 {fail "rerun to main" ; return 0}
5314 timeout {fail "(timeout) rerun to main" ; return 0}
5315 }
5316 }
5317 }
5318
5319 # Return true if EXECUTABLE contains a .gdb_index or .debug_names index section.
5320
5321 proc exec_has_index_section { executable } {
5322 set readelf_program [gdb_find_readelf]
5323 set res [catch {exec $readelf_program -S $executable \
5324 | grep -E "\.gdb_index|\.debug_names" }]
5325 if { $res == 0 } {
5326 return 1
5327 }
5328 return 0
5329 }
5330
5331 # Return list with major and minor version of readelf, or an empty list.
5332 gdb_caching_proc readelf_version {
5333 set readelf_program [gdb_find_readelf]
5334 set res [catch {exec $readelf_program --version} output]
5335 if { $res != 0 } {
5336 return [list]
5337 }
5338 set lines [split $output \n]
5339 set line [lindex $lines 0]
5340 set res [regexp {[ \t]+([0-9]+)[.]([0-9]+)[^ \t]*$} \
5341 $line dummy major minor]
5342 if { $res != 1 } {
5343 return [list]
5344 }
5345 return [list $major $minor]
5346 }
5347
5348 # Return 1 if readelf prints the PIE flag, 0 if is doesn't, and -1 if unknown.
5349 proc readelf_prints_pie { } {
5350 set version [readelf_version]
5351 if { [llength $version] == 0 } {
5352 return -1
5353 }
5354 set major [lindex $version 0]
5355 set minor [lindex $version 1]
5356 # It would be better to construct a PIE executable and test if the PIE
5357 # flag is printed by readelf, but we cannot reliably construct a PIE
5358 # executable if the multilib_flags dictate otherwise
5359 # (--target_board=unix/-no-pie/-fno-PIE).
5360 return [version_at_least $major $minor 2 26]
5361 }
5362
5363 # Return 1 if EXECUTABLE is a Position Independent Executable, 0 if it is not,
5364 # and -1 if unknown.
5365
5366 proc exec_is_pie { executable } {
5367 set res [readelf_prints_pie]
5368 if { $res != 1 } {
5369 return -1
5370 }
5371 set readelf_program [gdb_find_readelf]
5372 set res [catch {exec $readelf_program -d $executable} output]
5373 if { $res != 0 } {
5374 return -1
5375 }
5376 set res [regexp -line {\(FLAGS_1\).*Flags:.* PIE($| )} $output]
5377 if { $res == 1 } {
5378 return 1
5379 }
5380 return 0
5381 }
5382
5383 # Return true if a test should be skipped due to lack of floating
5384 # point support or GDB can't fetch the contents from floating point
5385 # registers.
5386
5387 gdb_caching_proc gdb_skip_float_test {
5388 if [target_info exists gdb,skip_float_tests] {
5389 return 1
5390 }
5391
5392 # There is an ARM kernel ptrace bug that hardware VFP registers
5393 # are not updated after GDB ptrace set VFP registers. The bug
5394 # was introduced by kernel commit 8130b9d7b9d858aa04ce67805e8951e3cb6e9b2f
5395 # in 2012 and is fixed in e2dfb4b880146bfd4b6aa8e138c0205407cebbaf
5396 # in May 2016. In other words, kernels older than 4.6.3, 4.4.14,
5397 # 4.1.27, 3.18.36, and 3.14.73 have this bug.
5398 # This kernel bug is detected by check how does GDB change the
5399 # program result by changing one VFP register.
5400 if { [istarget "arm*-*-linux*"] } {
5401
5402 set compile_flags {debug nowarnings }
5403
5404 # Set up, compile, and execute a test program having VFP
5405 # operations.
5406 set src [standard_temp_file arm_vfp[pid].c]
5407 set exe [standard_temp_file arm_vfp[pid].x]
5408
5409 gdb_produce_source $src {
5410 int main() {
5411 double d = 4.0;
5412 int ret;
5413
5414 asm ("vldr d0, [%0]" : : "r" (&d));
5415 asm ("vldr d1, [%0]" : : "r" (&d));
5416 asm (".global break_here\n"
5417 "break_here:");
5418 asm ("vcmp.f64 d0, d1\n"
5419 "vmrs APSR_nzcv, fpscr\n"
5420 "bne L_value_different\n"
5421 "movs %0, #0\n"
5422 "b L_end\n"
5423 "L_value_different:\n"
5424 "movs %0, #1\n"
5425 "L_end:\n" : "=r" (ret) :);
5426
5427 /* Return $d0 != $d1. */
5428 return ret;
5429 }
5430 }
5431
5432 verbose "compiling testfile $src" 2
5433 set lines [gdb_compile $src $exe executable $compile_flags]
5434 file delete $src
5435
5436 if ![string match "" $lines] then {
5437 verbose "testfile compilation failed, returning 1" 2
5438 return 0
5439 }
5440
5441 # No error message, compilation succeeded so now run it via gdb.
5442 # Run the test up to 5 times to detect whether ptrace can
5443 # correctly update VFP registers or not.
5444 set skip_vfp_test 0
5445 for {set i 0} {$i < 5} {incr i} {
5446 global gdb_prompt srcdir subdir
5447
5448 gdb_exit
5449 gdb_start
5450 gdb_reinitialize_dir $srcdir/$subdir
5451 gdb_load "$exe"
5452
5453 runto_main
5454 gdb_test "break *break_here"
5455 gdb_continue_to_breakpoint "break_here"
5456
5457 # Modify $d0 to a different value, so the exit code should
5458 # be 1.
5459 gdb_test "set \$d0 = 5.0"
5460
5461 set test "continue to exit"
5462 gdb_test_multiple "continue" "$test" {
5463 -re "exited with code 01.*$gdb_prompt $" {
5464 }
5465 -re "exited normally.*$gdb_prompt $" {
5466 # However, the exit code is 0. That means something
5467 # wrong in setting VFP registers.
5468 set skip_vfp_test 1
5469 break
5470 }
5471 }
5472 }
5473
5474 gdb_exit
5475 remote_file build delete $exe
5476
5477 return $skip_vfp_test
5478 }
5479 return 0
5480 }
5481
5482 # Print a message and return true if a test should be skipped
5483 # due to lack of stdio support.
5484
5485 proc gdb_skip_stdio_test { msg } {
5486 if [target_info exists gdb,noinferiorio] {
5487 verbose "Skipping test '$msg': no inferior i/o."
5488 return 1
5489 }
5490 return 0
5491 }
5492
5493 proc gdb_skip_bogus_test { msg } {
5494 return 0
5495 }
5496
5497 # Return true if a test should be skipped due to lack of XML support
5498 # in the host GDB.
5499 # NOTE: This must be called while gdb is *not* running.
5500
5501 gdb_caching_proc gdb_skip_xml_test {
5502 global gdb_spawn_id
5503 global gdb_prompt
5504 global srcdir
5505
5506 if { [info exists gdb_spawn_id] } {
5507 error "GDB must not be running in gdb_skip_xml_tests."
5508 }
5509
5510 set xml_file [gdb_remote_download host "${srcdir}/gdb.xml/trivial.xml"]
5511
5512 gdb_start
5513 set xml_missing 0
5514 gdb_test_multiple "set tdesc filename $xml_file" "" {
5515 -re ".*XML support was disabled at compile time.*$gdb_prompt $" {
5516 set xml_missing 1
5517 }
5518 -re ".*$gdb_prompt $" { }
5519 }
5520 gdb_exit
5521 return $xml_missing
5522 }
5523
5524 # Return true if argv[0] is available.
5525
5526 gdb_caching_proc gdb_has_argv0 {
5527 set result 0
5528
5529 # Compile and execute a test program to check whether argv[0] is available.
5530 gdb_simple_compile has_argv0 {
5531 int main (int argc, char **argv) {
5532 return 0;
5533 }
5534 } executable
5535
5536
5537 # Helper proc.
5538 proc gdb_has_argv0_1 { exe } {
5539 global srcdir subdir
5540 global gdb_prompt hex
5541
5542 gdb_exit
5543 gdb_start
5544 gdb_reinitialize_dir $srcdir/$subdir
5545 gdb_load "$exe"
5546
5547 # Set breakpoint on main.
5548 gdb_test_multiple "break main" "break main" {
5549 -re "Breakpoint.*${gdb_prompt} $" {
5550 }
5551 -re "${gdb_prompt} $" {
5552 return 0
5553 }
5554 }
5555
5556 # Run to main.
5557 gdb_run_cmd
5558 gdb_test_multiple "" "run to main" {
5559 -re "Breakpoint.*${gdb_prompt} $" {
5560 }
5561 -re "${gdb_prompt} $" {
5562 return 0
5563 }
5564 }
5565
5566 set old_elements "200"
5567 set test "show print elements"
5568 gdb_test_multiple $test $test {
5569 -re "Limit on string chars or array elements to print is (\[^\r\n\]+)\\.\r\n$gdb_prompt $" {
5570 set old_elements $expect_out(1,string)
5571 }
5572 }
5573 set old_repeats "200"
5574 set test "show print repeats"
5575 gdb_test_multiple $test $test {
5576 -re "Threshold for repeated print elements is (\[^\r\n\]+)\\.\r\n$gdb_prompt $" {
5577 set old_repeats $expect_out(1,string)
5578 }
5579 }
5580 gdb_test_no_output "set print elements unlimited" ""
5581 gdb_test_no_output "set print repeats unlimited" ""
5582
5583 set retval 0
5584 # Check whether argc is 1.
5585 gdb_test_multiple "p argc" "p argc" {
5586 -re " = 1\r\n${gdb_prompt} $" {
5587
5588 gdb_test_multiple "p argv\[0\]" "p argv\[0\]" {
5589 -re " = $hex \".*[file tail $exe]\"\r\n${gdb_prompt} $" {
5590 set retval 1
5591 }
5592 -re "${gdb_prompt} $" {
5593 }
5594 }
5595 }
5596 -re "${gdb_prompt} $" {
5597 }
5598 }
5599
5600 gdb_test_no_output "set print elements $old_elements" ""
5601 gdb_test_no_output "set print repeats $old_repeats" ""
5602
5603 return $retval
5604 }
5605
5606 set result [gdb_has_argv0_1 $obj]
5607
5608 gdb_exit
5609 file delete $obj
5610
5611 if { !$result
5612 && ([istarget *-*-linux*]
5613 || [istarget *-*-freebsd*] || [istarget *-*-kfreebsd*]
5614 || [istarget *-*-netbsd*] || [istarget *-*-knetbsd*]
5615 || [istarget *-*-openbsd*]
5616 || [istarget *-*-darwin*]
5617 || [istarget *-*-solaris*]
5618 || [istarget *-*-aix*]
5619 || [istarget *-*-gnu*]
5620 || [istarget *-*-cygwin*] || [istarget *-*-mingw32*]
5621 || [istarget *-*-*djgpp*] || [istarget *-*-go32*]
5622 || [istarget *-wince-pe] || [istarget *-*-mingw32ce*]
5623 || [istarget *-*-symbianelf*]
5624 || [istarget *-*-osf*]
5625 || [istarget *-*-dicos*]
5626 || [istarget *-*-nto*]
5627 || [istarget *-*-*vms*]
5628 || [istarget *-*-lynx*178]) } {
5629 fail "argv\[0\] should be available on this target"
5630 }
5631
5632 return $result
5633 }
5634
5635 # Note: the procedure gdb_gnu_strip_debug will produce an executable called
5636 # ${binfile}.dbglnk, which is just like the executable ($binfile) but without
5637 # the debuginfo. Instead $binfile has a .gnu_debuglink section which contains
5638 # the name of a debuginfo only file. This file will be stored in the same
5639 # subdirectory.
5640
5641 # Functions for separate debug info testing
5642
5643 # starting with an executable:
5644 # foo --> original executable
5645
5646 # at the end of the process we have:
5647 # foo.stripped --> foo w/o debug info
5648 # foo.debug --> foo's debug info
5649 # foo --> like foo, but with a new .gnu_debuglink section pointing to foo.debug.
5650
5651 # Fetch the build id from the file.
5652 # Returns "" if there is none.
5653
5654 proc get_build_id { filename } {
5655 if { ([istarget "*-*-mingw*"]
5656 || [istarget *-*-cygwin*]) } {
5657 set objdump_program [gdb_find_objdump]
5658 set result [catch {set data [exec $objdump_program -p $filename | grep signature | cut "-d " -f4]} output]
5659 verbose "result is $result"
5660 verbose "output is $output"
5661 if {$result == 1} {
5662 return ""
5663 }
5664 return $data
5665 } else {
5666 set tmp [standard_output_file "${filename}-tmp"]
5667 set objcopy_program [gdb_find_objcopy]
5668 set result [catch "exec $objcopy_program -j .note.gnu.build-id -O binary $filename $tmp" output]
5669 verbose "result is $result"
5670 verbose "output is $output"
5671 if {$result == 1} {
5672 return ""
5673 }
5674 set fi [open $tmp]
5675 fconfigure $fi -translation binary
5676 # Skip the NOTE header.
5677 read $fi 16
5678 set data [read $fi]
5679 close $fi
5680 file delete $tmp
5681 if ![string compare $data ""] then {
5682 return ""
5683 }
5684 # Convert it to hex.
5685 binary scan $data H* data
5686 return $data
5687 }
5688 }
5689
5690 # Return the build-id hex string (usually 160 bits as 40 hex characters)
5691 # converted to the form: .build-id/ab/cdef1234...89.debug
5692 # Return "" if no build-id found.
5693 proc build_id_debug_filename_get { filename } {
5694 set data [get_build_id $filename]
5695 if { $data == "" } {
5696 return ""
5697 }
5698 regsub {^..} $data {\0/} data
5699 return ".build-id/${data}.debug"
5700 }
5701
5702 # Create stripped files for DEST, replacing it. If ARGS is passed, it is a
5703 # list of optional flags. The only currently supported flag is no-main,
5704 # which removes the symbol entry for main from the separate debug file.
5705 #
5706 # Function returns zero on success. Function will return non-zero failure code
5707 # on some targets not supporting separate debug info (such as i386-msdos).
5708
5709 proc gdb_gnu_strip_debug { dest args } {
5710
5711 # Use the first separate debug info file location searched by GDB so the
5712 # run cannot be broken by some stale file searched with higher precedence.
5713 set debug_file "${dest}.debug"
5714
5715 set strip_to_file_program [transform strip]
5716 set objcopy_program [gdb_find_objcopy]
5717
5718 set debug_link [file tail $debug_file]
5719 set stripped_file "${dest}.stripped"
5720
5721 # Get rid of the debug info, and store result in stripped_file
5722 # something like gdb/testsuite/gdb.base/blah.stripped.
5723 set result [catch "exec $strip_to_file_program --strip-debug ${dest} -o ${stripped_file}" output]
5724 verbose "result is $result"
5725 verbose "output is $output"
5726 if {$result == 1} {
5727 return 1
5728 }
5729
5730 # Workaround PR binutils/10802:
5731 # Preserve the 'x' bit also for PIEs (Position Independent Executables).
5732 set perm [file attributes ${dest} -permissions]
5733 file attributes ${stripped_file} -permissions $perm
5734
5735 # Get rid of everything but the debug info, and store result in debug_file
5736 # This will be in the .debug subdirectory, see above.
5737 set result [catch "exec $strip_to_file_program --only-keep-debug ${dest} -o ${debug_file}" output]
5738 verbose "result is $result"
5739 verbose "output is $output"
5740 if {$result == 1} {
5741 return 1
5742 }
5743
5744 # If no-main is passed, strip the symbol for main from the separate
5745 # file. This is to simulate the behavior of elfutils's eu-strip, which
5746 # leaves the symtab in the original file only. There's no way to get
5747 # objcopy or strip to remove the symbol table without also removing the
5748 # debugging sections, so this is as close as we can get.
5749 if { [llength $args] == 1 && [lindex $args 0] == "no-main" } {
5750 set result [catch "exec $objcopy_program -N main ${debug_file} ${debug_file}-tmp" output]
5751 verbose "result is $result"
5752 verbose "output is $output"
5753 if {$result == 1} {
5754 return 1
5755 }
5756 file delete "${debug_file}"
5757 file rename "${debug_file}-tmp" "${debug_file}"
5758 }
5759
5760 # Link the two previous output files together, adding the .gnu_debuglink
5761 # section to the stripped_file, containing a pointer to the debug_file,
5762 # save the new file in dest.
5763 # This will be the regular executable filename, in the usual location.
5764 set result [catch "exec $objcopy_program --add-gnu-debuglink=${debug_file} ${stripped_file} ${dest}" output]
5765 verbose "result is $result"
5766 verbose "output is $output"
5767 if {$result == 1} {
5768 return 1
5769 }
5770
5771 # Workaround PR binutils/10802:
5772 # Preserve the 'x' bit also for PIEs (Position Independent Executables).
5773 set perm [file attributes ${stripped_file} -permissions]
5774 file attributes ${dest} -permissions $perm
5775
5776 return 0
5777 }
5778
5779 # Test the output of GDB_COMMAND matches the pattern obtained
5780 # by concatenating all elements of EXPECTED_LINES. This makes
5781 # it possible to split otherwise very long string into pieces.
5782 # If third argument TESTNAME is not empty, it's used as the name of the
5783 # test to be printed on pass/fail.
5784 proc help_test_raw { gdb_command expected_lines {testname {}} } {
5785 set expected_output [join $expected_lines ""]
5786 if {$testname != {}} {
5787 gdb_test "${gdb_command}" "${expected_output}" $testname
5788 return
5789 }
5790
5791 gdb_test "${gdb_command}" "${expected_output}"
5792 }
5793
5794 # A regexp that matches the end of help CLASS|PREFIX_COMMAND
5795 set help_list_trailer {
5796 "Type \"apropos word\" to search for commands related to \"word\"\.[\r\n]+"
5797 "Type \"apropos -v word\" for full documentation of commands related to \"word\"\.[\r\n]+"
5798 "Command name abbreviations are allowed if unambiguous\."
5799 }
5800
5801 # Test the output of "help COMMAND_CLASS". EXPECTED_INITIAL_LINES
5802 # are regular expressions that should match the beginning of output,
5803 # before the list of commands in that class.
5804 # LIST_OF_COMMANDS are regular expressions that should match the
5805 # list of commands in that class. If empty, the command list will be
5806 # matched automatically. The presence of standard epilogue will be tested
5807 # automatically.
5808 # If last argument TESTNAME is not empty, it's used as the name of the
5809 # test to be printed on pass/fail.
5810 # Notice that the '[' and ']' characters don't need to be escaped for strings
5811 # wrapped in {} braces.
5812 proc test_class_help { command_class expected_initial_lines {list_of_commands {}} {testname {}} } {
5813 global help_list_trailer
5814 if {[llength $list_of_commands]>0} {
5815 set l_list_of_commands {"List of commands:[\r\n]+[\r\n]+"}
5816 set l_list_of_commands [concat $l_list_of_commands $list_of_commands]
5817 set l_list_of_commands [concat $l_list_of_commands {"[\r\n]+[\r\n]+"}]
5818 } else {
5819 set l_list_of_commands {"List of commands\:.*[\r\n]+"}
5820 }
5821 set l_stock_body {
5822 "Type \"help\" followed by command name for full documentation\.[\r\n]+"
5823 }
5824 set l_entire_body [concat $expected_initial_lines $l_list_of_commands \
5825 $l_stock_body $help_list_trailer]
5826
5827 help_test_raw "help ${command_class}" $l_entire_body $testname
5828 }
5829
5830 # Like test_class_help but specialised to test "help user-defined".
5831 proc test_user_defined_class_help { {list_of_commands {}} {testname {}} } {
5832 test_class_help "user-defined" {
5833 "User-defined commands\.[\r\n]+"
5834 "The commands in this class are those defined by the user\.[\r\n]+"
5835 "Use the \"define\" command to define a command\.[\r\n]+"
5836 } $list_of_commands $testname
5837 }
5838
5839
5840 # COMMAND_LIST should have either one element -- command to test, or
5841 # two elements -- abbreviated command to test, and full command the first
5842 # element is abbreviation of.
5843 # The command must be a prefix command. EXPECTED_INITIAL_LINES
5844 # are regular expressions that should match the beginning of output,
5845 # before the list of subcommands. The presence of
5846 # subcommand list and standard epilogue will be tested automatically.
5847 proc test_prefix_command_help { command_list expected_initial_lines args } {
5848 global help_list_trailer
5849 set command [lindex $command_list 0]
5850 if {[llength $command_list]>1} {
5851 set full_command [lindex $command_list 1]
5852 } else {
5853 set full_command $command
5854 }
5855 # Use 'list' and not just {} because we want variables to
5856 # be expanded in this list.
5857 set l_stock_body [list\
5858 "List of $full_command subcommands\:.*\[\r\n\]+"\
5859 "Type \"help $full_command\" followed by $full_command subcommand name for full documentation\.\[\r\n\]+"]
5860 set l_entire_body [concat $expected_initial_lines $l_stock_body $help_list_trailer]
5861 if {[llength $args]>0} {
5862 help_test_raw "help ${command}" $l_entire_body [lindex $args 0]
5863 } else {
5864 help_test_raw "help ${command}" $l_entire_body
5865 }
5866 }
5867
5868 # Build executable named EXECUTABLE from specifications that allow
5869 # different options to be passed to different sub-compilations.
5870 # TESTNAME is the name of the test; this is passed to 'untested' if
5871 # something fails.
5872 # OPTIONS is passed to the final link, using gdb_compile. If OPTIONS
5873 # contains the option "pthreads", then gdb_compile_pthreads is used.
5874 # ARGS is a flat list of source specifications, of the form:
5875 # { SOURCE1 OPTIONS1 [ SOURCE2 OPTIONS2 ]... }
5876 # Each SOURCE is compiled to an object file using its OPTIONS,
5877 # using gdb_compile.
5878 # Returns 0 on success, -1 on failure.
5879 proc build_executable_from_specs {testname executable options args} {
5880 global subdir
5881 global srcdir
5882
5883 set binfile [standard_output_file $executable]
5884
5885 set info_options ""
5886 if { [lsearch -exact $options "c++"] >= 0 } {
5887 set info_options "c++"
5888 }
5889 if [get_compiler_info ${info_options}] {
5890 return -1
5891 }
5892
5893 set func gdb_compile
5894 set func_index [lsearch -regexp $options {^(pthreads|shlib|shlib_pthreads)$}]
5895 if {$func_index != -1} {
5896 set func "${func}_[lindex $options $func_index]"
5897 }
5898
5899 # gdb_compile_shlib and gdb_compile_shlib_pthreads do not use the 3rd
5900 # parameter. They also requires $sources while gdb_compile and
5901 # gdb_compile_pthreads require $objects. Moreover they ignore any options.
5902 if [string match gdb_compile_shlib* $func] {
5903 set sources_path {}
5904 foreach {s local_options} $args {
5905 if { [regexp "^/" "$s"] } then {
5906 lappend sources_path "$s"
5907 } else {
5908 lappend sources_path "$srcdir/$subdir/$s"
5909 }
5910 }
5911 set ret [$func $sources_path "${binfile}" $options]
5912 } elseif {[lsearch -exact $options rust] != -1} {
5913 set sources_path {}
5914 foreach {s local_options} $args {
5915 if { [regexp "^/" "$s"] } then {
5916 lappend sources_path "$s"
5917 } else {
5918 lappend sources_path "$srcdir/$subdir/$s"
5919 }
5920 }
5921 set ret [gdb_compile_rust $sources_path "${binfile}" $options]
5922 } else {
5923 set objects {}
5924 set i 0
5925 foreach {s local_options} $args {
5926 if { ! [regexp "^/" "$s"] } then {
5927 set s "$srcdir/$subdir/$s"
5928 }
5929 if { [gdb_compile "${s}" "${binfile}${i}.o" object $local_options] != "" } {
5930 untested $testname
5931 return -1
5932 }
5933 lappend objects "${binfile}${i}.o"
5934 incr i
5935 }
5936 set ret [$func $objects "${binfile}" executable $options]
5937 }
5938 if { $ret != "" } {
5939 untested $testname
5940 return -1
5941 }
5942
5943 return 0
5944 }
5945
5946 # Build executable named EXECUTABLE, from SOURCES. If SOURCES are not
5947 # provided, uses $EXECUTABLE.c. The TESTNAME paramer is the name of test
5948 # to pass to untested, if something is wrong. OPTIONS are passed
5949 # to gdb_compile directly.
5950 proc build_executable { testname executable {sources ""} {options {debug}} } {
5951 if {[llength $sources]==0} {
5952 set sources ${executable}.c
5953 }
5954
5955 set arglist [list $testname $executable $options]
5956 foreach source $sources {
5957 lappend arglist $source $options
5958 }
5959
5960 return [eval build_executable_from_specs $arglist]
5961 }
5962
5963 # Starts fresh GDB binary and loads an optional executable into GDB.
5964 # Usage: clean_restart [executable]
5965 # EXECUTABLE is the basename of the binary.
5966
5967 proc clean_restart { args } {
5968 global srcdir
5969 global subdir
5970
5971 if { [llength $args] > 1 } {
5972 error "bad number of args: [llength $args]"
5973 }
5974
5975 gdb_exit
5976 gdb_start
5977 gdb_reinitialize_dir $srcdir/$subdir
5978
5979 if { [llength $args] >= 1 } {
5980 set executable [lindex $args 0]
5981 set binfile [standard_output_file ${executable}]
5982 gdb_load ${binfile}
5983 }
5984 }
5985
5986 # Prepares for testing by calling build_executable_full, then
5987 # clean_restart.
5988 # TESTNAME is the name of the test.
5989 # Each element in ARGS is a list of the form
5990 # { EXECUTABLE OPTIONS SOURCE_SPEC... }
5991 # These are passed to build_executable_from_specs, which see.
5992 # The last EXECUTABLE is passed to clean_restart.
5993 # Returns 0 on success, non-zero on failure.
5994 proc prepare_for_testing_full {testname args} {
5995 foreach spec $args {
5996 if {[eval build_executable_from_specs [list $testname] $spec] == -1} {
5997 return -1
5998 }
5999 set executable [lindex $spec 0]
6000 }
6001 clean_restart $executable
6002 return 0
6003 }
6004
6005 # Prepares for testing, by calling build_executable, and then clean_restart.
6006 # Please refer to build_executable for parameter description.
6007 proc prepare_for_testing { testname executable {sources ""} {options {debug}}} {
6008
6009 if {[build_executable $testname $executable $sources $options] == -1} {
6010 return -1
6011 }
6012 clean_restart $executable
6013
6014 return 0
6015 }
6016
6017 # Retrieve the value of EXP in the inferior, represented in format
6018 # specified in FMT (using "printFMT"). DEFAULT is used as fallback if
6019 # print fails. TEST is the test message to use. It can be omitted,
6020 # in which case a test message is built from EXP.
6021
6022 proc get_valueof { fmt exp default {test ""} } {
6023 global gdb_prompt
6024
6025 if {$test == "" } {
6026 set test "get valueof \"${exp}\""
6027 }
6028
6029 set val ${default}
6030 gdb_test_multiple "print${fmt} ${exp}" "$test" {
6031 -re "\\$\[0-9\]* = (\[^\r\n\]*)\[\r\n\]*$gdb_prompt $" {
6032 set val $expect_out(1,string)
6033 pass "$test"
6034 }
6035 timeout {
6036 fail "$test (timeout)"
6037 }
6038 }
6039 return ${val}
6040 }
6041
6042 # Retrieve the value of EXP in the inferior, as a signed decimal value
6043 # (using "print /d"). DEFAULT is used as fallback if print fails.
6044 # TEST is the test message to use. It can be omitted, in which case
6045 # a test message is built from EXP.
6046
6047 proc get_integer_valueof { exp default {test ""} } {
6048 global gdb_prompt
6049
6050 if {$test == ""} {
6051 set test "get integer valueof \"${exp}\""
6052 }
6053
6054 set val ${default}
6055 gdb_test_multiple "print /d ${exp}" "$test" {
6056 -re "\\$\[0-9\]* = (\[-\]*\[0-9\]*).*$gdb_prompt $" {
6057 set val $expect_out(1,string)
6058 pass "$test"
6059 }
6060 timeout {
6061 fail "$test (timeout)"
6062 }
6063 }
6064 return ${val}
6065 }
6066
6067 # Retrieve the value of EXP in the inferior, as an hexadecimal value
6068 # (using "print /x"). DEFAULT is used as fallback if print fails.
6069 # TEST is the test message to use. It can be omitted, in which case
6070 # a test message is built from EXP.
6071
6072 proc get_hexadecimal_valueof { exp default {test ""} } {
6073 global gdb_prompt
6074
6075 if {$test == ""} {
6076 set test "get hexadecimal valueof \"${exp}\""
6077 }
6078
6079 set val ${default}
6080 gdb_test_multiple "print /x ${exp}" $test {
6081 -re "\\$\[0-9\]* = (0x\[0-9a-zA-Z\]+).*$gdb_prompt $" {
6082 set val $expect_out(1,string)
6083 pass "$test"
6084 }
6085 }
6086 return ${val}
6087 }
6088
6089 # Retrieve the size of TYPE in the inferior, as a decimal value. DEFAULT
6090 # is used as fallback if print fails. TEST is the test message to use.
6091 # It can be omitted, in which case a test message is 'sizeof (TYPE)'.
6092
6093 proc get_sizeof { type default {test ""} } {
6094 return [get_integer_valueof "sizeof (${type})" $default $test]
6095 }
6096
6097 proc get_target_charset { } {
6098 global gdb_prompt
6099
6100 gdb_test_multiple "show target-charset" "" {
6101 -re "The target character set is \"auto; currently (\[^\"\]*)\".*$gdb_prompt $" {
6102 return $expect_out(1,string)
6103 }
6104 -re "The target character set is \"(\[^\"\]*)\".*$gdb_prompt $" {
6105 return $expect_out(1,string)
6106 }
6107 }
6108
6109 # Pick a reasonable default.
6110 warning "Unable to read target-charset."
6111 return "UTF-8"
6112 }
6113
6114 # Get the address of VAR.
6115
6116 proc get_var_address { var } {
6117 global gdb_prompt hex
6118
6119 # Match output like:
6120 # $1 = (int *) 0x0
6121 # $5 = (int (*)()) 0
6122 # $6 = (int (*)()) 0x24 <function_bar>
6123
6124 gdb_test_multiple "print &${var}" "get address of ${var}" {
6125 -re "\\\$\[0-9\]+ = \\(.*\\) (0|$hex)( <${var}>)?\[\r\n\]+${gdb_prompt} $"
6126 {
6127 pass "get address of ${var}"
6128 if { $expect_out(1,string) == "0" } {
6129 return "0x0"
6130 } else {
6131 return $expect_out(1,string)
6132 }
6133 }
6134 }
6135 return ""
6136 }
6137
6138 # Return the frame number for the currently selected frame
6139 proc get_current_frame_number {{test_name ""}} {
6140 global gdb_prompt
6141
6142 if { $test_name == "" } {
6143 set test_name "get current frame number"
6144 }
6145 set frame_num -1
6146 gdb_test_multiple "frame" $test_name {
6147 -re "#(\[0-9\]+) .*$gdb_prompt $" {
6148 set frame_num $expect_out(1,string)
6149 }
6150 }
6151 return $frame_num
6152 }
6153
6154 # Get the current value for remotetimeout and return it.
6155 proc get_remotetimeout { } {
6156 global gdb_prompt
6157 global decimal
6158
6159 gdb_test_multiple "show remotetimeout" "" {
6160 -re "Timeout limit to wait for target to respond is ($decimal).*$gdb_prompt $" {
6161 return $expect_out(1,string)
6162 }
6163 }
6164
6165 # Pick the default that gdb uses
6166 warning "Unable to read remotetimeout"
6167 return 300
6168 }
6169
6170 # Set the remotetimeout to the specified timeout. Nothing is returned.
6171 proc set_remotetimeout { timeout } {
6172 global gdb_prompt
6173
6174 gdb_test_multiple "set remotetimeout $timeout" "" {
6175 -re "$gdb_prompt $" {
6176 verbose "Set remotetimeout to $timeout\n"
6177 }
6178 }
6179 }
6180
6181 # Get the target's current endianness and return it.
6182 proc get_endianness { } {
6183 global gdb_prompt
6184
6185 gdb_test_multiple "show endian" "determine endianness" {
6186 -re ".* (little|big) endian.*\r\n$gdb_prompt $" {
6187 # Pass silently.
6188 return $expect_out(1,string)
6189 }
6190 }
6191 return "little"
6192 }
6193
6194 # ROOT and FULL are file names. Returns the relative path from ROOT
6195 # to FULL. Note that FULL must be in a subdirectory of ROOT.
6196 # For example, given ROOT = /usr/bin and FULL = /usr/bin/ls, this
6197 # will return "ls".
6198
6199 proc relative_filename {root full} {
6200 set root_split [file split $root]
6201 set full_split [file split $full]
6202
6203 set len [llength $root_split]
6204
6205 if {[eval file join $root_split]
6206 != [eval file join [lrange $full_split 0 [expr {$len - 1}]]]} {
6207 error "$full not a subdir of $root"
6208 }
6209
6210 return [eval file join [lrange $full_split $len end]]
6211 }
6212
6213 # If GDB_PARALLEL exists, then set up the parallel-mode directories.
6214 if {[info exists GDB_PARALLEL]} {
6215 if {[is_remote host]} {
6216 unset GDB_PARALLEL
6217 } else {
6218 file mkdir \
6219 [make_gdb_parallel_path outputs] \
6220 [make_gdb_parallel_path temp] \
6221 [make_gdb_parallel_path cache]
6222 }
6223 }
6224
6225 proc core_find {binfile {deletefiles {}} {arg ""}} {
6226 global objdir subdir
6227
6228 set destcore "$binfile.core"
6229 file delete $destcore
6230
6231 # Create a core file named "$destcore" rather than just "core", to
6232 # avoid problems with sys admin types that like to regularly prune all
6233 # files named "core" from the system.
6234 #
6235 # Arbitrarily try setting the core size limit to "unlimited" since
6236 # this does not hurt on systems where the command does not work and
6237 # allows us to generate a core on systems where it does.
6238 #
6239 # Some systems append "core" to the name of the program; others append
6240 # the name of the program to "core"; still others (like Linux, as of
6241 # May 2003) create cores named "core.PID". In the latter case, we
6242 # could have many core files lying around, and it may be difficult to
6243 # tell which one is ours, so let's run the program in a subdirectory.
6244 set found 0
6245 set coredir [standard_output_file coredir.[getpid]]
6246 file mkdir $coredir
6247 catch "system \"(cd ${coredir}; ulimit -c unlimited; ${binfile} ${arg}; true) >/dev/null 2>&1\""
6248 # remote_exec host "${binfile}"
6249 foreach i "${coredir}/core ${coredir}/core.coremaker.c ${binfile}.core" {
6250 if [remote_file build exists $i] {
6251 remote_exec build "mv $i $destcore"
6252 set found 1
6253 }
6254 }
6255 # Check for "core.PID".
6256 if { $found == 0 } {
6257 set names [glob -nocomplain -directory $coredir core.*]
6258 if {[llength $names] == 1} {
6259 set corefile [file join $coredir [lindex $names 0]]
6260 remote_exec build "mv $corefile $destcore"
6261 set found 1
6262 }
6263 }
6264 if { $found == 0 } {
6265 # The braindamaged HPUX shell quits after the ulimit -c above
6266 # without executing ${binfile}. So we try again without the
6267 # ulimit here if we didn't find a core file above.
6268 # Oh, I should mention that any "braindamaged" non-Unix system has
6269 # the same problem. I like the cd bit too, it's really neat'n stuff.
6270 catch "system \"(cd ${objdir}/${subdir}; ${binfile}; true) >/dev/null 2>&1\""
6271 foreach i "${objdir}/${subdir}/core ${objdir}/${subdir}/core.coremaker.c ${binfile}.core" {
6272 if [remote_file build exists $i] {
6273 remote_exec build "mv $i $destcore"
6274 set found 1
6275 }
6276 }
6277 }
6278
6279 # Try to clean up after ourselves.
6280 foreach deletefile $deletefiles {
6281 remote_file build delete [file join $coredir $deletefile]
6282 }
6283 remote_exec build "rmdir $coredir"
6284
6285 if { $found == 0 } {
6286 warning "can't generate a core file - core tests suppressed - check ulimit -c"
6287 return ""
6288 }
6289 return $destcore
6290 }
6291
6292 # gdb_target_symbol_prefix compiles a test program and then examines
6293 # the output from objdump to determine the prefix (such as underscore)
6294 # for linker symbol prefixes.
6295
6296 gdb_caching_proc gdb_target_symbol_prefix {
6297 # Compile a simple test program...
6298 set src { int main() { return 0; } }
6299 if {![gdb_simple_compile target_symbol_prefix $src executable]} {
6300 return 0
6301 }
6302
6303 set prefix ""
6304
6305 set objdump_program [gdb_find_objdump]
6306 set result [catch "exec $objdump_program --syms $obj" output]
6307
6308 if { $result == 0 \
6309 && ![regexp -lineanchor \
6310 { ([^ a-zA-Z0-9]*)main$} $output dummy prefix] } {
6311 verbose "gdb_target_symbol_prefix: Could not find main in objdump output; returning null prefix" 2
6312 }
6313
6314 file delete $obj
6315
6316 return $prefix
6317 }
6318
6319 # Return 1 if target supports scheduler locking, otherwise return 0.
6320
6321 gdb_caching_proc target_supports_scheduler_locking {
6322 global gdb_prompt
6323
6324 set me "gdb_target_supports_scheduler_locking"
6325
6326 set src { int main() { return 0; } }
6327 if {![gdb_simple_compile $me $src executable]} {
6328 return 0
6329 }
6330
6331 clean_restart $obj
6332 if ![runto_main] {
6333 return 0
6334 }
6335
6336 set supports_schedule_locking -1
6337 set current_schedule_locking_mode ""
6338
6339 set test "reading current scheduler-locking mode"
6340 gdb_test_multiple "show scheduler-locking" $test {
6341 -re "Mode for locking scheduler during execution is \"(\[\^\"\]*)\".*$gdb_prompt" {
6342 set current_schedule_locking_mode $expect_out(1,string)
6343 }
6344 -re "$gdb_prompt $" {
6345 set supports_schedule_locking 0
6346 }
6347 timeout {
6348 set supports_schedule_locking 0
6349 }
6350 }
6351
6352 if { $supports_schedule_locking == -1 } {
6353 set test "checking for scheduler-locking support"
6354 gdb_test_multiple "set scheduler-locking $current_schedule_locking_mode" $test {
6355 -re "Target '\[^'\]+' cannot support this command\..*$gdb_prompt $" {
6356 set supports_schedule_locking 0
6357 }
6358 -re "$gdb_prompt $" {
6359 set supports_schedule_locking 1
6360 }
6361 timeout {
6362 set supports_schedule_locking 0
6363 }
6364 }
6365 }
6366
6367 if { $supports_schedule_locking == -1 } {
6368 set supports_schedule_locking 0
6369 }
6370
6371 gdb_exit
6372 remote_file build delete $obj
6373 verbose "$me: returning $supports_schedule_locking" 2
6374 return $supports_schedule_locking
6375 }
6376
6377 # gdb_target_symbol returns the provided symbol with the correct prefix
6378 # prepended. (See gdb_target_symbol_prefix, above.)
6379
6380 proc gdb_target_symbol { symbol } {
6381 set prefix [gdb_target_symbol_prefix]
6382 return "${prefix}${symbol}"
6383 }
6384
6385 # gdb_target_symbol_prefix_flags_asm returns a string that can be
6386 # added to gdb_compile options to define the C-preprocessor macro
6387 # SYMBOL_PREFIX with a value that can be prepended to symbols
6388 # for targets which require a prefix, such as underscore.
6389 #
6390 # This version (_asm) defines the prefix without double quotes
6391 # surrounding the prefix. It is used to define the macro
6392 # SYMBOL_PREFIX for assembly language files. Another version, below,
6393 # is used for symbols in inline assembler in C/C++ files.
6394 #
6395 # The lack of quotes in this version (_asm) makes it possible to
6396 # define supporting macros in the .S file. (The version which
6397 # uses quotes for the prefix won't work for such files since it's
6398 # impossible to define a quote-stripping macro in C.)
6399 #
6400 # It's possible to use this version (_asm) for C/C++ source files too,
6401 # but a string is usually required in such files; providing a version
6402 # (no _asm) which encloses the prefix with double quotes makes it
6403 # somewhat easier to define the supporting macros in the test case.
6404
6405 proc gdb_target_symbol_prefix_flags_asm {} {
6406 set prefix [gdb_target_symbol_prefix]
6407 if {$prefix ne ""} {
6408 return "additional_flags=-DSYMBOL_PREFIX=$prefix"
6409 } else {
6410 return "";
6411 }
6412 }
6413
6414 # gdb_target_symbol_prefix_flags returns the same string as
6415 # gdb_target_symbol_prefix_flags_asm, above, but with the prefix
6416 # enclosed in double quotes if there is a prefix.
6417 #
6418 # See the comment for gdb_target_symbol_prefix_flags_asm for an
6419 # extended discussion.
6420
6421 proc gdb_target_symbol_prefix_flags {} {
6422 set prefix [gdb_target_symbol_prefix]
6423 if {$prefix ne ""} {
6424 return "additional_flags=-DSYMBOL_PREFIX=\"$prefix\""
6425 } else {
6426 return "";
6427 }
6428 }
6429
6430 # A wrapper for 'remote_exec host' that passes or fails a test.
6431 # Returns 0 if all went well, nonzero on failure.
6432 # TEST is the name of the test, other arguments are as for remote_exec.
6433
6434 proc run_on_host { test program args } {
6435 verbose -log "run_on_host: $program $args"
6436 # remote_exec doesn't work properly if the output is set but the
6437 # input is the empty string -- so replace an empty input with
6438 # /dev/null.
6439 if {[llength $args] > 1 && [lindex $args 1] == ""} {
6440 set args [lreplace $args 1 1 "/dev/null"]
6441 }
6442 set result [eval remote_exec host [list $program] $args]
6443 verbose "result is $result"
6444 set status [lindex $result 0]
6445 set output [lindex $result 1]
6446 if {$status == 0} {
6447 pass $test
6448 return 0
6449 } else {
6450 verbose -log "run_on_host failed: $output"
6451 fail $test
6452 return -1
6453 }
6454 }
6455
6456 # Return non-zero if "board_info debug_flags" mentions Fission.
6457 # http://gcc.gnu.org/wiki/DebugFission
6458 # Fission doesn't support everything yet.
6459 # This supports working around bug 15954.
6460
6461 proc using_fission { } {
6462 set debug_flags [board_info [target_info name] debug_flags]
6463 return [regexp -- "-gsplit-dwarf" $debug_flags]
6464 }
6465
6466 # Search the caller's ARGS list and set variables according to the list of
6467 # valid options described by ARGSET.
6468 #
6469 # The first member of each one- or two-element list in ARGSET defines the
6470 # name of a variable that will be added to the caller's scope.
6471 #
6472 # If only one element is given to describe an option, it the value is
6473 # 0 if the option is not present in (the caller's) ARGS or 1 if
6474 # it is.
6475 #
6476 # If two elements are given, the second element is the default value of
6477 # the variable. This is then overwritten if the option exists in ARGS.
6478 #
6479 # Any parse_args elements in (the caller's) ARGS will be removed, leaving
6480 # any optional components.
6481
6482 # Example:
6483 # proc myproc {foo args} {
6484 # parse_args {{bar} {baz "abc"} {qux}}
6485 # # ...
6486 # }
6487 # myproc ABC -bar -baz DEF peanut butter
6488 # will define the following variables in myproc:
6489 # foo (=ABC), bar (=1), baz (=DEF), and qux (=0)
6490 # args will be the list {peanut butter}
6491
6492 proc parse_args { argset } {
6493 upvar args args
6494
6495 foreach argument $argset {
6496 if {[llength $argument] == 1} {
6497 # No default specified, so we assume that we should set
6498 # the value to 1 if the arg is present and 0 if it's not.
6499 # It is assumed that no value is given with the argument.
6500 set result [lsearch -exact $args "-$argument"]
6501 if {$result != -1} then {
6502 uplevel 1 [list set $argument 1]
6503 set args [lreplace $args $result $result]
6504 } else {
6505 uplevel 1 [list set $argument 0]
6506 }
6507 } elseif {[llength $argument] == 2} {
6508 # There are two items in the argument. The second is a
6509 # default value to use if the item is not present.
6510 # Otherwise, the variable is set to whatever is provided
6511 # after the item in the args.
6512 set arg [lindex $argument 0]
6513 set result [lsearch -exact $args "-[lindex $arg 0]"]
6514 if {$result != -1} then {
6515 uplevel 1 [list set $arg [lindex $args [expr $result+1]]]
6516 set args [lreplace $args $result [expr $result+1]]
6517 } else {
6518 uplevel 1 [list set $arg [lindex $argument 1]]
6519 }
6520 } else {
6521 error "Badly formatted argument \"$argument\" in argument set"
6522 }
6523 }
6524
6525 # The remaining args should be checked to see that they match the
6526 # number of items expected to be passed into the procedure...
6527 }
6528
6529 # Capture the output of COMMAND in a string ignoring PREFIX (a regexp);
6530 # return that string.
6531
6532 proc capture_command_output { command prefix } {
6533 global gdb_prompt
6534 global expect_out
6535
6536 set output_string ""
6537 gdb_test_multiple "$command" "capture_command_output for $command" {
6538 -re "[string_to_regexp ${command}]\[\r\n\]+${prefix}(.*)\[\r\n\]+$gdb_prompt $" {
6539 set output_string $expect_out(1,string)
6540 }
6541 }
6542 return $output_string
6543 }
6544
6545 # A convenience function that joins all the arguments together, with a
6546 # regexp that matches exactly one end of line in between each argument.
6547 # This function is ideal to write the expected output of a GDB command
6548 # that generates more than a couple of lines, as this allows us to write
6549 # each line as a separate string, which is easier to read by a human
6550 # being.
6551
6552 proc multi_line { args } {
6553 return [join $args "\r\n"]
6554 }
6555
6556 # Similar to the above, but while multi_line is meant to be used to
6557 # match GDB output, this one is meant to be used to build strings to
6558 # send as GDB input.
6559
6560 proc multi_line_input { args } {
6561 return [join $args "\n"]
6562 }
6563
6564 # Return the version of the DejaGnu framework.
6565 #
6566 # The return value is a list containing the major, minor and patch version
6567 # numbers. If the version does not contain a minor or patch number, they will
6568 # be set to 0. For example:
6569 #
6570 # 1.6 -> {1 6 0}
6571 # 1.6.1 -> {1 6 1}
6572 # 2 -> {2 0 0}
6573
6574 proc dejagnu_version { } {
6575 # The frame_version variable is defined by DejaGnu, in runtest.exp.
6576 global frame_version
6577
6578 verbose -log "DejaGnu version: $frame_version"
6579 verbose -log "Expect version: [exp_version]"
6580 verbose -log "Tcl version: [info tclversion]"
6581
6582 set dg_ver [split $frame_version .]
6583
6584 while { [llength $dg_ver] < 3 } {
6585 lappend dg_ver 0
6586 }
6587
6588 return $dg_ver
6589 }
6590
6591 # Define user-defined command COMMAND using the COMMAND_LIST as the
6592 # command's definition. The terminating "end" is added automatically.
6593
6594 proc gdb_define_cmd {command command_list} {
6595 global gdb_prompt
6596
6597 set input [multi_line_input {*}$command_list "end"]
6598 set test "define $command"
6599
6600 gdb_test_multiple "define $command" $test {
6601 -re "End with" {
6602 gdb_test_multiple $input $test {
6603 -re "\r\n$gdb_prompt " {
6604 }
6605 }
6606 }
6607 }
6608 }
6609
6610 # Override the 'cd' builtin with a version that ensures that the
6611 # log file keeps pointing at the same file. We need this because
6612 # unfortunately the path to the log file is recorded using an
6613 # relative path name, and, we sometimes need to close/reopen the log
6614 # after changing the current directory. See get_compiler_info.
6615
6616 rename cd builtin_cd
6617
6618 proc cd { dir } {
6619
6620 # Get the existing log file flags.
6621 set log_file_info [log_file -info]
6622
6623 # Split the flags into args and file name.
6624 set log_file_flags ""
6625 set log_file_file ""
6626 foreach arg [ split "$log_file_info" " "] {
6627 if [string match "-*" $arg] {
6628 lappend log_file_flags $arg
6629 } else {
6630 lappend log_file_file $arg
6631 }
6632 }
6633
6634 # If there was an existing file, ensure it is an absolute path, and then
6635 # reset logging.
6636 if { $log_file_file != "" } {
6637 set log_file_file [file normalize $log_file_file]
6638 log_file
6639 log_file $log_file_flags "$log_file_file"
6640 }
6641
6642 # Call the builtin version of cd.
6643 builtin_cd $dir
6644 }
6645
6646 # Return a list of all languages supported by GDB, suitable for use in
6647 # 'set language NAME'. This doesn't include either the 'local' or
6648 # 'auto' keywords.
6649 proc gdb_supported_languages {} {
6650 return [list c objective-c c++ d go fortran modula-2 asm pascal \
6651 opencl rust minimal ada]
6652 }
6653
6654 # Check if debugging is enabled for gdb.
6655
6656 proc gdb_debug_enabled { } {
6657 global gdbdebug
6658
6659 # If not already read, get the debug setting from environment or board setting.
6660 if {![info exists gdbdebug]} {
6661 global env
6662 if [info exists env(GDB_DEBUG)] {
6663 set gdbdebug $env(GDB_DEBUG)
6664 } elseif [target_info exists gdb,debug] {
6665 set gdbdebug [target_info gdb,debug]
6666 } else {
6667 return 0
6668 }
6669 }
6670
6671 # Ensure it not empty.
6672 return [expr { $gdbdebug != "" }]
6673 }
6674
6675 # Turn on debugging if enabled, or reset if already on.
6676
6677 proc gdb_debug_init { } {
6678
6679 global gdb_prompt
6680
6681 if ![gdb_debug_enabled] {
6682 return;
6683 }
6684
6685 # First ensure logging is off.
6686 send_gdb "set logging off\n"
6687
6688 set debugfile [standard_output_file gdb.debug]
6689 send_gdb "set logging file $debugfile\n"
6690
6691 send_gdb "set logging debugredirect\n"
6692
6693 global gdbdebug
6694 foreach entry [split $gdbdebug ,] {
6695 send_gdb "set debug $entry 1\n"
6696 }
6697
6698 # Now that everything is set, enable logging.
6699 send_gdb "set logging on\n"
6700 gdb_expect 10 {
6701 -re "Copying output to $debugfile.*Redirecting debug output to $debugfile.*$gdb_prompt $" {}
6702 timeout { warning "Couldn't set logging file" }
6703 }
6704 }
6705
6706 # Check if debugging is enabled for gdbserver.
6707
6708 proc gdbserver_debug_enabled { } {
6709 # Always disabled for GDB only setups.
6710 return 0
6711 }
6712
6713 # Open the file for logging gdb input
6714
6715 proc gdb_stdin_log_init { } {
6716 global in_file
6717
6718 if {[info exists in_file]} {
6719 # Close existing file.
6720 catch "close $in_file"
6721 }
6722
6723 set logfile [standard_output_file_with_gdb_instance gdb.in]
6724 set in_file [open $logfile w]
6725 }
6726
6727 # Write to the file for logging gdb input.
6728 # TYPE can be one of the following:
6729 # "standard" : Default. Standard message written to the log
6730 # "answer" : Answer to a question (eg "Y"). Not written the log.
6731 # "optional" : Optional message. Not written to the log.
6732
6733 proc gdb_stdin_log_write { message {type standard} } {
6734
6735 global in_file
6736 if {![info exists in_file]} {
6737 return
6738 }
6739
6740 # Check message types.
6741 switch -regexp -- $type {
6742 "answer" {
6743 return
6744 }
6745 "optional" {
6746 return
6747 }
6748 }
6749
6750 #Write to the log
6751 puts -nonewline $in_file "$message"
6752 }
6753
6754 # Write the command line used to invocate gdb to the cmd file.
6755
6756 proc gdb_write_cmd_file { cmdline } {
6757 set logfile [standard_output_file_with_gdb_instance gdb.cmd]
6758 set cmd_file [open $logfile w]
6759 puts $cmd_file $cmdline
6760 catch "close $cmd_file"
6761 }
6762
6763 # Compare contents of FILE to string STR. Pass with MSG if equal, otherwise
6764 # fail with MSG.
6765
6766 proc cmp_file_string { file str msg } {
6767 if { ![file exists $file]} {
6768 fail "$msg"
6769 return
6770 }
6771
6772 set caught_error [catch {
6773 set fp [open "$file" r]
6774 set file_contents [read $fp]
6775 close $fp
6776 } error_message]
6777 if { $caught_error } then {
6778 error "$error_message"
6779 fail "$msg"
6780 return
6781 }
6782
6783 if { $file_contents == $str } {
6784 pass "$msg"
6785 } else {
6786 fail "$msg"
6787 }
6788 }
6789
6790 # Does the compiler support CTF debug output using '-gt' compiler
6791 # flag? If not then we should skip these tests.
6792
6793 gdb_caching_proc skip_ctf_tests {
6794 return ![gdb_can_simple_compile ctfdebug {
6795 int main () {
6796 return 0;
6797 }
6798 } executable "additional_flags=-gt"]
6799 }
6800
6801 # Always load compatibility stuff.
6802 load_lib future.exp
This page took 0.182528 seconds and 3 git commands to generate.