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