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