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