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