Re: [lldb-dev] lldb fails to hit breakpoint when line maps to multiple addresses

2015-10-08 Thread Jim Ingham via lldb-dev
> On Oct 7, 2015, at 5:07 PM, Jim Ingham wrote: > > Another way to do this - which I thought about originally but rejected as too > much delicate machinery for the desired effect - is to add the notion of > "clusters" of locations to the breakpoint. Instead of eliding all the > segments with

Re: [lldb-dev] Process stops when two breakpoint are hit simulatenously, even though neither of them wants to stop

2015-10-08 Thread Jim Ingham via lldb-dev
> On Oct 8, 2015, at 1:03 AM, Keno Fischer via lldb-dev > wrote: > > Hi folks, > > I'm using the C++ API to create a breakpoint with callback. In the callback I > do some stuff and then always return false, to have the process continue. > This works great, except when a breakpoint hit is coi

[lldb-dev] [Bug 25111] New: SBThread::StepOut erases stack frames and doesn't set return value

2015-10-08 Thread via lldb-dev
https://llvm.org/bugs/show_bug.cgi?id=25111 Bug ID: 25111 Summary: SBThread::StepOut erases stack frames and doesn't set return value Product: lldb Version: unspecified Hardware: PC OS: Linux Sta

Re: [lldb-dev] How to set source line breakpoint using BreakpointCreateByLocation?

2015-10-08 Thread Greg Clayton via lldb-dev
> On Oct 7, 2015, at 8:31 PM, Jeffrey Tan via lldb-dev > wrote: > > Hi, > > I am writing a python script to set source line breakpoint in ObjC on Mac > OSX. But > self.debugger.GetSelectedTarget().BreakpointCreateByLocation("EATAnimatedView.m", > line) always fail. Any ideas? As long as yo

Re: [lldb-dev] Thread resumes with stale signal after executing InferiorCallMmap

2015-10-08 Thread Eugene Birukov via lldb-dev
Yes, that's exactly what I see, thanks a lot! Does it explain why I see SIGILL reappear when I let process continue after mmap execution? I.e. do I need to look into this more? Thanks,Eugene > From: lab...@google.com > Date: Thu, 8 Oct 2015 09:13:37 +0100 > Subject: Re: [lldb-dev] Thread resumes w

Re: [lldb-dev] Preliminary support for NetBSD

2015-10-08 Thread Kamil Rytarowski via lldb-dev
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 On 05.10.2015 21:46, Todd Fiala wrote: > Seems like a great idea. (Ed, is that something you might be able > to review?) > The first patch is already proposed: http://reviews.llvm.org/D13334 > Hopefully you have access to other platforms to test

[lldb-dev] [Bug 25106] New: lldb crashes when reading a core file

2015-10-08 Thread via lldb-dev
https://llvm.org/bugs/show_bug.cgi?id=25106 Bug ID: 25106 Summary: lldb crashes when reading a core file Product: lldb Version: 3.7 Hardware: PC OS: Linux Status: NEW Severity: normal Priority: P

Re: [lldb-dev] Thread resumes with stale signal after executing InferiorCallMmap

2015-10-08 Thread Pavel Labath via lldb-dev
Hi, I believe the SIGILL problem you are referring to is the problem described in bug . This was fixed in r244875, but unfortunately, this was after 3.7 branch so this patch did not make it there. I recommend to try the master branch, I think this shoul

[lldb-dev] Process stops when two breakpoint are hit simulatenously, even though neither of them wants to stop

2015-10-08 Thread Keno Fischer via lldb-dev
Hi folks, I'm using the C++ API to create a breakpoint with callback. In the callback I do some stuff and then always return false, to have the process continue. This works great, except when a breakpoint hit is coincident with another breakpoint (in my case I ran into this with both the jit break