aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/ProfileData/Coverage/CoverageMapping.cpp
diff options
context:
space:
mode:
authorPedro Tammela <pctammela@gmail.com>2020-12-16 21:34:44 +0000
committerPedro Tammela <pctammela@gmail.com>2021-01-07 00:31:36 +0000
commitd853bd7a4e86a50f7d7e6a5f397fcbd1e7d844b4 (patch)
tree866e27325d07e9be34f055ef74b58c11153988c7 /llvm/lib/ProfileData/Coverage/CoverageMapping.cpp
parent8871a4b4cab8a56fd6ff12fd024002c3c79128b3 (diff)
downloadllvm-d853bd7a4e86a50f7d7e6a5f397fcbd1e7d844b4.zip
llvm-d853bd7a4e86a50f7d7e6a5f397fcbd1e7d844b4.tar.gz
llvm-d853bd7a4e86a50f7d7e6a5f397fcbd1e7d844b4.tar.bz2
[lldb/Lua] add support for multiline scripted breakpoints
1 - Partial Statements The interpreter loop runs every line it receives, so partial Lua statements are not being handled properly. This is a problem for multiline breakpoint scripts since the interpreter loop, for this particular case, is just an abstraction to a partially parsed function body declaration. This patch addresses this issue and as a side effect improves the general Lua interpreter loop as well. It's now possible to write partial statements in the 'script' command. Example: (lldb) script >>> do ..> local a = 123 ..> print(a) ..> end 123 The technique implemented is the same as the one employed by Lua's own REPL implementation. Partial statements always errors out with the '<eof>' tag in the error message. 2 - CheckSyntax in Lua.h In order to support (1), we need an API for just checking the syntax of string buffers. 3 - Multiline scripted breakpoints Finally, with all the base features implemented this feature is straightforward. The interpreter loop behaves exactly the same, the difference is that it will aggregate all Lua statements into the body of the breakpoint function. An explicit 'quit' statement is needed to exit the interpreter loop. Example: (lldb) breakpoint command add -s lua Enter your Lua command(s). Type 'quit' to end. The commands are compiled as the body of the following Lua function function (frame, bp_loc, ...) end ..> print(456) ..> a = 123 ..> quit Differential Revision: https://reviews.llvm.org/D93481
Diffstat (limited to 'llvm/lib/ProfileData/Coverage/CoverageMapping.cpp')
0 files changed, 0 insertions, 0 deletions