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