Re: [lldb-dev] [RFC] Supporting Lua Scripting in LLDB

2019-12-09 Thread Raphael “Teemperor” Isemann via lldb-dev
I think this is great, thanks for working on this! My only concern is that I would prefer if we could limit the Lua tests to just the Lua->C++ calling machinery (e.g., that we handle Lua strings correctly and all that jazz) and not fragment our test suit. Otherwise Lua seems to require far less

Re: [lldb-dev] Stackoverflow crash when evaluating an invalid expression

2019-12-09 Thread Raphael “Teemperor” Isemann via lldb-dev
I don’t think we ever received a reproducer for this that would allow us to investigate this (or write a fix). - Raphael > On 8. Dec 2019, at 23:02, Vadim Chugunov via lldb-dev > wrote: > > Looks like I am hitting the same issue. Was there a fix checked in for this? > > On Thu, Mar 7, 2019

Re: [lldb-dev] [RFC] Supporting Lua Scripting in LLDB

2019-12-09 Thread Pavel Labath via lldb-dev
I think this would be a very interesting project, and would allow us to flesh out the details of the script interpreter interface. A lot of the complexity in our python code comes from the fact that python can be (a) embedded into lldb and (b) lldb can be embedded into python. It's been a while si

Re: [lldb-dev] [RFC] Supporting Lua Scripting in LLDB

2019-12-09 Thread Kamil Rytarowski via lldb-dev
Python is in general a no-go for a BSD basesystem (micropython can be an exception.. but Python is so large today that we can reevaluate this statement at some point). This is why we need to either disable certain features in LLDB or split LLDB between everything without Python in the base and the

Re: [lldb-dev] [llvm-dev] LLVM 9.0.1-rc2 has been tagged

2019-12-09 Thread Hans Wennborg via lldb-dev
On Sat, Dec 7, 2019 at 4:03 AM Tom Stellard via llvm-dev wrote: > > Hi, > > I've tagged LLVM 9.0.1-rc2. Testers can begin testing and uploading binaries. > If all goes well, this will be the last -rc. Windows looks good. $ sha256sum LLVM-9.0.1-rc2*.exe 131aa6b03a0c090ee9a5a9cd5e31fb27241e344c26

[lldb-dev] [Bug 27795] TestWatchLocation.py fails with a unicode decode error

2019-12-09 Thread via lldb-dev
https://bugs.llvm.org/show_bug.cgi?id=27795 Omair Javaid changed: What|Removed |Added Resolution|--- |WORKSFORME Status|NEW

[lldb-dev] [Bug 44160] TestSteppingOutWithArtificialFrames.py fails on AArch64 Ubuntu

2019-12-09 Thread via lldb-dev
https://bugs.llvm.org/show_bug.cgi?id=44160 Omair Javaid changed: What|Removed |Added CC||omair.jav...@linaro.org Resolution|---

[lldb-dev] [Bug 27883] TestConstVariables.py fails on arm/aarch64 linux targets failing frame variable type lookup

2019-12-09 Thread via lldb-dev
https://bugs.llvm.org/show_bug.cgi?id=27883 Omair Javaid changed: What|Removed |Added Resolution|--- |WORKSFORME Status|NEW

[lldb-dev] [Bug 37301] Unable to display statically initialized pointers on arm64 (linux?) without a running process

2019-12-09 Thread via lldb-dev
https://bugs.llvm.org/show_bug.cgi?id=37301 Omair Javaid changed: What|Removed |Added CC||omair.jav...@linaro.org Status|NEW

Re: [lldb-dev] [RFC] Supporting Lua Scripting in LLDB

2019-12-09 Thread Jonas Devlieghere via lldb-dev
On Mon, Dec 9, 2019 at 1:55 AM Pavel Labath wrote: > > I think this would be a very interesting project, and would allow us to > flesh out the details of the script interpreter interface. > > A lot of the complexity in our python code comes from the fact that > python can be (a) embedded into lldb

[lldb-dev] [Bug 44259] New: lldb crashes because of stack overflow in clang::ASTContext::getASTRecordLayout

2019-12-09 Thread via lldb-dev
https://bugs.llvm.org/show_bug.cgi?id=44259 Bug ID: 44259 Summary: lldb crashes because of stack overflow in clang::ASTContext::getASTRecordLayout Product: lldb Version: unspecified Hardware: PC OS: Linux

Re: [lldb-dev] [RFC] Supporting Lua Scripting in LLDB

2019-12-09 Thread Jonas Devlieghere via lldb-dev
Given that the response so far has been positive, I've put up the patches for review: https://reviews.llvm.org/D71232 https://reviews.llvm.org/D71234 https://reviews.llvm.org/D71235 Jonas On Mon, Dec 9, 2019 at 9:27 AM Jonas Devlieghere wrote: > > On Mon, Dec 9, 2019 at 1:55 AM Pavel Labath wr