- Jun 22, 2010
-
-
Benjamin Kramer authored
I'm not sure when multiple threads enter this method but a race-condition causing a crash in malloc can be reproduced with this little script: echo file $(which lldb) > cmd echo "run\nbreak set -n main\nrun\nexit" >> cmd lldb -s cmd It may need a few runs before it crashes though. llvm-svn: 106544
-
Benjamin Kramer authored
llvm-svn: 106535
-
- Jun 21, 2010
-
-
Benjamin Kramer authored
instructions so it's really profitable to inline them. llvm-svn: 106450
-
Benjamin Kramer authored
an unitialized variable. valgrind_errors -= 1; llvm-svn: 106418
-
Benjamin Kramer authored
dependent on the last byte of the buffer, which could be unitialized. llvm-svn: 106417
-
Benjamin Kramer authored
This also fixes a bug where we were trying to copy m_string into itself via a format string. The pointer was invalidated by m_string.resize and lldb (sometimes) crashed inside vsnprintf. llvm-svn: 106416
-
- Jun 19, 2010
-
-
Jim Ingham authored
Two changes in this checkin. Added a ThreadPlanKind so that I can do some reasoning based on the kind of thread plan without having to use RTTI. Removed the ThreadPlanContinue and replaced with a ShouldAutoContinue query that serves the same purpose. Having to push another plan to assert that if there's no other indication the target should continue when this plan is popped was flakey and error prone. This method is more stable, and fixed problems we were having with thread specific breakpoints. llvm-svn: 106378
-
Jim Ingham authored
Remember whether a queue or thread name were passed into "breakpoint modify" so we can recognize an empty argument as unsetting the option. llvm-svn: 106377
-
- Jun 18, 2010
-
-
Jim Ingham authored
llvm-svn: 106297
-
Jim Ingham authored
llvm-svn: 106268
-
Jim Ingham authored
Move the "status" command to "process status" since that's where it belongs. Also make it print "running" if invoked when the current process is running. llvm-svn: 106265
-
Jim Ingham authored
Change the Breakpoint & BreakpointLocation GetDescription methods so they call the BreakpointOptions::GetDescription rather than picking bits out of the breakpoint options. Added BreakpointOptions::GetDescription to do this job. Some more mucking around to keep the breakpoint listing from getting too verbose. llvm-svn: 106262
-
Jim Ingham authored
Change "breakpoint configure" to "breakpoint modify" so it doesn't collide with "breakpoint command" Change "breakpoint enable/disable" so changing a breakpoint's state doesn't also overwrite the location states. llvm-svn: 106261
-
- Jun 17, 2010
-
-
Owen Anderson authored
llvm-svn: 106192
-
Sean Callanan authored
llvm-svn: 106186
-
Sean Callanan authored
into the constructor for the LLVMDisassembler, resulting in asserts. llvm-svn: 106160
-
- Jun 16, 2010
-
-
Owen Anderson authored
llvm-svn: 106116
-
Jim Ingham authored
Add a "thread specification" class that specifies thread specific breakpoints by name, index, queue or TID. Push this through all the breakpoint management code. Allow this to be set when the breakpoint is created. Fix the Process classes so that a breakpoint hit that is not for a particular thread is not reported as a breakpoint hit event for that thread. Added a "breakpoint configure" command to allow you to reset any of the thread specific options (or the ignore count.) llvm-svn: 106078
-
- Jun 15, 2010
-
-
Jim Ingham authored
llvm-svn: 106034
-
Jim Ingham authored
Fixed the Disassemble arguments so you can't specify start address or name in multiple ways. Fixed the command line input so you can specify the filename without "-f" even if you use other options. llvm-svn: 106020
-
- Jun 14, 2010
-
-
Greg Clayton authored
be shared with linux. Updated Xcode project. llvm-svn: 105928
-
Greg Clayton authored
BreakpointLocation::GetLoadAddress() does not match the 'StoppointLocation::GetLoadAddress() const' virtual function prototype, and so, does not override the superclass function. llvm-svn: 105927
-
- Jun 13, 2010
-
-
Eli Friedman authored
Linux or doesn't compile on Linux. llvm-svn: 105923
-
Eli Friedman authored
llvm-svn: 105922
-
Eli Friedman authored
llvm-svn: 105921
-
Greg Clayton authored
llvm-svn: 105918
-
Eli Friedman authored
llvm-svn: 105906
-
Eli Friedman authored
llvm-svn: 105905
-
- Jun 12, 2010
-
-
Greg Clayton authored
Also added a shell script build phase that fixes the headers in LLDB.framework. llvm-svn: 105899
-
Eli Friedman authored
llvm-svn: 105896
-
Greg Clayton authored
We need to put this in LLDB since we need to vend this in our API because our public API uses shared pointers to our private objects. Removed a deprecated file: include/lldb/Host/Types.h Added the new SharingPtr.cpp/.h files into source/Utility. Added a shell script build phase that fixes up all headers in the LLDB.framework. llvm-svn: 105895
-
Greg Clayton authored
refer to the new locations. llvm-svn: 105885
-
Greg Clayton authored
Fixed an issue with the new DW_TAG_ptr_to_member_type changes where the clang type that was being created was using the pointee_type for both the class and the member pointer. llvm-svn: 105883
-
Greg Clayton authored
llvm-svn: 105868
-
Greg Clayton authored
Fixed an extra include path in the Xcode project. llvm-svn: 105867
-
Greg Clayton authored
llvm-svn: 105866
-
Jason Molenda authored
removal from lldb-types.h llvm-svn: 105865
-
Jason Molenda authored
Fixed problem Jean-Daniel Dupas found in ProcessGDBRemote.cpp. llvm-svn: 105857
-
- Jun 11, 2010
-
-
Owen Anderson authored
llvm-svn: 105835
-
Owen Anderson authored
ickiness, and is cleaner to boot. I'm fairly confident that I converted the comparator over properly, and what testing I could figure out how to run seemed to pass, but it would be great if someone in the know could check behind me. llvm-svn: 105834
-