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