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