Increase timeout in watch-bitfields.exp for software watchpoint
[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 # Select the largest timeout from all the timeouts:
1898 # - the local "timeout" variable of the scope two levels above,
1899 # - the global "timeout" variable,
1900 # - the board variable "gdb,timeout".
1901
1902 proc get_largest_timeout {} {
1903     upvar #0 timeout gtimeout
1904     upvar 2 timeout timeout
1905
1906     set tmt 0
1907     if [info exists timeout] {
1908       set tmt $timeout
1909     }
1910     if { [info exists gtimeout] && $gtimeout > $tmt } {
1911         set tmt $gtimeout
1912     }
1913     if { [target_info exists gdb,timeout]
1914          && [target_info gdb,timeout] > $tmt } {
1915         set tmt [target_info gdb,timeout]
1916     }
1917     if { $tmt == 0 } {
1918         # Eeeeew.
1919         set tmt 60
1920     }
1921
1922     return $tmt
1923 }
1924
1925 # Run tests in BODY with timeout increased by factor of FACTOR.  When
1926 # BODY is finished, restore timeout.
1927
1928 proc with_timeout_factor { factor body } {
1929     global timeout
1930
1931     set savedtimeout $timeout
1932
1933     set timeout [expr [get_largest_timeout] * $factor]
1934     set code [catch {uplevel 1 $body} result]
1935
1936     set timeout $savedtimeout
1937     if {$code == 1} {
1938         global errorInfo errorCode
1939         return -code $code -errorinfo $errorInfo -errorcode $errorCode $result
1940     } else {
1941         return -code $code $result
1942     }
1943 }
1944
1945 # Return 1 if _Complex types are supported, otherwise, return 0.
1946
1947 gdb_caching_proc support_complex_tests {
1948     # Set up, compile, and execute a test program containing _Complex types.
1949     # Include the current process ID in the file names to prevent conflicts
1950     # with invocations for multiple testsuites.
1951     set src [standard_temp_file complex[pid].c]
1952     set exe [standard_temp_file complex[pid].x]
1953
1954     gdb_produce_source $src {
1955         int main() {
1956             _Complex float cf;
1957             _Complex double cd;
1958             _Complex long double cld;
1959             return 0;
1960         }
1961     }
1962
1963     verbose "compiling testfile $src" 2
1964     set compile_flags {debug nowarnings quiet}
1965     set lines [gdb_compile $src $exe executable $compile_flags]
1966     file delete $src
1967     file delete $exe
1968
1969     if ![string match "" $lines] then {
1970         verbose "testfile compilation failed, returning 0" 2
1971         set result 0
1972     } else {
1973         set result 1
1974     }
1975
1976     return $result
1977 }
1978
1979 # Return 1 if target hardware or OS supports single stepping to signal
1980 # handler, otherwise, return 0.
1981
1982 proc can_single_step_to_signal_handler {} {
1983
1984     # Targets don't have hardware single step.  On these targets, when
1985     # a signal is delivered during software single step, gdb is unable
1986     # to determine the next instruction addresses, because start of signal
1987     # handler is one of them.
1988     if { [istarget "arm*-*-*"] || [istarget "mips*-*-*"]
1989          || [istarget "tic6x-*-*"] || [istarget "sparc*-*-linux*"]
1990          || [istarget "nios2-*-*"] } {
1991         return 0
1992     }
1993
1994     return 1
1995 }
1996
1997 # Return 1 if target supports process record, otherwise return 0.
1998
1999 proc supports_process_record {} {
2000
2001     if [target_info exists gdb,use_precord] {
2002         return [target_info gdb,use_precord]
2003     }
2004
2005     if { [istarget "arm*-*-linux*"] || [istarget "x86_64-*-linux*"]
2006          || [istarget "i\[34567\]86-*-linux*"]
2007          || [istarget "powerpc*-*-linux*"] } {
2008         return 1
2009     }
2010
2011     return 0
2012 }
2013
2014 # Return 1 if target supports reverse debugging, otherwise return 0.
2015
2016 proc supports_reverse {} {
2017
2018     if [target_info exists gdb,can_reverse] {
2019         return [target_info gdb,can_reverse]
2020     }
2021
2022     if { [istarget "arm*-*-linux*"] || [istarget "x86_64-*-linux*"]
2023          || [istarget "i\[34567\]86-*-linux*"]
2024          || [istarget "powerpc*-*-linux*"] } {
2025         return 1
2026     }
2027
2028     return 0
2029 }
2030
2031 # Return 1 if readline library is used.
2032
2033 proc readline_is_used { } {
2034     global gdb_prompt
2035
2036     gdb_test_multiple "show editing" "" {
2037         -re ".*Editing of command lines as they are typed is on\..*$gdb_prompt $" {
2038             return 1
2039         }
2040         -re ".*$gdb_prompt $" {
2041             return 0
2042         }
2043     }
2044 }
2045
2046 # Return 1 if target is ELF.
2047 gdb_caching_proc is_elf_target {
2048     set me "is_elf_target"
2049
2050     set src [standard_temp_file is_elf_target[pid].c]
2051     set obj [standard_temp_file is_elf_target[pid].o]
2052
2053     gdb_produce_source $src {
2054         int foo () {return 0;}
2055     }
2056
2057     verbose "$me:  compiling testfile $src" 2
2058     set lines [gdb_compile $src $obj object {quiet}]
2059
2060     file delete $src
2061
2062     if ![string match "" $lines] then {
2063         verbose "$me:  testfile compilation failed, returning 0" 2
2064         return 0
2065     }
2066
2067     set fp_obj [open $obj "r"]
2068     fconfigure $fp_obj -translation binary
2069     set data [read $fp_obj]
2070     close $fp_obj
2071
2072     file delete $obj
2073
2074     set ELFMAG "\u007FELF"
2075
2076     if {[string compare -length 4 $data $ELFMAG] != 0} {
2077         verbose "$me:  returning 0" 2
2078         return 0
2079     }
2080
2081     verbose "$me:  returning 1" 2
2082     return 1
2083 }
2084
2085 # Return 1 if the memory at address zero is readable.
2086
2087 gdb_caching_proc is_address_zero_readable {
2088     global gdb_prompt
2089
2090     set ret 0
2091     gdb_test_multiple "x 0" "" {
2092         -re "Cannot access memory at address 0x0.*$gdb_prompt $" {
2093             set ret 0
2094         }
2095         -re ".*$gdb_prompt $" {
2096             set ret 1
2097         }
2098     }
2099
2100     return $ret
2101 }
2102
2103 # Produce source file NAME and write SOURCES into it.
2104
2105 proc gdb_produce_source { name sources } {
2106     set index 0
2107     set f [open $name "w"]
2108
2109     puts $f $sources
2110     close $f
2111 }
2112
2113 # Return 1 if target is ILP32.
2114 # This cannot be decided simply from looking at the target string,
2115 # as it might depend on externally passed compiler options like -m64.
2116 gdb_caching_proc is_ilp32_target {
2117     set me "is_ilp32_target"
2118
2119     set src [standard_temp_file ilp32[pid].c]
2120     set obj [standard_temp_file ilp32[pid].o]
2121
2122     gdb_produce_source $src {
2123         int dummy[sizeof (int) == 4
2124                   && sizeof (void *) == 4
2125                   && sizeof (long) == 4 ? 1 : -1];
2126     }
2127
2128     verbose "$me:  compiling testfile $src" 2
2129     set lines [gdb_compile $src $obj object {quiet}]
2130     file delete $src
2131     file delete $obj
2132
2133     if ![string match "" $lines] then {
2134         verbose "$me:  testfile compilation failed, returning 0" 2
2135         return 0
2136     }
2137
2138     verbose "$me:  returning 1" 2
2139     return 1
2140 }
2141
2142 # Return 1 if target is LP64.
2143 # This cannot be decided simply from looking at the target string,
2144 # as it might depend on externally passed compiler options like -m64.
2145 gdb_caching_proc is_lp64_target {
2146     set me "is_lp64_target"
2147
2148     set src [standard_temp_file lp64[pid].c]
2149     set obj [standard_temp_file lp64[pid].o]
2150
2151     gdb_produce_source $src {
2152         int dummy[sizeof (int) == 4
2153                   && sizeof (void *) == 8
2154                   && sizeof (long) == 8 ? 1 : -1];
2155     }
2156
2157     verbose "$me:  compiling testfile $src" 2
2158     set lines [gdb_compile $src $obj object {quiet}]
2159     file delete $src
2160     file delete $obj
2161
2162     if ![string match "" $lines] then {
2163         verbose "$me:  testfile compilation failed, returning 0" 2
2164         return 0
2165     }
2166
2167     verbose "$me:  returning 1" 2
2168     return 1
2169 }
2170
2171 # Return 1 if target has 64 bit addresses.
2172 # This cannot be decided simply from looking at the target string,
2173 # as it might depend on externally passed compiler options like -m64.
2174 gdb_caching_proc is_64_target {
2175     set me "is_64_target"
2176
2177     set src [standard_temp_file is64[pid].c]
2178     set obj [standard_temp_file is64[pid].o]
2179
2180     gdb_produce_source $src {
2181         int function(void) { return 3; }
2182         int dummy[sizeof (&function) == 8 ? 1 : -1];
2183     }
2184
2185     verbose "$me:  compiling testfile $src" 2
2186     set lines [gdb_compile $src $obj object {quiet}]
2187     file delete $src
2188     file delete $obj
2189
2190     if ![string match "" $lines] then {
2191         verbose "$me:  testfile compilation failed, returning 0" 2
2192         return 0
2193     }
2194
2195     verbose "$me:  returning 1" 2
2196     return 1
2197 }
2198
2199 # Return 1 if target has x86_64 registers - either amd64 or x32.
2200 # x32 target identifies as x86_64-*-linux*, therefore it cannot be determined
2201 # just from the target string.
2202 gdb_caching_proc is_amd64_regs_target {
2203     if {![istarget "x86_64-*-*"] && ![istarget "i?86-*"]} {
2204         return 0
2205     }
2206
2207     set me "is_amd64_regs_target"
2208
2209     set src [standard_temp_file reg64[pid].s]
2210     set obj [standard_temp_file reg64[pid].o]
2211
2212     set list {}
2213     foreach reg \
2214         {rax rbx rcx rdx rsi rdi rbp rsp r8 r9 r10 r11 r12 r13 r14 r15} {
2215             lappend list "\tincq %$reg"
2216         }
2217     gdb_produce_source $src [join $list \n]
2218
2219     verbose "$me:  compiling testfile $src" 2
2220     set lines [gdb_compile $src $obj object {quiet}]
2221     file delete $src
2222     file delete $obj
2223
2224     if ![string match "" $lines] then {
2225         verbose "$me:  testfile compilation failed, returning 0" 2
2226         return 0
2227     }
2228
2229     verbose "$me:  returning 1" 2
2230     return 1
2231 }
2232
2233 # Return 1 if this target is an x86 or x86-64 with -m32.
2234 proc is_x86_like_target {} {
2235     if {![istarget "x86_64-*-*"] && ![istarget i?86-*]} {
2236         return 0
2237     }
2238     return [expr [is_ilp32_target] && ![is_amd64_regs_target]]
2239 }
2240
2241 # Return 1 if displaced stepping is supported on target, otherwise, return 0.
2242 proc support_displaced_stepping {} {
2243
2244     if { [istarget "x86_64-*-linux*"] || [istarget "i\[34567\]86-*-linux*"]
2245          || [istarget "arm*-*-linux*"] || [istarget "powerpc-*-linux*"]
2246          || [istarget "powerpc64-*-linux*"] || [istarget "s390*-*-*"] } {
2247         return 1
2248     }
2249
2250     return 0
2251 }
2252
2253 # Run a test on the target to see if it supports vmx hardware.  Return 0 if so, 
2254 # 1 if it does not.  Based on 'check_vmx_hw_available' from the GCC testsuite.
2255
2256 gdb_caching_proc skip_altivec_tests {
2257     global srcdir subdir gdb_prompt inferior_exited_re
2258
2259     set me "skip_altivec_tests"
2260
2261     # Some simulators are known to not support VMX instructions.
2262     if { [istarget powerpc-*-eabi] || [istarget powerpc*-*-eabispe] } {
2263         verbose "$me:  target known to not support VMX, returning 1" 2
2264         return 1
2265     }
2266
2267     # Make sure we have a compiler that understands altivec.
2268     set compile_flags {debug nowarnings}
2269     if [get_compiler_info] {
2270        warning "Could not get compiler info"
2271        return 1
2272     }
2273     if [test_compiler_info gcc*] {
2274         set compile_flags "$compile_flags additional_flags=-maltivec"
2275     } elseif [test_compiler_info xlc*] {
2276         set compile_flags "$compile_flags additional_flags=-qaltivec"
2277     } else {
2278         verbose "Could not compile with altivec support, returning 1" 2
2279         return 1
2280     }
2281
2282     # Set up, compile, and execute a test program containing VMX instructions.
2283     # Include the current process ID in the file names to prevent conflicts
2284     # with invocations for multiple testsuites.
2285     set src [standard_temp_file vmx[pid].c]
2286     set exe [standard_temp_file vmx[pid].x]
2287
2288     gdb_produce_source $src {
2289         int main() {
2290             #ifdef __MACH__
2291             asm volatile ("vor v0,v0,v0");
2292             #else
2293             asm volatile ("vor 0,0,0");
2294             #endif
2295             return 0;
2296         }
2297     }
2298
2299     verbose "$me:  compiling testfile $src" 2
2300     set lines [gdb_compile $src $exe executable $compile_flags]
2301     file delete $src
2302
2303     if ![string match "" $lines] then {
2304         verbose "$me:  testfile compilation failed, returning 1" 2
2305         return 1
2306     }
2307
2308     # No error message, compilation succeeded so now run it via gdb.
2309
2310     gdb_exit
2311     gdb_start
2312     gdb_reinitialize_dir $srcdir/$subdir
2313     gdb_load "$exe"
2314     gdb_run_cmd
2315     gdb_expect {
2316         -re ".*Illegal instruction.*${gdb_prompt} $" {
2317             verbose -log "\n$me altivec hardware not detected" 
2318             set skip_vmx_tests 1
2319         }
2320         -re ".*$inferior_exited_re normally.*${gdb_prompt} $" {
2321             verbose -log "\n$me: altivec hardware detected" 
2322             set skip_vmx_tests 0
2323         }
2324         default {
2325           warning "\n$me: default case taken"
2326             set skip_vmx_tests 1
2327         }
2328     }
2329     gdb_exit
2330     remote_file build delete $exe
2331
2332     verbose "$me:  returning $skip_vmx_tests" 2
2333     return $skip_vmx_tests
2334 }
2335
2336 # Run a test on the target to see if it supports vmx hardware.  Return 0 if so,
2337 # 1 if it does not.  Based on 'check_vmx_hw_available' from the GCC testsuite.
2338
2339 gdb_caching_proc skip_vsx_tests {
2340     global srcdir subdir gdb_prompt inferior_exited_re
2341
2342     set me "skip_vsx_tests"
2343
2344     # Some simulators are known to not support Altivec instructions, so
2345     # they won't support VSX instructions as well.
2346     if { [istarget powerpc-*-eabi] || [istarget powerpc*-*-eabispe] } {
2347         verbose "$me:  target known to not support VSX, returning 1" 2
2348         return 1
2349     }
2350
2351     # Make sure we have a compiler that understands altivec.
2352     set compile_flags {debug nowarnings quiet}
2353     if [get_compiler_info] {
2354        warning "Could not get compiler info"
2355        return 1
2356     }
2357     if [test_compiler_info gcc*] {
2358         set compile_flags "$compile_flags additional_flags=-mvsx"
2359     } elseif [test_compiler_info xlc*] {
2360         set compile_flags "$compile_flags additional_flags=-qasm=gcc"
2361     } else {
2362         verbose "Could not compile with vsx support, returning 1" 2
2363         return 1
2364     }
2365
2366     set src [standard_temp_file vsx[pid].c]
2367     set exe [standard_temp_file vsx[pid].x]
2368
2369     gdb_produce_source $src {
2370         int main() {
2371             double a[2] = { 1.0, 2.0 };
2372             #ifdef __MACH__
2373             asm volatile ("lxvd2x v0,v0,%[addr]" : : [addr] "r" (a));
2374             #else
2375             asm volatile ("lxvd2x 0,0,%[addr]" : : [addr] "r" (a));
2376             #endif
2377             return 0;
2378         }
2379     }
2380
2381     verbose "$me:  compiling testfile $src" 2
2382     set lines [gdb_compile $src $exe executable $compile_flags]
2383     file delete $src
2384
2385     if ![string match "" $lines] then {
2386         verbose "$me:  testfile compilation failed, returning 1" 2
2387         return 1
2388     }
2389
2390     # No error message, compilation succeeded so now run it via gdb.
2391
2392     gdb_exit
2393     gdb_start
2394     gdb_reinitialize_dir $srcdir/$subdir
2395     gdb_load "$exe"
2396     gdb_run_cmd
2397     gdb_expect {
2398         -re ".*Illegal instruction.*${gdb_prompt} $" {
2399             verbose -log "\n$me VSX hardware not detected"
2400             set skip_vsx_tests 1
2401         }
2402         -re ".*$inferior_exited_re normally.*${gdb_prompt} $" {
2403             verbose -log "\n$me: VSX hardware detected"
2404             set skip_vsx_tests 0
2405         }
2406         default {
2407           warning "\n$me: default case taken"
2408             set skip_vsx_tests 1
2409         }
2410     }
2411     gdb_exit
2412     remote_file build delete $exe
2413
2414     verbose "$me:  returning $skip_vsx_tests" 2
2415     return $skip_vsx_tests
2416 }
2417
2418 # Run a test on the target to see if it supports btrace hardware.  Return 0 if so,
2419 # 1 if it does not.  Based on 'check_vmx_hw_available' from the GCC testsuite.
2420
2421 gdb_caching_proc skip_btrace_tests {
2422     global srcdir subdir gdb_prompt inferior_exited_re
2423
2424     set me "skip_btrace_tests"
2425     if { ![istarget "i?86-*-*"] && ![istarget "x86_64-*-*"] } {
2426         verbose "$me:  target does not support btrace, returning 1" 2
2427         return 1
2428     }
2429
2430     # Set up, compile, and execute a test program.
2431     # Include the current process ID in the file names to prevent conflicts
2432     # with invocations for multiple testsuites.
2433     set src [standard_temp_file btrace[pid].c]
2434     set exe [standard_temp_file btrace[pid].x]
2435
2436     gdb_produce_source $src {
2437         int main(void) { return 0; }
2438     }
2439
2440     verbose "$me:  compiling testfile $src" 2
2441     set compile_flags {debug nowarnings quiet}
2442     set lines [gdb_compile $src $exe executable $compile_flags]
2443
2444     if ![string match "" $lines] then {
2445         verbose "$me:  testfile compilation failed, returning 1" 2
2446         file delete $src
2447         return 1
2448     }
2449
2450     # No error message, compilation succeeded so now run it via gdb.
2451
2452     gdb_exit
2453     gdb_start
2454     gdb_reinitialize_dir $srcdir/$subdir
2455     gdb_load $exe
2456     if ![runto_main] {
2457         file delete $src
2458         return 1
2459     }
2460     file delete $src
2461     # In case of an unexpected output, we return 2 as a fail value.
2462     set skip_btrace_tests 2
2463     gdb_test_multiple "record btrace" "check btrace support" {
2464         -re "You can't do that when your target is.*\r\n$gdb_prompt $" {
2465             set skip_btrace_tests 1
2466         }
2467         -re "Target does not support branch tracing.*\r\n$gdb_prompt $" {
2468             set skip_btrace_tests 1
2469         }
2470         -re "Could not enable branch tracing.*\r\n$gdb_prompt $" {
2471             set skip_btrace_tests 1
2472         }
2473         -re "^record btrace\r\n$gdb_prompt $" {
2474             set skip_btrace_tests 0
2475         }
2476     }
2477     gdb_exit
2478     remote_file build delete $exe
2479
2480     verbose "$me:  returning $skip_btrace_tests" 2
2481     return $skip_btrace_tests
2482 }
2483
2484 # Skip all the tests in the file if you are not on an hppa running
2485 # hpux target.
2486
2487 proc skip_hp_tests {} {
2488     eval set skip_hp [ expr ![isnative] || ![istarget "hppa*-*-hpux*"] ]
2489     verbose "Skip hp tests is $skip_hp"
2490     return $skip_hp
2491 }
2492
2493 # Return whether we should skip tests for showing inlined functions in
2494 # backtraces.  Requires get_compiler_info and get_debug_format.
2495
2496 proc skip_inline_frame_tests {} {
2497     # GDB only recognizes inlining information in DWARF 2 (DWARF 3).
2498     if { ! [test_debug_format "DWARF 2"] } {
2499         return 1
2500     }
2501
2502     # GCC before 4.1 does not emit DW_AT_call_file / DW_AT_call_line.
2503     if { ([test_compiler_info "gcc-2-*"]
2504           || [test_compiler_info "gcc-3-*"]
2505           || [test_compiler_info "gcc-4-0-*"]) } {
2506         return 1
2507     }
2508
2509     return 0
2510 }
2511
2512 # Return whether we should skip tests for showing variables from
2513 # inlined functions.  Requires get_compiler_info and get_debug_format.
2514
2515 proc skip_inline_var_tests {} {
2516     # GDB only recognizes inlining information in DWARF 2 (DWARF 3).
2517     if { ! [test_debug_format "DWARF 2"] } {
2518         return 1
2519     }
2520
2521     return 0
2522 }
2523
2524 # Return a 1 if we should skip tests that require hardware breakpoints
2525
2526 proc skip_hw_breakpoint_tests {} {
2527     # Skip tests if requested by the board (note that no_hardware_watchpoints
2528     # disables both watchpoints and breakpoints)
2529     if { [target_info exists gdb,no_hardware_watchpoints]} {
2530         return 1
2531     }
2532
2533     # These targets support hardware breakpoints natively
2534     if { [istarget "i?86-*-*"] 
2535          || [istarget "x86_64-*-*"]
2536          || [istarget "ia64-*-*"] 
2537          || [istarget "arm*-*-*"]} {
2538         return 0
2539     }
2540
2541     return 1
2542 }
2543
2544 # Return a 1 if we should skip tests that require hardware watchpoints
2545
2546 proc skip_hw_watchpoint_tests {} {
2547     # Skip tests if requested by the board
2548     if { [target_info exists gdb,no_hardware_watchpoints]} {
2549         return 1
2550     }
2551
2552     # These targets support hardware watchpoints natively
2553     if { [istarget "i?86-*-*"] 
2554          || [istarget "x86_64-*-*"]
2555          || [istarget "ia64-*-*"] 
2556          || [istarget "arm*-*-*"]
2557          || [istarget "powerpc*-*-linux*"]
2558          || [istarget "s390*-*-*"] } {
2559         return 0
2560     }
2561
2562     return 1
2563 }
2564
2565 # Return a 1 if we should skip tests that require *multiple* hardware
2566 # watchpoints to be active at the same time
2567
2568 proc skip_hw_watchpoint_multi_tests {} {
2569     if { [skip_hw_watchpoint_tests] } {
2570         return 1
2571     }
2572
2573     # These targets support just a single hardware watchpoint
2574     if { [istarget "arm*-*-*"]
2575          || [istarget "powerpc*-*-linux*"] } {
2576         return 1
2577     }
2578
2579     return 0
2580 }
2581
2582 # Return a 1 if we should skip tests that require read/access watchpoints
2583
2584 proc skip_hw_watchpoint_access_tests {} {
2585     if { [skip_hw_watchpoint_tests] } {
2586         return 1
2587     }
2588
2589     # These targets support just write watchpoints
2590     if { [istarget "s390*-*-*"] } {
2591         return 1
2592     }
2593
2594     return 0
2595 }
2596
2597 # Return 1 if we should skip tests that require the runtime unwinder
2598 # hook.  This must be invoked while gdb is running, after shared
2599 # libraries have been loaded.  This is needed because otherwise a
2600 # shared libgcc won't be visible.
2601
2602 proc skip_unwinder_tests {} {
2603     global gdb_prompt
2604
2605     set ok 0
2606     gdb_test_multiple "print _Unwind_DebugHook" "check for unwinder hook" {
2607         -re "= .*no debug info.*_Unwind_DebugHook.*\r\n$gdb_prompt $" {
2608         }
2609         -re "= .*_Unwind_DebugHook.*\r\n$gdb_prompt $" {
2610             set ok 1
2611         }
2612         -re "No symbol .* in current context.\r\n$gdb_prompt $" {
2613         }
2614     }
2615     if {!$ok} {
2616         gdb_test_multiple "info probe" "check for stap probe in unwinder" {
2617             -re ".*libgcc.*unwind.*\r\n$gdb_prompt $" {
2618                 set ok 1
2619             }
2620             -re "\r\n$gdb_prompt $" {
2621             }
2622         }
2623     }
2624     return $ok
2625 }
2626
2627 # Return 0 if we should skip tests that require the libstdc++ stap
2628 # probes.  This must be invoked while gdb is running, after shared
2629 # libraries have been loaded.
2630
2631 proc skip_libstdcxx_probe_tests {} {
2632     global gdb_prompt
2633
2634     set ok 0
2635     gdb_test_multiple "info probe" "check for stap probe in libstdc++" {
2636         -re ".*libstdcxx.*catch.*\r\n$gdb_prompt $" {
2637             set ok 1
2638         }
2639         -re "\r\n$gdb_prompt $" {
2640         }
2641     }
2642     return $ok
2643 }
2644
2645 # Return 1 if we should skip tests of the "compile" feature.
2646 # This must be invoked after the inferior has been started.
2647
2648 proc skip_compile_feature_tests {} {
2649     global gdb_prompt
2650
2651     set result 0
2652     gdb_test_multiple "compile code -- ;" "check for working compile command" {
2653         "Could not load libcc1.*\r\n$gdb_prompt $" {
2654             set result 1
2655         }
2656         -re "Command not supported on this host\\..*\r\n$gdb_prompt $" {
2657             set result 1
2658         }
2659         -re "\r\n$gdb_prompt $" {
2660         }
2661     }
2662     return $result
2663 }
2664
2665 # Check whether we're testing with the remote or extended-remote
2666 # targets.
2667
2668 proc gdb_is_target_remote {} {
2669     global gdb_prompt
2670
2671     set test "probe for target remote"
2672     gdb_test_multiple "maint print target-stack" $test {
2673         -re ".*emote serial target in gdb-specific protocol.*$gdb_prompt $" {
2674             pass $test
2675             return 1
2676         }
2677         -re "$gdb_prompt $" {
2678             pass $test
2679         }
2680     }
2681     return 0
2682 }
2683
2684 # Return 1 if the current remote target is an instance of our GDBserver, 0
2685 # otherwise.  Return -1 if there was an error and we can't tell.
2686
2687 gdb_caching_proc target_is_gdbserver {
2688     global gdb_prompt
2689
2690     set is_gdbserver -1
2691     set test "Probing for GDBserver"
2692
2693     gdb_test_multiple "monitor help" $test {
2694         -re "The following monitor commands are supported.*Quit GDBserver.*$gdb_prompt $" {
2695             set is_gdbserver 1
2696         }
2697         -re "$gdb_prompt $" {
2698             set is_gdbserver 0
2699         }
2700     }
2701
2702     if { $is_gdbserver == -1 } {
2703         verbose -log "Unable to tell whether we are using GDBserver or not."
2704     }
2705
2706     return $is_gdbserver
2707 }
2708
2709 set compiler_info               "unknown"
2710 set gcc_compiled                0
2711 set hp_cc_compiler              0
2712 set hp_aCC_compiler             0
2713
2714 # Figure out what compiler I am using.
2715 #
2716 # ARG can be empty or "C++".  If empty, "C" is assumed.
2717 #
2718 # There are several ways to do this, with various problems.
2719 #
2720 # [ gdb_compile -E $ifile -o $binfile.ci ]
2721 # source $binfile.ci
2722 #
2723 #   Single Unix Spec v3 says that "-E -o ..." together are not
2724 #   specified.  And in fact, the native compiler on hp-ux 11 (among
2725 #   others) does not work with "-E -o ...".  Most targets used to do
2726 #   this, and it mostly worked, because it works with gcc.
2727 #
2728 # [ catch "exec $compiler -E $ifile > $binfile.ci" exec_output ]
2729 # source $binfile.ci
2730
2731 #   This avoids the problem with -E and -o together.  This almost works
2732 #   if the build machine is the same as the host machine, which is
2733 #   usually true of the targets which are not gcc.  But this code does
2734 #   not figure which compiler to call, and it always ends up using the C
2735 #   compiler.  Not good for setting hp_aCC_compiler.  Target
2736 #   hppa*-*-hpux* used to do this.
2737 #
2738 # [ gdb_compile -E $ifile > $binfile.ci ]
2739 # source $binfile.ci
2740 #
2741 #   dejagnu target_compile says that it supports output redirection,
2742 #   but the code is completely different from the normal path and I
2743 #   don't want to sweep the mines from that path.  So I didn't even try
2744 #   this.
2745 #
2746 # set cppout [ gdb_compile $ifile "" preprocess $args quiet ]
2747 # eval $cppout
2748 #
2749 #   I actually do this for all targets now.  gdb_compile runs the right
2750 #   compiler, and TCL captures the output, and I eval the output.
2751 #
2752 #   Unfortunately, expect logs the output of the command as it goes by,
2753 #   and dejagnu helpfully prints a second copy of it right afterwards.
2754 #   So I turn off expect logging for a moment.
2755 #   
2756 # [ gdb_compile $ifile $ciexe_file executable $args ]
2757 # [ remote_exec $ciexe_file ]
2758 # [ source $ci_file.out ]
2759 #
2760 #   I could give up on -E and just do this.
2761 #   I didn't get desperate enough to try this.
2762 #
2763 # -- chastain 2004-01-06
2764
2765 proc get_compiler_info {{arg ""}} {
2766     # For compiler.c and compiler.cc
2767     global srcdir
2768
2769     # I am going to play with the log to keep noise out.
2770     global outdir
2771     global tool
2772
2773     # These come from compiler.c or compiler.cc
2774     global compiler_info
2775
2776     # Legacy global data symbols.
2777     global gcc_compiled
2778     global hp_cc_compiler
2779     global hp_aCC_compiler
2780
2781     # Choose which file to preprocess.
2782     set ifile "${srcdir}/lib/compiler.c"
2783     if { $arg == "c++" } {
2784         set ifile "${srcdir}/lib/compiler.cc"
2785     }
2786
2787     # Run $ifile through the right preprocessor.
2788     # Toggle gdb.log to keep the compiler output out of the log.
2789     set saved_log [log_file -info]
2790     log_file
2791     if [is_remote host] {
2792         # We have to use -E and -o together, despite the comments
2793         # above, because of how DejaGnu handles remote host testing.
2794         set ppout "$outdir/compiler.i"
2795         gdb_compile "${ifile}" "$ppout" preprocess [list "$arg" quiet]
2796         set file [open $ppout r]
2797         set cppout [read $file]
2798         close $file
2799     } else {
2800         set cppout [ gdb_compile "${ifile}" "" preprocess [list "$arg" quiet] ]
2801     }
2802     eval log_file $saved_log
2803
2804     # Eval the output.
2805     set unknown 0
2806     foreach cppline [ split "$cppout" "\n" ] {
2807         if { [ regexp "^#" "$cppline" ] } {
2808             # line marker
2809         } elseif { [ regexp "^\[\n\r\t \]*$" "$cppline" ] } {
2810             # blank line
2811         } elseif { [ regexp "^\[\n\r\t \]*set\[\n\r\t \]" "$cppline" ] } {
2812             # eval this line
2813             verbose "get_compiler_info: $cppline" 2
2814             eval "$cppline"
2815         } else {
2816             # unknown line
2817             verbose -log "get_compiler_info: $cppline"
2818             set unknown 1
2819         }
2820     }
2821
2822     # Reset to unknown compiler if any diagnostics happened.
2823     if { $unknown } {
2824         set compiler_info "unknown"
2825     }
2826
2827     # Set the legacy symbols.
2828     set gcc_compiled     0
2829     set hp_cc_compiler   0
2830     set hp_aCC_compiler  0
2831     if { [regexp "^gcc-1-" "$compiler_info" ] } { set gcc_compiled 1 }
2832     if { [regexp "^gcc-2-" "$compiler_info" ] } { set gcc_compiled 2 }
2833     if { [regexp "^gcc-3-" "$compiler_info" ] } { set gcc_compiled 3 }
2834     if { [regexp "^gcc-4-" "$compiler_info" ] } { set gcc_compiled 4 }
2835     if { [regexp "^gcc-5-" "$compiler_info" ] } { set gcc_compiled 5 }
2836     if { [regexp "^hpcc-"  "$compiler_info" ] } { set hp_cc_compiler 1 }
2837     if { [regexp "^hpacc-" "$compiler_info" ] } { set hp_aCC_compiler 1 }
2838
2839     # Log what happened.
2840     verbose -log "get_compiler_info: $compiler_info"
2841
2842     # Most compilers will evaluate comparisons and other boolean
2843     # operations to 0 or 1.
2844     uplevel \#0 { set true 1 }
2845     uplevel \#0 { set false 0 }
2846
2847     # Use of aCC results in boolean results being displayed as
2848     # "true" or "false"
2849     if { $hp_aCC_compiler } {
2850       uplevel \#0 { set true true }
2851       uplevel \#0 { set false false }
2852     }
2853
2854     return 0
2855 }
2856
2857 proc test_compiler_info { {compiler ""} } {
2858     global compiler_info
2859
2860      # if no arg, return the compiler_info string
2861
2862      if [string match "" $compiler] {
2863          if [info exists compiler_info] {
2864              return $compiler_info
2865          } else {
2866              perror "No compiler info found."
2867          }
2868      }
2869
2870     return [string match $compiler $compiler_info]
2871 }
2872
2873 proc current_target_name { } {
2874     global target_info
2875     if [info exists target_info(target,name)] {
2876         set answer $target_info(target,name)
2877     } else {
2878         set answer ""
2879     }
2880     return $answer
2881 }
2882
2883 set gdb_wrapper_initialized 0
2884 set gdb_wrapper_target ""
2885
2886 proc gdb_wrapper_init { args } {
2887     global gdb_wrapper_initialized
2888     global gdb_wrapper_file
2889     global gdb_wrapper_flags
2890     global gdb_wrapper_target
2891
2892     if { $gdb_wrapper_initialized == 1 } { return; }
2893
2894     if {[target_info exists needs_status_wrapper] && \
2895             [target_info needs_status_wrapper] != "0"} {
2896         set result [build_wrapper "testglue.o"]
2897         if { $result != "" } {
2898             set gdb_wrapper_file [lindex $result 0]
2899             set gdb_wrapper_flags [lindex $result 1]
2900         } else {
2901             warning "Status wrapper failed to build."
2902         }
2903     }
2904     set gdb_wrapper_initialized 1
2905     set gdb_wrapper_target [current_target_name]
2906 }
2907
2908 # Some targets need to always link a special object in.  Save its path here.
2909 global gdb_saved_set_unbuffered_mode_obj
2910 set gdb_saved_set_unbuffered_mode_obj ""
2911
2912 proc gdb_compile {source dest type options} {
2913     global GDB_TESTCASE_OPTIONS
2914     global gdb_wrapper_file
2915     global gdb_wrapper_flags
2916     global gdb_wrapper_initialized
2917     global srcdir
2918     global objdir
2919     global gdb_saved_set_unbuffered_mode_obj
2920
2921     set outdir [file dirname $dest]
2922
2923     # Add platform-specific options if a shared library was specified using
2924     # "shlib=librarypath" in OPTIONS.
2925     set new_options ""
2926     set shlib_found 0
2927     set shlib_load 0
2928     foreach opt $options {
2929         if [regexp {^shlib=(.*)} $opt dummy_var shlib_name] {
2930             if [test_compiler_info "xlc-*"] {
2931                 # IBM xlc compiler doesn't accept shared library named other
2932                 # than .so: use "-Wl," to bypass this
2933                 lappend source "-Wl,$shlib_name"
2934             } elseif { ([istarget "*-*-mingw*"]
2935                         || [istarget *-*-cygwin*]
2936                         || [istarget *-*-pe*])} {
2937                 lappend source "${shlib_name}.a"
2938             } else {
2939                lappend source $shlib_name
2940             }
2941             if { $shlib_found == 0 } {
2942                 set shlib_found 1
2943                 if { ([istarget "*-*-mingw*"]
2944                       || [istarget *-*-cygwin*]) } {
2945                     lappend new_options "additional_flags=-Wl,--enable-auto-import"
2946                 }
2947             }
2948         } elseif { $opt == "shlib_load" } {
2949             set shlib_load 1
2950         } else {
2951             lappend new_options $opt
2952         }
2953     }
2954
2955     # We typically link to shared libraries using an absolute path, and
2956     # that's how they are found at runtime.  If we are going to
2957     # dynamically load one by basename, we must specify rpath.  If we
2958     # are using a remote host, DejaGNU will link to the shared library
2959     # using a relative path, so again we must specify an rpath.
2960     if { $shlib_load || ($shlib_found && [is_remote target]) } {
2961         if { ([istarget "*-*-mingw*"]
2962               || [istarget *-*-cygwin*]
2963               || [istarget *-*-pe*]
2964               || [istarget hppa*-*-hpux*])} {
2965             # Do not need anything.
2966         } elseif { [istarget *-*-freebsd*] || [istarget *-*-openbsd*] } {
2967             lappend new_options "ldflags=-Wl,-rpath,${outdir}"
2968         } elseif { [istarget arm*-*-symbianelf*] } {
2969             if { $shlib_load } {
2970                 lappend new_options "libs=-ldl"
2971             }
2972         } else {
2973             if { $shlib_load } {
2974                 lappend new_options "libs=-ldl"
2975             }
2976             lappend new_options "ldflags=-Wl,-rpath,\\\$ORIGIN"
2977         }
2978     }
2979     set options $new_options
2980
2981     if [info exists GDB_TESTCASE_OPTIONS] {
2982         lappend options "additional_flags=$GDB_TESTCASE_OPTIONS"
2983     }
2984     verbose "options are $options"
2985     verbose "source is $source $dest $type $options"
2986
2987     if { $gdb_wrapper_initialized == 0 } { gdb_wrapper_init }
2988
2989     if {[target_info exists needs_status_wrapper] && \
2990             [target_info needs_status_wrapper] != "0" && \
2991             [info exists gdb_wrapper_file]} {
2992         lappend options "libs=${gdb_wrapper_file}"
2993         lappend options "ldflags=${gdb_wrapper_flags}"
2994     }
2995
2996     # Replace the "nowarnings" option with the appropriate additional_flags
2997     # to disable compiler warnings.
2998     set nowarnings [lsearch -exact $options nowarnings]
2999     if {$nowarnings != -1} {
3000         if [target_info exists gdb,nowarnings_flag] {
3001             set flag "additional_flags=[target_info gdb,nowarnings_flag]"
3002         } else {
3003             set flag "additional_flags=-w"
3004         }
3005         set options [lreplace $options $nowarnings $nowarnings $flag]
3006     }
3007
3008     if { $type == "executable" } {
3009         if { ([istarget "*-*-mingw*"]
3010               || [istarget "*-*-*djgpp"]
3011               || [istarget "*-*-cygwin*"])} {
3012             # Force output to unbuffered mode, by linking in an object file
3013             # with a global contructor that calls setvbuf.
3014             #
3015             # Compile the special object seperatelly for two reasons:
3016             #  1) Insulate it from $options.
3017             #  2) Avoid compiling it for every gdb_compile invocation,
3018             #  which is time consuming, especially if we're remote
3019             #  host testing.
3020             #
3021             if { $gdb_saved_set_unbuffered_mode_obj == "" } {
3022                 verbose "compiling gdb_saved_set_unbuffered_obj"
3023                 set unbuf_src ${srcdir}/lib/set_unbuffered_mode.c
3024                 set unbuf_obj ${objdir}/set_unbuffered_mode.o
3025
3026                 set result [gdb_compile "${unbuf_src}" "${unbuf_obj}" object {nowarnings}]
3027                 if { $result != "" } {
3028                     return $result
3029                 }
3030                 if {[is_remote host]} {
3031                     set gdb_saved_set_unbuffered_mode_obj set_unbuffered_mode_saved.o
3032                 } else {
3033                     set gdb_saved_set_unbuffered_mode_obj ${objdir}/set_unbuffered_mode_saved.o
3034                 }
3035                 # Link a copy of the output object, because the
3036                 # original may be automatically deleted.
3037                 remote_download host $unbuf_obj $gdb_saved_set_unbuffered_mode_obj
3038             } else {
3039                 verbose "gdb_saved_set_unbuffered_obj already compiled"
3040             }
3041
3042             # Rely on the internal knowledge that the global ctors are ran in
3043             # reverse link order.  In that case, we can use ldflags to
3044             # avoid copying the object file to the host multiple
3045             # times.
3046             # This object can only be added if standard libraries are
3047             # used. Thus, we need to disable it if -nostdlib option is used
3048             if {[lsearch -regexp $options "-nostdlib"] < 0 } {
3049                 lappend options "ldflags=$gdb_saved_set_unbuffered_mode_obj"
3050             }
3051         }
3052     }
3053
3054     set result [target_compile $source $dest $type $options]
3055
3056     # Prune uninteresting compiler (and linker) output.
3057     regsub "Creating library file: \[^\r\n\]*\[\r\n\]+" $result "" result
3058
3059     regsub "\[\r\n\]*$" "$result" "" result
3060     regsub "^\[\r\n\]*" "$result" "" result
3061     
3062     if {[lsearch $options quiet] < 0} {
3063         # We shall update this on a per language basis, to avoid
3064         # changing the entire testsuite in one go.
3065         if {[lsearch $options f77] >= 0} {
3066             gdb_compile_test $source $result
3067         } elseif { $result != "" } {
3068             clone_output "gdb compile failed, $result"
3069         }
3070     }
3071     return $result
3072 }
3073
3074
3075 # This is just like gdb_compile, above, except that it tries compiling
3076 # against several different thread libraries, to see which one this
3077 # system has.
3078 proc gdb_compile_pthreads {source dest type options} {
3079     set built_binfile 0
3080     set why_msg "unrecognized error"
3081     foreach lib {-lpthreads -lpthread -lthread ""} {
3082         # This kind of wipes out whatever libs the caller may have
3083         # set.  Or maybe theirs will override ours.  How infelicitous.
3084         set options_with_lib [concat $options [list libs=$lib quiet]]
3085         set ccout [gdb_compile $source $dest $type $options_with_lib]
3086         switch -regexp -- $ccout {
3087             ".*no posix threads support.*" {
3088                 set why_msg "missing threads include file"
3089                 break
3090             }
3091             ".*cannot open -lpthread.*" {
3092                 set why_msg "missing runtime threads library"
3093             }
3094             ".*Can't find library for -lpthread.*" {
3095                 set why_msg "missing runtime threads library"
3096             }
3097             {^$} {
3098                 pass "successfully compiled posix threads test case"
3099                 set built_binfile 1
3100                 break
3101             }
3102         }
3103     }
3104     if {!$built_binfile} {
3105         unsupported "Couldn't compile [file tail $source]: ${why_msg}"
3106         return -1
3107     }
3108 }
3109
3110 # Build a shared library from SOURCES.
3111
3112 proc gdb_compile_shlib {sources dest options} {
3113     set obj_options $options
3114
3115     set info_options ""
3116     if { [lsearch -exact $options "c++"] >= 0 } {
3117         set info_options "c++"
3118     }
3119     if [get_compiler_info ${info_options}] {
3120        return -1
3121     }
3122
3123     switch -glob [test_compiler_info] {
3124         "xlc-*" {
3125             lappend obj_options "additional_flags=-qpic"
3126         }
3127         "clang-*" {
3128             if { !([istarget "*-*-cygwin*"]
3129                    || [istarget "*-*-mingw*"]) } {
3130                 lappend obj_options "additional_flags=-fpic"
3131             }
3132         }
3133         "gcc-*" {
3134             if { !([istarget "powerpc*-*-aix*"]
3135                    || [istarget "rs6000*-*-aix*"]
3136                    || [istarget "*-*-cygwin*"]
3137                    || [istarget "*-*-mingw*"]
3138                    || [istarget "*-*-pe*"]) } {
3139                 lappend obj_options "additional_flags=-fpic"
3140             }
3141         }
3142         default {
3143             switch -glob [istarget] {
3144                 "hppa*-hp-hpux*" {
3145                     lappend obj_options "additional_flags=+z"
3146                 }
3147                 default {
3148                     # don't know what the compiler is...
3149                 }
3150             }
3151         }
3152     }
3153
3154     set outdir [file dirname $dest]
3155     set objects ""
3156     foreach source $sources {
3157        set sourcebase [file tail $source]
3158        if {[gdb_compile $source "${outdir}/${sourcebase}.o" object $obj_options] != ""} {
3159            return -1
3160        }
3161        lappend objects ${outdir}/${sourcebase}.o
3162     }
3163
3164     if [istarget "hppa*-*-hpux*"] {
3165        remote_exec build "ld -b ${objects} -o ${dest}"
3166     } else {
3167        set link_options $options
3168        if [test_compiler_info "xlc-*"] {
3169           lappend link_options "additional_flags=-qmkshrobj"
3170        } else {
3171           lappend link_options "additional_flags=-shared"
3172
3173            if { ([istarget "*-*-mingw*"]
3174                  || [istarget *-*-cygwin*]
3175                  || [istarget *-*-pe*]) } {
3176                if { [is_remote host] } {
3177                    set name [file tail ${dest}]
3178                } else {
3179                    set name ${dest}
3180                }
3181                lappend link_options "additional_flags=-Wl,--out-implib,${name}.a"
3182            } elseif [is_remote target] {
3183              # By default, we do not set the soname.  This causes the linker
3184              # on ELF systems to create a DT_NEEDED entry in the executable
3185              # refering to the full path name of the library.  This is a
3186              # problem in remote testing if the library is in a different
3187              # directory there.  To fix this, we set a soname of just the
3188              # base filename for the library, and add an appropriate -rpath
3189              # to the main executable (in gdb_compile).
3190              set destbase [file tail $dest]
3191              lappend link_options "additional_flags=-Wl,-soname,$destbase"
3192            }
3193        }
3194        if {[gdb_compile "${objects}" "${dest}" executable $link_options] != ""} {
3195            return -1
3196        }
3197         if { [is_remote host]
3198              && ([istarget "*-*-mingw*"]
3199                  || [istarget *-*-cygwin*]
3200                  || [istarget *-*-pe*]) } {
3201             set dest_tail_name [file tail ${dest}]
3202             remote_upload host $dest_tail_name.a ${dest}.a
3203             remote_file host delete $dest_tail_name.a
3204         }
3205     }
3206   return ""
3207 }
3208
3209 # This is just like gdb_compile_shlib, above, except that it tries compiling
3210 # against several different thread libraries, to see which one this
3211 # system has.
3212 proc gdb_compile_shlib_pthreads {sources dest options} {
3213     set built_binfile 0
3214     set why_msg "unrecognized error"
3215     foreach lib {-lpthreads -lpthread -lthread ""} {
3216         # This kind of wipes out whatever libs the caller may have
3217         # set.  Or maybe theirs will override ours.  How infelicitous.
3218         set options_with_lib [concat $options [list libs=$lib quiet]]
3219         set ccout [gdb_compile_shlib $sources $dest $options_with_lib]
3220         switch -regexp -- $ccout {
3221             ".*no posix threads support.*" {
3222                 set why_msg "missing threads include file"
3223                 break
3224             }
3225             ".*cannot open -lpthread.*" {
3226                 set why_msg "missing runtime threads library"
3227             }
3228             ".*Can't find library for -lpthread.*" {
3229                 set why_msg "missing runtime threads library"
3230             }
3231             {^$} {
3232                 pass "successfully compiled posix threads test case"
3233                 set built_binfile 1
3234                 break
3235             }
3236         }
3237     }
3238     if {!$built_binfile} {
3239         unsupported "Couldn't compile $sources: ${why_msg}"
3240         return -1
3241     }
3242 }
3243
3244 # This is just like gdb_compile_pthreads, above, except that we always add the
3245 # objc library for compiling Objective-C programs
3246 proc gdb_compile_objc {source dest type options} {
3247     set built_binfile 0
3248     set why_msg "unrecognized error"
3249     foreach lib {-lobjc -lpthreads -lpthread -lthread solaris} {
3250         # This kind of wipes out whatever libs the caller may have
3251         # set.  Or maybe theirs will override ours.  How infelicitous.
3252         if { $lib == "solaris" } {
3253             set lib "-lpthread -lposix4"
3254         }
3255         if { $lib != "-lobjc" } {
3256           set lib "-lobjc $lib"
3257         }
3258         set options_with_lib [concat $options [list libs=$lib quiet]]
3259         set ccout [gdb_compile $source $dest $type $options_with_lib]
3260         switch -regexp -- $ccout {
3261             ".*no posix threads support.*" {
3262                 set why_msg "missing threads include file"
3263                 break
3264             }
3265             ".*cannot open -lpthread.*" {
3266                 set why_msg "missing runtime threads library"
3267             }
3268             ".*Can't find library for -lpthread.*" {
3269                 set why_msg "missing runtime threads library"
3270             }
3271             {^$} {
3272                 pass "successfully compiled objc with posix threads test case"
3273                 set built_binfile 1
3274                 break
3275             }
3276         }
3277     }
3278     if {!$built_binfile} {
3279         unsupported "Couldn't compile [file tail $source]: ${why_msg}"
3280         return -1
3281     }
3282 }
3283
3284 proc send_gdb { string } {
3285     global suppress_flag
3286     if { $suppress_flag } {
3287         return "suppressed"
3288     }
3289     return [remote_send host "$string"]
3290 }
3291
3292 # Send STRING to the inferior's terminal.
3293
3294 proc send_inferior { string } {
3295     global inferior_spawn_id
3296
3297     if {[catch "send -i $inferior_spawn_id -- \$string" errorInfo]} {
3298         return "$errorInfo"
3299     } else {
3300         return ""
3301     }
3302 }
3303
3304 #
3305 #
3306
3307 proc gdb_expect { args } {
3308     if { [llength $args] == 2  && [lindex $args 0] != "-re" } {
3309         set atimeout [lindex $args 0]
3310         set expcode [list [lindex $args 1]]
3311     } else {
3312         set expcode $args
3313     }
3314
3315     # A timeout argument takes precedence, otherwise of all the timeouts
3316     # select the largest.
3317     if [info exists atimeout] {
3318         set tmt $atimeout
3319     } else {
3320         set tmt [get_largest_timeout]
3321     }
3322
3323     global suppress_flag
3324     global remote_suppress_flag
3325     if [info exists remote_suppress_flag] {
3326         set old_val $remote_suppress_flag
3327     }
3328     if [info exists suppress_flag] {
3329         if { $suppress_flag } {
3330             set remote_suppress_flag 1
3331         }
3332     }
3333     set code [catch \
3334         {uplevel remote_expect host $tmt $expcode} string]
3335     if [info exists old_val] {
3336         set remote_suppress_flag $old_val
3337     } else {
3338         if [info exists remote_suppress_flag] {
3339             unset remote_suppress_flag
3340         }
3341     }
3342
3343     if {$code == 1} {
3344         global errorInfo errorCode
3345
3346         return -code error -errorinfo $errorInfo -errorcode $errorCode $string
3347     } else {
3348         return -code $code $string
3349     }
3350 }
3351
3352 # gdb_expect_list TEST SENTINEL LIST -- expect a sequence of outputs
3353 #
3354 # Check for long sequence of output by parts.
3355 # TEST: is the test message to be printed with the test success/fail.
3356 # SENTINEL: Is the terminal pattern indicating that output has finished.
3357 # LIST: is the sequence of outputs to match.
3358 # If the sentinel is recognized early, it is considered an error.
3359 #
3360 # Returns:
3361 #    1 if the test failed,
3362 #    0 if the test passes,
3363 #   -1 if there was an internal error.
3364
3365 proc gdb_expect_list {test sentinel list} {
3366     global gdb_prompt
3367     global suppress_flag
3368     set index 0
3369     set ok 1
3370     if { $suppress_flag } {
3371         set ok 0
3372         unresolved "${test}"
3373     }
3374     while { ${index} < [llength ${list}] } {
3375         set pattern [lindex ${list} ${index}]
3376         set index [expr ${index} + 1]
3377         verbose -log "gdb_expect_list pattern: /$pattern/" 2
3378         if { ${index} == [llength ${list}] } {
3379             if { ${ok} } {
3380                 gdb_expect {
3381                     -re "${pattern}${sentinel}" {
3382                         # pass "${test}, pattern ${index} + sentinel"
3383                     }
3384                     -re "${sentinel}" {
3385                         fail "${test} (pattern ${index} + sentinel)"
3386                         set ok 0
3387                     }
3388                     -re ".*A problem internal to GDB has been detected" {
3389                         fail "${test} (GDB internal error)"
3390                         set ok 0
3391                         gdb_internal_error_resync
3392                     }
3393                     timeout {
3394                         fail "${test} (pattern ${index} + sentinel) (timeout)"
3395                         set ok 0
3396                     }
3397                 }
3398             } else {
3399                 # unresolved "${test}, pattern ${index} + sentinel"
3400             }
3401         } else {
3402             if { ${ok} } {
3403                 gdb_expect {
3404                     -re "${pattern}" {
3405                         # pass "${test}, pattern ${index}"
3406                     }
3407                     -re "${sentinel}" {
3408                         fail "${test} (pattern ${index})"
3409                         set ok 0
3410                     }
3411                     -re ".*A problem internal to GDB has been detected" {
3412                         fail "${test} (GDB internal error)"
3413                         set ok 0
3414                         gdb_internal_error_resync
3415                     }
3416                     timeout {
3417                         fail "${test} (pattern ${index}) (timeout)"
3418                         set ok 0
3419                     }
3420                 }
3421             } else {
3422                 # unresolved "${test}, pattern ${index}"
3423             }
3424         }
3425     }
3426     if { ${ok} } {
3427         pass "${test}"
3428         return 0
3429     } else {
3430         return 1
3431     }
3432 }
3433
3434 #
3435 #
3436 proc gdb_suppress_entire_file { reason } {
3437     global suppress_flag
3438
3439     warning "$reason\n"
3440     set suppress_flag -1
3441 }
3442
3443 #
3444 # Set suppress_flag, which will cause all subsequent calls to send_gdb and
3445 # gdb_expect to fail immediately (until the next call to 
3446 # gdb_stop_suppressing_tests).
3447 #
3448 proc gdb_suppress_tests { args } {
3449     global suppress_flag
3450
3451     return;  # fnf - disable pending review of results where
3452              # testsuite ran better without this
3453     incr suppress_flag
3454
3455     if { $suppress_flag == 1 } {
3456         if { [llength $args] > 0 } {
3457             warning "[lindex $args 0]\n"
3458         } else {
3459             warning "Because of previous failure, all subsequent tests in this group will automatically fail.\n"
3460         }
3461     }
3462 }
3463
3464 #
3465 # Clear suppress_flag.
3466 #
3467 proc gdb_stop_suppressing_tests { } {
3468     global suppress_flag
3469
3470     if [info exists suppress_flag] {
3471         if { $suppress_flag > 0 } {
3472             set suppress_flag 0
3473             clone_output "Tests restarted.\n"
3474         }
3475     } else {
3476         set suppress_flag 0
3477     }
3478 }
3479
3480 proc gdb_clear_suppressed { } {
3481     global suppress_flag
3482
3483     set suppress_flag 0
3484 }
3485
3486 # Spawn the gdb process.
3487 #
3488 # This doesn't expect any output or do any other initialization,
3489 # leaving those to the caller.
3490 #
3491 # Overridable function -- you can override this function in your
3492 # baseboard file.
3493
3494 proc gdb_spawn { } {
3495     default_gdb_spawn
3496 }
3497
3498 # Spawn GDB with CMDLINE_FLAGS appended to the GDBFLAGS global.
3499
3500 proc gdb_spawn_with_cmdline_opts { cmdline_flags } {
3501     global GDBFLAGS
3502
3503     set saved_gdbflags $GDBFLAGS
3504
3505     if {$GDBFLAGS != ""} {
3506         append GDBFLAGS " "
3507     }
3508     append GDBFLAGS $cmdline_flags
3509
3510     set res [gdb_spawn]
3511
3512     set GDBFLAGS $saved_gdbflags
3513
3514     return $res
3515 }
3516
3517 # Start gdb running, wait for prompt, and disable the pagers.
3518
3519 # Overridable function -- you can override this function in your
3520 # baseboard file.
3521
3522 proc gdb_start { } {
3523     default_gdb_start
3524 }
3525
3526 proc gdb_exit { } {
3527     catch default_gdb_exit
3528 }
3529
3530 # Return true if we can spawn a program on the target and attach to
3531 # it.
3532
3533 proc can_spawn_for_attach { } {
3534     # We use TCL's exec to get the inferior's pid.
3535     if [is_remote target] then {
3536         return 0
3537     }
3538
3539     # The "attach" command doesn't make sense when the target is
3540     # stub-like, where GDB finds the program already started on
3541     # initial connection.
3542     if {[target_info exists use_gdb_stub]} {
3543         return 0
3544     }
3545
3546     # Assume yes.
3547     return 1
3548 }
3549
3550 # Start a set of programs running and then wait for a bit, to be sure
3551 # that they can be attached to.  Return a list of the processes' PIDs.
3552 # It's a test error to call this when [can_spawn_for_attach] is false.
3553
3554 proc spawn_wait_for_attach { executable_list } {
3555     set pid_list {}
3556
3557     if ![can_spawn_for_attach] {
3558         # The caller should have checked can_spawn_for_attach itself
3559         # before getting here.
3560         error "can't spawn for attach with this target/board"
3561     }
3562
3563     foreach {executable} $executable_list {
3564         lappend pid_list [eval exec $executable &]
3565     }
3566
3567     sleep 2
3568
3569     if { [istarget "*-*-cygwin*"] } {
3570         for {set i 0} {$i < [llength $pid_list]} {incr i} {
3571             # testpid is the Cygwin PID, GDB uses the Windows PID,
3572             # which might be different due to the way fork/exec works.
3573             set testpid [lindex $pid_list $i]
3574             set testpid [ exec ps -e | gawk "{ if (\$1 == $testpid) print \$4; }" ]
3575             set pid_list [lreplace $pid_list $i $i $testpid]
3576         }
3577     }
3578
3579     return $pid_list
3580 }
3581
3582 #
3583 # gdb_load_cmd -- load a file into the debugger.
3584 #                 ARGS - additional args to load command.
3585 #                 return a -1 if anything goes wrong.
3586 #
3587 proc gdb_load_cmd { args } {
3588     global gdb_prompt
3589
3590     if [target_info exists gdb_load_timeout] {
3591         set loadtimeout [target_info gdb_load_timeout]
3592     } else {
3593         set loadtimeout 1600
3594     }
3595     send_gdb "load $args\n"
3596     verbose "Timeout is now $loadtimeout seconds" 2
3597     gdb_expect $loadtimeout {
3598         -re "Loading section\[^\r\]*\r\n" {
3599             exp_continue
3600         }
3601         -re "Start address\[\r\]*\r\n" {
3602             exp_continue
3603         }
3604         -re "Transfer rate\[\r\]*\r\n" {
3605             exp_continue
3606         }
3607         -re "Memory access error\[^\r\]*\r\n" {
3608             perror "Failed to load program"
3609             return -1
3610         }
3611         -re "$gdb_prompt $" {
3612             return 0
3613         }
3614         -re "(.*)\r\n$gdb_prompt " {
3615             perror "Unexpected reponse from 'load' -- $expect_out(1,string)"
3616             return -1
3617         }
3618         timeout {
3619             perror "Timed out trying to load $args."
3620             return -1
3621         }
3622     }
3623     return -1
3624 }
3625
3626 # Invoke "gcore".  CORE is the name of the core file to write.  TEST
3627 # is the name of the test case.  This will return 1 if the core file
3628 # was created, 0 otherwise.  If this fails to make a core file because
3629 # this configuration of gdb does not support making core files, it
3630 # will call "unsupported", not "fail".  However, if this fails to make
3631 # a core file for some other reason, then it will call "fail".
3632
3633 proc gdb_gcore_cmd {core test} {
3634     global gdb_prompt
3635
3636     set result 0
3637     gdb_test_multiple "gcore $core" $test {
3638         -re "Saved corefile .*\[\r\n\]+$gdb_prompt $" {
3639             pass $test
3640             set result 1
3641         }
3642         -re "(?:Can't create a corefile|Target does not support core file generation\\.)\[\r\n\]+$gdb_prompt $" {
3643             unsupported $test
3644         }
3645     }
3646
3647     return $result
3648 }
3649
3650 # Load core file CORE.  TEST is the name of the test case.
3651 # This will record a pass/fail for loading the core file.
3652 # Returns:
3653 #  1 - core file is successfully loaded
3654 #  0 - core file loaded but has a non fatal error
3655 # -1 - core file failed to load
3656
3657 proc gdb_core_cmd { core test } {
3658     global gdb_prompt
3659
3660     gdb_test_multiple "core $core" "$test" {
3661         -re "\\\[Thread debugging using \[^ \r\n\]* enabled\\\]\r\n" {
3662             exp_continue
3663         }
3664         -re " is not a core dump:.*\r\n$gdb_prompt $" {
3665             fail "$test (bad file format)"
3666             return -1
3667         }
3668         -re ": No such file or directory.*\r\n$gdb_prompt $" {
3669             fail "$test (file not found)"
3670             return -1
3671         }
3672         -re "Couldn't find .* registers in core file.*\r\n$gdb_prompt $" {
3673             fail "$test (incomplete note section)"
3674             return 0
3675         }
3676         -re "Core was generated by .*\r\n$gdb_prompt $" {
3677             pass "$test"
3678             return 1
3679         }
3680         -re ".*$gdb_prompt $" {
3681             fail "$test"
3682             return -1
3683         }
3684         timeout {
3685             fail "$test (timeout)"
3686             return -1
3687         }
3688     }
3689     fail "unsupported output from 'core' command"
3690     return -1
3691 }
3692
3693 # Return the filename to download to the target and load on the target
3694 # for this shared library.  Normally just LIBNAME, unless shared libraries
3695 # for this target have separate link and load images.
3696
3697 proc shlib_target_file { libname } {
3698     return $libname
3699 }
3700
3701 # Return the filename GDB will load symbols from when debugging this
3702 # shared library.  Normally just LIBNAME, unless shared libraries for
3703 # this target have separate link and load images.
3704
3705 proc shlib_symbol_file { libname } {
3706     return $libname
3707 }
3708
3709 # Return the filename to download to the target and load for this
3710 # executable.  Normally just BINFILE unless it is renamed to something
3711 # else for this target.
3712
3713 proc exec_target_file { binfile } {
3714     return $binfile
3715 }
3716
3717 # Return the filename GDB will load symbols from when debugging this
3718 # executable.  Normally just BINFILE unless executables for this target
3719 # have separate files for symbols.
3720
3721 proc exec_symbol_file { binfile } {
3722     return $binfile
3723 }
3724
3725 # Rename the executable file.  Normally this is just BINFILE1 being renamed
3726 # to BINFILE2, but some targets require multiple binary files.
3727 proc gdb_rename_execfile { binfile1 binfile2 } {
3728     file rename -force [exec_target_file ${binfile1}] \
3729                        [exec_target_file ${binfile2}]
3730     if { [exec_target_file ${binfile1}] != [exec_symbol_file ${binfile1}] } {
3731         file rename -force [exec_symbol_file ${binfile1}] \
3732                            [exec_symbol_file ${binfile2}]
3733     }
3734 }
3735
3736 # "Touch" the executable file to update the date.  Normally this is just
3737 # BINFILE, but some targets require multiple files.
3738 proc gdb_touch_execfile { binfile } {
3739     set time [clock seconds]
3740     file mtime [exec_target_file ${binfile}] $time
3741     if { [exec_target_file ${binfile}] != [exec_symbol_file ${binfile}] } {
3742         file mtime [exec_symbol_file ${binfile}] $time
3743     }
3744 }
3745
3746 # Like remote_download but provides a gdb-specific behavior.  If DEST
3747 # is "host", and the host is not remote, and TOFILE is not specified,
3748 # then the [file tail] of FROMFILE is passed through
3749 # standard_output_file to compute the destination.
3750
3751 proc gdb_remote_download {dest fromfile {tofile {}}} {
3752     if {$dest == "host" && ![is_remote host] && $tofile == ""} {
3753         set tofile [standard_output_file [file tail $fromfile]]
3754     }
3755
3756     if { $tofile == "" } {
3757         return [remote_download $dest $fromfile]
3758     } else {
3759         return [remote_download $dest $fromfile $tofile]
3760     }
3761 }
3762
3763 # gdb_download
3764 #
3765 # Copy a file to the remote target and return its target filename.
3766 # Schedule the file to be deleted at the end of this test.
3767
3768 proc gdb_download { filename } {
3769     global cleanfiles
3770
3771     set destname [remote_download target $filename]
3772     lappend cleanfiles $destname
3773     return $destname
3774 }
3775
3776 # gdb_load_shlibs LIB...
3777 #
3778 # Copy the listed libraries to the target.
3779
3780 proc gdb_load_shlibs { args } {
3781     if {![is_remote target]} {
3782         return
3783     }
3784
3785     foreach file $args {
3786         gdb_download [shlib_target_file $file]
3787     }
3788
3789     # Even if the target supplies full paths for shared libraries,
3790     # they may not be paths for this system.
3791     gdb_test "set solib-search-path [file dirname [lindex $args 0]]" "" ""
3792 }
3793
3794 #
3795 # gdb_load -- load a file into the debugger.  Specifying no file
3796 # defaults to the executable currently being debugged.
3797 # The return value is 0 for success, -1 for failure.
3798 # Many files in config/*.exp override this procedure.
3799 #
3800 proc gdb_load { arg } {
3801     if { $arg != "" } {
3802         return [gdb_file_cmd $arg]
3803     }
3804     return 0
3805 }
3806
3807 # gdb_reload -- load a file into the target.  Called before "running",
3808 # either the first time or after already starting the program once,
3809 # for remote targets.  Most files that override gdb_load should now
3810 # override this instead.
3811
3812 proc gdb_reload { } {
3813     # For the benefit of existing configurations, default to gdb_load.
3814     # Specifying no file defaults to the executable currently being
3815     # debugged.
3816     return [gdb_load ""]
3817 }
3818
3819 proc gdb_continue { function } {
3820     global decimal
3821
3822     return [gdb_test "continue" ".*Breakpoint $decimal, $function .*" "continue to $function"]
3823 }
3824
3825 proc default_gdb_init { test_file_name } {
3826     global gdb_wrapper_initialized
3827     global gdb_wrapper_target
3828     global gdb_test_file_name
3829     global cleanfiles
3830     global pf_prefix
3831     
3832     set cleanfiles {}
3833
3834     gdb_clear_suppressed
3835
3836     set gdb_test_file_name [file rootname [file tail $test_file_name]]
3837
3838     # Make sure that the wrapper is rebuilt
3839     # with the appropriate multilib option.
3840     if { $gdb_wrapper_target != [current_target_name] } {
3841         set gdb_wrapper_initialized 0
3842     }
3843     
3844     # Unlike most tests, we have a small number of tests that generate
3845     # a very large amount of output.  We therefore increase the expect
3846     # buffer size to be able to contain the entire test output.  This
3847     # is especially needed by gdb.base/info-macros.exp.
3848     match_max -d 65536
3849     # Also set this value for the currently running GDB. 
3850     match_max [match_max -d]
3851
3852     # We want to add the name of the TCL testcase to the PASS/FAIL messages.
3853     set pf_prefix "[file tail [file dirname $test_file_name]]/[file tail $test_file_name]:"
3854
3855     global gdb_prompt
3856     if [target_info exists gdb_prompt] {
3857         set gdb_prompt [target_info gdb_prompt]
3858     } else {
3859         set gdb_prompt "\\(gdb\\)"
3860     }
3861     global use_gdb_stub
3862     if [info exists use_gdb_stub] {
3863         unset use_gdb_stub
3864     }
3865 }
3866
3867 # Turn BASENAME into a full file name in the standard output
3868 # directory.  It is ok if BASENAME is the empty string; in this case
3869 # the directory is returned.
3870
3871 proc standard_output_file {basename} {
3872     global objdir subdir gdb_test_file_name GDB_PARALLEL
3873
3874     if {[info exists GDB_PARALLEL]} {
3875         set dir [file join $objdir outputs $subdir $gdb_test_file_name]
3876         file mkdir $dir
3877         return [file join $dir $basename]
3878     } else {
3879         return [file join $objdir $subdir $basename]
3880     }
3881 }
3882
3883 # Return the name of a file in our standard temporary directory.
3884
3885 proc standard_temp_file {basename} {
3886     global objdir GDB_PARALLEL
3887
3888     if {[info exists GDB_PARALLEL]} {
3889         return [file join $objdir temp $basename]
3890     } else {
3891         return $basename
3892     }
3893 }
3894
3895 # Set 'testfile', 'srcfile', and 'binfile'.
3896 #
3897 # ARGS is a list of source file specifications.
3898 # Without any arguments, the .exp file's base name is used to
3899 # compute the source file name.  The ".c" extension is added in this case.
3900 # If ARGS is not empty, each entry is a source file specification.
3901 # If the specification starts with a ".", it is treated as a suffix
3902 # to append to the .exp file's base name.
3903 # If the specification is the empty string, it is treated as if it
3904 # were ".c".
3905 # Otherwise it is a file name.
3906 # The first file in the list is used to set the 'srcfile' global.
3907 # Each subsequent name is used to set 'srcfile2', 'srcfile3', etc.
3908 #
3909 # Most tests should call this without arguments.
3910 #
3911 # If a completely different binary file name is needed, then it
3912 # should be handled in the .exp file with a suitable comment.
3913
3914 proc standard_testfile {args} {
3915     global gdb_test_file_name
3916     global subdir
3917     global gdb_test_file_last_vars
3918
3919     # Outputs.
3920     global testfile binfile
3921
3922     set testfile $gdb_test_file_name
3923     set binfile [standard_output_file ${testfile}]
3924
3925     if {[llength $args] == 0} {
3926         set args .c
3927     }
3928
3929     # Unset our previous output variables.
3930     # This can help catch hidden bugs.
3931     if {[info exists gdb_test_file_last_vars]} {
3932         foreach varname $gdb_test_file_last_vars {
3933             global $varname
3934             catch {unset $varname}
3935         }
3936     }
3937     # 'executable' is often set by tests.
3938     set gdb_test_file_last_vars {executable}
3939
3940     set suffix ""
3941     foreach arg $args {
3942         set varname srcfile$suffix
3943         global $varname
3944
3945         # Handle an extension.
3946         if {$arg == ""} {
3947             set arg $testfile.c
3948         } elseif {[string range $arg 0 0] == "."} {
3949             set arg $testfile$arg
3950         }
3951
3952         set $varname $arg
3953         lappend gdb_test_file_last_vars $varname
3954
3955         if {$suffix == ""} {
3956             set suffix 2
3957         } else {
3958             incr suffix
3959         }
3960     }
3961 }
3962
3963 # The default timeout used when testing GDB commands.  We want to use
3964 # the same timeout as the default dejagnu timeout, unless the user has
3965 # already provided a specific value (probably through a site.exp file).
3966 global gdb_test_timeout
3967 if ![info exists gdb_test_timeout] {
3968     set gdb_test_timeout $timeout
3969 }
3970
3971 # A list of global variables that GDB testcases should not use.
3972 # We try to prevent their use by monitoring write accesses and raising
3973 # an error when that happens.
3974 set banned_variables { bug_id prms_id }
3975
3976 # A list of procedures that GDB testcases should not use.
3977 # We try to prevent their use by monitoring invocations and raising
3978 # an error when that happens.
3979 set banned_procedures { strace }
3980
3981 # gdb_init is called by runtest at start, but also by several
3982 # tests directly; gdb_finish is only called from within runtest after
3983 # each test source execution.
3984 # Placing several traces by repetitive calls to gdb_init leads
3985 # to problems, as only one trace is removed in gdb_finish.
3986 # To overcome this possible problem, we add a variable that records
3987 # if the banned variables and procedures are already traced.
3988 set banned_traced 0
3989
3990 proc gdb_init { test_file_name } {
3991     # Reset the timeout value to the default.  This way, any testcase
3992     # that changes the timeout value without resetting it cannot affect
3993     # the timeout used in subsequent testcases.
3994     global gdb_test_timeout
3995     global timeout
3996     set timeout $gdb_test_timeout
3997
3998     if { [regexp ".*gdb\.reverse\/.*" $test_file_name]
3999          && [target_info exists gdb_reverse_timeout] } {
4000         set timeout [target_info gdb_reverse_timeout]
4001     }
4002
4003     # If GDB_INOTIFY is given, check for writes to '.'.  This is a
4004     # debugging tool to help confirm that the test suite is
4005     # parallel-safe.  You need "inotifywait" from the
4006     # inotify-tools package to use this.
4007     global GDB_INOTIFY inotify_pid
4008     if {[info exists GDB_INOTIFY] && ![info exists inotify_pid]} {
4009         global outdir tool inotify_log_file
4010
4011         set exclusions {outputs temp gdb[.](log|sum) cache}
4012         set exclusion_re ([join $exclusions |])
4013
4014         set inotify_log_file [standard_temp_file inotify.out]
4015         set inotify_pid [exec inotifywait -r -m -e move,create,delete . \
4016                              --exclude $exclusion_re \
4017                              |& tee -a $outdir/$tool.log $inotify_log_file &]
4018
4019         # Wait for the watches; hopefully this is long enough.
4020         sleep 2
4021
4022         # Clear the log so that we don't emit a warning the first time
4023         # we check it.
4024         set fd [open $inotify_log_file w]
4025         close $fd
4026     }
4027
4028     # Block writes to all banned variables, and invocation of all
4029     # banned procedures...
4030     global banned_variables
4031     global banned_procedures
4032     global banned_traced
4033     if (!$banned_traced) {
4034         foreach banned_var $banned_variables {
4035             global "$banned_var"
4036             trace add variable "$banned_var" write error
4037         }
4038         foreach banned_proc $banned_procedures {
4039             global "$banned_proc"
4040             trace add execution "$banned_proc" enter error
4041         }
4042         set banned_traced 1
4043     }
4044
4045     # We set LC_ALL, LC_CTYPE, and LANG to C so that we get the same
4046     # messages as expected.
4047     setenv LC_ALL C
4048     setenv LC_CTYPE C
4049     setenv LANG C
4050
4051     # Don't let a .inputrc file or an existing setting of INPUTRC mess up
4052     # the test results.  Even if /dev/null doesn't exist on the particular
4053     # platform, the readline library will use the default setting just by
4054     # failing to open the file.  OTOH, opening /dev/null successfully will
4055     # also result in the default settings being used since nothing will be
4056     # read from this file.
4057     setenv INPUTRC "/dev/null"
4058
4059     # The gdb.base/readline.exp arrow key test relies on the standard VT100
4060     # bindings, so make sure that an appropriate terminal is selected.
4061     # The same bug doesn't show up if we use ^P / ^N instead.
4062     setenv TERM "vt100"
4063
4064     # Some tests (for example gdb.base/maint.exp) shell out from gdb to use
4065     # grep.  Clear GREP_OPTIONS to make the behavior predictable,
4066     # especially having color output turned on can cause tests to fail.
4067     setenv GREP_OPTIONS ""
4068
4069     # Clear $gdbserver_reconnect_p.
4070     global gdbserver_reconnect_p
4071     set gdbserver_reconnect_p 1
4072     unset gdbserver_reconnect_p
4073
4074     return [default_gdb_init $test_file_name]
4075 }
4076
4077 proc gdb_finish { } {
4078     global gdbserver_reconnect_p
4079     global gdb_prompt
4080     global cleanfiles
4081
4082     # Exit first, so that the files are no longer in use.
4083     gdb_exit
4084
4085     if { [llength $cleanfiles] > 0 } {
4086         eval remote_file target delete $cleanfiles
4087         set cleanfiles {}
4088     }
4089
4090     # Unblock write access to the banned variables.  Dejagnu typically
4091     # resets some of them between testcases.
4092     global banned_variables
4093     global banned_procedures
4094     global banned_traced
4095     if ($banned_traced) {
4096         foreach banned_var $banned_variables {
4097             global "$banned_var"
4098             trace remove variable "$banned_var" write error
4099         }
4100         foreach banned_proc $banned_procedures {
4101             global "$banned_proc"
4102             trace remove execution "$banned_proc" enter error
4103         }
4104         set banned_traced 0
4105     }
4106 }
4107
4108 global debug_format
4109 set debug_format "unknown"
4110
4111 # Run the gdb command "info source" and extract the debugging format
4112 # information from the output and save it in debug_format.
4113
4114 proc get_debug_format { } {
4115     global gdb_prompt
4116     global verbose
4117     global expect_out
4118     global debug_format
4119
4120     set debug_format "unknown"
4121     send_gdb "info source\n"
4122     gdb_expect 10 {
4123         -re "Compiled with (.*) debugging format.\r\n.*$gdb_prompt $" {
4124             set debug_format $expect_out(1,string)
4125             verbose "debug format is $debug_format"
4126             return 1
4127         }
4128         -re "No current source file.\r\n$gdb_prompt $" {
4129             perror "get_debug_format used when no current source file"
4130             return 0
4131         }
4132         -re "$gdb_prompt $" {
4133             warning "couldn't check debug format (no valid response)."
4134             return 1
4135         }
4136         timeout {
4137             warning "couldn't check debug format (timeout)."
4138             return 1
4139         }
4140     }
4141 }
4142
4143 # Return true if FORMAT matches the debug format the current test was
4144 # compiled with.  FORMAT is a shell-style globbing pattern; it can use
4145 # `*', `[...]', and so on.
4146 #
4147 # This function depends on variables set by `get_debug_format', above.
4148
4149 proc test_debug_format {format} {
4150     global debug_format
4151
4152     return [expr [string match $format $debug_format] != 0]
4153 }
4154
4155 # Like setup_xfail, but takes the name of a debug format (DWARF 1,
4156 # COFF, stabs, etc).  If that format matches the format that the
4157 # current test was compiled with, then the next test is expected to
4158 # fail for any target.  Returns 1 if the next test or set of tests is
4159 # expected to fail, 0 otherwise (or if it is unknown).  Must have
4160 # previously called get_debug_format.
4161 proc setup_xfail_format { format } {
4162     set ret [test_debug_format $format]
4163
4164     if {$ret} then {
4165         setup_xfail "*-*-*"
4166     }
4167     return $ret
4168 }
4169
4170 # gdb_get_line_number TEXT [FILE]
4171 #
4172 # Search the source file FILE, and return the line number of the
4173 # first line containing TEXT.  If no match is found, an error is thrown.
4174
4175 # TEXT is a string literal, not a regular expression.
4176 #
4177 # The default value of FILE is "$srcdir/$subdir/$srcfile".  If FILE is
4178 # specified, and does not start with "/", then it is assumed to be in
4179 # "$srcdir/$subdir".  This is awkward, and can be fixed in the future,
4180 # by changing the callers and the interface at the same time.
4181 # In particular: gdb.base/break.exp, gdb.base/condbreak.exp,
4182 # gdb.base/ena-dis-br.exp.
4183 #
4184 # Use this function to keep your test scripts independent of the
4185 # exact line numbering of the source file.  Don't write:
4186
4187 #   send_gdb "break 20"
4188
4189 # This means that if anyone ever edits your test's source file, 
4190 # your test could break.  Instead, put a comment like this on the
4191 # source file line you want to break at:
4192
4193 #   /* breakpoint spot: frotz.exp: test name */
4194
4195 # and then write, in your test script (which we assume is named
4196 # frotz.exp):
4197
4198 #   send_gdb "break [gdb_get_line_number "frotz.exp: test name"]\n"
4199 #
4200 # (Yes, Tcl knows how to handle the nested quotes and brackets.
4201 # Try this:
4202 #       $ tclsh
4203 #       % puts "foo [lindex "bar baz" 1]"
4204 #       foo baz
4205 #       % 
4206 # Tcl is quite clever, for a little stringy language.)
4207 #
4208 # ===
4209 #
4210 # The previous implementation of this procedure used the gdb search command.
4211 # This version is different:
4212 #
4213 #   . It works with MI, and it also works when gdb is not running.
4214 #
4215 #   . It operates on the build machine, not the host machine.
4216 #
4217 #   . For now, this implementation fakes a current directory of
4218 #     $srcdir/$subdir to be compatible with the old implementation.
4219 #     This will go away eventually and some callers will need to
4220 #     be changed.
4221 #
4222 #   . The TEXT argument is literal text and matches literally,
4223 #     not a regular expression as it was before.
4224 #
4225 #   . State changes in gdb, such as changing the current file
4226 #     and setting $_, no longer happen.
4227 #
4228 # After a bit of time we can forget about the differences from the
4229 # old implementation.
4230 #
4231 # --chastain 2004-08-05
4232
4233 proc gdb_get_line_number { text { file "" } } {
4234     global srcdir
4235     global subdir
4236     global srcfile
4237
4238     if { "$file" == "" } then {
4239         set file "$srcfile"
4240     }
4241     if { ! [regexp "^/" "$file"] } then {
4242         set file "$srcdir/$subdir/$file"
4243     }
4244
4245     if { [ catch { set fd [open "$file"] } message ] } then {
4246         error "$message"
4247     }
4248
4249     set found -1
4250     for { set line 1 } { 1 } { incr line } {
4251         if { [ catch { set nchar [gets "$fd" body] } message ] } then {
4252             error "$message"
4253         }
4254         if { $nchar < 0 } then {
4255             break
4256         }
4257         if { [string first "$text" "$body"] >= 0 } then {
4258             set found $line
4259             break
4260         }
4261     }
4262
4263     if { [ catch { close "$fd" } message ] } then {
4264         error "$message"
4265     }
4266
4267     if {$found == -1} {
4268         error "undefined tag \"$text\""
4269     }
4270
4271     return $found
4272 }
4273
4274 # Continue the program until it ends.
4275 #
4276 # MSSG is the error message that gets printed.  If not given, a
4277 #       default is used.
4278 # COMMAND is the command to invoke.  If not given, "continue" is
4279 #       used.
4280 # ALLOW_EXTRA is a flag indicating whether the test should expect
4281 #       extra output between the "Continuing." line and the program
4282 #       exiting.  By default it is zero; if nonzero, any extra output
4283 #       is accepted.
4284
4285 proc gdb_continue_to_end {{mssg ""} {command continue} {allow_extra 0}} {
4286   global inferior_exited_re use_gdb_stub
4287
4288   if {$mssg == ""} {
4289       set text "continue until exit"
4290   } else {
4291       set text "continue until exit at $mssg"
4292   }
4293   if {$allow_extra} {
4294       set extra ".*"
4295   } else {
4296       set extra ""
4297   }
4298
4299   # By default, we don't rely on exit() behavior of remote stubs --
4300   # it's common for exit() to be implemented as a simple infinite
4301   # loop, or a forced crash/reset.  For native targets, by default, we
4302   # assume process exit is reported as such.  If a non-reliable target
4303   # is used, we set a breakpoint at exit, and continue to that.
4304   if { [target_info exists exit_is_reliable] } {
4305       set exit_is_reliable [target_info exit_is_reliable]
4306   } else {
4307       set exit_is_reliable [expr ! $use_gdb_stub]
4308   }
4309
4310   if { ! $exit_is_reliable } {
4311     if {![gdb_breakpoint "exit"]} {
4312       return 0
4313     }
4314     gdb_test $command "Continuing..*Breakpoint .*exit.*" \
4315         $text
4316   } else {
4317     # Continue until we exit.  Should not stop again.
4318     # Don't bother to check the output of the program, that may be
4319     # extremely tough for some remote systems.
4320     gdb_test $command \
4321       "Continuing.\[\r\n0-9\]+${extra}(... EXIT code 0\[\r\n\]+|$inferior_exited_re normally).*"\
4322         $text
4323   }
4324 }
4325
4326 proc rerun_to_main {} {
4327   global gdb_prompt use_gdb_stub
4328
4329   if $use_gdb_stub {
4330     gdb_run_cmd
4331     gdb_expect {
4332       -re ".*Breakpoint .*main .*$gdb_prompt $"\
4333               {pass "rerun to main" ; return 0}
4334       -re "$gdb_prompt $"\
4335               {fail "rerun to main" ; return 0}
4336       timeout {fail "(timeout) rerun to main" ; return 0}
4337     }
4338   } else {
4339     send_gdb "run\n"
4340     gdb_expect {
4341       -re "The program .* has been started already.*y or n. $" {
4342           send_gdb "y\n"
4343           exp_continue
4344       }
4345       -re "Starting program.*$gdb_prompt $"\
4346               {pass "rerun to main" ; return 0}
4347       -re "$gdb_prompt $"\
4348               {fail "rerun to main" ; return 0}
4349       timeout {fail "(timeout) rerun to main" ; return 0}
4350     }
4351   }
4352 }
4353
4354 # Print a message and return true if a test should be skipped
4355 # due to lack of floating point suport.
4356
4357 proc gdb_skip_float_test { msg } {
4358     if [target_info exists gdb,skip_float_tests] {
4359         verbose "Skipping test '$msg': no float tests."
4360         return 1
4361     }
4362     return 0
4363 }
4364
4365 # Print a message and return true if a test should be skipped
4366 # due to lack of stdio support.
4367
4368 proc gdb_skip_stdio_test { msg } {
4369     if [target_info exists gdb,noinferiorio] {
4370         verbose "Skipping test '$msg': no inferior i/o."
4371         return 1
4372     }
4373     return 0
4374 }
4375
4376 proc gdb_skip_bogus_test { msg } {
4377     return 0
4378 }
4379
4380 # Return true if a test should be skipped due to lack of XML support
4381 # in the host GDB.
4382 # NOTE: This must be called while gdb is *not* running.
4383
4384 gdb_caching_proc gdb_skip_xml_test {
4385     global gdb_prompt
4386     global srcdir
4387
4388     set xml_file [gdb_remote_download host "${srcdir}/gdb.xml/trivial.xml"]
4389
4390     gdb_start
4391     set xml_missing 0
4392     gdb_test_multiple "set tdesc filename $xml_file" "" {
4393         -re ".*XML support was disabled at compile time.*$gdb_prompt $" {
4394             set xml_missing 1
4395         }
4396         -re ".*$gdb_prompt $" { }
4397     }
4398     gdb_exit
4399     return $xml_missing
4400 }
4401
4402 # Return true if argv[0] is available.
4403
4404 gdb_caching_proc gdb_has_argv0 {
4405     set result 0
4406
4407     # Set up, compile, and execute a test program to check whether
4408     # argv[0] is available.
4409     set src [standard_temp_file has_argv0[pid].c]
4410     set exe [standard_temp_file has_argv0[pid].x]
4411
4412     gdb_produce_source $src {
4413         int main (int argc, char **argv) {
4414             return 0;
4415         }
4416     }
4417
4418     gdb_compile $src $exe executable {debug}
4419
4420     # Helper proc.
4421     proc gdb_has_argv0_1 { exe } {
4422         global srcdir subdir
4423         global gdb_prompt hex
4424
4425         gdb_exit
4426         gdb_start
4427         gdb_reinitialize_dir $srcdir/$subdir
4428         gdb_load "$exe"
4429
4430         # Set breakpoint on main.
4431         gdb_test_multiple "break main" "break main" {
4432             -re "Breakpoint.*${gdb_prompt} $" {
4433             }
4434             -re "${gdb_prompt} $" {
4435                 return 0
4436             }
4437         }
4438
4439         # Run to main.
4440         gdb_run_cmd
4441         gdb_test_multiple "" "run to main" {
4442             -re "Breakpoint.*${gdb_prompt} $" {
4443             }
4444             -re "${gdb_prompt} $" {
4445                 return 0
4446             }
4447         }
4448
4449         # Check whether argc is 1.
4450         gdb_test_multiple "p argc" "p argc" {
4451             -re " = 1\r\n${gdb_prompt} $" {
4452
4453                 gdb_test_multiple "p argv\[0\]" "p argv\[0\]" {
4454                     -re " = $hex \".*[file tail $exe]\"\r\n${gdb_prompt} $" {
4455                         return 1
4456                     }
4457                     -re "${gdb_prompt} $" {
4458                         return 0
4459                     }
4460                 }
4461             }
4462             -re "${gdb_prompt} $" {
4463                 return 0
4464             }
4465         }
4466         return 0
4467     }
4468
4469     set result [gdb_has_argv0_1 $exe]
4470
4471     gdb_exit
4472     file delete $src
4473     file delete $exe
4474
4475     if { !$result
4476       && ([istarget *-*-linux*]
4477           || [istarget *-*-freebsd*] || [istarget *-*-kfreebsd*]
4478           || [istarget *-*-netbsd*] || [istarget *-*-knetbsd*]
4479           || [istarget *-*-openbsd*]
4480           || [istarget *-*-darwin*]
4481           || [istarget *-*-solaris*]
4482           || [istarget *-*-aix*]
4483           || [istarget *-*-gnu*]
4484           || [istarget *-*-cygwin*] || [istarget *-*-mingw32*]
4485           || [istarget *-*-*djgpp*] || [istarget *-*-go32*]
4486           || [istarget *-wince-pe] || [istarget *-*-mingw32ce*]
4487           || [istarget *-*-symbianelf*]
4488           || [istarget *-*-osf*]
4489           || [istarget *-*-hpux*]
4490           || [istarget *-*-dicos*]
4491           || [istarget *-*-nto*]
4492           || [istarget *-*-*vms*]
4493           || [istarget *-*-lynx*178]) } {
4494         fail "argv\[0\] should be available on this target"
4495     }
4496
4497     return $result
4498 }
4499
4500 # Note: the procedure gdb_gnu_strip_debug will produce an executable called
4501 # ${binfile}.dbglnk, which is just like the executable ($binfile) but without
4502 # the debuginfo. Instead $binfile has a .gnu_debuglink section which contains
4503 # the name of a debuginfo only file. This file will be stored in the same
4504 # subdirectory.
4505
4506 # Functions for separate debug info testing
4507
4508 # starting with an executable:
4509 # foo --> original executable
4510
4511 # at the end of the process we have:
4512 # foo.stripped --> foo w/o debug info
4513 # foo.debug --> foo's debug info
4514 # foo --> like foo, but with a new .gnu_debuglink section pointing to foo.debug.
4515
4516 # Fetch the build id from the file.
4517 # Returns "" if there is none.
4518
4519 proc get_build_id { filename } {
4520     set tmp [standard_output_file "${filename}-tmp"]
4521     set objcopy_program [gdb_find_objcopy]
4522
4523     set result [catch "exec $objcopy_program -j .note.gnu.build-id -O binary $filename $tmp" output]
4524     verbose "result is $result"
4525     verbose "output is $output"
4526     if {$result == 1} {
4527         return ""
4528     }
4529     set fi [open $tmp]
4530     fconfigure $fi -translation binary
4531     # Skip the NOTE header.
4532     read $fi 16
4533     set data [read $fi]
4534     close $fi
4535     file delete $tmp
4536     if ![string compare $data ""] then {
4537         return ""
4538     }
4539     # Convert it to hex.
4540     binary scan $data H* data
4541     return $data
4542 }
4543
4544 # Return the build-id hex string (usually 160 bits as 40 hex characters)
4545 # converted to the form: .build-id/ab/cdef1234...89.debug
4546 # Return "" if no build-id found.
4547 proc build_id_debug_filename_get { filename } {
4548     set data [get_build_id $filename]
4549     if { $data == "" } {
4550         return ""
4551     }
4552     regsub {^..} $data {\0/} data
4553     return ".build-id/${data}.debug"
4554 }
4555
4556 # Create stripped files for DEST, replacing it.  If ARGS is passed, it is a
4557 # list of optional flags.  The only currently supported flag is no-main,
4558 # which removes the symbol entry for main from the separate debug file.
4559 #
4560 # Function returns zero on success.  Function will return non-zero failure code
4561 # on some targets not supporting separate debug info (such as i386-msdos).
4562
4563 proc gdb_gnu_strip_debug { dest args } {
4564
4565     # Use the first separate debug info file location searched by GDB so the
4566     # run cannot be broken by some stale file searched with higher precedence.
4567     set debug_file "${dest}.debug"
4568
4569     set strip_to_file_program [transform strip]
4570     set objcopy_program [gdb_find_objcopy]
4571
4572     set debug_link [file tail $debug_file]
4573     set stripped_file "${dest}.stripped"
4574
4575     # Get rid of the debug info, and store result in stripped_file
4576     # something like gdb/testsuite/gdb.base/blah.stripped.
4577     set result [catch "exec $strip_to_file_program --strip-debug ${dest} -o ${stripped_file}" output]
4578     verbose "result is $result"
4579     verbose "output is $output"
4580     if {$result == 1} {
4581       return 1
4582     }
4583
4584     # Workaround PR binutils/10802:
4585     # Preserve the 'x' bit also for PIEs (Position Independent Executables).
4586     set perm [file attributes ${dest} -permissions]
4587     file attributes ${stripped_file} -permissions $perm
4588
4589     # Get rid of everything but the debug info, and store result in debug_file
4590     # This will be in the .debug subdirectory, see above.
4591     set result [catch "exec $strip_to_file_program --only-keep-debug ${dest} -o ${debug_file}" output]
4592     verbose "result is $result"
4593     verbose "output is $output"
4594     if {$result == 1} {
4595       return 1
4596     }
4597
4598     # If no-main is passed, strip the symbol for main from the separate
4599     # file.  This is to simulate the behavior of elfutils's eu-strip, which
4600     # leaves the symtab in the original file only.  There's no way to get
4601     # objcopy or strip to remove the symbol table without also removing the
4602     # debugging sections, so this is as close as we can get.
4603     if { [llength $args] == 1 && [lindex $args 0] == "no-main" } {
4604         set result [catch "exec $objcopy_program -N main ${debug_file} ${debug_file}-tmp" output]
4605         verbose "result is $result"
4606         verbose "output is $output"
4607         if {$result == 1} {
4608             return 1
4609         }
4610         file delete "${debug_file}"
4611         file rename "${debug_file}-tmp" "${debug_file}"
4612     }
4613
4614     # Link the two previous output files together, adding the .gnu_debuglink
4615     # section to the stripped_file, containing a pointer to the debug_file,
4616     # save the new file in dest.
4617     # This will be the regular executable filename, in the usual location.
4618     set result [catch "exec $objcopy_program --add-gnu-debuglink=${debug_file} ${stripped_file} ${dest}" output]
4619     verbose "result is $result"
4620     verbose "output is $output"
4621     if {$result == 1} {
4622       return 1
4623     }
4624
4625     # Workaround PR binutils/10802:
4626     # Preserve the 'x' bit also for PIEs (Position Independent Executables).
4627     set perm [file attributes ${stripped_file} -permissions]
4628     file attributes ${dest} -permissions $perm
4629
4630     return 0
4631 }
4632
4633 # Test the output of GDB_COMMAND matches the pattern obtained
4634 # by concatenating all elements of EXPECTED_LINES.  This makes
4635 # it possible to split otherwise very long string into pieces.
4636 # If third argument is not empty, it's used as the name of the
4637 # test to be printed on pass/fail.
4638 proc help_test_raw { gdb_command expected_lines args } {
4639     set message $gdb_command
4640     if [llength $args]>0 then {
4641         set message [lindex $args 0]
4642     } 
4643     set expected_output [join $expected_lines ""]
4644     gdb_test "${gdb_command}" "${expected_output}" $message
4645 }
4646
4647 # Test the output of "help COMMAND_CLASS". EXPECTED_INITIAL_LINES
4648 # are regular expressions that should match the beginning of output,
4649 # before the list of commands in that class.  The presence of 
4650 # command list and standard epilogue will be tested automatically.
4651 proc test_class_help { command_class expected_initial_lines args } {
4652     set l_stock_body {
4653         "List of commands\:.*\[\r\n\]+"
4654         "Type \"help\" followed by command name for full documentation\.\[\r\n\]+"
4655         "Type \"apropos word\" to search for commands related to \"word\"\.[\r\n\]+"
4656         "Command name abbreviations are allowed if unambiguous\." 
4657     }
4658     set l_entire_body [concat $expected_initial_lines $l_stock_body]
4659
4660     eval [list help_test_raw "help ${command_class}" $l_entire_body] $args
4661 }
4662
4663 # COMMAND_LIST should have either one element -- command to test, or
4664 # two elements -- abbreviated command to test, and full command the first
4665 # element is abbreviation of.
4666 # The command must be a prefix command.  EXPECTED_INITIAL_LINES
4667 # are regular expressions that should match the beginning of output,
4668 # before the list of subcommands.  The presence of 
4669 # subcommand list and standard epilogue will be tested automatically.
4670 proc test_prefix_command_help { command_list expected_initial_lines args } {
4671     set command [lindex $command_list 0]   
4672     if {[llength $command_list]>1} {        
4673         set full_command [lindex $command_list 1]
4674     } else {
4675         set full_command $command
4676     }
4677     # Use 'list' and not just {} because we want variables to
4678     # be expanded in this list.
4679     set l_stock_body [list\
4680          "List of $full_command subcommands\:.*\[\r\n\]+"\
4681          "Type \"help $full_command\" followed by $full_command subcommand name for full documentation\.\[\r\n\]+"\
4682          "Type \"apropos word\" to search for commands related to \"word\"\.\[\r\n\]+"\
4683          "Command name abbreviations are allowed if unambiguous\."]
4684     set l_entire_body [concat $expected_initial_lines $l_stock_body]
4685     if {[llength $args]>0} {
4686         help_test_raw "help ${command}" $l_entire_body [lindex $args 0]
4687     } else {
4688         help_test_raw "help ${command}" $l_entire_body
4689     }
4690 }
4691
4692 # Build executable named EXECUTABLE from specifications that allow
4693 # different options to be passed to different sub-compilations.
4694 # TESTNAME is the name of the test; this is passed to 'untested' if
4695 # something fails.
4696 # OPTIONS is passed to the final link, using gdb_compile.  If OPTIONS
4697 # contains the option "pthreads", then gdb_compile_pthreads is used.
4698 # ARGS is a flat list of source specifications, of the form:
4699 #    { SOURCE1 OPTIONS1 [ SOURCE2 OPTIONS2 ]... }
4700 # Each SOURCE is compiled to an object file using its OPTIONS,
4701 # using gdb_compile.
4702 # Returns 0 on success, -1 on failure.
4703 proc build_executable_from_specs {testname executable options args} {
4704     global subdir
4705     global srcdir
4706
4707     set binfile [standard_output_file $executable]
4708
4709     set info_options ""
4710     if { [lsearch -exact $options "c++"] >= 0 } {
4711         set info_options "c++"
4712     }
4713     if [get_compiler_info ${info_options}] {
4714         return -1
4715     }
4716
4717     set func gdb_compile
4718     set func_index [lsearch -regexp $options {^(pthreads|shlib|shlib_pthreads)$}]
4719     if {$func_index != -1} {
4720         set func "${func}_[lindex $options $func_index]"
4721     }
4722
4723     # gdb_compile_shlib and gdb_compile_shlib_pthreads do not use the 3rd
4724     # parameter.  They also requires $sources while gdb_compile and
4725     # gdb_compile_pthreads require $objects.  Moreover they ignore any options.
4726     if [string match gdb_compile_shlib* $func] {
4727         set sources_path {}
4728         foreach {s local_options} $args {
4729             if { [regexp "^/" "$s"] } then {
4730                 lappend sources_path "$s"
4731             } else {
4732                 lappend sources_path "$srcdir/$subdir/$s"
4733             }
4734         }
4735         set ret [$func $sources_path "${binfile}" $options]
4736     } else {
4737         set objects {}
4738         set i 0
4739         foreach {s local_options} $args {
4740             if { ! [regexp "^/" "$s"] } then {
4741                 set s "$srcdir/$subdir/$s"
4742             }
4743             if  { [gdb_compile "${s}" "${binfile}${i}.o" object $local_options] != "" } {
4744                 untested $testname
4745                 return -1
4746             }
4747             lappend objects "${binfile}${i}.o"
4748             incr i
4749         }
4750         set ret [$func $objects "${binfile}" executable $options]
4751     }
4752     if  { $ret != "" } {
4753         untested $testname
4754         return -1
4755     }
4756
4757     return 0
4758 }
4759
4760 # Build executable named EXECUTABLE, from SOURCES.  If SOURCES are not
4761 # provided, uses $EXECUTABLE.c.  The TESTNAME paramer is the name of test
4762 # to pass to untested, if something is wrong.  OPTIONS are passed
4763 # to gdb_compile directly.
4764 proc build_executable { testname executable {sources ""} {options {debug}} } {
4765     if {[llength $sources]==0} {
4766         set sources ${executable}.c
4767     }
4768
4769     set arglist [list $testname $executable $options]
4770     foreach source $sources {
4771         lappend arglist $source $options
4772     }
4773
4774     return [eval build_executable_from_specs $arglist]
4775 }
4776
4777 # Starts fresh GDB binary and loads EXECUTABLE into GDB. EXECUTABLE is
4778 # the basename of the binary.
4779 # The return value is 0 for success, -1 for failure.
4780 proc clean_restart { executable } {
4781     global srcdir
4782     global subdir
4783     set binfile [standard_output_file ${executable}]
4784
4785     gdb_exit
4786     gdb_start
4787     gdb_reinitialize_dir $srcdir/$subdir
4788     return [gdb_load ${binfile}]
4789 }
4790
4791 # Prepares for testing by calling build_executable_full, then
4792 # clean_restart.
4793 # TESTNAME is the name of the test.
4794 # Each element in ARGS is a list of the form
4795 #    { EXECUTABLE OPTIONS SOURCE_SPEC... }
4796 # These are passed to build_executable_from_specs, which see.
4797 # The last EXECUTABLE is passed to clean_restart.
4798 # Returns 0 on success, non-zero on failure.
4799 proc prepare_for_testing_full {testname args} {
4800     foreach spec $args {
4801         if {[eval build_executable_from_specs [list $testname] $spec] == -1} {
4802             return -1
4803         }
4804         set executable [lindex $spec 0]
4805     }
4806     clean_restart $executable
4807     return 0
4808 }
4809
4810 # Prepares for testing, by calling build_executable, and then clean_restart.
4811 # Please refer to build_executable for parameter description.
4812 proc prepare_for_testing { testname executable {sources ""} {options {debug}}} {
4813
4814     if {[build_executable $testname $executable $sources $options] == -1} {
4815         return -1
4816     }
4817     clean_restart $executable
4818
4819     return 0
4820 }
4821
4822 proc get_valueof { fmt exp default } {
4823     global gdb_prompt
4824
4825     set test "get valueof \"${exp}\""
4826     set val ${default}
4827     gdb_test_multiple "print${fmt} ${exp}" "$test" {
4828         -re "\\$\[0-9\]* = (.*)\[\r\n\]*$gdb_prompt $" {
4829             set val $expect_out(1,string)
4830             pass "$test ($val)"
4831         }
4832         timeout {
4833             fail "$test (timeout)"
4834         }
4835     }
4836     return ${val}
4837 }
4838
4839 proc get_integer_valueof { exp default } {
4840     global gdb_prompt
4841
4842     set test "get integer valueof \"${exp}\""
4843     set val ${default}
4844     gdb_test_multiple "print /d ${exp}" "$test" {
4845         -re "\\$\[0-9\]* = (\[-\]*\[0-9\]*).*$gdb_prompt $" {
4846             set val $expect_out(1,string)
4847             pass "$test ($val)"
4848         }
4849         timeout {
4850             fail "$test (timeout)"
4851         }
4852     }
4853     return ${val}
4854 }
4855
4856 proc get_hexadecimal_valueof { exp default } {
4857     global gdb_prompt
4858     send_gdb "print /x ${exp}\n"
4859     set test "get hexadecimal valueof \"${exp}\""
4860     gdb_expect {
4861         -re "\\$\[0-9\]* = (0x\[0-9a-zA-Z\]+).*$gdb_prompt $" {
4862             set val $expect_out(1,string)
4863             pass "$test"
4864         }
4865         timeout {
4866             set val ${default}
4867             fail "$test (timeout)"
4868         }
4869     }
4870     return ${val}
4871 }
4872
4873 proc get_sizeof { type default } {
4874     return [get_integer_valueof "sizeof (${type})" $default]
4875 }
4876
4877 proc get_target_charset { } {
4878     global gdb_prompt
4879
4880     gdb_test_multiple "show target-charset" "" {
4881         -re "The target character set is \"auto; currently (\[^\"\]*)\".*$gdb_prompt $" {
4882             return $expect_out(1,string)
4883         }
4884         -re "The target character set is \"(\[^\"\]*)\".*$gdb_prompt $" {
4885             return $expect_out(1,string)
4886         }
4887     }
4888
4889     # Pick a reasonable default.
4890     warning "Unable to read target-charset."
4891     return "UTF-8"
4892 }
4893
4894 # Get the current value for remotetimeout and return it.
4895 proc get_remotetimeout { } {
4896     global gdb_prompt
4897     global decimal
4898
4899     gdb_test_multiple "show remotetimeout" "" {
4900         -re "Timeout limit to wait for target to respond is ($decimal).*$gdb_prompt $" {
4901             return $expect_out(1,string)
4902         }
4903     }
4904
4905     # Pick the default that gdb uses
4906     warning "Unable to read remotetimeout"
4907     return 300
4908 }
4909
4910 # Set the remotetimeout to the specified timeout.  Nothing is returned.
4911 proc set_remotetimeout { timeout } {
4912     global gdb_prompt
4913
4914     gdb_test_multiple "set remotetimeout $timeout" "" {
4915         -re "$gdb_prompt $" {
4916             verbose "Set remotetimeout to $timeout\n"
4917         }
4918     }
4919 }
4920
4921 # ROOT and FULL are file names.  Returns the relative path from ROOT
4922 # to FULL.  Note that FULL must be in a subdirectory of ROOT.
4923 # For example, given ROOT = /usr/bin and FULL = /usr/bin/ls, this
4924 # will return "ls".
4925
4926 proc relative_filename {root full} {
4927     set root_split [file split $root]
4928     set full_split [file split $full]
4929
4930     set len [llength $root_split]
4931
4932     if {[eval file join $root_split]
4933         != [eval file join [lrange $full_split 0 [expr {$len - 1}]]]} {
4934         error "$full not a subdir of $root"
4935     }
4936
4937     return [eval file join [lrange $full_split $len end]]
4938 }
4939
4940 # Log gdb command line and script if requested.
4941 if {[info exists TRANSCRIPT]} {
4942   rename send_gdb real_send_gdb
4943   rename remote_spawn real_remote_spawn
4944   rename remote_close real_remote_close
4945
4946   global gdb_transcript
4947   set gdb_transcript ""
4948
4949   global gdb_trans_count
4950   set gdb_trans_count 1
4951
4952   proc remote_spawn {args} {
4953     global gdb_transcript gdb_trans_count outdir
4954
4955     if {$gdb_transcript != ""} {
4956       close $gdb_transcript
4957     }
4958     set gdb_transcript [open [file join $outdir transcript.$gdb_trans_count] w]
4959     puts $gdb_transcript [lindex $args 1]
4960     incr gdb_trans_count
4961
4962     return [uplevel real_remote_spawn $args]
4963   }
4964
4965   proc remote_close {args} {
4966     global gdb_transcript
4967
4968     if {$gdb_transcript != ""} {
4969       close $gdb_transcript
4970       set gdb_transcript ""
4971     }
4972
4973     return [uplevel real_remote_close $args]
4974   }
4975
4976   proc send_gdb {args} {
4977     global gdb_transcript
4978
4979     if {$gdb_transcript != ""} {
4980       puts -nonewline $gdb_transcript [lindex $args 0]
4981     }
4982
4983     return [uplevel real_send_gdb $args]
4984   }
4985 }
4986
4987 # If GDB_PARALLEL exists, then set up the parallel-mode directories.
4988 if {[info exists GDB_PARALLEL]} {
4989     if {[is_remote host]} {
4990         unset GDB_PARALLEL
4991     } else {
4992         file mkdir outputs temp cache
4993     }
4994 }
4995
4996 proc core_find {binfile {deletefiles {}} {arg ""}} {
4997     global objdir subdir
4998
4999     set destcore "$binfile.core"
5000     file delete $destcore
5001
5002     # Create a core file named "$destcore" rather than just "core", to
5003     # avoid problems with sys admin types that like to regularly prune all
5004     # files named "core" from the system.
5005     #
5006     # Arbitrarily try setting the core size limit to "unlimited" since
5007     # this does not hurt on systems where the command does not work and
5008     # allows us to generate a core on systems where it does.
5009     #
5010     # Some systems append "core" to the name of the program; others append
5011     # the name of the program to "core"; still others (like Linux, as of
5012     # May 2003) create cores named "core.PID".  In the latter case, we
5013     # could have many core files lying around, and it may be difficult to
5014     # tell which one is ours, so let's run the program in a subdirectory.
5015     set found 0
5016     set coredir [standard_output_file coredir.[getpid]]
5017     file mkdir $coredir
5018     catch "system \"(cd ${coredir}; ulimit -c unlimited; ${binfile} ${arg}; true) >/dev/null 2>&1\""
5019     #      remote_exec host "${binfile}"
5020     foreach i "${coredir}/core ${coredir}/core.coremaker.c ${binfile}.core" {
5021         if [remote_file build exists $i] {
5022             remote_exec build "mv $i $destcore"
5023             set found 1
5024         }
5025     }
5026     # Check for "core.PID".
5027     if { $found == 0 } {
5028         set names [glob -nocomplain -directory $coredir core.*]
5029         if {[llength $names] == 1} {
5030             set corefile [file join $coredir [lindex $names 0]]
5031             remote_exec build "mv $corefile $destcore"
5032             set found 1
5033         }
5034     }
5035     if { $found == 0 } {
5036         # The braindamaged HPUX shell quits after the ulimit -c above
5037         # without executing ${binfile}.  So we try again without the
5038         # ulimit here if we didn't find a core file above.
5039         # Oh, I should mention that any "braindamaged" non-Unix system has
5040         # the same problem. I like the cd bit too, it's really neat'n stuff.
5041         catch "system \"(cd ${objdir}/${subdir}; ${binfile}; true) >/dev/null 2>&1\""
5042         foreach i "${objdir}/${subdir}/core ${objdir}/${subdir}/core.coremaker.c ${binfile}.core" {
5043             if [remote_file build exists $i] {
5044                 remote_exec build "mv $i $destcore"
5045                 set found 1
5046             }
5047         }
5048     }
5049
5050     # Try to clean up after ourselves. 
5051     foreach deletefile $deletefiles {
5052         remote_file build delete [file join $coredir $deletefile]
5053     }
5054     remote_exec build "rmdir $coredir"
5055         
5056     if { $found == 0  } {
5057         warning "can't generate a core file - core tests suppressed - check ulimit -c"
5058         return ""
5059     }
5060     return $destcore
5061 }
5062
5063 # gdb_target_symbol_prefix_flags returns a string that can be added
5064 # to gdb_compile options to define SYMBOL_PREFIX macro value
5065 # symbol_prefix_flags returns a string that can be added
5066 # for targets that use underscore as symbol prefix.
5067 # TODO: find out automatically if the target needs this.
5068
5069 proc gdb_target_symbol_prefix_flags {} {
5070     if { [istarget "i?86-*-cygwin*"] || [istarget "i?86-*-mingw*"]
5071          || [istarget "*-*-msdosdjgpp*"] || [istarget "*-*-go32*"] } {
5072         return "additional_flags=-DSYMBOL_PREFIX=\"_\""
5073     } else {
5074         return ""
5075     }
5076 }
5077
5078 # A wrapper for 'remote_exec host' that passes or fails a test.
5079 # Returns 0 if all went well, nonzero on failure.
5080 # TEST is the name of the test, other arguments are as for remote_exec.
5081
5082 proc run_on_host { test program args } {
5083     verbose -log "run_on_host: $program $args"
5084     # remote_exec doesn't work properly if the output is set but the
5085     # input is the empty string -- so replace an empty input with
5086     # /dev/null.
5087     if {[llength $args] > 1 && [lindex $args 1] == ""} {
5088         set args [lreplace $args 1 1 "/dev/null"]
5089     }
5090     set result [eval remote_exec host [list $program] $args]
5091     verbose "result is $result"
5092     set status [lindex $result 0]
5093     set output [lindex $result 1]
5094     if {$status == 0} {
5095         pass $test
5096         return 0
5097     } else {
5098         verbose -log "run_on_host failed: $output"
5099         fail $test
5100         return -1
5101     }
5102 }
5103
5104 # Return non-zero if "board_info debug_flags" mentions Fission.
5105 # http://gcc.gnu.org/wiki/DebugFission
5106 # Fission doesn't support everything yet.
5107 # This supports working around bug 15954.
5108
5109 proc using_fission { } {
5110     set debug_flags [board_info [target_info name] debug_flags]
5111     return [regexp -- "-gsplit-dwarf" $debug_flags]
5112 }
5113
5114 # Search the caller's ARGS list and set variables according to the list of
5115 # valid options described by ARGSET.
5116 #
5117 # The first member of each one- or two-element list in ARGSET defines the
5118 # name of a variable that will be added to the caller's scope.
5119 #
5120 # If only one element is given to describe an option, it the value is
5121 # 0 if the option is not present in (the caller's) ARGS or 1 if
5122 # it is.
5123 #
5124 # If two elements are given, the second element is the default value of
5125 # the variable.  This is then overwritten if the option exists in ARGS.
5126 #
5127 # Any parse_args elements in (the caller's) ARGS will be removed, leaving
5128 # any optional components.
5129
5130 # Example:
5131 # proc myproc {foo args} {
5132 #  parse_args {{bar} {baz "abc"} {qux}}
5133 #    # ...
5134 # }
5135 # myproc ABC -bar -baz DEF peanut butter
5136 # will define the following variables in myproc:
5137 # foo (=ABC), bar (=1), baz (=DEF), and qux (=0)
5138 # args will be the list {peanut butter}
5139
5140 proc parse_args { argset } {
5141     upvar args args
5142
5143     foreach argument $argset {
5144         if {[llength $argument] == 1} {
5145             # No default specified, so we assume that we should set
5146             # the value to 1 if the arg is present and 0 if it's not.
5147             # It is assumed that no value is given with the argument.
5148             set result [lsearch -exact $args "-$argument"]
5149             if {$result != -1} then {
5150                 uplevel 1 [list set $argument 1]
5151                 set args [lreplace $args $result $result]
5152             } else {
5153                 uplevel 1 [list set $argument 0]
5154             }
5155         } elseif {[llength $argument] == 2} {
5156             # There are two items in the argument.  The second is a
5157             # default value to use if the item is not present.
5158             # Otherwise, the variable is set to whatever is provided
5159             # after the item in the args.
5160             set arg [lindex $argument 0]
5161             set result [lsearch -exact $args "-[lindex $arg 0]"]
5162             if {$result != -1} then {
5163                 uplevel 1 [list set $arg [lindex $args [expr $result+1]]]
5164                 set args [lreplace $args $result [expr $result+1]]
5165             } else {
5166                 uplevel 1 [list set $arg [lindex $argument 1]]
5167             }
5168         } else {
5169             error "Badly formatted argument \"$argument\" in argument set"
5170         }
5171     }
5172
5173     # The remaining args should be checked to see that they match the
5174     # number of items expected to be passed into the procedure...
5175 }
5176
5177 # Capture the output of COMMAND in a string ignoring PREFIX; return that string.
5178 proc capture_command_output { command prefix } {
5179     global gdb_prompt
5180     global expect_out
5181
5182     set output_string ""
5183     gdb_test_multiple "$command" "capture_command_output for $command" {
5184         -re "${command}\[\r\n\]+${prefix}(.*)\[\r\n\]+$gdb_prompt $" {
5185             set output_string $expect_out(1,string)
5186         }
5187     }
5188     return $output_string
5189 }
5190
5191 # A convenience function that joins all the arguments together, with a
5192 # regexp that matches exactly one end of line in between each argument.
5193 # This function is ideal to write the expected output of a GDB command
5194 # that generates more than a couple of lines, as this allows us to write
5195 # each line as a separate string, which is easier to read by a human
5196 # being.
5197
5198 proc multi_line { args } {
5199     return [join $args "\r\n"]
5200 }
5201
5202 # Always load compatibility stuff.
5203 load_lib future.exp