Fix "overflow in PLT unwind data" warning
[deliverable/binutils-gdb.git] / gdb / testsuite / lib / mi-support.exp
CommitLineData
ecd75fc8 1# Copyright 1999-2014 Free Software Foundation, Inc.
fb40c209
AC
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
fb40c209 6# (at your option) any later version.
e22f8b7c 7#
fb40c209
AC
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#
fb40c209 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/>.
fb40c209 15
fb40c209
AC
16# This file was based on a file written by Fred Fish. (fnf@cygnus.com)
17
18# Test setup routines that work with the MI interpreter.
19
20# The variable mi_gdb_prompt is a regexp which matches the gdb mi prompt.
21# Set it if it is not already set.
22global mi_gdb_prompt
23if ![info exists mi_gdb_prompt] then {
24 set mi_gdb_prompt "\[(\]gdb\[)\] \r\n"
25}
26
ecd3fd0f
BR
27global mi_inferior_spawn_id
28global mi_inferior_tty_name
29
fb40c209
AC
30set MIFLAGS "-i=mi"
31
84a02e58 32set thread_selected_re "=thread-selected,id=\"\[0-9\]+\"\r\n"
bbec57e4 33set gdbindex_warning_re "&\"warning: Skipping \[^\r\n\]+ \.gdb_index section in \[^\r\n\]+\"\r\n(?:&\"\\\\n\"\r\n)?"
481860b3 34set library_loaded_re "=library-loaded\[^\n\]+\"\r\n(?:$gdbindex_warning_re)?"
ca539be8 35set breakpoint_re "=(?:breakpoint-created|breakpoint-deleted)\[^\n\]+\"\r\n"
66bb093b 36
fb40c209
AC
37#
38# mi_gdb_exit -- exit the GDB, killing the target program if necessary
39#
40proc mi_gdb_exit {} {
41 catch mi_uncatched_gdb_exit
42}
43
44proc mi_uncatched_gdb_exit {} {
45 global GDB
6b8ce727 46 global INTERNAL_GDBFLAGS GDBFLAGS
fb40c209 47 global verbose
4ec70201 48 global gdb_spawn_id
fb40c209
AC
49 global gdb_prompt
50 global mi_gdb_prompt
51 global MIFLAGS
52
4ec70201 53 gdb_stop_suppressing_tests
fb40c209
AC
54
55 if { [info procs sid_exit] != "" } {
56 sid_exit
57 }
58
59 if ![info exists gdb_spawn_id] {
4ec70201 60 return
fb40c209
AC
61 }
62
6b8ce727 63 verbose "Quitting $GDB $INTERNAL_GDBFLAGS $GDBFLAGS $MIFLAGS"
fb40c209
AC
64
65 if { [is_remote host] && [board_info host exists fileid] } {
4ec70201 66 send_gdb "999-gdb-exit\n"
fb40c209
AC
67 gdb_expect 10 {
68 -re "y or n" {
4ec70201
PA
69 send_gdb "y\n"
70 exp_continue
fb40c209 71 }
4392c534
YQ
72 -re "Undefined command.*$gdb_prompt $" {
73 send_gdb "quit\n"
4ec70201 74 exp_continue
4392c534 75 }
fb40c209
AC
76 -re "DOSEXIT code" { }
77 default { }
78 }
79 }
80
81 if ![is_remote host] {
4ec70201 82 remote_close host
fb40c209
AC
83 }
84 unset gdb_spawn_id
85}
86
87#
79732189 88# default_mi_gdb_start [INFERIOR_PTY] -- start gdb running, default procedure
ecd3fd0f
BR
89#
90# INFERIOR_PTY should be set to separate-inferior-tty to have the inferior work
91# with it's own PTY. If set to same-inferior-tty, the inferior shares GDB's PTY.
92# The default value is same-inferior-tty.
fb40c209
AC
93#
94# When running over NFS, particularly if running many simultaneous
95# tests on different hosts all using the same server, things can
96# get really slow. Give gdb at least 3 minutes to start up.
97#
79732189 98proc default_mi_gdb_start { args } {
e11ac3a3 99 global verbose use_gdb_stub
fb40c209 100 global GDB
6b8ce727 101 global INTERNAL_GDBFLAGS GDBFLAGS
fb40c209
AC
102 global gdb_prompt
103 global mi_gdb_prompt
104 global timeout
4ec70201 105 global gdb_spawn_id
fb40c209
AC
106 global MIFLAGS
107
4ec70201 108 gdb_stop_suppressing_tests
ecd3fd0f
BR
109 set inferior_pty no-tty
110
e11ac3a3
JK
111 # Set the default value, it may be overriden later by specific testfile.
112 set use_gdb_stub [target_info exists use_gdb_stub]
113
ecd3fd0f
BR
114 if { [llength $args] == 1} {
115 set inferior_pty [lindex $args 0]
116 }
117
118 set separate_inferior_pty [string match $inferior_pty separate-inferior-tty]
fb40c209 119
1759b3c3
AC
120 # Start SID.
121 if { [info procs sid_start] != "" } {
122 verbose "Spawning SID"
123 sid_start
124 }
125
6b8ce727 126 verbose "Spawning $GDB $INTERNAL_GDBFLAGS $GDBFLAGS $MIFLAGS"
fb40c209
AC
127
128 if [info exists gdb_spawn_id] {
ae59b1da 129 return 0
fb40c209
AC
130 }
131
132 if ![is_remote host] {
133 if { [which $GDB] == 0 } then {
134 perror "$GDB does not exist."
135 exit 1
136 }
137 }
ecd3fd0f
BR
138
139 # Create the new PTY for the inferior process.
140 if { $separate_inferior_pty } {
141 spawn -pty
142 global mi_inferior_spawn_id
143 global mi_inferior_tty_name
144 set mi_inferior_spawn_id $spawn_id
145 set mi_inferior_tty_name $spawn_out(slave,name)
146 }
147
4ec70201 148 set res [remote_spawn host "$GDB $INTERNAL_GDBFLAGS $GDBFLAGS $MIFLAGS [host_info gdb_opts]"]
fb40c209
AC
149 if { $res < 0 || $res == "" } {
150 perror "Spawning $GDB failed."
ae59b1da 151 return 1
fb40c209
AC
152 }
153 gdb_expect {
1f312e79
JJ
154 -re "~\"GNU.*\r\n~\".*$mi_gdb_prompt$" {
155 # We have a new format mi startup prompt. If we are
156 # running mi1, then this is an error as we should be
157 # using the old-style prompt.
158 if { $MIFLAGS == "-i=mi1" } {
4392c534
YQ
159 perror "(mi startup) Got unexpected new mi prompt."
160 remote_close host
161 return -1
1f312e79
JJ
162 }
163 verbose "GDB initialized."
164 }
165 -re "\[^~\].*$mi_gdb_prompt$" {
166 # We have an old format mi startup prompt. If we are
167 # not running mi1, then this is an error as we should be
168 # using the new-style prompt.
169 if { $MIFLAGS != "-i=mi1" } {
4392c534
YQ
170 perror "(mi startup) Got unexpected old mi prompt."
171 remote_close host
172 return -1
1f312e79 173 }
d20bf2e8 174 verbose "GDB initialized."
fb40c209 175 }
76c520e0
AC
176 -re ".*unrecognized option.*for a complete list of options." {
177 untested "Skip mi tests (not compiled with mi support)."
4ec70201 178 remote_close host
ae59b1da 179 return -1
76c520e0 180 }
7d76bd60
MK
181 -re ".*Interpreter `mi' unrecognized." {
182 untested "Skip mi tests (not compiled with mi support)."
4ec70201 183 remote_close host
ae59b1da 184 return -1
7d76bd60 185 }
fb40c209
AC
186 timeout {
187 perror "(timeout) GDB never initialized after 10 seconds."
4ec70201 188 remote_close host
fb40c209
AC
189 return -1
190 }
191 }
4ec70201 192 set gdb_spawn_id -1
fb40c209
AC
193
194 # FIXME: mi output does not go through pagers, so these can be removed.
195 # force the height to "unlimited", so no pagers get used
196 send_gdb "100-gdb-set height 0\n"
197 gdb_expect 10 {
4392c534 198 -re ".*100-gdb-set height 0\r\n100\\\^done\r\n$mi_gdb_prompt$" {
fb40c209
AC
199 verbose "Setting height to 0." 2
200 }
201 timeout {
202 warning "Couldn't set the height to 0"
203 }
204 }
205 # force the width to "unlimited", so no wraparound occurs
206 send_gdb "101-gdb-set width 0\n"
207 gdb_expect 10 {
208 -re ".*101-gdb-set width 0\r\n101\\\^done\r\n$mi_gdb_prompt$" {
209 verbose "Setting width to 0." 2
210 }
211 timeout {
212 warning "Couldn't set the width to 0."
213 }
214 }
ecd3fd0f
BR
215 # If allowing the inferior to have its own PTY then assign the inferior
216 # its own terminal device here.
217 if { $separate_inferior_pty } {
218 send_gdb "102-inferior-tty-set $mi_inferior_tty_name\n"
219 gdb_expect 10 {
220 -re ".*102\\\^done\r\n$mi_gdb_prompt$" {
221 verbose "redirect inferior output to new terminal device."
222 }
223 timeout {
4392c534 224 warning "Couldn't redirect inferior output." 2
ecd3fd0f 225 }
4392c534 226 }
ecd3fd0f 227 }
fb40c209 228
fcdfa280 229 mi_detect_async
f7f9a841 230
ae59b1da 231 return 0
fb40c209
AC
232}
233
79732189
AR
234#
235# Overridable function. You can override this function in your
236# baseboard file.
4392c534 237#
79732189
AR
238proc mi_gdb_start { args } {
239 return [default_mi_gdb_start $args]
240}
241
fb40c209
AC
242# Many of the tests depend on setting breakpoints at various places and
243# running until that breakpoint is reached. At times, we want to start
244# with a clean-slate with respect to breakpoints, so this utility proc
245# lets us do this without duplicating this code everywhere.
246#
247
248proc mi_delete_breakpoints {} {
249 global mi_gdb_prompt
250
251# FIXME: The mi operation won't accept a prompt back and will use the 'all' arg
252 send_gdb "102-break-delete\n"
253 gdb_expect 30 {
254 -re "Delete all breakpoints.*y or n.*$" {
4ec70201 255 send_gdb "y\n"
fb40c209 256 exp_continue
4392c534 257 }
39fb8e9e 258 -re "102-break-delete\r\n102\\\^done\r\n$mi_gdb_prompt$" {
4392c534 259 # This happens if there were no breakpoints
fb40c209 260 }
f1c8a949 261 timeout { perror "Delete all breakpoints in mi_delete_breakpoints (timeout)" ; return }
fb40c209
AC
262 }
263
264# The correct output is not "No breakpoints or watchpoints." but an
265# empty BreakpointTable. Also, a query is not acceptable with mi.
266 send_gdb "103-break-list\n"
267 gdb_expect 30 {
268 -re "103-break-list\r\n103\\\^done,BreakpointTable=\{\}\r\n$mi_gdb_prompt$" {}
6f3f3097 269 -re "103-break-list\r\n103\\\^done,BreakpointTable=\{nr_rows=\".\",nr_cols=\".\",hdr=\\\[\{width=\".*\",alignment=\".*\",col_name=\"number\",colhdr=\"Num\"\}.*colhdr=\"Type\".*colhdr=\"Disp\".*colhdr=\"Enb\".*colhdr=\"Address\".*colhdr=\"What\".*\\\],body=\\\[\\\]\}\r\n$mi_gdb_prompt$" {}
fb40c209
AC
270 -re "103-break-list\r\n103\\\^doneNo breakpoints or watchpoints.\r\n\r\n$mi_gdb_prompt$" {warning "Unexpected console text received"}
271 -re "$mi_gdb_prompt$" { perror "Breakpoints not deleted" ; return }
272 -re "Delete all breakpoints.*or n.*$" {
4ec70201
PA
273 warning "Unexpected prompt for breakpoints deletion"
274 send_gdb "y\n"
fb40c209
AC
275 exp_continue
276 }
277 timeout { perror "-break-list (timeout)" ; return }
278 }
279}
280
281proc mi_gdb_reinitialize_dir { subdir } {
282 global mi_gdb_prompt
da81390b 283 global MIFLAGS
fb40c209
AC
284
285 global suppress_flag
286 if { $suppress_flag } {
287 return
288 }
289
290 if [is_remote host] {
ae59b1da 291 return ""
fb40c209
AC
292 }
293
da81390b
JJ
294 if { $MIFLAGS == "-i=mi1" } {
295 send_gdb "104-environment-directory\n"
296 gdb_expect 60 {
fb40c209 297 -re ".*Reinitialize source path to empty.*y or n. " {
4392c534 298 warning "Got confirmation prompt for dir reinitialization."
fb40c209
AC
299 send_gdb "y\n"
300 gdb_expect 60 {
301 -re "$mi_gdb_prompt$" {}
4392c534 302 timeout {error "Dir reinitialization failed (timeout)"}
fb40c209
AC
303 }
304 }
305 -re "$mi_gdb_prompt$" {}
4392c534 306 timeout {error "Dir reinitialization failed (timeout)"}
da81390b
JJ
307 }
308 } else {
4392c534
YQ
309 send_gdb "104-environment-directory -r\n"
310 gdb_expect 60 {
311 -re "104\\\^done,source-path=.*\r\n$mi_gdb_prompt$" {}
312 -re "$mi_gdb_prompt$" {}
313 timeout {error "Dir reinitialization failed (timeout)"}
da81390b 314 }
fb40c209
AC
315 }
316
317 send_gdb "105-environment-directory $subdir\n"
318 gdb_expect 60 {
319 -re "Source directories searched.*$mi_gdb_prompt$" {
320 verbose "Dir set to $subdir"
321 }
da81390b 322 -re "105\\\^done.*\r\n$mi_gdb_prompt$" {
4392c534 323 # FIXME: We return just the prompt for now.
fb40c209
AC
324 verbose "Dir set to $subdir"
325 # perror "Dir \"$subdir\" failed."
326 }
327 }
328}
329
da6012e5
DJ
330# Send GDB the "target" command.
331# FIXME: Some of these patterns are not appropriate for MI. Based on
332# config/monitor.exp:gdb_target_command.
333proc mi_gdb_target_cmd { targetname serialport } {
334 global mi_gdb_prompt
335
ef783a7d 336 set serialport_re [string_to_regexp $serialport]
da6012e5
DJ
337 for {set i 1} {$i <= 3} {incr i} {
338 send_gdb "47-target-select $targetname $serialport\n"
339 gdb_expect 60 {
56a8e183 340 -re "47\\^connected.*$mi_gdb_prompt" {
4ec70201 341 verbose "Set target to $targetname"
ae59b1da 342 return 0
da6012e5 343 }
401ea829 344 -re "unknown host.*$mi_gdb_prompt" {
4392c534 345 verbose "Couldn't look up $serialport"
401ea829 346 }
da6012e5 347 -re "Couldn't establish connection to remote.*$mi_gdb_prompt$" {
4ec70201 348 verbose "Connection failed"
da6012e5
DJ
349 }
350 -re "Remote MIPS debugging.*$mi_gdb_prompt$" {
4ec70201 351 verbose "Set target to $targetname"
ae59b1da 352 return 0
da6012e5 353 }
ef783a7d 354 -re "Remote debugging using .*$serialport_re.*$mi_gdb_prompt$" {
4ec70201 355 verbose "Set target to $targetname"
ae59b1da 356 return 0
da6012e5
DJ
357 }
358 -re "Remote target $targetname connected to.*$mi_gdb_prompt$" {
4ec70201 359 verbose "Set target to $targetname"
ae59b1da 360 return 0
da6012e5 361 }
4392c534 362 -re "Connected to.*$mi_gdb_prompt$" {
4ec70201 363 verbose "Set target to $targetname"
ae59b1da 364 return 0
da6012e5
DJ
365 }
366 -re "Ending remote.*$mi_gdb_prompt$" { }
367 -re "Connection refused.*$mi_gdb_prompt$" {
368 verbose "Connection refused by remote target. Pausing, and trying again."
369 sleep 5
370 continue
371 }
56a8e183
PA
372 -re "Non-stop mode requested, but remote does not support non-stop.*$mi_gdb_prompt" {
373 unsupported "Non-stop mode not supported"
374 return 1
375 }
da6012e5 376 -re "Timeout reading from remote system.*$mi_gdb_prompt$" {
4ec70201 377 verbose "Got timeout error from gdb."
da6012e5
DJ
378 }
379 timeout {
4ec70201 380 send_gdb "\ 3"
da6012e5
DJ
381 break
382 }
383 }
384 }
385 return 1
386}
387
fb40c209 388#
da6012e5 389# load a file into the debugger (file command only).
fb40c209
AC
390# return a -1 if anything goes wrong.
391#
da6012e5 392proc mi_gdb_file_cmd { arg } {
fb40c209
AC
393 global verbose
394 global loadpath
395 global loadfile
396 global GDB
397 global mi_gdb_prompt
b741e217 398 global last_loaded_file
fb40c209
AC
399 upvar timeout timeout
400
b741e217 401 set last_loaded_file $arg
b53f9b27 402
da6012e5 403 if [is_remote host] {
4ec70201 404 set arg [remote_download host $arg]
da6012e5
DJ
405 if { $arg == "" } {
406 error "download failed"
ae59b1da 407 return -1
da6012e5
DJ
408 }
409 }
fb40c209 410
fb40c209
AC
411# FIXME: Several of these patterns are only acceptable for console
412# output. Queries are an error for mi.
413 send_gdb "105-file-exec-and-symbols $arg\n"
414 gdb_expect 120 {
4392c534
YQ
415 -re "Reading symbols from.*done.*$mi_gdb_prompt$" {
416 verbose "\t\tLoaded $arg into the $GDB"
417 return 0
418 }
419 -re "has no symbol-table.*$mi_gdb_prompt$" {
420 perror "$arg wasn't compiled with \"-g\""
421 return -1
422 }
423 -re "Load new symbol table from \".*\".*y or n. $" {
424 send_gdb "y\n"
425 gdb_expect 120 {
426 -re "Reading symbols from.*done.*$mi_gdb_prompt$" {
427 verbose "\t\tLoaded $arg with new symbol table into $GDB"
428 # All OK
429 }
430 timeout {
431 perror "(timeout) Couldn't load $arg, other program already loaded."
432 return -1
433 }
434 }
435 }
436 -re "No such file or directory.*$mi_gdb_prompt$" {
437 perror "($arg) No such file or directory\n"
438 return -1
439 }
440 -re "105-file-exec-and-symbols .*\r\n105\\\^done\r\n$mi_gdb_prompt$" {
441 # We (MI) are just giving the prompt back for now, instead of giving
da6012e5
DJ
442 # some acknowledgement.
443 return 0
444 }
4392c534
YQ
445 timeout {
446 perror "couldn't load $arg into $GDB (timed out)."
447 return -1
448 }
da6012e5 449 eof {
4392c534
YQ
450 # This is an attempt to detect a core dump, but seems not to
451 # work. Perhaps we need to match .* followed by eof, in which
452 # gdb_expect does not seem to have a way to do that.
453 perror "couldn't load $arg into $GDB (end of file)."
454 return -1
455 }
fb40c209 456 }
da6012e5
DJ
457}
458
459#
b741e217 460# connect to the target and download a file, if necessary.
da6012e5
DJ
461# return a -1 if anything goes wrong.
462#
b741e217 463proc mi_gdb_target_load { } {
da6012e5
DJ
464 global verbose
465 global loadpath
466 global loadfile
467 global GDB
468 global mi_gdb_prompt
e2d69cb5
JZ
469
470 if [target_info exists gdb_load_timeout] {
471 set loadtimeout [target_info gdb_load_timeout]
472 } else {
473 set loadtimeout 1600
474 }
da6012e5 475
da6012e5 476 if { [info procs gdbserver_gdb_load] != "" } {
2226f861 477 mi_gdb_test "kill" ".*" ""
b741e217 478 set res [gdbserver_gdb_load]
da6012e5
DJ
479 set protocol [lindex $res 0]
480 set gdbport [lindex $res 1]
481
482 if { [mi_gdb_target_cmd $protocol $gdbport] != 0 } {
483 return -1
484 }
485 } elseif { [info procs send_target_sid] != "" } {
fb40c209 486 # For SID, things get complex
2b97317d
KB
487 send_gdb "kill\n"
488 gdb_expect 10 {
489 -re ".*$mi_gdb_prompt$"
490 }
fb40c209 491 send_target_sid
e2d69cb5 492 gdb_expect $loadtimeout {
2f168eed 493 -re "\\^done.*$mi_gdb_prompt$" {
fb40c209
AC
494 }
495 timeout {
e2d69cb5 496 perror "Unable to connect to SID target (timeout)"
fb40c209
AC
497 return -1
498 }
499 }
500 send_gdb "48-target-download\n"
e2d69cb5 501 gdb_expect $loadtimeout {
fb40c209
AC
502 -re "48\\^done.*$mi_gdb_prompt$" {
503 }
504 timeout {
e2d69cb5 505 perror "Unable to download to SID target (timeout)"
fb40c209
AC
506 return -1
507 }
508 }
509 } elseif { [target_info protocol] == "sim" } {
510 # For the simulator, just connect to it directly.
511 send_gdb "47-target-select sim\n"
e2d69cb5 512 gdb_expect $loadtimeout {
fb40c209
AC
513 -re "47\\^connected.*$mi_gdb_prompt$" {
514 }
515 timeout {
e2d69cb5 516 perror "Unable to select sim target (timeout)"
fb40c209
AC
517 return -1
518 }
519 }
520 send_gdb "48-target-download\n"
e2d69cb5 521 gdb_expect $loadtimeout {
fb40c209
AC
522 -re "48\\^done.*$mi_gdb_prompt$" {
523 }
524 timeout {
e2d69cb5 525 perror "Unable to download to sim target (timeout)"
fb40c209
AC
526 return -1
527 }
528 }
b53f9b27
MS
529 } elseif { [target_info gdb_protocol] == "remote" } {
530 # remote targets
8e3049aa
PB
531 if { [mi_gdb_target_cmd "remote" [target_info netport]] != 0 } {
532 perror "Unable to connect to remote target"
533 return -1
b53f9b27
MS
534 }
535 send_gdb "48-target-download\n"
e2d69cb5 536 gdb_expect $loadtimeout {
b53f9b27
MS
537 -re "48\\^done.*$mi_gdb_prompt$" {
538 }
539 timeout {
e2d69cb5 540 perror "Unable to download to remote target (timeout)"
b53f9b27
MS
541 return -1
542 }
543 }
fb40c209
AC
544 }
545 return 0
546}
547
b741e217
DJ
548#
549# load a file into the debugger.
550# return a -1 if anything goes wrong.
551#
552proc mi_gdb_load { arg } {
553 if { $arg != "" } {
554 return [mi_gdb_file_cmd $arg]
555 }
556 return 0
557}
558
ecd3fd0f
BR
559# mi_gdb_test COMMAND PATTERN MESSAGE [IPATTERN] -- send a command to gdb;
560# test the result.
fb40c209
AC
561#
562# COMMAND is the command to execute, send to GDB with send_gdb. If
563# this is the null string no command is sent.
564# PATTERN is the pattern to match for a PASS, and must NOT include
565# the \r\n sequence immediately before the gdb prompt.
4392c534
YQ
566# MESSAGE is the message to be printed. (If this is the empty string,
567# then sometimes we don't call pass or fail at all; I don't
f1ea48cb 568# understand this at all.)
ecd3fd0f 569# IPATTERN is the pattern to match for the inferior's output. This parameter
4392c534 570# is optional. If present, it will produce a PASS if the match is
ecd3fd0f 571# successful, and a FAIL if unsuccessful.
fb40c209
AC
572#
573# Returns:
574# 1 if the test failed,
575# 0 if the test passes,
576# -1 if there was an internal error.
4392c534 577#
fb40c209
AC
578proc mi_gdb_test { args } {
579 global verbose
580 global mi_gdb_prompt
07c98896 581 global GDB expect_out
405e54e9 582 global inferior_exited_re async
fb40c209
AC
583 upvar timeout timeout
584
fb40c209
AC
585 set command [lindex $args 0]
586 set pattern [lindex $args 1]
f1ea48cb 587 set message [lindex $args 2]
fb40c209 588
ecd3fd0f
BR
589 if [llength $args]==4 {
590 set ipattern [lindex $args 3]
591 }
592
fb40c209 593 if [llength $args]==5 {
4ec70201
PA
594 set question_string [lindex $args 3]
595 set response_string [lindex $args 4]
fb40c209
AC
596 } else {
597 set question_string "^FOOBAR$"
598 }
599
600 if $verbose>2 then {
601 send_user "Sending \"$command\" to gdb\n"
602 send_user "Looking to match \"$pattern\"\n"
603 send_user "Message is \"$message\"\n"
604 }
605
606 set result -1
4ec70201 607 set string "${command}\n"
39fb8e9e
BR
608 set string_regex [string_to_regexp $command]
609
fb40c209
AC
610 if { $command != "" } {
611 while { "$string" != "" } {
4ec70201
PA
612 set foo [string first "\n" "$string"]
613 set len [string length "$string"]
fb40c209 614 if { $foo < [expr $len - 1] } {
4ec70201 615 set str [string range "$string" 0 $foo]
fb40c209 616 if { [send_gdb "$str"] != "" } {
4ec70201 617 global suppress_flag
fb40c209
AC
618
619 if { ! $suppress_flag } {
4ec70201 620 perror "Couldn't send $command to GDB."
fb40c209 621 }
4ec70201 622 fail "$message"
ae59b1da 623 return $result
fb40c209
AC
624 }
625 gdb_expect 2 {
626 -re "\[\r\n\]" { }
627 timeout { }
628 }
4ec70201 629 set string [string range "$string" [expr $foo + 1] end]
fb40c209 630 } else {
4ec70201 631 break
fb40c209
AC
632 }
633 }
634 if { "$string" != "" } {
635 if { [send_gdb "$string"] != "" } {
4ec70201 636 global suppress_flag
fb40c209
AC
637
638 if { ! $suppress_flag } {
4ec70201 639 perror "Couldn't send $command to GDB."
fb40c209 640 }
4ec70201 641 fail "$message"
ae59b1da 642 return $result
fb40c209
AC
643 }
644 }
645 }
646
647 if [info exists timeout] {
4ec70201 648 set tmt $timeout
fb40c209 649 } else {
4ec70201 650 global timeout
fb40c209 651 if [info exists timeout] {
4ec70201 652 set tmt $timeout
fb40c209 653 } else {
4ec70201 654 set tmt 60
fb40c209
AC
655 }
656 }
405e54e9
JK
657 if {$async} {
658 # With $prompt_re "" there may come arbitrary asynchronous response
659 # from the previous command, before or after $string_regex.
660 set string_regex ".*"
661 }
9d81d21b 662 verbose -log "Expecting: ^($string_regex\[\r\n\]+)?($pattern\[\r\n\]+$mi_gdb_prompt\[ \]*)"
fb40c209
AC
663 gdb_expect $tmt {
664 -re "\\*\\*\\* DOSEXIT code.*" {
665 if { $message != "" } {
4ec70201 666 fail "$message"
fb40c209 667 }
4ec70201 668 gdb_suppress_entire_file "GDB died"
ae59b1da 669 return -1
fb40c209
AC
670 }
671 -re "Ending remote debugging.*$mi_gdb_prompt\[ \]*$" {
672 if ![isnative] then {
673 warning "Can`t communicate to remote target."
674 }
675 gdb_exit
676 gdb_start
677 set result -1
7ddebc7e 678 }
405e54e9 679 -re "^($string_regex\[\r\n\]+)?($pattern\[\r\n\]+$mi_gdb_prompt\[ \]*)" {
39fb8e9e
BR
680 # At this point, $expect_out(1,string) is the MI input command.
681 # and $expect_out(2,string) is the MI output command.
682 # If $expect_out(1,string) is "", then there was no MI input command here.
683
40e55bef
BR
684 # NOTE, there is no trailing anchor because with GDB/MI,
685 # asynchronous responses can happen at any point, causing more
686 # data to be available. Normally an anchor is used to make
687 # sure the end of the output is matched, however, $mi_gdb_prompt
688 # is just as good of an anchor since mi_gdb_test is meant to
689 # match a single mi output command. If a second GDB/MI output
690 # response is sent, it will be in the buffer for the next
691 # time mi_gdb_test is called.
7ddebc7e
KS
692 if ![string match "" $message] then {
693 pass "$message"
694 }
695 set result 0
fb40c209
AC
696 }
697 -re "(${question_string})$" {
4ec70201
PA
698 send_gdb "$response_string\n"
699 exp_continue
fb40c209
AC
700 }
701 -re "Undefined.* command:.*$mi_gdb_prompt\[ \]*$" {
702 perror "Undefined command \"$command\"."
4392c534 703 fail "$message"
fb40c209
AC
704 set result 1
705 }
706 -re "Ambiguous command.*$mi_gdb_prompt\[ \]*$" {
707 perror "\"$command\" is not a unique command name."
4392c534 708 fail "$message"
fb40c209 709 set result 1
fb40c209 710 }
fda326dd 711 -re "$inferior_exited_re with code \[0-9\]+.*$mi_gdb_prompt\[ \]*$" {
fb40c209 712 if ![string match "" $message] then {
ed4c619a 713 set errmsg "$message (the program exited)"
fb40c209 714 } else {
ed4c619a 715 set errmsg "$command (the program exited)"
fb40c209
AC
716 }
717 fail "$errmsg"
718 return -1
719 }
720 -re "The program is not being run.*$mi_gdb_prompt\[ \]*$" {
721 if ![string match "" $message] then {
ed4c619a 722 set errmsg "$message (the program is no longer running)"
fb40c209 723 } else {
ed4c619a 724 set errmsg "$command (the program is no longer running)"
fb40c209
AC
725 }
726 fail "$errmsg"
727 return -1
728 }
729 -re ".*$mi_gdb_prompt\[ \]*$" {
730 if ![string match "" $message] then {
731 fail "$message"
732 }
733 set result 1
734 }
735 "<return>" {
736 send_gdb "\n"
737 perror "Window too small."
4392c534 738 fail "$message"
fb40c209
AC
739 }
740 -re "\\(y or n\\) " {
741 send_gdb "n\n"
742 perror "Got interactive prompt."
4392c534 743 fail "$message"
fb40c209
AC
744 }
745 eof {
746 perror "Process no longer exists"
747 if { $message != "" } {
748 fail "$message"
749 }
750 return -1
751 }
752 full_buffer {
753 perror "internal buffer is full."
4392c534 754 fail "$message"
fb40c209
AC
755 }
756 timeout {
757 if ![string match "" $message] then {
758 fail "$message (timeout)"
759 }
760 set result 1
761 }
762 }
ecd3fd0f
BR
763
764 # If the GDB output matched, compare the inferior output.
765 if { $result == 0 } {
766 if [ info exists ipattern ] {
d084b331 767 if { ![target_info exists gdb,noinferiorio] } {
6ec41e1e
LM
768 if { [target_info gdb_protocol] == "remote"
769 || [target_info gdb_protocol] == "extended-remote"
770 || [target_info protocol] == "sim"} {
771
772 gdb_expect {
773 -re "$ipattern" {
774 pass "$message inferior output"
775 }
776 timeout {
777 fail "$message inferior output (timeout)"
778 set result 1
779 }
d084b331 780 }
6ec41e1e
LM
781 } else {
782 global mi_inferior_spawn_id
783 expect {
784 -i $mi_inferior_spawn_id -re "$ipattern" {
785 pass "$message inferior output"
786 }
787 timeout {
788 fail "$message inferior output (timeout)"
789 set result 1
790 }
d084b331 791 }
ecd3fd0f 792 }
d084b331
DJ
793 } else {
794 unsupported "$message inferior output"
ecd3fd0f 795 }
6ec41e1e 796 }
ecd3fd0f
BR
797 }
798
fb40c209
AC
799 return $result
800}
801
802#
803# MI run command. (A modified version of gdb_run_cmd)
804#
805
806# In patterns, the newline sequence ``\r\n'' is matched explicitly as
807# ``.*$'' could swallow up output that we attempt to match elsewhere.
808
36dfb11c 809proc mi_run_cmd_full {use_mi_command args} {
fb40c209
AC
810 global suppress_flag
811 if { $suppress_flag } {
812 return -1
813 }
e11ac3a3 814 global mi_gdb_prompt use_gdb_stub
66bb093b 815 global thread_selected_re
c86cf029 816 global library_loaded_re
fb40c209 817
36dfb11c
TT
818 if {$use_mi_command} {
819 set run_prefix "220-exec-"
820 set run_match "220"
821 } else {
822 set run_prefix ""
823 set run_match ""
824 }
825
fb40c209 826 if [target_info exists gdb_init_command] {
4ec70201 827 send_gdb "[target_info gdb_init_command]\n"
fb40c209
AC
828 gdb_expect 30 {
829 -re "$mi_gdb_prompt$" { }
830 default {
4ec70201 831 perror "gdb_init_command for target failed"
ae59b1da 832 return -1
fb40c209
AC
833 }
834 }
835 }
836
b741e217 837 if { [mi_gdb_target_load] < 0 } {
56a8e183 838 return -1
b741e217
DJ
839 }
840
e11ac3a3 841 if $use_gdb_stub {
fb40c209 842 if [target_info exists gdb,do_reload_on_run] {
4ec70201 843 send_gdb "${run_prefix}continue\n"
fb40c209 844 gdb_expect 60 {
36dfb11c 845 -re "${run_match}\\^running\[\r\n\]+\\*running,thread-id=\"\[^\"\]+\"\r\n$mi_gdb_prompt" {}
88bbeca9 846 -re "${run_match}\\^error.*$mi_gdb_prompt" {return -1}
fb40c209
AC
847 default {}
848 }
ae59b1da 849 return 0
fb40c209 850 }
6a90e1d0
AC
851
852 if [target_info exists gdb,start_symbol] {
4ec70201 853 set start [target_info gdb,start_symbol]
6a90e1d0 854 } else {
4ec70201 855 set start "start"
6a90e1d0
AC
856 }
857
858 # HACK: Should either use 000-jump or fix the target code
859 # to better handle RUN.
860 send_gdb "jump *$start\n"
861 warning "Using CLI jump command, expect run-to-main FAIL"
56a8e183 862 return 0
fb40c209
AC
863 }
864
36dfb11c 865 send_gdb "${run_prefix}run $args\n"
fb40c209 866 gdb_expect {
36dfb11c 867 -re "${run_match}\\^running\r\n(\\*running,thread-id=\"\[^\"\]+\"\r\n|=thread-created,id=\"1\",group-id=\"\[0-9\]+\"\r\n)*(${library_loaded_re})*(${thread_selected_re})?${mi_gdb_prompt}" {
fb40c209 868 }
56a8e183
PA
869 -re "\\^error,msg=\"The target does not support running in non-stop mode.\"" {
870 unsupported "Non-stop mode not supported"
871 return -1
872 }
fb40c209
AC
873 timeout {
874 perror "Unable to start target"
56a8e183 875 return -1
fb40c209
AC
876 }
877 }
2d0720d9 878 # NOTE: Shortly after this there will be a ``000*stopped,...(gdb)''
56a8e183
PA
879
880 return 0
fb40c209
AC
881}
882
36dfb11c
TT
883# A wrapper for mi_run_cmd_full which uses -exec-run and
884# -exec-continue, as appropriate. ARGS are passed verbatim to
885# mi_run_cmd_full.
886proc mi_run_cmd {args} {
887 return [eval mi_run_cmd_full 1 $args]
888}
889
890# A wrapper for mi_run_cmd_full which uses the CLI commands 'run' and
891# 'continue', as appropriate. ARGS are passed verbatim to
892# mi_run_cmd_full.
893proc mi_run_with_cli {args} {
894 return [eval mi_run_cmd_full 0 $args]
895}
896
fb40c209
AC
897#
898# Just like run-to-main but works with the MI interface
899#
900
901proc mi_run_to_main { } {
902 global suppress_flag
903 if { $suppress_flag } {
904 return -1
905 }
906
fb40c209
AC
907 global srcdir
908 global subdir
909 global binfile
910 global srcfile
911
fb40c209
AC
912 mi_delete_breakpoints
913 mi_gdb_reinitialize_dir $srcdir/$subdir
914 mi_gdb_load ${binfile}
915
08b468e0
KS
916 mi_runto main
917}
fb40c209 918
08b468e0
KS
919
920# Just like gdb's "runto" proc, it will run the target to a given
921# function. The big difference here between mi_runto and mi_execute_to
922# is that mi_execute_to must have the inferior running already. This
923# proc will (like gdb's runto) (re)start the inferior, too.
924#
925# FUNC is the linespec of the place to stop (it inserts a breakpoint here).
926# It returns:
927# -1 if test suppressed, failed, timedout
928# 0 if test passed
929
f7e97bb3 930proc mi_runto_helper {func run_or_continue} {
08b468e0
KS
931 global suppress_flag
932 if { $suppress_flag } {
933 return -1
934 }
935
936 global mi_gdb_prompt expect_out
76ff342d 937 global hex decimal fullname_syntax
08b468e0
KS
938
939 set test "mi runto $func"
4b48d439
KS
940 set bp [mi_make_breakpoint -type breakpoint -disp del \
941 -func $func\(\\\(.*\\\)\)?]
942 mi_gdb_test "200-break-insert -t $func" "200\\^done,$bp" \
943 "breakpoint at $func"
08b468e0 944
f7e97bb3 945 if {$run_or_continue == "run"} {
56a8e183
PA
946 if { [mi_run_cmd] < 0 } {
947 return -1
948 }
f7e97bb3 949 } else {
bb378428 950 mi_send_resuming_command "exec-continue" "$test"
f7e97bb3 951 }
74a44383 952
18ac113b 953 mi_expect_stop "breakpoint-hit" $func ".*" ".*" "\[0-9\]+" { "" "disp=\"del\"" } $test
fb40c209
AC
954}
955
f7e97bb3 956proc mi_runto {func} {
56a8e183 957 return [mi_runto_helper $func "run"]
f7e97bb3 958}
fb40c209
AC
959
960# Next to the next statement
08b468e0 961# For return values, see mi_execute_to_helper
fb40c209
AC
962
963proc mi_next { test } {
dc360f58 964 return [mi_next_to {.*} {.*} {.*} {.*} $test]
fb40c209
AC
965}
966
967
968# Step to the next statement
08b468e0 969# For return values, see mi_execute_to_helper
fb40c209
AC
970
971proc mi_step { test } {
dc360f58 972 return [mi_step_to {.*} {.*} {.*} {.*} $test]
fb40c209 973}
dcf95b47 974
f7f9a841
VP
975set async "unknown"
976
fcdfa280 977proc mi_detect_async {} {
f7f9a841
VP
978 global async
979 global mi_gdb_prompt
980
c6ebd6cf 981 send_gdb "show target-async\n"
4392c534 982
a2840c35 983 gdb_expect {
4392c534
YQ
984 -re ".*Controlling the inferior in asynchronous mode is on...*$mi_gdb_prompt$" {
985 set async 1
986 }
987 -re ".*$mi_gdb_prompt$" {
988 set async 0
989 }
990 timeout {
991 set async 0
992 }
f7f9a841
VP
993 }
994 return $async
995}
996
bb378428
VP
997# Wait for MI *stopped notification to appear.
998# The REASON, FUNC, ARGS, FILE and LINE are regular expressions
05acf274
JK
999# to match against whatever is output in *stopped. FILE may also match
1000# filename of a file without debug info. ARGS should not include [] the
1001# list of argument is enclosed in, and other regular expressions should
1002# not include quotes.
bb378428
VP
1003# If EXTRA is a list of one element, it's the regular expression
1004# for output expected right after *stopped, and before GDB prompt.
1005# If EXTRA is a list of two elements, the first element is for
1006# output right after *stopped, and the second element is output
1007# right after reason field. The regex after reason should not include
1008# the comma separating it from the following fields.
4392c534 1009#
05acf274
JK
1010# When we fail to match output at all, -1 is returned. If FILE does
1011# match and the target system has no debug info for FILE return 0.
1012# Otherwise, the line at which we stop is returned. This is useful when
1013# exact line is not possible to specify for some reason -- one can pass
d0b76dc6
DJ
1014# the .* or "\[0-9\]*" regexps for line, and then check the line
1015# programmatically.
1016#
1017# Do not pass .* for any argument if you are expecting more than one stop.
bb378428 1018proc mi_expect_stop { reason func args file line extra test } {
1902c51f 1019
dcf95b47
DJ
1020 global mi_gdb_prompt
1021 global hex
1022 global decimal
76ff342d 1023 global fullname_syntax
f7f9a841 1024 global async
66bb093b 1025 global thread_selected_re
8d3788bd 1026 global breakpoint_re
bb378428 1027
0c7e1a46
PA
1028 set any "\[^\n\]*"
1029
bb378428
VP
1030 set after_stopped ""
1031 set after_reason ""
1032 if { [llength $extra] == 2 } {
4392c534
YQ
1033 set after_stopped [lindex $extra 0]
1034 set after_reason [lindex $extra 1]
1035 set after_reason "${after_reason},"
bb378428 1036 } elseif { [llength $extra] == 1 } {
4392c534 1037 set after_stopped [lindex $extra 0]
bb378428
VP
1038 }
1039
f7f9a841 1040 if {$async} {
4392c534 1041 set prompt_re ""
f7f9a841 1042 } else {
4392c534 1043 set prompt_re "$mi_gdb_prompt$"
f7f9a841
VP
1044 }
1045
1046 if { $reason == "really-no-reason" } {
4392c534
YQ
1047 gdb_expect {
1048 -re "\\*stopped\r\n$prompt_re" {
1049 pass "$test"
1050 }
1051 timeout {
1052 fail "$test (unknown output after running)"
1053 }
1054 }
1055 return
1056 }
1057
bb378428
VP
1058 if { $reason == "exited-normally" } {
1059
4392c534
YQ
1060 gdb_expect {
1061 -re "\\*stopped,reason=\"exited-normally\"\r\n$prompt_re" {
1062 pass "$test"
1063 }
1064 -re ".*$mi_gdb_prompt$" {fail "continue to end (2)"}
1065 timeout {
1066 fail "$test (unknown output after running)"
1067 }
1068 }
1069 return
bb378428
VP
1070 }
1071
0c7e1a46
PA
1072 if { $reason == "solib-event" } {
1073 set pattern "\\*stopped,reason=\"solib-event\",thread-id=\"$decimal\",stopped-threads=$any\r\n($thread_selected_re|$breakpoint_re)*$prompt_re"
1074 verbose -log "mi_expect_stop: expecting: $pattern"
1075 gdb_expect {
1076 -re "$pattern" {
1077 pass "$test"
1078 }
1079 timeout {
1080 fail "$test (unknown output after running)"
1081 }
1082 }
1083 return
1084 }
1085
bb378428
VP
1086 set args "\\\[$args\\\]"
1087
1088 set bn ""
1089 if { $reason == "breakpoint-hit" } {
4392c534 1090 set bn {bkptno="[0-9]+",}
edcc5120
TT
1091 } elseif { $reason == "solib-event" } {
1092 set bn ".*"
bb378428
VP
1093 }
1094
1095 set r ""
1096 if { $reason != "" } {
4392c534 1097 set r "reason=\"$reason\","
bb378428
VP
1098 }
1099
18ac113b
AR
1100
1101 set a $after_reason
1102
05acf274 1103 verbose -log "mi_expect_stop: expecting: \\*stopped,${r}${a}${bn}frame=\{addr=\"$hex\",func=\"$func\",args=$args,(?:file=\"$any$file\",fullname=\"${fullname_syntax}$file\",line=\"$line\"|from=\"$file\")\}$after_stopped,thread-id=\"$decimal\",stopped-threads=$any\r\n($thread_selected_re|$breakpoint_re)*$prompt_re"
dcf95b47 1104 gdb_expect {
05acf274 1105 -re "\\*stopped,${r}${a}${bn}frame=\{addr=\"$hex\",func=\"$func\",args=$args,(?:file=\"$any$file\",fullname=\"${fullname_syntax}$file\",line=\"($line)\"|from=\"$file\")\}$after_stopped,thread-id=\"$decimal\",stopped-threads=$any\r\n($thread_selected_re|$breakpoint_re)*$prompt_re" {
dcf95b47 1106 pass "$test"
05acf274
JK
1107 if {[array names expect_out "2,string"] != ""} {
1108 return $expect_out(2,string)
1109 }
1110 # No debug info available but $file does match.
1111 return 0
dcf95b47 1112 }
c7b1f0d9 1113 -re "\\*stopped,${r}${a}${bn}frame=\{addr=\"$hex\",func=\"$any\",args=\[\\\[\{\]$any\[\\\]\}\],file=\"$any\",fullname=\"${fullname_syntax}$any\",line=\"\[0-9\]*\"\}$after_stopped,thread-id=\"$decimal\",stopped-threads=$any\r\n($thread_selected_re|$breakpoint_re)*$prompt_re" {
4392c534 1114 verbose -log "got $expect_out(buffer)"
dcf95b47
DJ
1115 fail "$test (stopped at wrong place)"
1116 return -1
1117 }
f7f9a841 1118 -re ".*\r\n$mi_gdb_prompt$" {
4392c534 1119 verbose -log "got $expect_out(buffer)"
dcf95b47
DJ
1120 fail "$test (unknown output after running)"
1121 return -1
1122 }
dcf95b47
DJ
1123 timeout {
1124 fail "$test (timeout)"
1125 return -1
1126 }
4392c534 1127 }
dcf95b47
DJ
1128}
1129
1ad15515
PA
1130# Wait for MI *stopped notification related to an interrupt request to
1131# appear.
1132proc mi_expect_interrupt { test } {
1133 global mi_gdb_prompt
1134 global decimal
1135 global async
1136
1137 if {$async} {
1138 set prompt_re ""
1139 } else {
1140 set prompt_re "$mi_gdb_prompt$"
1141 }
1142
252fbfc8 1143 set r "reason=\"signal-received\",signal-name=\"0\",signal-meaning=\"Signal 0\""
1ad15515
PA
1144
1145 set any "\[^\n\]*"
1146
1147 # A signal can land anywhere, just ignore the location
1d33d6ba 1148 verbose -log "mi_expect_interrupt: expecting: \\*stopped,${r}$any\r\n$prompt_re"
1ad15515 1149 gdb_expect {
1d33d6ba 1150 -re "\\*stopped,${r}$any\r\n$prompt_re" {
1ad15515 1151 pass "$test"
ae59b1da 1152 return 0
1ad15515
PA
1153 }
1154 -re ".*\r\n$mi_gdb_prompt$" {
1155 verbose -log "got $expect_out(buffer)"
1156 fail "$test (unknown output after running)"
1157 return -1
1158 }
1159 timeout {
1160 fail "$test (timeout)"
1161 return -1
1162 }
1163 }
1164}
1165
bb378428
VP
1166# cmd should not include the number or newline (i.e. "exec-step 3", not
1167# "220-exec-step 3\n"
1168
1169# Can not match -re ".*\r\n${mi_gdb_prompt}", because of false positives
1170# after the first prompt is printed.
1171
08b468e0 1172proc mi_execute_to { cmd reason func args file line extra test } {
bb378428
VP
1173 global suppress_flag
1174 if { $suppress_flag } {
1175 return -1
1176 }
1177
1178 mi_send_resuming_command "$cmd" "$test"
1179 set r [mi_expect_stop $reason $func $args $file $line $extra $test]
1180 return $r
dcf95b47
DJ
1181}
1182
1183proc mi_next_to { func args file line test } {
08b468e0 1184 mi_execute_to "exec-next" "end-stepping-range" "$func" "$args" \
dcf95b47
DJ
1185 "$file" "$line" "" "$test"
1186}
1187
1188proc mi_step_to { func args file line test } {
08b468e0 1189 mi_execute_to "exec-step" "end-stepping-range" "$func" "$args" \
dcf95b47
DJ
1190 "$file" "$line" "" "$test"
1191}
1192
1193proc mi_finish_to { func args file line result ret test } {
08b468e0 1194 mi_execute_to "exec-finish" "function-finished" "$func" "$args" \
dcf95b47
DJ
1195 "$file" "$line" \
1196 ",gdb-result-var=\"$result\",return-value=\"$ret\"" \
1197 "$test"
1198}
1199
f7e97bb3
VP
1200proc mi_continue_to {func} {
1201 mi_runto_helper $func "continue"
dcf95b47
DJ
1202}
1203
08b468e0
KS
1204proc mi0_execute_to { cmd reason func args file line extra test } {
1205 mi_execute_to_helper "$cmd" "$reason" "$func" "\{$args\}" \
dcf95b47
DJ
1206 "$file" "$line" "$extra" "$test"
1207}
1208
1209proc mi0_next_to { func args file line test } {
08b468e0 1210 mi0_execute_to "exec-next" "end-stepping-range" "$func" "$args" \
dcf95b47
DJ
1211 "$file" "$line" "" "$test"
1212}
1213
1214proc mi0_step_to { func args file line test } {
08b468e0 1215 mi0_execute_to "exec-step" "end-stepping-range" "$func" "$args" \
dcf95b47
DJ
1216 "$file" "$line" "" "$test"
1217}
1218
1219proc mi0_finish_to { func args file line result ret test } {
08b468e0 1220 mi0_execute_to "exec-finish" "function-finished" "$func" "$args" \
dcf95b47
DJ
1221 "$file" "$line" \
1222 ",gdb-result-var=\"$result\",return-value=\"$ret\"" \
1223 "$test"
1224}
1225
1226proc mi0_continue_to { bkptno func args file line test } {
08b468e0 1227 mi0_execute_to "exec-continue" "breakpoint-hit\",bkptno=\"$bkptno" \
dcf95b47
DJ
1228 "$func" "$args" "$file" "$line" "" "$test"
1229}
b26ed50d 1230
4b48d439
KS
1231# Creates a breakpoint and checks the reported fields are as expected.
1232# This procedure takes the same options as mi_make_breakpoint and
1233# returns the breakpoint regexp from that procedure.
d24317b4 1234
4b48d439
KS
1235proc mi_create_breakpoint {location test args} {
1236 set bp [eval mi_make_breakpoint $args]
1237 mi_gdb_test "222-break-insert $location" "222\\^done,$bp" $test
1238 return $bp
d24317b4
VP
1239}
1240
b26ed50d
VP
1241# Creates varobj named NAME for EXPRESSION.
1242# Name cannot be "-".
1243proc mi_create_varobj { name expression testname } {
1244 mi_gdb_test "-var-create $name * $expression" \
4392c534
YQ
1245 "\\^done,name=\"$name\",numchild=\"\[0-9\]+\",value=\".*\",type=.*,has_more=\"0\"" \
1246 $testname
b26ed50d
VP
1247}
1248
fcacd99f
VP
1249proc mi_create_floating_varobj { name expression testname } {
1250 mi_gdb_test "-var-create $name @ $expression" \
4392c534
YQ
1251 "\\^done,name=\"$name\",numchild=\"\(-1\|\[0-9\]+\)\",value=\".*\",type=.*" \
1252 $testname
fcacd99f
VP
1253}
1254
1255
9e8e3afe
VP
1256# Same as mi_create_varobj, but also checks the reported type
1257# of the varobj.
1258proc mi_create_varobj_checked { name expression type testname } {
1259 mi_gdb_test "-var-create $name * $expression" \
4392c534
YQ
1260 "\\^done,name=\"$name\",numchild=\"\[0-9\]+\",value=\".*\",type=\"$type\".*" \
1261 $testname
9e8e3afe
VP
1262}
1263
0cc7d26f
TT
1264# Same as mi_create_floating_varobj, but assumes the test is creating
1265# a dynamic varobj that has children, so the value must be "{...}".
0a1e6121
YQ
1266# The "has_more" attribute is checked.
1267proc mi_create_dynamic_varobj {name expression has_more testname} {
0cc7d26f 1268 mi_gdb_test "-var-create $name @ $expression" \
0a1e6121 1269 "\\^done,name=\"$name\",numchild=\"0\",value=\"{\\.\\.\\.}\",type=.*,has_more=\"${has_more}\"" \
4392c534 1270 $testname
0cc7d26f
TT
1271}
1272
4392c534 1273# Deletes the specified NAME.
6e2a9270
VP
1274proc mi_delete_varobj { name testname } {
1275 mi_gdb_test "-var-delete $name" \
4392c534
YQ
1276 "\\^done,ndeleted=.*" \
1277 $testname
6e2a9270
VP
1278}
1279
b26ed50d
VP
1280# Updates varobj named NAME and checks that all varobjs in EXPECTED
1281# are reported as updated, and no other varobj is updated.
1282# Assumes that no varobj is out of scope and that no varobj changes
1283# types.
1284proc mi_varobj_update { name expected testname } {
1285 set er "\\^done,changelist=\\\["
1286 set first 1
1287 foreach item $expected {
4392c534
YQ
1288 set v "{name=\"$item\",in_scope=\"true\",type_changed=\"false\",has_more=\".\"}"
1289 if {$first == 1} {
1290 set er "$er$v"
1291 set first 0
1292 } else {
1293 set er "$er,$v"
1294 }
b26ed50d
VP
1295 }
1296 set er "$er\\\]"
1297
1298 verbose -log "Expecting: $er" 2
1299 mi_gdb_test "-var-update $name" $er $testname
1300}
1301
8264ba82
AG
1302proc mi_varobj_update_with_child_type_change { name child_name new_type new_children testname } {
1303 set v "{name=\"$child_name\",in_scope=\"true\",type_changed=\"true\",new_type=\"$new_type\",new_num_children=\"$new_children\",has_more=\".\"}"
fcacd99f
VP
1304 set er "\\^done,changelist=\\\[$v\\\]"
1305 verbose -log "Expecting: $er"
1306 mi_gdb_test "-var-update $name" $er $testname
1307}
1308
8264ba82
AG
1309proc mi_varobj_update_with_type_change { name new_type new_children testname } {
1310 mi_varobj_update_with_child_type_change $name $name $new_type $new_children $testname
1311}
1312
0cc7d26f
TT
1313# A helper that turns a key/value list into a regular expression
1314# matching some MI output.
1315proc mi_varobj_update_kv_helper {list} {
1316 set first 1
1317 set rx ""
1318 foreach {key value} $list {
1319 if {!$first} {
1320 append rx ,
1321 }
1322 set first 0
1323 if {$key == "new_children"} {
1324 append rx "$key=\\\[$value\\\]"
1325 } else {
1326 append rx "$key=\"$value\""
1327 }
1328 }
1329 return $rx
1330}
b6313243 1331
0cc7d26f
TT
1332# A helper for mi_varobj_update_dynamic that computes a match
1333# expression given a child list.
1334proc mi_varobj_update_dynamic_helper {children} {
1335 set crx ""
b6313243 1336
0cc7d26f
TT
1337 set first 1
1338 foreach child $children {
1339 if {!$first} {
1340 append crx ,
1341 }
1342 set first 0
1343 append crx "{"
1344 append crx [mi_varobj_update_kv_helper $child]
1345 append crx "}"
1346 }
1347
1348 return $crx
1349}
1350
1351# Update a dynamic varobj named NAME. CHILDREN is a list of children
1352# that have been updated; NEW_CHILDREN is a list of children that were
1353# added to the primary varobj. Each child is a list of key/value
1354# pairs that are expected. SELF is a key/value list holding
1355# information about the varobj itself. TESTNAME is the name of the
1356# test.
1357proc mi_varobj_update_dynamic {name testname self children new_children} {
1358 if {[llength $new_children]} {
1359 set newrx [mi_varobj_update_dynamic_helper $new_children]
1360 lappend self new_children $newrx
1361 }
1362 set selfrx [mi_varobj_update_kv_helper $self]
1363 set crx [mi_varobj_update_dynamic_helper $children]
1364
1365 set er "\\^done,changelist=\\\[\{name=\"$name\",in_scope=\"true\""
1366 append er ",$selfrx\}"
1367 if {"$crx" != ""} {
1368 append er ",$crx"
1369 }
1370 append er "\\\]"
b6313243
TT
1371
1372 verbose -log "Expecting: $er"
1373 mi_gdb_test "-var-update $name" $er $testname
1374}
1375
b26ed50d
VP
1376proc mi_check_varobj_value { name value testname } {
1377
1378 mi_gdb_test "-var-evaluate-expression $name" \
1379 "\\^done,value=\"$value\"" \
1380 $testname
1381}
038224f6 1382
b6313243
TT
1383# Helper proc which constructs a child regexp for
1384# mi_list_varobj_children and mi_varobj_update_dynamic.
1385proc mi_child_regexp {children add_child} {
1386 set children_exp {}
b6313243
TT
1387
1388 if {$add_child} {
1389 set pre "child="
1390 } else {
1391 set pre ""
1392 }
1393
1394 foreach item $children {
1395
4392c534
YQ
1396 set name [lindex $item 0]
1397 set exp [lindex $item 1]
1398 set numchild [lindex $item 2]
1399 if {[llength $item] == 5} {
1400 set type [lindex $item 3]
1401 set value [lindex $item 4]
1402
1403 lappend children_exp\
31b4ab9e 1404 "$pre{name=\"$name\",exp=\"$exp\",numchild=\"$numchild\",value=\"$value\",type=\"$type\"(,thread-id=\"\[0-9\]+\")?}"
4392c534
YQ
1405 } elseif {[llength $item] == 4} {
1406 set type [lindex $item 3]
1407
1408 lappend children_exp\
31b4ab9e 1409 "$pre{name=\"$name\",exp=\"$exp\",numchild=\"$numchild\",type=\"$type\"(,thread-id=\"\[0-9\]+\")?}"
4392c534
YQ
1410 } else {
1411 lappend children_exp\
1412 "$pre{name=\"$name\",exp=\"$exp\",numchild=\"$numchild\"(,thread-id=\"\[0-9\]+\")?}"
1413 }
b6313243
TT
1414 }
1415 return [join $children_exp ","]
1416}
1417
038224f6
VP
1418# Check the results of the:
1419#
1420# -var-list-children VARNAME
1421#
1422# command. The CHILDREN parement should be a list of lists.
1423# Each inner list can have either 3 or 4 elements, describing
1424# fields that gdb is expected to report for child variable object,
1425# in the following order
1426#
1427# - Name
1428# - Expression
1429# - Number of children
1430# - Type
1431#
1432# If inner list has 3 elements, the gdb is expected to output no
9e8e3afe
VP
1433# type for a child and no value.
1434#
1435# If the inner list has 4 elements, gdb output is expected to
1436# have no value.
038224f6
VP
1437#
1438proc mi_list_varobj_children { varname children testname } {
0cc7d26f 1439 mi_list_varobj_children_range $varname "" "" [llength $children] $children \
b6313243
TT
1440 $testname
1441}
038224f6 1442
0cc7d26f
TT
1443# Like mi_list_varobj_children, but sets a subrange. NUMCHILDREN is
1444# the total number of children.
1445proc mi_list_varobj_children_range {varname from to numchildren children testname} {
9e8e3afe
VP
1446 set options ""
1447 if {[llength $varname] == 2} {
4392c534
YQ
1448 set options [lindex $varname 1]
1449 set varname [lindex $varname 0]
9e8e3afe
VP
1450 }
1451
b6313243 1452 set children_exp_j [mi_child_regexp $children 1]
9e8e3afe 1453 if {$numchildren} {
4392c534 1454 set expected "\\^done,numchild=\".*\",children=\\\[$children_exp_j.*\\\]"
9e8e3afe 1455 } {
4392c534 1456 set expected "\\^done,numchild=\"0\""
9e8e3afe 1457 }
038224f6 1458
0cc7d26f 1459 if {"$to" == ""} {
4392c534 1460 append expected ",has_more=\"0\""
0cc7d26f 1461 } elseif {$to >= 0 && $numchildren > $to} {
4392c534 1462 append expected ",has_more=\"1\""
0cc7d26f 1463 } else {
4392c534 1464 append expected ",has_more=\"0\""
0cc7d26f
TT
1465 }
1466
038224f6
VP
1467 verbose -log "Expecting: $expected"
1468
0cc7d26f
TT
1469 mi_gdb_test "-var-list-children $options $varname $from $to" \
1470 $expected $testname
9e8e3afe
VP
1471}
1472
1473# Verifies that variable object VARNAME has NUMBER children,
1474# where each one is named $VARNAME.<index-of-child> and has type TYPE.
1475proc mi_list_array_varobj_children { varname number type testname } {
f84bc218
KB
1476 mi_list_array_varobj_children_with_index $varname $number 0 $type $testname
1477}
1478
1479# Same as mi_list_array_varobj_children, but allowing to pass a start index
1480# for an array.
1481proc mi_list_array_varobj_children_with_index { varname number start_index \
1482 type testname } {
9e8e3afe 1483 set t {}
f84bc218 1484 set index $start_index
9e8e3afe 1485 for {set i 0} {$i < $number} {incr i} {
f84bc218
KB
1486 lappend t [list $varname.$index $index 0 $type]
1487 incr index
9e8e3afe
VP
1488 }
1489 mi_list_varobj_children $varname $t $testname
038224f6 1490}
2d0720d9
VP
1491
1492# A list of two-element lists. First element of each list is
1493# a Tcl statement, and the second element is the line
1494# number of source C file where the statement originates.
1495set mi_autotest_data ""
1496# The name of the source file for autotesting.
1497set mi_autotest_source ""
1498
1499proc count_newlines { string } {
1500 return [regexp -all "\n" $string]
1501}
1502
1503# Prepares for running inline tests in FILENAME.
1504# See comments for mi_run_inline_test for detailed
1505# explanation of the idea and syntax.
1506proc mi_prepare_inline_tests { filename } {
1507
1508 global srcdir
1509 global subdir
1510 global mi_autotest_source
1511 global mi_autotest_data
1512
1513 set mi_autotest_data {}
1514
1515 set mi_autotest_source $filename
4392c534 1516
2d0720d9
VP
1517 if { ! [regexp "^/" "$filename"] } then {
1518 set filename "$srcdir/$subdir/$filename"
1519 }
1520
1521 set chan [open $filename]
1522 set content [read $chan]
1523 set line_number 1
1524 while {1} {
4392c534
YQ
1525 set start [string first "/*:" $content]
1526 if {$start != -1} {
1527 set end [string first ":*/" $content]
1528 if {$end == -1} {
1529 error "Unterminated special comment in $filename"
1530 }
1531
1532 set prefix [string range $content 0 $start]
1533 set prefix_newlines [count_newlines $prefix]
1534
1535 set line_number [expr $line_number+$prefix_newlines]
1536 set comment_line $line_number
1537
1538 set comment [string range $content [expr $start+3] [expr $end-1]]
1539
1540 set comment_newlines [count_newlines $comment]
1541 set line_number [expr $line_number+$comment_newlines]
1542
1543 set comment [string trim $comment]
1544 set content [string range $content [expr $end+3] \
1545 [string length $content]]
1546 lappend mi_autotest_data [list $comment $comment_line]
1547 } else {
1548 break
1549 }
2d0720d9
VP
1550 }
1551 close $chan
1552}
1553
1554# Helper to mi_run_inline_test below.
1555# Return the list of all (statement,line_number) lists
1556# that comprise TESTCASE. The begin and end markers
1557# are not included.
1558proc mi_get_inline_test {testcase} {
1559
1560 global mi_gdb_prompt
1561 global mi_autotest_data
1562 global mi_autotest_source
1563
1564 set result {}
1565
1566 set seen_begin 0
1567 set seen_end 0
1568 foreach l $mi_autotest_data {
1569
4392c534 1570 set comment [lindex $l 0]
2d0720d9 1571
4392c534
YQ
1572 if {$comment == "BEGIN: $testcase"} {
1573 set seen_begin 1
1574 } elseif {$comment == "END: $testcase"} {
1575 set seen_end 1
1576 break
1577 } elseif {$seen_begin==1} {
1578 lappend result $l
1579 }
2d0720d9
VP
1580 }
1581
1582 if {$seen_begin == 0} {
4392c534 1583 error "Autotest $testcase not found"
2d0720d9
VP
1584 }
1585
1586 if {$seen_begin == 1 && $seen_end == 0} {
4392c534 1587 error "Missing end marker for test $testcase"
2d0720d9
VP
1588 }
1589
1590 return $result
1591}
1592
1593# Sets temporary breakpoint at LOCATION.
1594proc mi_tbreak {location} {
1595
1596 global mi_gdb_prompt
1597
1598 mi_gdb_test "-break-insert -t $location" \
4392c534
YQ
1599 {\^done,bkpt=.*} \
1600 "run to $location (set breakpoint)"
2d0720d9
VP
1601}
1602
1603# Send COMMAND that must be a command that resumes
7bf9deb0 1604# the inferior (run/continue/next/etc) and consumes
2d0720d9 1605# the "^running" output from it.
a2840c35 1606proc mi_send_resuming_command_raw {command test} {
2d0720d9
VP
1607
1608 global mi_gdb_prompt
66bb093b 1609 global thread_selected_re
c86cf029 1610 global library_loaded_re
2d0720d9 1611
a2840c35 1612 send_gdb "$command\n"
2d0720d9 1613 gdb_expect {
4392c534
YQ
1614 -re "\\^running\r\n\\*running,thread-id=\"\[^\"\]+\"\r\n($library_loaded_re)*($thread_selected_re)?${mi_gdb_prompt}" {
1615 # Note that lack of 'pass' call here -- this works around limitation
1616 # in DejaGNU xfail mechanism. mi-until.exp has this:
1617 #
1618 # setup_kfail gdb/2104 "*-*-*"
1619 # mi_execute_to ...
1620 #
1621 # and mi_execute_to uses mi_send_resuming_command. If we use 'pass' here,
1622 # it will reset kfail, so when the actual test fails, it will be flagged
1623 # as real failure.
d0b76dc6 1624 return 0
4392c534
YQ
1625 }
1626 -re "\\^error,msg=\"Displaced stepping is only supported in ARM mode\".*" {
1627 unsupported "$test (Thumb mode)"
1628 return -1
1629 }
1630 -re "\\^error,msg=.*" {
1631 fail "$test (MI error)"
4ea95be9 1632 return -1
4392c534
YQ
1633 }
1634 -re ".*${mi_gdb_prompt}" {
1635 fail "$test (failed to resume)"
1636 return -1
1637 }
1638 timeout {
bb378428
VP
1639 fail "$test"
1640 return -1
4392c534 1641 }
2d0720d9
VP
1642 }
1643}
1644
a2840c35
VP
1645proc mi_send_resuming_command {command test} {
1646 mi_send_resuming_command_raw -$command $test
1647}
1648
2d0720d9
VP
1649# Helper to mi_run_inline_test below.
1650# Sets a temporary breakpoint at LOCATION and runs
1651# the program using COMMAND. When the program is stopped
1652# returns the line at which it. Returns -1 if line cannot
1653# be determined.
1654# Does not check that the line is the same as requested.
1655# The caller can check itself if required.
a73bafbc 1656proc mi_continue_to_line {location test} {
2d0720d9 1657
4392c534 1658 mi_tbreak $location
2d0720d9 1659 mi_send_resuming_command "exec-continue" "run to $location (exec-continue)"
bb378428 1660 return [mi_get_stop_line $test]
2d0720d9
VP
1661}
1662
1663# Wait until gdb prints the current line.
bb378428 1664proc mi_get_stop_line {test} {
2d0720d9
VP
1665
1666 global mi_gdb_prompt
f7f9a841
VP
1667 global async
1668
1669 if {$async} {
1670 set prompt_re ""
1671 } else {
d0b76dc6 1672 set prompt_re "$mi_gdb_prompt$"
f7f9a841 1673 }
2d0720d9
VP
1674
1675 gdb_expect {
d0b76dc6 1676 -re ".*line=\"(\[0-9\]*)\".*\r\n$prompt_re" {
4392c534 1677 return $expect_out(1,string)
2d0720d9 1678 }
d0b76dc6 1679 -re ".*$mi_gdb_prompt" {
4392c534 1680 fail "wait for stop ($test)"
2d0720d9
VP
1681 }
1682 timeout {
4392c534 1683 fail "wait for stop ($test)"
2d0720d9
VP
1684 }
1685 }
1686}
1687
1688# Run a MI test embedded in comments in a C file.
1689# The C file should contain special comments in the following
1690# three forms:
1691#
1692# /*: BEGIN: testname :*/
1693# /*: <Tcl statements> :*/
1694# /*: END: testname :*/
1695#
1696# This procedure find the begin and end marker for the requested
1697# test. Then, a temporary breakpoint is set at the begin
1698# marker and the program is run (from start).
1699#
1700# After that, for each special comment between the begin and end
1701# marker, the Tcl statements are executed. It is assumed that
1702# for each comment, the immediately preceding line is executable
1703# C statement. Then, gdb will be single-stepped until that
1704# preceding C statement is executed, and after that the
1705# Tcl statements in the comment will be executed.
1706#
1707# For example:
1708#
1709# /*: BEGIN: assignment-test :*/
1710# v = 10;
1711# /*: <Tcl code to check that 'v' is indeed 10 :*/
1712# /*: END: assignment-test :*/
1713#
1714# The mi_prepare_inline_tests function should be called before
1715# calling this function. A given C file can contain several
1716# inline tests. The names of the tests must be unique within one
1717# C file.
1718#
1719proc mi_run_inline_test { testcase } {
1720
1721 global mi_gdb_prompt
1722 global hex
1723 global decimal
1724 global fullname_syntax
1725 global mi_autotest_source
1726
1727 set commands [mi_get_inline_test $testcase]
1728
1729 set first 1
1730 set line_now 1
1731
1732 foreach c $commands {
4392c534
YQ
1733 set statements [lindex $c 0]
1734 set line [lindex $c 1]
1735 set line [expr $line-1]
1736
1737 # We want gdb to be stopped at the expression immediately
1738 # before the comment. If this is the first comment, the
1739 # program is either not started yet or is in some random place,
1740 # so we run it. For further comments, we might be already
1741 # standing at the right line. If not continue till the
1742 # right line.
1743
1744 if {$first==1} {
1745 # Start the program afresh.
1746 mi_tbreak "$mi_autotest_source:$line"
1747 mi_run_cmd
1748 set line_now [mi_get_stop_line "$testcase: step to $line"]
1749 set first 0
1750 } elseif {$line_now!=$line} {
1751 set line_now [mi_continue_to_line "$mi_autotest_source:$line" "continue to $line"]
1752 }
1753
1754 if {$line_now!=$line} {
1755 fail "$testcase: go to line $line"
1756 }
1757
1758 # We're not at the statement right above the comment.
1759 # Execute that statement so that the comment can test
1760 # the state after the statement is executed.
1761
1762 # Single-step past the line.
1763 if { [mi_send_resuming_command "exec-next" "$testcase: step over $line"] != 0 } {
d0b76dc6
DJ
1764 return -1
1765 }
1766 set line_now [mi_get_stop_line "$testcase: step over $line"]
2d0720d9 1767
4392c534
YQ
1768 # We probably want to use 'uplevel' so that statements
1769 # have direct access to global variables that the
1770 # main 'exp' file has set up. But it's not yet clear,
1771 # will need more experience to be sure.
1772 eval $statements
2d0720d9
VP
1773 }
1774}
9d81d21b
VP
1775
1776proc get_mi_thread_list {name} {
1777 global expect_out
1778
1779 # MI will return a list of thread ids:
1780 #
1781 # -thread-list-ids
1782 # ^done,thread-ids=[thread-id="1",thread-id="2",...],number-of-threads="N"
1783 # (gdb)
1784 mi_gdb_test "-thread-list-ids" \
592375cd 1785 {.*\^done,thread-ids={(thread-id="[0-9]+"(,)?)+},current-thread-id="[0-9]+",number-of-threads="[0-9]+"} \
9d81d21b
VP
1786 "-thread_list_ids ($name)"
1787
1788 set output {}
1789 if {[info exists expect_out(buffer)]} {
1790 set output $expect_out(buffer)
1791 }
1792
1793 set thread_list {}
1794 if {![regexp {thread-ids=\{(thread-id="[0-9]+"(,)?)*\}} $output threads]} {
1795 fail "finding threads in MI output ($name)"
1796 } else {
1797 pass "finding threads in MI output ($name)"
1798
1799 # Make list of console threads
1800 set start [expr {[string first \{ $threads] + 1}]
1801 set end [expr {[string first \} $threads] - 1}]
1802 set threads [string range $threads $start $end]
1803 foreach thread [split $threads ,] {
1804 if {[scan $thread {thread-id="%d"} num]} {
1805 lappend thread_list $num
1806 }
1807 }
1808 }
1809
1810 return $thread_list
1811}
1812
1813# Check that MI and the console know of the same threads.
1814# Appends NAME to all test names.
1815proc check_mi_and_console_threads {name} {
1816 global expect_out
1817
1818 mi_gdb_test "-thread-list-ids" \
592375cd 1819 {.*\^done,thread-ids={(thread-id="[0-9]+"(,)*)+},current-thread-id="[0-9]+",number-of-threads="[0-9]+"} \
9d81d21b
VP
1820 "-thread-list-ids ($name)"
1821 set mi_output {}
1822 if {[info exists expect_out(buffer)]} {
1823 set mi_output $expect_out(buffer)
1824 }
1825
1826 # GDB will return a list of thread ids and some more info:
1827 #
1828 # (gdb)
1829 # -interpreter-exec console "info threads"
1830 # ~" 4 Thread 2051 (LWP 7734) 0x401166b1 in __libc_nanosleep () at __libc_nanosleep:-1"
1831 # ~" 3 Thread 1026 (LWP 7733) () at __libc_nanosleep:-1"
1832 # ~" 2 Thread 2049 (LWP 7732) 0x401411f8 in __poll (fds=0x804bb24, nfds=1, timeout=2000) at ../sysdeps/unix/sysv/linux/poll.c:63"
1833 # ~"* 1 Thread 1024 (LWP 7731) main (argc=1, argv=0xbfffdd94) at ../../../src/gdb/testsuite/gdb.mi/pthreads.c:160"
1834 # FIXME: kseitz/2002-09-05: Don't use the hack-cli method.
1835 mi_gdb_test "info threads" \
1836 {.*(~".*"[\r\n]*)+.*} \
1837 "info threads ($name)"
1838 set console_output {}
1839 if {[info exists expect_out(buffer)]} {
1840 set console_output $expect_out(buffer)
1841 }
1842
1843 # Make a list of all known threads to console (gdb's thread IDs)
1844 set console_thread_list {}
1845 foreach line [split $console_output \n] {
1846 if {[string index $line 0] == "~"} {
1847 # This is a line from the console; trim off "~", " ", "*", and "\""
1848 set line [string trim $line ~\ \"\*]
1849 if {[scan $line "%d" id] == 1} {
1850 lappend console_thread_list $id
1851 }
1852 }
1853 }
1854
1855 # Now find the result string from MI
1856 set mi_result ""
1857 foreach line [split $mi_output \n] {
1858 if {[string range $line 0 4] == "^done"} {
1859 set mi_result $line
1860 }
1861 }
1862 if {$mi_result == ""} {
1863 fail "finding MI result string ($name)"
1864 } else {
1865 pass "finding MI result string ($name)"
1866 }
1867
1868 # Finally, extract the thread ids and compare them to the console
1869 set num_mi_threads_str ""
1870 if {![regexp {number-of-threads="[0-9]+"} $mi_result num_mi_threads_str]} {
1871 fail "finding number of threads in MI output ($name)"
1872 } else {
1873 pass "finding number of threads in MI output ($name)"
1874
1875 # Extract the number of threads from the MI result
1876 if {![scan $num_mi_threads_str {number-of-threads="%d"} num_mi_threads]} {
1877 fail "got number of threads from MI ($name)"
1878 } else {
1879 pass "got number of threads from MI ($name)"
1880
1881 # Check if MI and console have same number of threads
1882 if {$num_mi_threads != [llength $console_thread_list]} {
1883 fail "console and MI have same number of threads ($name)"
1884 } else {
1885 pass "console and MI have same number of threads ($name)"
1886
1887 # Get MI thread list
1888 set mi_thread_list [get_mi_thread_list $name]
1889
1890 # Check if MI and console have the same threads
1891 set fails 0
1892 foreach ct [lsort $console_thread_list] mt [lsort $mi_thread_list] {
1893 if {$ct != $mt} {
1894 incr fails
1895 }
1896 }
1897 if {$fails > 0} {
1898 fail "MI and console have same threads ($name)"
1899
1900 # Send a list of failures to the log
1901 send_log "Console has thread ids: $console_thread_list\n"
1902 send_log "MI has thread ids: $mi_thread_list\n"
1903 } else {
1904 pass "MI and console have same threads ($name)"
1905 }
1906 }
1907 }
1908 }
1909}
5e06a3d1 1910
759f0f0b 1911# Download shared libraries to the target.
5e06a3d1
VP
1912proc mi_load_shlibs { args } {
1913 if {![is_remote target]} {
1914 return
1915 }
1916
1917 foreach file $args {
759f0f0b 1918 gdb_download [shlib_target_file $file]
5e06a3d1
VP
1919 }
1920
1921 # Even if the target supplies full paths for shared libraries,
1922 # they may not be paths for this system.
1923 mi_gdb_test "set solib-search-path [file dirname [lindex $args 0]]" "\^done" ""
1924}
1925
1ad15515
PA
1926proc mi_reverse_list { list } {
1927 if { [llength $list] <= 1 } {
1928 return $list
1929 }
1930 set tail [lrange $list 1 [llength $list]]
1931 set rtail [mi_reverse_list $tail]
1932 lappend rtail [lindex $list 0]
1933 return $rtail
1934}
1935
1936proc mi_check_thread_states { xstates test } {
1937 global expect_out
1938 set states [mi_reverse_list $xstates]
f4e164aa 1939 set pattern ".*\\^done,threads=\\\["
1ad15515
PA
1940 foreach s $states {
1941 set pattern "${pattern}(.*)state=\"$s\""
1942 }
dc146f7c 1943 set pattern "${pattern}(,core=\"\[0-9\]*\")?\\\}\\\].*"
1ad15515
PA
1944
1945 verbose -log "expecting: $pattern"
1946 mi_gdb_test "-thread-info" $pattern $test
1947}
b6313243
TT
1948
1949# Return a list of MI features supported by this gdb.
1950proc mi_get_features {} {
1951 global expect_out mi_gdb_prompt
1952
1953 send_gdb "-list-features\n"
1954
1955 gdb_expect {
1956 -re "\\^done,features=\\\[(.*)\\\]\r\n$mi_gdb_prompt$" {
1957 regsub -all -- \" $expect_out(1,string) "" features
1958 return [split $features ,]
1959 }
1960 -re ".*\r\n$mi_gdb_prompt$" {
1961 verbose -log "got $expect_out(buffer)"
1962 return ""
1963 }
1964 timeout {
1965 verbose -log "timeout in mi_gdb_prompt"
1966 return ""
1967 }
1968 }
1969}
1eec78bd
KS
1970
1971# Variable Object Trees
1972#
1973# Yet another way to check varobjs. Pass mi_walk_varobj_tree a "list" of
1974# variables (not unlike the actual source code definition), and it will
1975# automagically test the children for you (by default).
1976#
1977# Example:
1978#
1979# source code:
1980# struct bar {
1981# union {
1982# int integer;
1983# void *ptr;
1984# };
1985# const int *iPtr;
1986# };
1987#
1988# class foo {
1989# public:
1990# int a;
1991# struct {
1992# int b;
1993# struct bar *c;
1994# };
1995# };
1996#
1997# foo *f = new foo (); <-- break here
1998#
1999# We want to check all the children of "f".
2000#
2001# Translate the above structures into the following tree:
2002#
2003# set tree {
2004# foo f {
2005# {} public {
2006# int a {}
2007# anonymous struct {
2008# {} public {
2009# int b {}
2010# {bar *} c {
2011# {} public {
2012# anonymous union {
2013# {} public {
2014# int integer {}
2015# {void *} ptr {}
2016# }
2017# }
2018# {const int *} iPtr {
2019# {const int} {*iPtr} {}
2020# }
2021# }
2022# }
2023# }
2024# }
2025# }
2026# }
2027# }
2028#
440e2fca 2029# mi_walk_varobj_tree c++ $tree
1eec78bd
KS
2030#
2031# If you'd prefer to walk the tree using your own callback,
2032# simply pass the name of the callback to mi_walk_varobj_tree.
2033#
2034# This callback should take one argument, the name of the variable
2035# to process. This name is the name of a global array holding the
2036# variable's properties (object name, type, etc).
2037#
2038# An example callback:
2039#
2040# proc my_callback {var} {
2041# upvar #0 $var varobj
2042#
2043# puts "my_callback: called on varobj $varobj(obj_name)"
2044# }
2045#
2046# The arrays created for each variable object contain the following
2047# members:
2048#
2049# obj_name - the object name for accessing this variable via MI
2050# display_name - the display name for this variable (exp="display_name" in
2051# the output of -var-list-children)
2052# type - the type of this variable (type="type" in the output
2053# of -var-list-children, or the special tag "anonymous"
2054# path_expr - the "-var-info-path-expression" for this variable
440e2fca
KS
2055# NOTE: This member cannot be used reliably with typedefs.
2056# Use with caution!
2057# See notes inside get_path_expr for more.
1eec78bd
KS
2058# parent - the variable name of the parent varobj
2059# children - a list of children variable names (which are the
2060# names Tcl arrays, not object names)
2061#
2062# For each variable object, an array containing the above fields will
2063# be created under the root node (conveniently called, "root"). For example,
2064# a variable object with handle "OBJ.public.0_anonymous.a" will have
2065# a corresponding global Tcl variable named "root.OBJ.public.0_anonymous.a".
2066#
2067# Note that right now, this mechanism cannot be used for recursive data
2068# structures like linked lists.
2069
2070namespace eval ::varobj_tree {
2071 # An index which is appended to root varobjs to ensure uniqueness.
2072 variable _root_idx 0
2073
2074 # A procedure to help with debuggging varobj trees.
2075 # VARIABLE_NAME is the name of the variable to dump.
2076 # CMD, if present, is the name of the callback to output the contstructed
2077 # strings. By default, it uses expect's "send_log" command.
2078 # TERM, if present, is a terminating character. By default it is the newline.
2079 #
2080 # To output to the terminal (not the expect log), use
2081 # mi_varobj_tree_dump_variable my_variable puts ""
2082
2083 proc mi_varobj_tree_dump_variable {variable_name {cmd send_log} {term "\n"}} {
2084 upvar #0 $variable_name varobj
2085
2086 eval "$cmd \"VAR = $variable_name$term\""
2087
2088 # Explicitly encode the array indices, since outputting them
2089 # in some logical order is better than what "array names" might
2090 # return.
2091 foreach idx {obj_name parent display_name type path_expr} {
2092 eval "$cmd \"\t$idx = $varobj($idx)$term\""
2093 }
2094
2095 # Output children
2096 set num [llength $varobj(children)]
2097 eval "$cmd \"\tnum_children = $num$term\""
2098 if {$num > 0} {
2099 eval "$cmd \"\tchildren = $varobj(children)$term\""
2100 }
2101 }
2102
2103 # The default callback used by mi_walk_varobj_tree. This callback
440e2fca
KS
2104 # simply checks all of VAR's children. It specifically does not test
2105 # path expressions, since that is very problematic.
1eec78bd
KS
2106 #
2107 # This procedure may be used in custom callbacks.
2108 proc test_children_callback {variable_name} {
2109 upvar #0 $variable_name varobj
2110
2111 if {[llength $varobj(children)] > 0} {
2112 # Construct the list of children the way mi_list_varobj_children
2113 # expects to get it:
2114 # { {obj_name display_name num_children type} ... }
2115 set children_list {}
2116 foreach child $varobj(children) {
2117 upvar #0 $child c
2118 set clist [list [string_to_regexp $c(obj_name)] \
2119 [string_to_regexp $c(display_name)] \
2120 [llength $c(children)]]
2121 if {[string length $c(type)] > 0} {
2122 lappend clist [string_to_regexp $c(type)]
2123 }
2124 lappend children_list $clist
2125 }
2126
2127 mi_list_varobj_children $varobj(obj_name) $children_list \
2128 "VT: list children of $varobj(obj_name)"
2129 }
2130 }
2131
2132 # Set the properties of the varobj represented by
2133 # PARENT_VARIABLE - the name of the parent's variable
2134 # OBJNAME - the MI object name of this variable
2135 # DISP_NAME - the display name of this variable
2136 # TYPE - the type of this variable
2137 # PATH - the path expression for this variable
2138 # CHILDREN - a list of the variable's children
2139 proc create_varobj {parent_variable objname disp_name \
2140 type path children} {
2141 upvar #0 $parent_variable parent
2142
2143 set var_name "root.$objname"
2144 global $var_name
2145 array set $var_name [list obj_name $objname]
2146 array set $var_name [list display_name $disp_name]
2147 array set $var_name [list type $type]
2148 array set $var_name [list path_expr $path]
2149 array set $var_name [list parent "$parent_variable"]
2150 array set $var_name [list children \
2151 [get_tree_children $var_name $children]]
2152 return $var_name
2153 }
2154
2155 # Should VARIABLE be used in path expressions? The CPLUS_FAKE_CHILD
2156 # varobjs and anonymous structs/unions are not used for path expressions.
2157 proc is_path_expr_parent {variable} {
2158 upvar #0 $variable varobj
2159
2160 # If the varobj's type is "", it is a CPLUS_FAKE_CHILD.
2161 # If the tail of the varobj's object name is "%d_anonymous",
2162 # then it represents an anonymous struct or union.
2163 if {[string length $varobj(type)] == 0 \
2164 || [regexp {[0-9]+_anonymous$} $varobj(obj_name)]} {
2165 return false
2166 }
2167
2168 return true
2169 }
2170
2171 # Return the path expression for the variable named NAME in
2172 # parent varobj whose variable name is given by PARENT_VARIABLE.
2173 proc get_path_expr {parent_variable name type} {
2174 upvar #0 $parent_variable parent
440e2fca 2175 upvar #0 $parent_variable path_parent
1eec78bd
KS
2176
2177 # If TYPE is "", this is one of the CPLUS_FAKE_CHILD varobjs,
440e2fca
KS
2178 # which has no path expression. Likewsise for anonymous structs
2179 # and unions.
2180 if {[string length $type] == 0 \
2181 || [string compare $type "anonymous"] == 0} {
1eec78bd
KS
2182 return ""
2183 }
2184
2185 # Find the path parent variable.
2186 while {![is_path_expr_parent $parent_variable]} {
440e2fca
KS
2187 set parent_variable $path_parent(parent)
2188 upvar #0 $parent_variable path_parent
2189 }
2190
2191 # This is where things get difficult. We do not actually know
2192 # the real type for variables defined via typedefs, so we don't actually
2193 # know whether the parent is a structure/union or not.
2194 #
2195 # So we assume everything that isn't a simple type is a compound type.
2196 set stars ""
2197 regexp {\*+} $parent(type) stars
2198 set is_compound 1
2199 if {[string index $name 0] == "*"} {
2200 set is_compound 0
2201 }
2202
2203 if {[string index $parent(type) end] == "\]"} {
2204 # Parent is an array.
2205 return "($path_parent(path_expr))\[$name\]"
2206 } elseif {$is_compound} {
2207 # Parent is a structure or union or a pointer to one.
2208 if {[string length $stars]} {
2209 set join "->"
2210 } else {
2211 set join "."
2212 }
2213
2214 global root
1eec78bd 2215
440e2fca
KS
2216 # To make matters even more hideous, varobj.c has slightly different
2217 # path expressions for C and C++.
2218 set path_expr "($path_parent(path_expr))$join$name"
2219 if {[string compare -nocase $root(language) "c"] == 0} {
2220 return $path_expr
2221 } else {
2222 return "($path_expr)"
2223 }
2224 } else {
2225 # Parent is a pointer.
2226 return "*($path_parent(path_expr))"
2227 }
1eec78bd
KS
2228 }
2229
2230 # Process the CHILDREN (a list of varobj_tree elements) of the variable
2231 # given by PARENT_VARIABLE. Returns a list of children variables.
2232 proc get_tree_children {parent_variable children} {
2233 upvar #0 $parent_variable parent
2234
2235 set field_idx 0
2236 set children_list {}
2237 foreach {type name children} $children {
2238 if {[string compare $parent_variable "root"] == 0} {
2239 # Root variable
2240 variable _root_idx
2241 incr _root_idx
2242 set objname "$name$_root_idx"
2243 set disp_name "$name"
2244 set path_expr "$name"
2245 } elseif {[string compare $type "anonymous"] == 0} {
2246 # Special case: anonymous types. In this case, NAME will either be
2247 # "struct" or "union".
2248 set objname "$parent(obj_name).${field_idx}_anonymous"
2249 set disp_name "<anonymous $name>"
2250 set path_expr ""
2251 set type "$name {...}"
2252 } else {
2253 set objname "$parent(obj_name).$name"
2254 set disp_name $name
2255 set path_expr [get_path_expr $parent_variable $name $type]
2256 }
2257
2258 lappend children_list [create_varobj $parent_variable $objname \
2259 $disp_name $type $path_expr $children]
2260 incr field_idx
2261 }
2262
2263 return $children_list
2264 }
2265
2266 # The main procedure to call the given CALLBACK on the elements of the
2267 # given varobj TREE. See detailed explanation above.
440e2fca 2268 proc walk_tree {language tree callback} {
1eec78bd 2269 global root
f44eeb11 2270 variable _root_idx
1eec78bd
KS
2271
2272 if {[llength $tree] < 3} {
2273 error "tree does not contain enough elements"
2274 }
2275
f44eeb11
TT
2276 set _root_idx 0
2277
1eec78bd 2278 # Create root node and process the tree.
440e2fca 2279 array set root [list language $language]
1eec78bd
KS
2280 array set root [list obj_name "root"]
2281 array set root [list display_name "root"]
2282 array set root [list type "root"]
2283 array set root [list path_expr "root"]
2284 array set root [list parent "root"]
2285 array set root [list children [get_tree_children root $tree]]
2286
2287 # Walk the tree
2288 set all_nodes $root(children); # a stack of nodes
2289 while {[llength $all_nodes] > 0} {
2290 # "Pop" the name of the global variable containing this varobj's
2291 # information from the stack of nodes.
2292 set var_name [lindex $all_nodes 0]
2293 set all_nodes [lreplace $all_nodes 0 0]
2294
2295 # Bring the global named in VAR_NAME into scope as the local variable
2296 # VAROBJ.
2297 upvar #0 $var_name varobj
2298
2299 # Append any children of VAROBJ to the list of nodes to walk.
2300 if {[llength $varobj(children)] > 0} {
2301 set all_nodes [concat $all_nodes $varobj(children)]
2302 }
2303
2304 # If this is a root variable, create the variable object for it.
2305 if {[string compare $varobj(parent) "root"] == 0} {
2306 mi_create_varobj $varobj(obj_name) $varobj(display_name) \
2307 "VT: create root varobj for $varobj(display_name)"
2308 }
2309
2310 # Now call the callback for VAROBJ.
2311 uplevel #0 $callback $var_name
2312 }
2313 }
2314}
2315
2316# The default varobj tree callback, which simply tests -var-list-children.
2317proc mi_varobj_tree_test_children_callback {variable} {
2318 ::varobj_tree::test_children_callback $variable
2319}
2320
2321# Walk the variable object tree given by TREE, calling the specified
2322# CALLBACK. By default this uses mi_varobj_tree_test_children_callback.
440e2fca
KS
2323proc mi_walk_varobj_tree {language tree \
2324 {callback \
2325 mi_varobj_tree_test_children_callback}} {
2326 ::varobj_tree::walk_tree $language $tree $callback
1eec78bd 2327}
4b48d439
KS
2328
2329# Build a list of key-value pairs given by the list ATTR_LIST. Flatten
2330# this list using the optional JOINER, a comma by default.
2331#
2332# The list must contain an even number of elements, which are the key-value
2333# pairs. Each value will be surrounded by quotes, according to the grammar,
2334# except if the value starts with \[ or \{, when the quotes will be omitted.
2335#
2336# Example: mi_build_kv_pairs {a b c d e f g \[.*\]}
2337# returns a=\"b\",c=\"d\",e=\"f\",g=\[.*\]
2338proc mi_build_kv_pairs {attr_list {joiner ,}} {
2339 set l {}
2340 foreach {var value} $attr_list {
2341 if {[string range $value 0 1] == "\\\["
2342 || [string range $value 0 1] == "\\\{"} {
2343 lappend l "$var=$value"
2344 } else {
2345 lappend l "$var=\"$value\""
2346 }
2347 }
2348 return "[join $l $joiner]"
2349}
2350
2351# Construct a breakpoint regexp. This may be used to test the output of
2352# -break-insert, -dprintf-insert, or -break-info.
2353#
2354# All arguments for the breakpoint may be specified using the options
2355# number, type, disp, enabled, addr, func, file, fullanme, line,
2356# thread-groups, times, ignore, script, and original-location.
2357#
2358# Only if -script and -ignore are given will they appear in the output.
2359# Otherwise, this procedure will skip them using ".*".
2360#
2361# Example: mi_make_breakpoint -number 2 -file ".*/myfile.c" -line 3
2362# will return the breakpoint:
2363# bkpt={number="2",type=".*",disp=".*",enabled=".*",addr=".*",func=".*",
2364# file=".*/myfile.c",fullname=".*",line="3",thread-groups=\[.*\],
2365# times="0".*original-location=".*"}
2366
2367proc mi_make_breakpoint {args} {
2368 parse_args {{number .*} {type .*} {disp .*} {enabled .*} {addr .*}
2369 {func .*} {file .*} {fullname .*} {line .*}
2370 {thread-groups \\\[.*\\\]} {times .*} {ignore 0}
2371 {script ""} {original-location .*}}
2372
2373 set attr_list {}
2374 foreach attr [list number type disp enabled addr func file \
2375 fullname line thread-groups times] {
2376 lappend attr_list $attr [set $attr]
2377 }
2378
2379 set result "bkpt={[mi_build_kv_pairs $attr_list]"
2380
2381 # There are always exceptions.
2382 # If SCRIPT and IGNORE are not present, do not output them.
2383 if {$ignore != 0} {
2384 append result ","
2385 append result [mi_build_kv_pairs [list "ignore" $ignore]]
2386 append result ","
2387 }
2388 if {[string length $script] > 0} {
2389 append result ","
2390 append result [mi_build_kv_pairs [list "script" $script]]
2391 append result ","
2392 } else {
2393 # Allow anything up until the next "official"/required attribute.
2394 # This pattern skips over script/ignore if matches on those
2395 # were not specifically required by the caller.
2396 append result ".*"
2397 }
2398 append result [mi_build_kv_pairs \
2399 [list "original-location" ${original-location}]]
2400 append result "}"
2401 return $result
2402}
2403
2404# Build a breakpoint table regexp given the list of breakpoints in `bp_list',
2405# constructed by mi_make_breakpoint.
2406#
2407# Example: Construct a breakpoint table where the only attributes we
2408# test for are the existence of three breakpoints numbered 1, 2, and 3.
2409#
2410# set bps {}
2411# lappend bps [mi_make_breakpoint -number 1]
2412# lappend bps [mi_make_breakpoint -number 2]
2413# lappned bps [mi_make_breakpoint -number 3]
2414# mi_make_breakpoint_table $bps
2415# will return (abbreviated for clarity):
2416# BreakpointTable={nr_rows="3",nr_cols="6",hdr=[{width=".*",...} ...],
2417# body=[bkpt={number="1",...},bkpt={number="2",...},bkpt={number="3",...}]}
2418
2419proc mi_make_breakpoint_table {bp_list} {
2420 # Build header -- assume a standard header for all breakpoint tables.
2421 set hl {}
2422 foreach {nm hdr} [list number Num type Type disp Disp enabled Enb \
2423 addr Address what What] {
2424 # The elements here are the MI table headers, which have the
2425 # format:
2426 # {width="7",alignment="-1",col_name="number",colhdr="Num"}
2427 lappend hl "{[mi_build_kv_pairs [list width .* alignment .* \
2428 col_name $nm colhdr $hdr]]}"
2429 }
2430 set header "hdr=\\\[[join $hl ,]\\\]"
2431
2432 # The caller has implicitly supplied the number of columns and rows.
2433 set nc [llength $hl]
2434 set nr [llength $bp_list]
2435
2436 # Build body -- mi_make_breakpoint has done most of the work.
2437 set body "body=\\\[[join $bp_list ,]\\\]"
2438
2439 # Assemble the final regexp.
2440 return "BreakpointTable={nr_rows=\"$nr\",nr_cols=\"$nc\",$header,$body}"
2441}
This page took 1.917494 seconds and 4 git commands to generate.