2019-02-03 06:48:21 -07:00
|
|
|
" Debugger plugin using gdb.
|
2017-11-06 19:16:52 -07:00
|
|
|
"
|
2019-05-16 02:21:05 -07:00
|
|
|
" Author: Bram Moolenaar
|
|
|
|
" Copyright: Vim license applies, see ":help license"
|
2021-09-08 07:24:12 -07:00
|
|
|
" Last Change: 2021 May 18
|
2019-05-16 02:21:05 -07:00
|
|
|
"
|
|
|
|
" WORK IN PROGRESS - Only the basics work
|
|
|
|
" Note: On MS-Windows you need a recent version of gdb. The one included with
|
|
|
|
" MingW is too old (7.6.1).
|
|
|
|
" I used version 7.12 from http://www.equation.com/servlet/equation.cmd?fa=gdb
|
2017-11-06 19:16:52 -07:00
|
|
|
"
|
2019-05-16 02:21:05 -07:00
|
|
|
" There are two ways to run gdb:
|
|
|
|
" - In a terminal window; used if possible, does not work on MS-Windows
|
|
|
|
" Not used when g:termdebug_use_prompt is set to 1.
|
|
|
|
" - Using a "prompt" buffer; may use a terminal window for the program
|
2019-02-03 06:48:21 -07:00
|
|
|
"
|
2019-05-16 02:21:05 -07:00
|
|
|
" For both the current window is used to view source code and shows the
|
|
|
|
" current statement from gdb.
|
|
|
|
"
|
|
|
|
" USING A TERMINAL WINDOW
|
|
|
|
"
|
|
|
|
" Opens two visible terminal windows:
|
|
|
|
" 1. runs a pty for the debugged program, as with ":term NONE"
|
|
|
|
" 2. runs gdb, passing the pty of the debugged program
|
2019-02-03 06:48:21 -07:00
|
|
|
" A third terminal window is hidden, it is used for communication with gdb.
|
|
|
|
"
|
2019-05-16 02:21:05 -07:00
|
|
|
" USING A PROMPT BUFFER
|
|
|
|
"
|
|
|
|
" Opens a window with a prompt buffer to communicate with gdb.
|
|
|
|
" Gdb is run as a job with callbacks for I/O.
|
|
|
|
" On Unix another terminal window is opened to run the debugged program
|
|
|
|
" On MS-Windows a separate console is opened to run the debugged program
|
|
|
|
"
|
2019-02-03 06:48:21 -07:00
|
|
|
" The communication with gdb uses GDB/MI. See:
|
|
|
|
" https://sourceware.org/gdb/current/onlinedocs/gdb/GDB_002fMI.html
|
2017-11-06 19:16:52 -07:00
|
|
|
"
|
2019-05-16 02:21:05 -07:00
|
|
|
" For neovim compatibility, the vim specific calls were replaced with neovim
|
|
|
|
" specific calls:
|
|
|
|
" term_start -> term_open
|
2019-05-23 03:30:28 -07:00
|
|
|
" term_sendkeys -> chansend
|
2019-05-16 02:21:05 -07:00
|
|
|
" term_getline -> getbufline
|
|
|
|
" job_info && term_getjob -> using linux command ps to get the tty
|
|
|
|
" balloon -> nvim floating window
|
|
|
|
"
|
|
|
|
" The code for opening the floating window was taken from the beautiful
|
2021-03-10 06:20:22 -07:00
|
|
|
" implementation of LanguageClient-Neovim:
|
2019-05-16 02:21:05 -07:00
|
|
|
" https://github.com/autozimu/LanguageClient-neovim/blob/0ed9b69dca49c415390a8317b19149f97ae093fa/autoload/LanguageClient.vim#L304
|
|
|
|
"
|
|
|
|
" Neovim terminal also works seamlessly on windows, which is why the ability
|
2017-11-06 19:16:52 -07:00
|
|
|
" Author: Bram Moolenaar
|
2019-02-03 06:48:21 -07:00
|
|
|
" Copyright: Vim license applies, see ":help license"
|
2017-11-06 19:16:52 -07:00
|
|
|
|
2019-05-16 02:21:05 -07:00
|
|
|
" In case this gets sourced twice.
|
2017-11-07 11:34:37 -07:00
|
|
|
if exists(':Termdebug')
|
|
|
|
finish
|
|
|
|
endif
|
|
|
|
|
2019-05-23 03:30:28 -07:00
|
|
|
" The terminal feature does not work with gdb on win32.
|
|
|
|
if !has('win32')
|
|
|
|
let s:way = 'terminal'
|
|
|
|
else
|
|
|
|
let s:way = 'prompt'
|
|
|
|
endif
|
2019-05-16 02:21:05 -07:00
|
|
|
|
|
|
|
let s:keepcpo = &cpo
|
|
|
|
set cpo&vim
|
|
|
|
|
2019-02-03 06:48:21 -07:00
|
|
|
" The command that starts debugging, e.g. ":Termdebug vim".
|
|
|
|
" To end type "quit" in the gdb window.
|
2019-05-16 02:21:05 -07:00
|
|
|
command -nargs=* -complete=file -bang Termdebug call s:StartDebug(<bang>0, <f-args>)
|
|
|
|
command -nargs=+ -complete=file -bang TermdebugCommand call s:StartDebugCommand(<bang>0, <f-args>)
|
2017-11-06 19:16:52 -07:00
|
|
|
|
2019-02-03 06:48:21 -07:00
|
|
|
" Name of the gdb command, defaults to "gdb".
|
2019-09-30 17:17:11 -07:00
|
|
|
if !exists('g:termdebugger')
|
|
|
|
let g:termdebugger = 'gdb'
|
2017-11-06 19:16:52 -07:00
|
|
|
endif
|
|
|
|
|
2019-04-15 22:48:52 -07:00
|
|
|
let s:pc_id = 12
|
2021-03-10 06:20:22 -07:00
|
|
|
let s:asm_id = 13
|
|
|
|
let s:break_id = 14 " breakpoint number is added to this
|
2019-05-16 02:21:05 -07:00
|
|
|
let s:stopped = 1
|
|
|
|
|
2021-03-10 06:20:22 -07:00
|
|
|
let s:parsing_disasm_msg = 0
|
|
|
|
let s:asm_lines = []
|
|
|
|
let s:asm_addr = ''
|
|
|
|
|
2019-05-16 02:21:05 -07:00
|
|
|
" Take a breakpoint number as used by GDB and turn it into an integer.
|
|
|
|
" The breakpoint may contain a dot: 123.4 -> 123004
|
|
|
|
" The main breakpoint has a zero subid.
|
|
|
|
func s:Breakpoint2SignNumber(id, subid)
|
|
|
|
return s:break_id + a:id * 1000 + a:subid
|
|
|
|
endfunction
|
|
|
|
|
|
|
|
func s:Highlight(init, old, new)
|
|
|
|
let default = a:init ? 'default ' : ''
|
|
|
|
if a:new ==# 'light' && a:old !=# 'light'
|
|
|
|
exe "hi " . default . "debugPC term=reverse ctermbg=lightblue guibg=lightblue"
|
|
|
|
elseif a:new ==# 'dark' && a:old !=# 'dark'
|
|
|
|
exe "hi " . default . "debugPC term=reverse ctermbg=darkblue guibg=darkblue"
|
|
|
|
endif
|
|
|
|
endfunc
|
2019-04-15 22:48:52 -07:00
|
|
|
|
2019-05-16 02:21:05 -07:00
|
|
|
call s:Highlight(1, '', &background)
|
2019-04-15 22:48:52 -07:00
|
|
|
hi default debugBreakpoint term=reverse ctermbg=red guibg=red
|
2019-02-03 06:48:21 -07:00
|
|
|
|
2019-05-16 02:21:05 -07:00
|
|
|
func s:StartDebug(bang, ...)
|
|
|
|
" First argument is the command to debug, second core file or process ID.
|
|
|
|
call s:StartDebug_internal({'gdb_args': a:000, 'bang': a:bang})
|
|
|
|
endfunc
|
|
|
|
|
|
|
|
func s:StartDebugCommand(bang, ...)
|
|
|
|
" First argument is the command to debug, rest are run arguments.
|
|
|
|
call s:StartDebug_internal({'gdb_args': [a:1], 'proc_args': a:000[1:], 'bang': a:bang})
|
|
|
|
endfunc
|
|
|
|
|
|
|
|
func s:StartDebug_internal(dict)
|
|
|
|
if exists('s:gdbwin')
|
2019-09-30 17:17:11 -07:00
|
|
|
echoerr 'Terminal debugger already running, cannot run two'
|
2019-05-16 02:21:05 -07:00
|
|
|
return
|
|
|
|
endif
|
2019-09-30 17:17:11 -07:00
|
|
|
if !executable(g:termdebugger)
|
|
|
|
echoerr 'Cannot execute debugger program "' .. g:termdebugger .. '"'
|
|
|
|
return
|
|
|
|
endif
|
|
|
|
|
2019-05-16 02:21:05 -07:00
|
|
|
let s:ptywin = 0
|
|
|
|
let s:pid = 0
|
2021-03-10 06:20:22 -07:00
|
|
|
let s:asmwin = 0
|
2019-05-16 02:21:05 -07:00
|
|
|
|
|
|
|
" Uncomment this line to write logging in "debuglog".
|
|
|
|
" call ch_logfile('debuglog', 'w')
|
|
|
|
|
|
|
|
let s:sourcewin = win_getid(winnr())
|
2021-05-01 11:23:09 -07:00
|
|
|
|
|
|
|
" Remember the old value of 'signcolumn' for each buffer that it's set in, so
|
|
|
|
" that we can restore the value for all buffers.
|
|
|
|
let b:save_signcolumn = &signcolumn
|
|
|
|
let s:signcolumn_buflist = [bufnr()]
|
2019-02-03 06:48:21 -07:00
|
|
|
|
2019-05-16 02:21:05 -07:00
|
|
|
let s:save_columns = 0
|
2019-07-05 11:45:26 -07:00
|
|
|
let s:allleft = 0
|
2019-05-16 02:21:05 -07:00
|
|
|
if exists('g:termdebug_wide')
|
|
|
|
if &columns < g:termdebug_wide
|
|
|
|
let s:save_columns = &columns
|
|
|
|
let &columns = g:termdebug_wide
|
2019-07-05 11:45:26 -07:00
|
|
|
" If we make the Vim window wider, use the whole left halve for the debug
|
|
|
|
" windows.
|
|
|
|
let s:allleft = 1
|
2019-05-16 02:21:05 -07:00
|
|
|
endif
|
|
|
|
let s:vertical = 1
|
2019-04-15 22:51:14 -07:00
|
|
|
else
|
2019-05-16 02:21:05 -07:00
|
|
|
let s:vertical = 0
|
2019-04-15 22:51:14 -07:00
|
|
|
endif
|
|
|
|
|
2019-05-23 03:30:28 -07:00
|
|
|
" Override using a terminal window by setting g:termdebug_use_prompt to 1.
|
|
|
|
let use_prompt = exists('g:termdebug_use_prompt') && g:termdebug_use_prompt
|
|
|
|
if !has('win32') && !use_prompt
|
|
|
|
let s:way = 'terminal'
|
|
|
|
else
|
|
|
|
let s:way = 'prompt'
|
|
|
|
endif
|
|
|
|
|
|
|
|
if s:way == 'prompt'
|
|
|
|
call s:StartDebug_prompt(a:dict)
|
|
|
|
else
|
|
|
|
call s:StartDebug_term(a:dict)
|
|
|
|
endif
|
2021-03-10 06:20:22 -07:00
|
|
|
|
|
|
|
if exists('g:termdebug_disasm_window')
|
|
|
|
if g:termdebug_disasm_window
|
|
|
|
let curwinid = win_getid(winnr())
|
|
|
|
call s:GotoAsmwinOrCreateIt()
|
|
|
|
call win_gotoid(curwinid)
|
|
|
|
endif
|
|
|
|
endif
|
2019-05-16 02:21:05 -07:00
|
|
|
endfunc
|
|
|
|
|
|
|
|
" Use when debugger didn't start or ended.
|
|
|
|
func s:CloseBuffers()
|
|
|
|
exe 'bwipe! ' . s:ptybuf
|
|
|
|
unlet! s:gdbwin
|
|
|
|
endfunc
|
|
|
|
|
2021-09-08 07:24:12 -07:00
|
|
|
func s:CheckGdbRunning()
|
|
|
|
if nvim_get_chan_info(s:gdb_job_id) == {}
|
|
|
|
echoerr string(g:termdebugger) . ' exited unexpectedly'
|
|
|
|
call s:CloseBuffers()
|
|
|
|
return ''
|
|
|
|
endif
|
|
|
|
return 'ok'
|
|
|
|
endfunc
|
|
|
|
|
2019-05-16 02:21:05 -07:00
|
|
|
func s:StartDebug_term(dict)
|
|
|
|
" Open a terminal window without a job, to run the debugged program in.
|
2019-07-05 11:45:26 -07:00
|
|
|
execute s:vertical ? 'vnew' : 'new'
|
2019-05-16 02:21:05 -07:00
|
|
|
let s:pty_job_id = termopen('tail -f /dev/null;#gdb program')
|
|
|
|
if s:pty_job_id == 0
|
|
|
|
echoerr 'invalid argument (or job table is full) while opening terminal window'
|
|
|
|
return
|
|
|
|
elseif s:pty_job_id == -1
|
2019-02-03 06:48:21 -07:00
|
|
|
echoerr 'Failed to open the program terminal window'
|
|
|
|
return
|
|
|
|
endif
|
2019-05-16 02:21:05 -07:00
|
|
|
let pty_job_info = nvim_get_chan_info(s:pty_job_id)
|
|
|
|
let s:ptybuf = pty_job_info['buffer']
|
|
|
|
let pty = pty_job_info['pty']
|
2019-04-15 22:50:25 -07:00
|
|
|
let s:ptywin = win_getid(winnr())
|
2019-05-16 02:21:05 -07:00
|
|
|
if s:vertical
|
|
|
|
" Assuming the source code window will get a signcolumn, use two more
|
|
|
|
" columns for that, thus one less for the terminal window.
|
|
|
|
exe (&columns / 2 - 1) . "wincmd |"
|
2019-07-05 11:45:26 -07:00
|
|
|
if s:allleft
|
|
|
|
" use the whole left column
|
|
|
|
wincmd H
|
|
|
|
endif
|
2019-05-16 02:21:05 -07:00
|
|
|
endif
|
2019-02-03 06:48:21 -07:00
|
|
|
|
|
|
|
" Create a hidden terminal window to communicate with gdb
|
2019-05-16 02:21:05 -07:00
|
|
|
let s:comm_job_id = jobstart('tail -f /dev/null;#gdb communication', {
|
|
|
|
\ 'on_stdout': function('s:CommOutput'),
|
|
|
|
\ 'pty': v:true,
|
|
|
|
\ })
|
|
|
|
" hide terminal buffer
|
|
|
|
if s:comm_job_id == 0
|
|
|
|
echoerr 'invalid argument (or job table is full) while opening communication terminal window'
|
|
|
|
exe 'bwipe! ' . s:ptybuf
|
|
|
|
return
|
|
|
|
elseif s:comm_job_id == -1
|
2019-02-03 06:48:21 -07:00
|
|
|
echoerr 'Failed to open the communication terminal window'
|
|
|
|
exe 'bwipe! ' . s:ptybuf
|
|
|
|
return
|
|
|
|
endif
|
2019-05-16 02:21:05 -07:00
|
|
|
let comm_job_info = nvim_get_chan_info(s:comm_job_id)
|
|
|
|
let commpty = comm_job_info['pty']
|
2017-11-06 19:16:52 -07:00
|
|
|
|
|
|
|
" Open a terminal window to run the debugger.
|
2019-05-16 02:21:05 -07:00
|
|
|
" Add -quiet to avoid the intro message causing a hit-enter prompt.
|
|
|
|
let gdb_args = get(a:dict, 'gdb_args', [])
|
|
|
|
let proc_args = get(a:dict, 'proc_args', [])
|
|
|
|
|
2021-09-08 07:24:12 -07:00
|
|
|
let cmd = [g:termdebugger, '-quiet', '-tty', pty, '--eval-command', 'echo startupdone\n'] + gdb_args
|
2019-05-16 02:21:05 -07:00
|
|
|
"call ch_log('executing "' . join(cmd) . '"')
|
|
|
|
execute 'new'
|
|
|
|
let s:gdb_job_id = termopen(cmd, {'on_exit': function('s:EndTermDebug')})
|
|
|
|
if s:gdb_job_id == 0
|
|
|
|
echoerr 'invalid argument (or job table is full) while opening gdb terminal window'
|
2019-02-03 06:48:21 -07:00
|
|
|
exe 'bwipe! ' . s:ptybuf
|
2019-05-16 02:21:05 -07:00
|
|
|
return
|
|
|
|
elseif s:gdb_job_id == -1
|
|
|
|
echoerr 'Failed to open the gdb terminal window'
|
|
|
|
call s:CloseBuffers()
|
2019-02-03 06:48:21 -07:00
|
|
|
return
|
|
|
|
endif
|
2019-05-16 02:21:05 -07:00
|
|
|
let gdb_job_info = nvim_get_chan_info(s:gdb_job_id)
|
|
|
|
let s:gdbbuf = gdb_job_info['buffer']
|
2019-04-15 22:50:25 -07:00
|
|
|
let s:gdbwin = win_getid(winnr())
|
2019-02-03 06:48:21 -07:00
|
|
|
|
2021-09-08 07:24:12 -07:00
|
|
|
" Wait for the "startupdone" message before sending any commands.
|
|
|
|
let try_count = 0
|
|
|
|
while 1
|
|
|
|
if s:CheckGdbRunning() != 'ok'
|
|
|
|
return
|
|
|
|
endif
|
|
|
|
|
|
|
|
for lnum in range(1, 200)
|
2021-09-08 07:35:40 -07:00
|
|
|
if get(getbufline(s:gdbbuf, lnum), 0, '') =~ 'startupdone'
|
2021-09-08 07:24:12 -07:00
|
|
|
let try_count = 9999
|
|
|
|
break
|
|
|
|
endif
|
|
|
|
endfor
|
|
|
|
let try_count += 1
|
|
|
|
if try_count > 300
|
|
|
|
" done or give up after five seconds
|
|
|
|
break
|
|
|
|
endif
|
|
|
|
sleep 10m
|
|
|
|
endwhile
|
|
|
|
|
|
|
|
" Set arguments to be run.
|
2019-05-16 02:21:05 -07:00
|
|
|
if len(proc_args)
|
2019-05-23 03:30:28 -07:00
|
|
|
call chansend(s:gdb_job_id, 'set args ' . join(proc_args) . "\r")
|
2019-05-16 02:21:05 -07:00
|
|
|
endif
|
|
|
|
|
2019-02-03 06:48:21 -07:00
|
|
|
" Connect gdb to the communication pty, using the GDB/MI interface
|
2019-05-23 03:30:28 -07:00
|
|
|
call chansend(s:gdb_job_id, 'new-ui mi ' . commpty . "\r")
|
2019-05-16 02:21:05 -07:00
|
|
|
|
|
|
|
" Wait for the response to show up, users may not notice the error and wonder
|
|
|
|
" why the debugger doesn't work.
|
|
|
|
let try_count = 0
|
|
|
|
while 1
|
2021-09-08 07:24:12 -07:00
|
|
|
if s:CheckGdbRunning() != 'ok'
|
2019-05-16 02:21:05 -07:00
|
|
|
return
|
|
|
|
endif
|
2019-04-15 22:48:52 -07:00
|
|
|
|
2019-05-16 02:21:05 -07:00
|
|
|
let response = ''
|
2020-06-09 17:53:04 -07:00
|
|
|
for lnum in range(1, 200)
|
|
|
|
let line1 = get(getbufline(s:gdbbuf, lnum), 0, '')
|
|
|
|
let line2 = get(getbufline(s:gdbbuf, lnum + 1), 0, '')
|
|
|
|
if line1 =~ 'new-ui mi '
|
2019-05-16 02:21:05 -07:00
|
|
|
" response can be in the same line or the next line
|
2020-06-09 17:53:04 -07:00
|
|
|
let response = line1 . line2
|
2019-05-16 02:21:05 -07:00
|
|
|
if response =~ 'Undefined command'
|
|
|
|
echoerr 'Sorry, your gdb is too old, gdb 7.12 is required'
|
|
|
|
call s:CloseBuffers()
|
|
|
|
return
|
|
|
|
endif
|
|
|
|
if response =~ 'New UI allocated'
|
|
|
|
" Success!
|
|
|
|
break
|
|
|
|
endif
|
2020-06-09 17:53:04 -07:00
|
|
|
elseif line1 =~ 'Reading symbols from' && line2 !~ 'new-ui mi '
|
|
|
|
" Reading symbols might take a while, try more times
|
|
|
|
let try_count -= 1
|
2019-05-16 02:21:05 -07:00
|
|
|
endif
|
|
|
|
endfor
|
|
|
|
if response =~ 'New UI allocated'
|
|
|
|
break
|
|
|
|
endif
|
|
|
|
let try_count += 1
|
|
|
|
if try_count > 100
|
|
|
|
echoerr 'Cannot check if your gdb works, continuing anyway'
|
|
|
|
break
|
|
|
|
endif
|
|
|
|
sleep 10m
|
|
|
|
endwhile
|
|
|
|
|
2021-04-24 15:13:46 -07:00
|
|
|
" Interpret commands while the target is running. This should usually only be
|
2019-05-16 02:21:05 -07:00
|
|
|
" exec-interrupt, since many commands don't work properly while the target is
|
|
|
|
" running.
|
|
|
|
call s:SendCommand('-gdb-set mi-async on')
|
|
|
|
" Older gdb uses a different command.
|
|
|
|
call s:SendCommand('-gdb-set target-async on')
|
|
|
|
|
|
|
|
" Disable pagination, it causes everything to stop at the gdb
|
|
|
|
" "Type <return> to continue" prompt.
|
|
|
|
call s:SendCommand('set pagination off')
|
|
|
|
|
|
|
|
call s:StartDebugCommon(a:dict)
|
|
|
|
endfunc
|
|
|
|
|
2019-05-23 03:30:28 -07:00
|
|
|
func s:StartDebug_prompt(dict)
|
|
|
|
" Open a window with a prompt buffer to run gdb in.
|
|
|
|
if s:vertical
|
|
|
|
vertical new
|
|
|
|
else
|
|
|
|
new
|
|
|
|
endif
|
|
|
|
let s:gdbwin = win_getid(winnr())
|
|
|
|
let s:promptbuf = bufnr('')
|
|
|
|
call prompt_setprompt(s:promptbuf, 'gdb> ')
|
|
|
|
set buftype=prompt
|
|
|
|
file gdb
|
|
|
|
call prompt_setcallback(s:promptbuf, function('s:PromptCallback'))
|
|
|
|
call prompt_setinterrupt(s:promptbuf, function('s:PromptInterrupt'))
|
|
|
|
|
|
|
|
if s:vertical
|
|
|
|
" Assuming the source code window will get a signcolumn, use two more
|
|
|
|
" columns for that, thus one less for the terminal window.
|
|
|
|
exe (&columns / 2 - 1) . "wincmd |"
|
|
|
|
endif
|
|
|
|
|
|
|
|
" Add -quiet to avoid the intro message causing a hit-enter prompt.
|
|
|
|
let gdb_args = get(a:dict, 'gdb_args', [])
|
|
|
|
let proc_args = get(a:dict, 'proc_args', [])
|
|
|
|
|
|
|
|
let cmd = [g:termdebugger, '-quiet', '--interpreter=mi2'] + gdb_args
|
|
|
|
"call ch_log('executing "' . join(cmd) . '"')
|
|
|
|
|
|
|
|
let s:gdbjob = jobstart(cmd, {
|
2021-03-10 06:20:22 -07:00
|
|
|
\ 'on_exit': function('s:EndPromptDebug'),
|
|
|
|
\ 'on_stdout': function('s:GdbOutCallback'),
|
|
|
|
\ })
|
2019-05-23 03:30:28 -07:00
|
|
|
if s:gdbjob == 0
|
|
|
|
echoerr 'invalid argument (or job table is full) while starting gdb job'
|
|
|
|
exe 'bwipe! ' . s:ptybuf
|
|
|
|
return
|
|
|
|
elseif s:gdbjob == -1
|
|
|
|
echoerr 'Failed to start the gdb job'
|
|
|
|
call s:CloseBuffers()
|
|
|
|
return
|
|
|
|
endif
|
|
|
|
|
2021-04-24 15:13:46 -07:00
|
|
|
" Interpret commands while the target is running. This should usually only
|
2019-05-23 03:30:28 -07:00
|
|
|
" be exec-interrupt, since many commands don't work properly while the
|
|
|
|
" target is running.
|
|
|
|
call s:SendCommand('-gdb-set mi-async on')
|
|
|
|
" Older gdb uses a different command.
|
|
|
|
call s:SendCommand('-gdb-set target-async on')
|
|
|
|
|
|
|
|
let s:ptybuf = 0
|
|
|
|
if has('win32')
|
|
|
|
" MS-Windows: run in a new console window for maximum compatibility
|
|
|
|
call s:SendCommand('set new-console on')
|
|
|
|
else
|
|
|
|
" Unix: Run the debugged program in a terminal window. Open it below the
|
|
|
|
" gdb window.
|
|
|
|
execute 'new'
|
|
|
|
wincmd x | wincmd j
|
|
|
|
belowright let s:pty_job_id = termopen('tail -f /dev/null;#gdb program')
|
|
|
|
if s:pty_job_id == 0
|
|
|
|
echoerr 'invalid argument (or job table is full) while opening terminal window'
|
|
|
|
return
|
|
|
|
elseif s:pty_job_id == -1
|
|
|
|
echoerr 'Failed to open the program terminal window'
|
|
|
|
return
|
|
|
|
endif
|
|
|
|
let pty_job_info = nvim_get_chan_info(s:pty_job_id)
|
|
|
|
let s:ptybuf = pty_job_info['buffer']
|
|
|
|
let pty = pty_job_info['pty']
|
|
|
|
let s:ptywin = win_getid(winnr())
|
|
|
|
call s:SendCommand('tty ' . pty)
|
|
|
|
|
|
|
|
" Since GDB runs in a prompt window, the environment has not been set to
|
|
|
|
" match a terminal window, need to do that now.
|
|
|
|
call s:SendCommand('set env TERM = xterm-color')
|
|
|
|
call s:SendCommand('set env ROWS = ' . winheight(s:ptywin))
|
|
|
|
call s:SendCommand('set env LINES = ' . winheight(s:ptywin))
|
|
|
|
call s:SendCommand('set env COLUMNS = ' . winwidth(s:ptywin))
|
|
|
|
call s:SendCommand('set env COLORS = ' . &t_Co)
|
|
|
|
call s:SendCommand('set env VIM_TERMINAL = ' . v:version)
|
|
|
|
endif
|
|
|
|
call s:SendCommand('set print pretty on')
|
|
|
|
call s:SendCommand('set breakpoint pending on')
|
|
|
|
" Disable pagination, it causes everything to stop at the gdb
|
|
|
|
call s:SendCommand('set pagination off')
|
|
|
|
|
|
|
|
" Set arguments to be run
|
|
|
|
if len(proc_args)
|
|
|
|
call s:SendCommand('set args ' . join(proc_args))
|
|
|
|
endif
|
|
|
|
|
|
|
|
call s:StartDebugCommon(a:dict)
|
|
|
|
startinsert
|
|
|
|
endfunc
|
2019-05-16 02:21:05 -07:00
|
|
|
|
|
|
|
func s:StartDebugCommon(dict)
|
2019-04-15 22:51:14 -07:00
|
|
|
" Sign used to highlight the line where the program has stopped.
|
|
|
|
" There can be only one.
|
|
|
|
sign define debugPC linehl=debugPC
|
|
|
|
|
2019-04-15 22:50:25 -07:00
|
|
|
" Install debugger commands in the text window.
|
2019-05-16 02:21:05 -07:00
|
|
|
call win_gotoid(s:sourcewin)
|
2019-04-15 22:48:52 -07:00
|
|
|
call s:InstallCommands()
|
2019-04-15 22:50:25 -07:00
|
|
|
call win_gotoid(s:gdbwin)
|
2019-04-15 22:48:52 -07:00
|
|
|
|
2019-05-16 02:21:05 -07:00
|
|
|
" Contains breakpoints that have been placed, key is a string with the GDB
|
|
|
|
" breakpoint number.
|
|
|
|
" Each entry is a dict, containing the sub-breakpoints. Key is the subid.
|
|
|
|
" For a breakpoint that is just a number the subid is zero.
|
|
|
|
" For a breakpoint "123.4" the id is "123" and subid is "4".
|
|
|
|
" Example, when breakpoint "44", "123", "123.1" and "123.2" exist:
|
|
|
|
" {'44': {'0': entry}, '123': {'0': entry, '1': entry, '2': entry}}
|
2019-04-15 22:48:52 -07:00
|
|
|
let s:breakpoints = {}
|
2019-05-16 02:21:05 -07:00
|
|
|
|
|
|
|
" Contains breakpoints by file/lnum. The key is "fname:lnum".
|
|
|
|
" Each entry is a list of breakpoint IDs at that position.
|
|
|
|
let s:breakpoint_locations = {}
|
|
|
|
|
|
|
|
augroup TermDebug
|
|
|
|
au BufRead * call s:BufRead()
|
|
|
|
au BufUnload * call s:BufUnloaded()
|
|
|
|
au OptionSet background call s:Highlight(0, v:option_old, v:option_new)
|
|
|
|
augroup END
|
|
|
|
|
|
|
|
" Run the command if the bang attribute was given and got to the debug
|
|
|
|
" window.
|
|
|
|
if get(a:dict, 'bang', 0)
|
|
|
|
call s:SendCommand('-exec-run')
|
|
|
|
call win_gotoid(s:ptywin)
|
|
|
|
endif
|
2017-11-06 19:16:52 -07:00
|
|
|
endfunc
|
|
|
|
|
2019-05-16 02:21:05 -07:00
|
|
|
" Send a command to gdb. "cmd" is the string without line terminator.
|
|
|
|
func s:SendCommand(cmd)
|
|
|
|
"call ch_log('sending to gdb: ' . a:cmd)
|
2019-05-23 03:30:28 -07:00
|
|
|
if s:way == 'prompt'
|
|
|
|
call chansend(s:gdbjob, a:cmd . "\n")
|
|
|
|
else
|
|
|
|
call chansend(s:comm_job_id, a:cmd . "\r")
|
|
|
|
endif
|
2019-05-16 02:21:05 -07:00
|
|
|
endfunc
|
|
|
|
|
|
|
|
" This is global so that a user can create their mappings with this.
|
|
|
|
func TermDebugSendCommand(cmd)
|
2019-05-23 03:30:28 -07:00
|
|
|
if s:way == 'prompt'
|
|
|
|
call chansend(s:gdbjob, a:cmd . "\n")
|
|
|
|
else
|
|
|
|
let do_continue = 0
|
|
|
|
if !s:stopped
|
|
|
|
let do_continue = 1
|
|
|
|
if s:way == 'prompt'
|
|
|
|
" Need to send a signal to get the UI to listen. Strangely this is only
|
|
|
|
" needed once.
|
|
|
|
call jobstop(s:gdbjob)
|
|
|
|
else
|
|
|
|
call s:SendCommand('-exec-interrupt')
|
|
|
|
endif
|
|
|
|
sleep 10m
|
|
|
|
endif
|
|
|
|
call chansend(s:gdb_job_id, a:cmd . "\r")
|
|
|
|
if do_continue
|
|
|
|
Continue
|
|
|
|
endif
|
2019-05-16 02:21:05 -07:00
|
|
|
endif
|
2019-05-23 03:30:28 -07:00
|
|
|
endfunc
|
|
|
|
|
|
|
|
" Function called when entering a line in the prompt buffer.
|
|
|
|
func s:PromptCallback(text)
|
|
|
|
call s:SendCommand(a:text)
|
|
|
|
endfunc
|
|
|
|
|
2019-05-24 19:14:35 -07:00
|
|
|
" Function called when pressing CTRL-C in the prompt buffer and when placing a
|
|
|
|
" breakpoint.
|
2019-05-23 03:30:28 -07:00
|
|
|
func s:PromptInterrupt()
|
2020-07-04 08:38:50 -07:00
|
|
|
" call ch_log('Interrupting gdb')
|
|
|
|
if has('win32')
|
|
|
|
" Using job_stop() does not work on MS-Windows, need to send SIGTRAP to
|
|
|
|
" the debugger program so that gdb responds again.
|
|
|
|
if s:pid == 0
|
|
|
|
echoerr 'Cannot interrupt gdb, did not find a process ID'
|
|
|
|
else
|
|
|
|
call debugbreak(s:pid)
|
|
|
|
endif
|
2019-05-24 19:14:35 -07:00
|
|
|
else
|
2020-07-04 08:38:50 -07:00
|
|
|
call jobstop(s:gdbjob)
|
2019-05-24 19:14:35 -07:00
|
|
|
endif
|
2019-05-23 03:30:28 -07:00
|
|
|
endfunc
|
|
|
|
|
|
|
|
" Function called when gdb outputs text.
|
|
|
|
func s:GdbOutCallback(job_id, msgs, event)
|
|
|
|
"call ch_log('received from gdb: ' . a:text)
|
|
|
|
|
|
|
|
" Drop the gdb prompt, we have our own.
|
|
|
|
" Drop status and echo'd commands.
|
|
|
|
call filter(a:msgs, { index, val ->
|
|
|
|
\ val !=# '(gdb)' && val !=# '^done' && val[0] !=# '&'})
|
|
|
|
|
|
|
|
let lines = []
|
|
|
|
let index = 0
|
|
|
|
|
|
|
|
for msg in a:msgs
|
|
|
|
if msg =~ '^^error,msg='
|
|
|
|
if exists('s:evalexpr')
|
|
|
|
\ && s:DecodeMessage(msg[11:])
|
|
|
|
\ =~ 'A syntax error in expression, near\|No symbol .* in current context'
|
|
|
|
" Silently drop evaluation errors.
|
|
|
|
call remove(a:msgs, index)
|
|
|
|
unlet s:evalexpr
|
|
|
|
continue
|
|
|
|
endif
|
|
|
|
elseif msg[0] == '~'
|
|
|
|
call add(lines, s:DecodeMessage(msg[1:]))
|
|
|
|
call remove(a:msgs, index)
|
|
|
|
continue
|
|
|
|
endif
|
|
|
|
let index += 1
|
|
|
|
endfor
|
|
|
|
|
|
|
|
let curwinid = win_getid(winnr())
|
|
|
|
call win_gotoid(s:gdbwin)
|
|
|
|
|
|
|
|
" Add the output above the current prompt.
|
|
|
|
for line in lines
|
|
|
|
call append(line('$') - 1, line)
|
|
|
|
endfor
|
|
|
|
if !empty(lines)
|
|
|
|
set modified
|
2019-05-16 02:21:05 -07:00
|
|
|
endif
|
2019-05-23 03:30:28 -07:00
|
|
|
|
|
|
|
call win_gotoid(curwinid)
|
|
|
|
call s:CommOutput(a:job_id, a:msgs, a:event)
|
2019-05-16 02:21:05 -07:00
|
|
|
endfunc
|
2019-04-15 22:48:52 -07:00
|
|
|
|
2019-05-16 02:21:05 -07:00
|
|
|
" Decode a message from gdb. quotedText starts with a ", return the text up
|
|
|
|
" to the next ", unescaping characters.
|
|
|
|
func s:DecodeMessage(quotedText)
|
|
|
|
if a:quotedText[0] != '"'
|
|
|
|
echoerr 'DecodeMessage(): missing quote in ' . a:quotedText
|
|
|
|
return
|
|
|
|
endif
|
|
|
|
let result = ''
|
|
|
|
let i = 1
|
|
|
|
while a:quotedText[i] != '"' && i < len(a:quotedText)
|
|
|
|
if a:quotedText[i] == '\'
|
|
|
|
let i += 1
|
|
|
|
if a:quotedText[i] == 'n'
|
2021-04-22 19:53:42 -07:00
|
|
|
" drop \n
|
|
|
|
let i += 1
|
|
|
|
continue
|
|
|
|
elseif a:quotedText[i] == 't'
|
|
|
|
" append \t
|
|
|
|
let i += 1
|
|
|
|
let result .= "\t"
|
|
|
|
continue
|
2019-05-16 02:21:05 -07:00
|
|
|
endif
|
|
|
|
endif
|
|
|
|
let result .= a:quotedText[i]
|
|
|
|
let i += 1
|
|
|
|
endwhile
|
|
|
|
return result
|
|
|
|
endfunc
|
|
|
|
|
|
|
|
" Extract the "name" value from a gdb message with fullname="name".
|
|
|
|
func s:GetFullname(msg)
|
|
|
|
if a:msg !~ 'fullname'
|
|
|
|
return ''
|
|
|
|
endif
|
|
|
|
let name = s:DecodeMessage(substitute(a:msg, '.*fullname=', '', ''))
|
|
|
|
if has('win32') && name =~ ':\\\\'
|
|
|
|
" sometimes the name arrives double-escaped
|
|
|
|
let name = substitute(name, '\\\\', '\\', 'g')
|
|
|
|
endif
|
|
|
|
return name
|
|
|
|
endfunc
|
|
|
|
|
2021-03-10 06:20:22 -07:00
|
|
|
" Extract the "addr" value from a gdb message with addr="0x0001234".
|
|
|
|
func s:GetAsmAddr(msg)
|
|
|
|
if a:msg !~ 'addr='
|
|
|
|
return ''
|
|
|
|
endif
|
|
|
|
let addr = s:DecodeMessage(substitute(a:msg, '.*addr=', '', ''))
|
|
|
|
return addr
|
|
|
|
endfunc
|
|
|
|
|
2019-05-16 02:21:05 -07:00
|
|
|
function s:EndTermDebug(job_id, exit_code, event)
|
|
|
|
unlet s:gdbwin
|
|
|
|
|
|
|
|
call s:EndDebugCommon()
|
|
|
|
endfunc
|
|
|
|
|
|
|
|
func s:EndDebugCommon()
|
2019-04-15 22:48:52 -07:00
|
|
|
let curwinid = win_getid(winnr())
|
|
|
|
|
2019-05-16 02:21:05 -07:00
|
|
|
if exists('s:ptybuf') && s:ptybuf
|
|
|
|
exe 'bwipe! ' . s:ptybuf
|
|
|
|
endif
|
|
|
|
|
2021-05-01 11:23:09 -07:00
|
|
|
" Restore 'signcolumn' in all buffers for which it was set.
|
2019-05-16 02:21:05 -07:00
|
|
|
call win_gotoid(s:sourcewin)
|
2021-05-01 11:23:09 -07:00
|
|
|
let was_buf = bufnr()
|
|
|
|
for bufnr in s:signcolumn_buflist
|
|
|
|
if bufexists(bufnr)
|
|
|
|
exe bufnr .. "buf"
|
|
|
|
if exists('b:save_signcolumn')
|
|
|
|
let &signcolumn = b:save_signcolumn
|
|
|
|
unlet b:save_signcolumn
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
endfor
|
|
|
|
exe was_buf .. "buf"
|
|
|
|
|
2019-04-15 22:48:52 -07:00
|
|
|
call s:DeleteCommands()
|
|
|
|
|
|
|
|
call win_gotoid(curwinid)
|
2019-05-16 02:21:05 -07:00
|
|
|
|
2019-04-15 22:51:14 -07:00
|
|
|
if s:save_columns > 0
|
|
|
|
let &columns = s:save_columns
|
|
|
|
endif
|
2019-05-16 02:21:05 -07:00
|
|
|
|
|
|
|
au! TermDebug
|
2019-02-03 06:48:21 -07:00
|
|
|
endfunc
|
|
|
|
|
2019-05-23 03:30:28 -07:00
|
|
|
func s:EndPromptDebug(job_id, exit_code, event)
|
|
|
|
let curwinid = win_getid(winnr())
|
|
|
|
call win_gotoid(s:gdbwin)
|
|
|
|
close
|
|
|
|
if curwinid != s:gdbwin
|
|
|
|
call win_gotoid(curwinid)
|
|
|
|
endif
|
|
|
|
|
|
|
|
call s:EndDebugCommon()
|
|
|
|
unlet s:gdbwin
|
|
|
|
"call ch_log("Returning from EndPromptDebug()")
|
|
|
|
endfunc
|
|
|
|
|
2021-03-10 06:20:22 -07:00
|
|
|
" - CommOutput: disassemble $pc
|
|
|
|
" - CommOutput: &"disassemble $pc\n"
|
|
|
|
" - CommOutput: ~"Dump of assembler code for function main(int, char**):\n"
|
|
|
|
" - CommOutput: ~" 0x0000555556466f69 <+0>:\tpush rbp\n"
|
|
|
|
" ...
|
|
|
|
" - CommOutput: ~" 0x0000555556467cd0:\tpop rbp\n"
|
|
|
|
" - CommOutput: ~" 0x0000555556467cd1:\tret \n"
|
|
|
|
" - CommOutput: ~"End of assembler dump.\n"
|
|
|
|
" - CommOutput: ^done
|
|
|
|
|
|
|
|
" - CommOutput: disassemble $pc
|
|
|
|
" - CommOutput: &"disassemble $pc\n"
|
|
|
|
" - CommOutput: &"No function contains specified address.\n"
|
|
|
|
" - CommOutput: ^error,msg="No function contains specified address."
|
|
|
|
func s:HandleDisasmMsg(msg)
|
|
|
|
if a:msg =~ '^\^done'
|
|
|
|
let curwinid = win_getid(winnr())
|
|
|
|
if win_gotoid(s:asmwin)
|
|
|
|
silent normal! gg0"_dG
|
|
|
|
call setline(1, s:asm_lines)
|
|
|
|
set nomodified
|
|
|
|
set filetype=asm
|
|
|
|
|
|
|
|
let lnum = search('^' . s:asm_addr)
|
|
|
|
if lnum != 0
|
|
|
|
exe 'sign unplace ' . s:asm_id
|
|
|
|
exe 'sign place ' . s:asm_id . ' line=' . lnum . ' name=debugPC'
|
|
|
|
endif
|
|
|
|
|
|
|
|
call win_gotoid(curwinid)
|
|
|
|
endif
|
|
|
|
|
|
|
|
let s:parsing_disasm_msg = 0
|
|
|
|
let s:asm_lines = []
|
|
|
|
elseif a:msg =~ '^\^error,msg='
|
|
|
|
if s:parsing_disasm_msg == 1
|
|
|
|
" Disassemble call ran into an error. This can happen when gdb can't
|
|
|
|
" find the function frame address, so let's try to disassemble starting
|
|
|
|
" at current PC
|
|
|
|
call s:SendCommand('disassemble $pc,+100')
|
|
|
|
endif
|
|
|
|
let s:parsing_disasm_msg = 0
|
|
|
|
elseif a:msg =~ '\&\"disassemble \$pc'
|
|
|
|
if a:msg =~ '+100'
|
|
|
|
" This is our second disasm attempt
|
|
|
|
let s:parsing_disasm_msg = 2
|
|
|
|
endif
|
|
|
|
else
|
|
|
|
let value = substitute(a:msg, '^\~\"[ ]*', '', '')
|
|
|
|
let value = substitute(value, '^=>[ ]*', '', '')
|
|
|
|
let value = substitute(value, '\\n\"
$', '', '')
|
|
|
|
let value = substitute(value, '
', '', '')
|
|
|
|
let value = substitute(value, '\\t', ' ', 'g')
|
|
|
|
|
|
|
|
if value != '' || !empty(s:asm_lines)
|
|
|
|
call add(s:asm_lines, value)
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
endfunc
|
|
|
|
|
2019-05-16 02:21:05 -07:00
|
|
|
func s:CommOutput(job_id, msgs, event)
|
2019-02-03 06:48:21 -07:00
|
|
|
|
2019-05-16 02:21:05 -07:00
|
|
|
for msg in a:msgs
|
2019-02-03 06:48:21 -07:00
|
|
|
" remove prefixed NL
|
|
|
|
if msg[0] == "\n"
|
|
|
|
let msg = msg[1:]
|
|
|
|
endif
|
2021-03-10 06:20:22 -07:00
|
|
|
|
|
|
|
if s:parsing_disasm_msg
|
|
|
|
call s:HandleDisasmMsg(msg)
|
|
|
|
elseif msg != ''
|
2019-05-16 02:21:05 -07:00
|
|
|
if msg =~ '^\(\*stopped\|\*running\|=thread-selected\)'
|
|
|
|
call s:HandleCursor(msg)
|
2019-04-15 22:50:25 -07:00
|
|
|
elseif msg =~ '^\^done,bkpt=' || msg =~ '^=breakpoint-created,'
|
2019-05-16 02:21:05 -07:00
|
|
|
call s:HandleNewBreakpoint(msg)
|
2019-04-15 22:48:52 -07:00
|
|
|
elseif msg =~ '^=breakpoint-deleted,'
|
2019-05-16 02:21:05 -07:00
|
|
|
call s:HandleBreakpointDelete(msg)
|
|
|
|
elseif msg =~ '^=thread-group-started'
|
|
|
|
call s:HandleProgramRun(msg)
|
2019-04-15 22:50:25 -07:00
|
|
|
elseif msg =~ '^\^done,value='
|
2019-05-16 02:21:05 -07:00
|
|
|
call s:HandleEvaluate(msg)
|
2019-04-15 22:50:25 -07:00
|
|
|
elseif msg =~ '^\^error,msg='
|
2019-05-16 02:21:05 -07:00
|
|
|
call s:HandleError(msg)
|
2021-03-10 06:20:22 -07:00
|
|
|
elseif msg =~ '^disassemble'
|
|
|
|
let s:parsing_disasm_msg = 1
|
|
|
|
let s:asm_lines = []
|
2019-04-15 22:48:52 -07:00
|
|
|
endif
|
|
|
|
endif
|
|
|
|
endfor
|
|
|
|
endfunc
|
|
|
|
|
2021-04-22 19:53:42 -07:00
|
|
|
func s:GotoProgram()
|
|
|
|
if has('win32')
|
|
|
|
if executable('powershell')
|
|
|
|
call system(printf('powershell -Command "add-type -AssemblyName microsoft.VisualBasic;[Microsoft.VisualBasic.Interaction]::AppActivate(%d);"', s:pid))
|
|
|
|
endif
|
|
|
|
else
|
2021-04-24 17:59:08 -07:00
|
|
|
call win_gotoid(s:ptywin)
|
2021-04-22 19:53:42 -07:00
|
|
|
endif
|
|
|
|
endfunc
|
|
|
|
|
2019-04-15 22:48:52 -07:00
|
|
|
" Install commands in the current window to control the debugger.
|
|
|
|
func s:InstallCommands()
|
2019-05-16 02:21:05 -07:00
|
|
|
let save_cpo = &cpo
|
|
|
|
set cpo&vim
|
|
|
|
|
2021-04-22 19:53:42 -07:00
|
|
|
command -nargs=? Break call s:SetBreakpoint(<q-args>)
|
2019-05-16 02:21:05 -07:00
|
|
|
command Clear call s:ClearBreakpoint()
|
2019-04-15 22:48:52 -07:00
|
|
|
command Step call s:SendCommand('-exec-step')
|
2019-04-15 22:50:25 -07:00
|
|
|
command Over call s:SendCommand('-exec-next')
|
2019-04-15 22:48:52 -07:00
|
|
|
command Finish call s:SendCommand('-exec-finish')
|
2019-05-16 02:21:05 -07:00
|
|
|
command -nargs=* Run call s:Run(<q-args>)
|
|
|
|
command -nargs=* Arguments call s:SendCommand('-exec-arguments ' . <q-args>)
|
|
|
|
command Stop call s:SendCommand('-exec-interrupt')
|
|
|
|
|
|
|
|
" using -exec-continue results in CTRL-C in gdb window not working
|
2019-05-23 03:30:28 -07:00
|
|
|
if s:way == 'prompt'
|
|
|
|
command Continue call s:SendCommand('continue')
|
|
|
|
else
|
|
|
|
command Continue call chansend(s:gdb_job_id, "continue\r")
|
|
|
|
endif
|
2019-05-16 02:21:05 -07:00
|
|
|
|
2019-04-15 22:50:25 -07:00
|
|
|
command -range -nargs=* Evaluate call s:Evaluate(<range>, <q-args>)
|
|
|
|
command Gdb call win_gotoid(s:gdbwin)
|
2021-04-22 19:53:42 -07:00
|
|
|
command Program call s:GotoProgram()
|
2019-05-16 02:21:05 -07:00
|
|
|
command Source call s:GotoSourcewinOrCreateIt()
|
2021-03-10 06:20:22 -07:00
|
|
|
command Asm call s:GotoAsmwinOrCreateIt()
|
2020-05-24 11:46:41 -07:00
|
|
|
command Winbar call s:InstallWinbar()
|
2019-04-15 22:50:25 -07:00
|
|
|
|
2021-04-27 22:55:06 -07:00
|
|
|
if !exists('g:termdebug_map_K') || g:termdebug_map_K
|
|
|
|
let s:k_map_saved = maparg('K', 'n', 0, 1)
|
|
|
|
nnoremap K :Evaluate<CR>
|
|
|
|
endif
|
2019-05-16 02:21:05 -07:00
|
|
|
|
|
|
|
let &cpo = save_cpo
|
2019-04-15 22:48:52 -07:00
|
|
|
endfunc
|
|
|
|
|
2019-12-21 20:45:11 -07:00
|
|
|
" let s:winbar_winids = []
|
2019-05-16 02:21:05 -07:00
|
|
|
|
2020-05-24 11:46:41 -07:00
|
|
|
" Install the window toolbar in the current window.
|
|
|
|
func s:InstallWinbar()
|
|
|
|
" if has('menu') && &mouse != ''
|
|
|
|
" nnoremenu WinBar.Step :Step<CR>
|
|
|
|
" nnoremenu WinBar.Next :Over<CR>
|
|
|
|
" nnoremenu WinBar.Finish :Finish<CR>
|
|
|
|
" nnoremenu WinBar.Cont :Continue<CR>
|
|
|
|
" nnoremenu WinBar.Stop :Stop<CR>
|
|
|
|
" nnoremenu WinBar.Eval :Evaluate<CR>
|
|
|
|
" call add(s:winbar_winids, win_getid(winnr()))
|
|
|
|
" endif
|
|
|
|
endfunc
|
|
|
|
|
2019-04-15 22:48:52 -07:00
|
|
|
" Delete installed debugger commands in the current window.
|
|
|
|
func s:DeleteCommands()
|
|
|
|
delcommand Break
|
2019-05-16 02:21:05 -07:00
|
|
|
delcommand Clear
|
2019-04-15 22:48:52 -07:00
|
|
|
delcommand Step
|
2019-04-15 22:50:25 -07:00
|
|
|
delcommand Over
|
2019-04-15 22:48:52 -07:00
|
|
|
delcommand Finish
|
2019-05-16 02:21:05 -07:00
|
|
|
delcommand Run
|
|
|
|
delcommand Arguments
|
|
|
|
delcommand Stop
|
2019-04-15 22:48:52 -07:00
|
|
|
delcommand Continue
|
2019-04-15 22:50:25 -07:00
|
|
|
delcommand Evaluate
|
|
|
|
delcommand Gdb
|
|
|
|
delcommand Program
|
2019-05-16 02:21:05 -07:00
|
|
|
delcommand Source
|
2021-03-10 06:20:22 -07:00
|
|
|
delcommand Asm
|
2020-05-24 11:46:41 -07:00
|
|
|
delcommand Winbar
|
2019-04-15 22:50:25 -07:00
|
|
|
|
2021-05-01 16:29:13 -07:00
|
|
|
if exists('s:k_map_saved')
|
|
|
|
if empty(s:k_map_saved)
|
|
|
|
nunmap K
|
|
|
|
else
|
|
|
|
call mapset('n', 0, s:k_map_saved)
|
|
|
|
endif
|
2021-04-27 22:55:06 -07:00
|
|
|
unlet s:k_map_saved
|
|
|
|
endif
|
2019-05-16 02:21:05 -07:00
|
|
|
|
2019-04-15 22:50:25 -07:00
|
|
|
exe 'sign unplace ' . s:pc_id
|
2019-05-16 02:21:05 -07:00
|
|
|
for [id, entries] in items(s:breakpoints)
|
|
|
|
for subid in keys(entries)
|
|
|
|
exe 'sign unplace ' . s:Breakpoint2SignNumber(id, subid)
|
|
|
|
endfor
|
2019-04-15 22:50:25 -07:00
|
|
|
endfor
|
|
|
|
unlet s:breakpoints
|
2019-05-16 02:21:05 -07:00
|
|
|
unlet s:breakpoint_locations
|
|
|
|
|
|
|
|
sign undefine debugPC
|
|
|
|
for val in s:BreakpointSigns
|
|
|
|
exe "sign undefine debugBreakpoint" . val
|
|
|
|
endfor
|
|
|
|
let s:BreakpointSigns = []
|
2019-04-15 22:48:52 -07:00
|
|
|
endfunc
|
|
|
|
|
|
|
|
" :Break - Set a breakpoint at the cursor position.
|
2021-04-22 19:53:42 -07:00
|
|
|
func s:SetBreakpoint(at)
|
2019-05-16 02:21:05 -07:00
|
|
|
" Setting a breakpoint may not work while the program is running.
|
|
|
|
" Interrupt to make it work.
|
|
|
|
let do_continue = 0
|
|
|
|
if !s:stopped
|
|
|
|
let do_continue = 1
|
2019-05-24 19:14:35 -07:00
|
|
|
if s:way == 'prompt'
|
|
|
|
call s:PromptInterrupt()
|
|
|
|
else
|
|
|
|
call s:SendCommand('-exec-interrupt')
|
|
|
|
endif
|
2019-05-16 02:21:05 -07:00
|
|
|
sleep 10m
|
|
|
|
endif
|
2021-04-22 19:53:42 -07:00
|
|
|
|
2019-05-16 02:21:05 -07:00
|
|
|
" Use the fname:lnum format, older gdb can't handle --source.
|
2021-04-22 19:53:42 -07:00
|
|
|
let at = empty(a:at) ?
|
|
|
|
\ fnameescape(expand('%:p')) . ':' . line('.') : a:at
|
|
|
|
call s:SendCommand('-break-insert ' . at)
|
2019-05-16 02:21:05 -07:00
|
|
|
if do_continue
|
|
|
|
call s:SendCommand('-exec-continue')
|
|
|
|
endif
|
2019-04-15 22:48:52 -07:00
|
|
|
endfunc
|
|
|
|
|
2019-05-16 02:21:05 -07:00
|
|
|
" :Clear - Delete a breakpoint at the cursor position.
|
|
|
|
func s:ClearBreakpoint()
|
2019-04-15 22:48:52 -07:00
|
|
|
let fname = fnameescape(expand('%:p'))
|
|
|
|
let lnum = line('.')
|
2019-05-16 02:21:05 -07:00
|
|
|
let bploc = printf('%s:%d', fname, lnum)
|
|
|
|
if has_key(s:breakpoint_locations, bploc)
|
|
|
|
let idx = 0
|
|
|
|
for id in s:breakpoint_locations[bploc]
|
|
|
|
if has_key(s:breakpoints, id)
|
2021-04-22 19:53:42 -07:00
|
|
|
" Assume this always works, the reply is simply "^done".
|
|
|
|
call s:SendCommand('-break-delete ' . id)
|
|
|
|
for subid in keys(s:breakpoints[id])
|
|
|
|
exe 'sign unplace ' . s:Breakpoint2SignNumber(id, subid)
|
|
|
|
endfor
|
|
|
|
unlet s:breakpoints[id]
|
|
|
|
unlet s:breakpoint_locations[bploc][idx]
|
|
|
|
break
|
2019-05-16 02:21:05 -07:00
|
|
|
else
|
|
|
|
let idx += 1
|
|
|
|
endif
|
|
|
|
endfor
|
|
|
|
if empty(s:breakpoint_locations[bploc])
|
|
|
|
unlet s:breakpoint_locations[bploc]
|
2019-04-15 22:48:52 -07:00
|
|
|
endif
|
2019-05-16 02:21:05 -07:00
|
|
|
endif
|
2019-04-15 22:48:52 -07:00
|
|
|
endfunc
|
|
|
|
|
2019-05-16 02:21:05 -07:00
|
|
|
func s:Run(args)
|
|
|
|
if a:args != ''
|
|
|
|
call s:SendCommand('-exec-arguments ' . a:args)
|
|
|
|
endif
|
|
|
|
call s:SendCommand('-exec-run')
|
|
|
|
endfunc
|
|
|
|
|
|
|
|
func s:SendEval(expr)
|
|
|
|
call s:SendCommand('-data-evaluate-expression "' . a:expr . '"')
|
|
|
|
let s:evalexpr = a:expr
|
2019-04-15 22:48:52 -07:00
|
|
|
endfunc
|
|
|
|
|
2019-04-15 22:50:25 -07:00
|
|
|
" :Evaluate - evaluate what is under the cursor
|
|
|
|
func s:Evaluate(range, arg)
|
|
|
|
if a:arg != ''
|
|
|
|
let expr = a:arg
|
2019-05-16 02:21:05 -07:00
|
|
|
let s:evalFromBalloonExpr = 0
|
2019-04-15 22:50:25 -07:00
|
|
|
elseif a:range == 2
|
|
|
|
let pos = getcurpos()
|
|
|
|
let reg = getreg('v', 1, 1)
|
|
|
|
let regt = getregtype('v')
|
|
|
|
normal! gv"vy
|
|
|
|
let expr = @v
|
|
|
|
call setpos('.', pos)
|
|
|
|
call setreg('v', reg, regt)
|
2019-05-16 02:21:05 -07:00
|
|
|
let s:evalFromBalloonExpr = 1
|
2019-04-15 22:50:25 -07:00
|
|
|
else
|
|
|
|
let expr = expand('<cexpr>')
|
2019-05-16 02:21:05 -07:00
|
|
|
let s:evalFromBalloonExpr = 1
|
2019-04-15 22:50:25 -07:00
|
|
|
endif
|
2019-05-16 02:21:05 -07:00
|
|
|
let s:ignoreEvalError = 0
|
|
|
|
call s:SendEval(expr)
|
2019-04-15 22:50:25 -07:00
|
|
|
endfunc
|
|
|
|
|
2019-05-16 02:21:05 -07:00
|
|
|
let s:ignoreEvalError = 0
|
|
|
|
let s:evalFromBalloonExpr = 0
|
|
|
|
let s:evalFromBalloonExprResult = ''
|
|
|
|
|
2019-04-15 22:50:25 -07:00
|
|
|
" Handle the result of data-evaluate-expression
|
|
|
|
func s:HandleEvaluate(msg)
|
2019-05-16 02:21:05 -07:00
|
|
|
let value = substitute(a:msg, '.*value="\(.*\)"', '\1', '')
|
|
|
|
let value = substitute(value, '\\"', '"', 'g')
|
|
|
|
let value = substitute(value, '
', '\1', '')
|
|
|
|
if s:evalFromBalloonExpr
|
|
|
|
if s:evalFromBalloonExprResult == ''
|
|
|
|
let s:evalFromBalloonExprResult = s:evalexpr . ': ' . value
|
|
|
|
else
|
|
|
|
let s:evalFromBalloonExprResult .= ' = ' . value
|
|
|
|
endif
|
2019-05-20 03:47:13 -07:00
|
|
|
let s:evalFromBalloonExprResult = split(s:evalFromBalloonExprResult, '\\n')
|
|
|
|
call s:OpenHoverPreview(s:evalFromBalloonExprResult, v:null)
|
2019-10-28 21:05:49 -07:00
|
|
|
let s:evalFromBalloonExprResult = ''
|
2019-05-16 02:21:05 -07:00
|
|
|
else
|
|
|
|
echomsg '"' . s:evalexpr . '": ' . value
|
|
|
|
endif
|
|
|
|
|
|
|
|
if s:evalexpr[0] != '*' && value =~ '^0x' && value != '0x0' && value !~ '"$'
|
|
|
|
" Looks like a pointer, also display what it points to.
|
|
|
|
let s:ignoreEvalError = 1
|
|
|
|
call s:SendEval('*' . s:evalexpr)
|
|
|
|
else
|
|
|
|
let s:evalFromBalloonExprResult = ''
|
|
|
|
endif
|
2019-04-15 22:50:25 -07:00
|
|
|
endfunc
|
|
|
|
|
2019-05-16 02:21:05 -07:00
|
|
|
function! s:ShouldUseFloatWindow() abort
|
2019-05-16 12:58:07 -07:00
|
|
|
if exists('*nvim_open_win') && (get(g:, 'termdebug_useFloatingHover', 1) == 1)
|
2019-05-16 02:21:05 -07:00
|
|
|
return v:true
|
|
|
|
else
|
|
|
|
return v:false
|
|
|
|
endif
|
|
|
|
endfunction
|
|
|
|
|
|
|
|
function! s:CloseFloatingHoverOnCursorMove(win_id, opened) abort
|
|
|
|
if getpos('.') == a:opened
|
|
|
|
" Just after opening floating window, CursorMoved event is run.
|
|
|
|
" To avoid closing floating window immediately, check the cursor
|
|
|
|
" was really moved
|
|
|
|
return
|
|
|
|
endif
|
2019-05-16 12:58:07 -07:00
|
|
|
autocmd! nvim_termdebug_close_hover
|
2019-05-16 02:21:05 -07:00
|
|
|
let winnr = win_id2win(a:win_id)
|
|
|
|
if winnr == 0
|
|
|
|
return
|
|
|
|
endif
|
2019-05-16 12:58:07 -07:00
|
|
|
call nvim_win_close(a:win_id, v:true)
|
2019-05-16 02:21:05 -07:00
|
|
|
endfunction
|
|
|
|
|
|
|
|
function! s:CloseFloatingHoverOnBufEnter(win_id, bufnr) abort
|
|
|
|
let winnr = win_id2win(a:win_id)
|
|
|
|
if winnr == 0
|
|
|
|
" Float window was already closed
|
2019-05-16 12:58:07 -07:00
|
|
|
autocmd! nvim_termdebug_close_hover
|
2019-05-16 02:21:05 -07:00
|
|
|
return
|
|
|
|
endif
|
|
|
|
if winnr == winnr()
|
|
|
|
" Cursor is moving into floating window. Do not close it
|
|
|
|
return
|
|
|
|
endif
|
|
|
|
if bufnr('%') == a:bufnr
|
|
|
|
" When current buffer opened hover window, it's not another buffer. Skipped
|
|
|
|
return
|
|
|
|
endif
|
2019-05-16 12:58:07 -07:00
|
|
|
autocmd! nvim_termdebug_close_hover
|
|
|
|
call nvim_win_close(a:win_id, v:true)
|
2019-05-16 02:21:05 -07:00
|
|
|
endfunction
|
|
|
|
|
|
|
|
" Open preview window. Window is open in:
|
|
|
|
" - Floating window on Neovim (0.4.0 or later)
|
|
|
|
" - Preview window on Neovim (0.3.0 or earlier) or Vim
|
|
|
|
function! s:OpenHoverPreview(lines, filetype) abort
|
|
|
|
" Use local variable since parameter is not modifiable
|
|
|
|
let lines = a:lines
|
|
|
|
let bufnr = bufnr('%')
|
|
|
|
|
|
|
|
let use_float_win = s:ShouldUseFloatWindow()
|
|
|
|
if use_float_win
|
2019-05-16 12:58:07 -07:00
|
|
|
let pos = getpos('.')
|
|
|
|
|
|
|
|
" Calculate width and height
|
|
|
|
let width = 0
|
|
|
|
for index in range(len(lines))
|
|
|
|
let line = lines[index]
|
|
|
|
let lw = strdisplaywidth(line)
|
|
|
|
if lw > width
|
|
|
|
let width = lw
|
2019-05-16 02:21:05 -07:00
|
|
|
endif
|
2019-05-16 12:58:07 -07:00
|
|
|
let lines[index] = line
|
|
|
|
endfor
|
2019-05-16 02:21:05 -07:00
|
|
|
|
2019-05-16 12:58:07 -07:00
|
|
|
let height = len(lines)
|
2019-05-16 02:21:05 -07:00
|
|
|
|
2019-05-16 12:58:07 -07:00
|
|
|
" Calculate anchor
|
|
|
|
" Prefer North, but if there is no space, fallback into South
|
|
|
|
let bottom_line = line('w0') + winheight(0) - 1
|
|
|
|
if pos[1] + height <= bottom_line
|
|
|
|
let vert = 'N'
|
|
|
|
let row = 1
|
|
|
|
else
|
|
|
|
let vert = 'S'
|
|
|
|
let row = 0
|
|
|
|
endif
|
2019-05-16 02:21:05 -07:00
|
|
|
|
2019-05-16 12:58:07 -07:00
|
|
|
" Prefer West, but if there is no space, fallback into East
|
|
|
|
if pos[2] + width <= &columns
|
|
|
|
let hor = 'W'
|
|
|
|
let col = 0
|
|
|
|
else
|
|
|
|
let hor = 'E'
|
|
|
|
let col = 1
|
|
|
|
endif
|
|
|
|
|
|
|
|
let buf = nvim_create_buf(v:false, v:true)
|
|
|
|
call nvim_buf_set_lines(buf, 0, -1, v:true, lines)
|
|
|
|
" using v:true for second argument of nvim_open_win make the floating
|
|
|
|
" window disappear
|
|
|
|
let float_win_id = nvim_open_win(buf, v:false, {
|
|
|
|
\ 'relative': 'cursor',
|
|
|
|
\ 'anchor': vert . hor,
|
|
|
|
\ 'row': row,
|
|
|
|
\ 'col': col,
|
|
|
|
\ 'width': width,
|
|
|
|
\ 'height': height,
|
2019-09-06 14:48:03 -07:00
|
|
|
\ 'style': 'minimal',
|
2019-05-16 12:58:07 -07:00
|
|
|
\ })
|
2019-09-06 14:48:03 -07:00
|
|
|
|
2019-05-16 12:58:07 -07:00
|
|
|
if a:filetype isnot v:null
|
|
|
|
call nvim_win_set_option(float_win_id, 'filetype', a:filetype)
|
|
|
|
endif
|
2019-05-16 02:21:05 -07:00
|
|
|
|
2019-05-16 12:58:07 -07:00
|
|
|
call nvim_buf_set_option(buf, 'modified', v:false)
|
|
|
|
call nvim_buf_set_option(buf, 'modifiable', v:false)
|
|
|
|
|
|
|
|
" Unlike preview window, :pclose does not close window. Instead, close
|
|
|
|
" hover window automatically when cursor is moved.
|
|
|
|
let call_after_move = printf('<SID>CloseFloatingHoverOnCursorMove(%d, %s)', float_win_id, string(pos))
|
|
|
|
let call_on_bufenter = printf('<SID>CloseFloatingHoverOnBufEnter(%d, %d)', float_win_id, bufnr)
|
|
|
|
augroup nvim_termdebug_close_hover
|
|
|
|
execute 'autocmd CursorMoved,CursorMovedI,InsertEnter <buffer> call ' . call_after_move
|
|
|
|
execute 'autocmd BufEnter * call ' . call_on_bufenter
|
|
|
|
augroup END
|
2019-05-16 02:21:05 -07:00
|
|
|
else
|
|
|
|
echomsg a:lines[0]
|
|
|
|
endif
|
|
|
|
endfunction
|
|
|
|
|
2019-04-15 22:50:25 -07:00
|
|
|
" Handle an error.
|
|
|
|
func s:HandleError(msg)
|
2019-05-16 02:21:05 -07:00
|
|
|
if s:ignoreEvalError
|
|
|
|
" Result of s:SendEval() failed, ignore.
|
|
|
|
let s:ignoreEvalError = 0
|
|
|
|
let s:evalFromBalloonExpr = 0
|
|
|
|
return
|
|
|
|
endif
|
2019-04-15 22:50:25 -07:00
|
|
|
echoerr substitute(a:msg, '.*msg="\(.*\)"', '\1', '')
|
|
|
|
endfunc
|
|
|
|
|
2019-05-16 02:21:05 -07:00
|
|
|
func s:GotoSourcewinOrCreateIt()
|
|
|
|
if !win_gotoid(s:sourcewin)
|
|
|
|
new
|
|
|
|
let s:sourcewin = win_getid(winnr())
|
2020-05-24 11:46:41 -07:00
|
|
|
call s:InstallWinbar()
|
2019-05-16 02:21:05 -07:00
|
|
|
endif
|
|
|
|
endfunc
|
|
|
|
|
2021-03-10 06:20:22 -07:00
|
|
|
func s:GotoAsmwinOrCreateIt()
|
|
|
|
if !win_gotoid(s:asmwin)
|
|
|
|
if win_gotoid(s:sourcewin)
|
|
|
|
exe 'rightbelow new'
|
|
|
|
else
|
|
|
|
exe 'new'
|
|
|
|
endif
|
|
|
|
|
|
|
|
let s:asmwin = win_getid(winnr())
|
|
|
|
|
|
|
|
setlocal nowrap
|
|
|
|
setlocal number
|
|
|
|
setlocal noswapfile
|
|
|
|
setlocal buftype=nofile
|
|
|
|
|
|
|
|
let asmbuf = bufnr('Termdebug-asm-listing')
|
|
|
|
if asmbuf > 0
|
|
|
|
exe 'buffer' . asmbuf
|
|
|
|
else
|
|
|
|
exe 'file Termdebug-asm-listing'
|
|
|
|
endif
|
|
|
|
|
|
|
|
if exists('g:termdebug_disasm_window')
|
|
|
|
if g:termdebug_disasm_window > 1
|
|
|
|
exe 'resize ' . g:termdebug_disasm_window
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
|
|
|
if s:asm_addr != ''
|
|
|
|
let lnum = search('^' . s:asm_addr)
|
|
|
|
if lnum == 0
|
|
|
|
if s:stopped
|
|
|
|
call s:SendCommand('disassemble $pc')
|
|
|
|
endif
|
|
|
|
else
|
|
|
|
exe 'sign unplace ' . s:asm_id
|
|
|
|
exe 'sign place ' . s:asm_id . ' line=' . lnum . ' name=debugPC'
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
endfunc
|
|
|
|
|
2019-04-15 22:48:52 -07:00
|
|
|
" Handle stopping and running message from gdb.
|
|
|
|
" Will update the sign that shows the current position.
|
|
|
|
func s:HandleCursor(msg)
|
|
|
|
let wid = win_getid(winnr())
|
|
|
|
|
2019-05-16 02:21:05 -07:00
|
|
|
if a:msg =~ '^\*stopped'
|
|
|
|
"call ch_log('program stopped')
|
|
|
|
let s:stopped = 1
|
|
|
|
elseif a:msg =~ '^\*running'
|
|
|
|
"call ch_log('program running')
|
|
|
|
let s:stopped = 0
|
|
|
|
endif
|
|
|
|
|
|
|
|
if a:msg =~ 'fullname='
|
|
|
|
let fname = s:GetFullname(a:msg)
|
|
|
|
else
|
|
|
|
let fname = ''
|
|
|
|
endif
|
2021-03-10 06:20:22 -07:00
|
|
|
|
|
|
|
if a:msg =~ 'addr='
|
|
|
|
let asm_addr = s:GetAsmAddr(a:msg)
|
|
|
|
if asm_addr != ''
|
|
|
|
let s:asm_addr = asm_addr
|
|
|
|
|
|
|
|
let curwinid = win_getid(winnr())
|
|
|
|
if win_gotoid(s:asmwin)
|
|
|
|
let lnum = search('^' . s:asm_addr)
|
|
|
|
if lnum == 0
|
|
|
|
call s:SendCommand('disassemble $pc')
|
|
|
|
else
|
|
|
|
exe 'sign unplace ' . s:asm_id
|
|
|
|
exe 'sign place ' . s:asm_id . ' line=' . lnum . ' name=debugPC'
|
|
|
|
endif
|
|
|
|
|
|
|
|
call win_gotoid(curwinid)
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
2019-05-16 02:21:05 -07:00
|
|
|
if a:msg =~ '^\(\*stopped\|=thread-selected\)' && filereadable(fname)
|
|
|
|
let lnum = substitute(a:msg, '.*line="\([^"]*\)".*', '\1', '')
|
|
|
|
if lnum =~ '^[0-9]*$'
|
2021-03-10 06:20:22 -07:00
|
|
|
call s:GotoSourcewinOrCreateIt()
|
2019-05-16 02:21:05 -07:00
|
|
|
if expand('%:p') != fnamemodify(fname, ':p')
|
|
|
|
if &modified
|
|
|
|
" TODO: find existing window
|
|
|
|
exe 'split ' . fnameescape(fname)
|
|
|
|
let s:sourcewin = win_getid(winnr())
|
2020-05-24 11:46:41 -07:00
|
|
|
call s:InstallWinbar()
|
2019-05-16 02:21:05 -07:00
|
|
|
else
|
|
|
|
exe 'edit ' . fnameescape(fname)
|
|
|
|
endif
|
2019-02-03 06:48:21 -07:00
|
|
|
endif
|
2019-05-16 02:21:05 -07:00
|
|
|
exe lnum
|
2019-04-15 22:48:52 -07:00
|
|
|
exe 'sign unplace ' . s:pc_id
|
2019-05-16 02:21:05 -07:00
|
|
|
exe 'sign place ' . s:pc_id . ' line=' . lnum . ' name=debugPC file=' . fname
|
2021-05-01 11:23:09 -07:00
|
|
|
if !exists('b:save_signcolumn')
|
|
|
|
let b:save_signcolumn = &signcolumn
|
|
|
|
call add(s:signcolumn_buflist, bufnr())
|
|
|
|
endif
|
2019-05-16 02:21:05 -07:00
|
|
|
setlocal signcolumn=yes
|
2019-02-03 06:48:21 -07:00
|
|
|
endif
|
2019-05-16 02:21:05 -07:00
|
|
|
elseif !s:stopped || fname != ''
|
|
|
|
exe 'sign unplace ' . s:pc_id
|
|
|
|
endif
|
|
|
|
|
|
|
|
call win_gotoid(wid)
|
|
|
|
endfunc
|
2019-04-15 22:48:52 -07:00
|
|
|
|
2019-05-16 02:21:05 -07:00
|
|
|
let s:BreakpointSigns = []
|
|
|
|
|
|
|
|
func s:CreateBreakpoint(id, subid)
|
|
|
|
let nr = printf('%d.%d', a:id, a:subid)
|
|
|
|
if index(s:BreakpointSigns, nr) == -1
|
|
|
|
call add(s:BreakpointSigns, nr)
|
|
|
|
exe "sign define debugBreakpoint" . nr . " text=" . substitute(nr, '\..*', '', '') . " texthl=debugBreakpoint"
|
2019-04-15 22:48:52 -07:00
|
|
|
endif
|
|
|
|
endfunc
|
|
|
|
|
2019-05-16 02:21:05 -07:00
|
|
|
func! s:SplitMsg(s)
|
|
|
|
return split(a:s, '{.\{-}}\zs')
|
|
|
|
endfunction
|
|
|
|
|
2019-04-15 22:48:52 -07:00
|
|
|
" Handle setting a breakpoint
|
|
|
|
" Will update the sign that shows the breakpoint
|
|
|
|
func s:HandleNewBreakpoint(msg)
|
2019-05-16 02:21:05 -07:00
|
|
|
if a:msg !~ 'fullname='
|
|
|
|
" a watch does not have a file name
|
2019-04-15 22:48:52 -07:00
|
|
|
return
|
|
|
|
endif
|
2019-05-16 02:21:05 -07:00
|
|
|
for msg in s:SplitMsg(a:msg)
|
|
|
|
let fname = s:GetFullname(msg)
|
|
|
|
if empty(fname)
|
|
|
|
continue
|
|
|
|
endif
|
|
|
|
let nr = substitute(msg, '.*number="\([0-9.]*\)\".*', '\1', '')
|
|
|
|
if empty(nr)
|
|
|
|
return
|
|
|
|
endif
|
2019-04-15 22:48:52 -07:00
|
|
|
|
2019-05-16 02:21:05 -07:00
|
|
|
" If "nr" is 123 it becomes "123.0" and subid is "0".
|
|
|
|
" If "nr" is 123.4 it becomes "123.4.0" and subid is "4"; "0" is discarded.
|
|
|
|
let [id, subid; _] = map(split(nr . '.0', '\.'), 'v:val + 0')
|
|
|
|
call s:CreateBreakpoint(id, subid)
|
2019-04-15 22:48:52 -07:00
|
|
|
|
2019-05-16 02:21:05 -07:00
|
|
|
if has_key(s:breakpoints, id)
|
|
|
|
let entries = s:breakpoints[id]
|
|
|
|
else
|
|
|
|
let entries = {}
|
|
|
|
let s:breakpoints[id] = entries
|
|
|
|
endif
|
|
|
|
if has_key(entries, subid)
|
|
|
|
let entry = entries[subid]
|
|
|
|
else
|
|
|
|
let entry = {}
|
|
|
|
let entries[subid] = entry
|
|
|
|
endif
|
2019-04-15 22:48:52 -07:00
|
|
|
|
2019-05-16 02:21:05 -07:00
|
|
|
let lnum = substitute(msg, '.*line="\([^"]*\)".*', '\1', '')
|
|
|
|
let entry['fname'] = fname
|
|
|
|
let entry['lnum'] = lnum
|
2019-04-15 22:48:52 -07:00
|
|
|
|
2019-05-16 02:21:05 -07:00
|
|
|
let bploc = printf('%s:%d', fname, lnum)
|
|
|
|
if !has_key(s:breakpoint_locations, bploc)
|
|
|
|
let s:breakpoint_locations[bploc] = []
|
|
|
|
endif
|
|
|
|
let s:breakpoint_locations[bploc] += [id]
|
|
|
|
|
|
|
|
if bufloaded(fname)
|
|
|
|
call s:PlaceSign(id, subid, entry)
|
|
|
|
endif
|
|
|
|
endfor
|
|
|
|
endfunc
|
|
|
|
|
|
|
|
func s:PlaceSign(id, subid, entry)
|
|
|
|
let nr = printf('%d.%d', a:id, a:subid)
|
2021-05-01 14:50:17 -07:00
|
|
|
exe 'sign place ' . s:Breakpoint2SignNumber(a:id, a:subid) . ' line=' . a:entry['lnum'] . ' name=debugBreakpoint' . nr . ' priority=110 file=' . a:entry['fname']
|
2019-05-16 02:21:05 -07:00
|
|
|
let a:entry['placed'] = 1
|
2019-04-15 22:48:52 -07:00
|
|
|
endfunc
|
|
|
|
|
|
|
|
" Handle deleting a breakpoint
|
|
|
|
" Will remove the sign that shows the breakpoint
|
|
|
|
func s:HandleBreakpointDelete(msg)
|
2019-05-16 02:21:05 -07:00
|
|
|
let id = substitute(a:msg, '.*id="\([0-9]*\)\".*', '\1', '') + 0
|
|
|
|
if empty(id)
|
|
|
|
return
|
|
|
|
endif
|
|
|
|
if has_key(s:breakpoints, id)
|
|
|
|
for [subid, entry] in items(s:breakpoints[id])
|
|
|
|
if has_key(entry, 'placed')
|
2021-04-22 19:53:42 -07:00
|
|
|
exe 'sign unplace ' . s:Breakpoint2SignNumber(id, subid)
|
|
|
|
unlet entry['placed']
|
2019-05-16 02:21:05 -07:00
|
|
|
endif
|
|
|
|
endfor
|
|
|
|
unlet s:breakpoints[id]
|
|
|
|
endif
|
|
|
|
endfunc
|
|
|
|
|
|
|
|
" Handle the debugged program starting to run.
|
|
|
|
" Will store the process ID in s:pid
|
|
|
|
func s:HandleProgramRun(msg)
|
|
|
|
let nr = substitute(a:msg, '.*pid="\([0-9]*\)\".*', '\1', '') + 0
|
2019-04-15 22:48:52 -07:00
|
|
|
if nr == 0
|
|
|
|
return
|
|
|
|
endif
|
2019-05-16 02:21:05 -07:00
|
|
|
let s:pid = nr
|
|
|
|
"call ch_log('Detected process ID: ' . s:pid)
|
|
|
|
endfunc
|
|
|
|
|
|
|
|
" Handle a BufRead autocommand event: place any signs.
|
|
|
|
func s:BufRead()
|
|
|
|
let fname = expand('<afile>:p')
|
|
|
|
for [id, entries] in items(s:breakpoints)
|
|
|
|
for [subid, entry] in items(entries)
|
|
|
|
if entry['fname'] == fname
|
2021-04-22 19:53:42 -07:00
|
|
|
call s:PlaceSign(id, subid, entry)
|
2019-05-16 02:21:05 -07:00
|
|
|
endif
|
|
|
|
endfor
|
|
|
|
endfor
|
2017-11-06 19:16:52 -07:00
|
|
|
endfunc
|
2019-05-16 02:21:05 -07:00
|
|
|
|
|
|
|
" Handle a BufUnloaded autocommand event: unplace any signs.
|
|
|
|
func s:BufUnloaded()
|
|
|
|
let fname = expand('<afile>:p')
|
|
|
|
for [id, entries] in items(s:breakpoints)
|
|
|
|
for [subid, entry] in items(entries)
|
|
|
|
if entry['fname'] == fname
|
2021-04-22 19:53:42 -07:00
|
|
|
let entry['placed'] = 0
|
2019-05-16 02:21:05 -07:00
|
|
|
endif
|
|
|
|
endfor
|
|
|
|
endfor
|
|
|
|
endfunc
|
|
|
|
|
2019-08-28 17:19:38 -07:00
|
|
|
let &cpo = s:keepcpo
|
|
|
|
unlet s:keepcpo
|