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