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