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