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