summaryrefslogtreecommitdiffstats
path: root/lldb/source/Plugins/ScriptInterpreter/Lua/ScriptInterpreterLua.h
Commit message (Collapse)AuthorAgeFilesLines
* [lldb/Lua] Support loading Lua modulesJonas Devlieghere2020-01-101-0/+5
| | | | | | Implements the command script import command for Lua. Differential revision: https://reviews.llvm.org/D71825
* [lldb/Lua] Make lldb.debugger et al available to LuaJonas Devlieghere2020-01-091-0/+4
| | | | | | | | The Python script interpreter makes the current debugger, target, process, thread and frame available to interactive scripting sessions through convenience variables. This patch does the same for Lua. Differential revision: https://reviews.llvm.org/D71801
* [Lldb/Lua] Persist Lua state across script interpreter calls.Jonas Devlieghere2019-12-211-1/+6
| | | | | | Don't create a new lua state on every operation. Share a single state across the lifetime of the script interpreter. Add simple locking to prevent two threads from modifying the state concurrently.
* [lldb/Lua] Add Boilerplate for a Lua Script InterpreterJonas Devlieghere2019-12-191-0/+47
This adds the boilerplate necessary to support the Lua script interpreter. The interpreter is not functional yet and just reports that it's not implemented. Discussion on the mailing list: http://lists.llvm.org/pipermail/lldb-dev/2019-December/015812.html Differential revision: https://reviews.llvm.org/D71232
OpenPOWER on IntegriCloud