[Lldb-commits] [PATCH] D108078: [lldb] Support gdbserver signals [WIP]

2021-08-15 Thread Michał Górny via Phabricator via lldb-commits
mgorny updated this revision to Diff 366487. mgorny edited the summary of this revision. mgorny added a comment. Added client tests for GDB and LLDB signal variants. Moved signal init into `DidLaunchOrAttach`, in order to have normalized target triple already (needed for correct os-name in test)

[Lldb-commits] [PATCH] D104281: [lldb][docs] Add reference docs for Lua scripting

2021-08-15 Thread Siger Young via Phabricator via lldb-commits
siger-young updated this revision to Diff 366494. siger-young added a comment. This update marks features that are only supported by Python, and adds Lua example code for using LLDB module. Repository: rG LLVM Github Monorepo CHANGES SINCE LAST ACTION https://reviews.llvm.org/D104281/new/

[Lldb-commits] [PATCH] D108088: [lldb] Avoid unhandled Error in TypeSystemMap::GetTypeSystemForLanguage

2021-08-15 Thread Dimitry Andric via Phabricator via lldb-commits
dim created this revision. dim added reviewers: aprantl, emaste, JDevlieghere, teemperor. Herald added subscribers: krytarowski, arichardson. dim requested review of this revision. Herald added a project: LLDB. When assertions are turned off, the `llvm::Error` value created at the start of this fu

[Lldb-commits] [PATCH] D108090: [lldb/lua] Supplement typemaps for Lua bindings

2021-08-15 Thread Siger Young via Phabricator via lldb-commits
siger-young created this revision. Herald added a subscriber: mgorny. siger-young requested review of this revision. Herald added a project: LLDB. Herald added a subscriber: lldb-commits. Add necessary typemaps for Lua bindings. Signed-off-by: Siger Yang Repository: rG LLVM Github Monorepo

[Lldb-commits] [PATCH] D108090: [lldb/lua] Supplement typemaps for Lua bindings

2021-08-15 Thread Siger Young via Phabricator via lldb-commits
siger-young updated this revision to Diff 366520. siger-young added a comment. Using `lua_newuserdata` instead of `lua_newuserdatauv` to support Lua 5.3 Repository: rG LLVM Github Monorepo CHANGES SINCE LAST ACTION https://reviews.llvm.org/D108090/new/ https://reviews.llvm.org/D108090 Fil