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