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