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