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