- Jun 14, 2011
-
-
Peter Collingbourne authored
Previously the IsValid pattern matched only function signatures of the form: def IsValid(*args): ... However under SWIG 1.3.40 on Linux the signature reads: def IsValid(self): ... The new pattern matches both signature types by matching only up to the left paren. llvm-svn: 132968
-
Peter Collingbourne authored
Fixes the Linux build. llvm-svn: 132967
-
Peter Collingbourne authored
llvm-svn: 132966
-
Peter Collingbourne authored
llvm-svn: 132965
-
Greg Clayton authored
llvm-svn: 132960
-
Johnny Chen authored
It was introduced to work around some debugger infrastructure bug which has long since been fixed. llvm-svn: 132951
-
- Jun 13, 2011
-
-
Caroline Tice authored
Cleaning up the Python script interpreter: Use the embedded_interpreter.py file rather than keeping it all in a string and compiling the string (easier to maintain, easier to read, remove redundancy). llvm-svn: 132935
-
Caroline Tice authored
More prompt-timing cleanups: Make multi-line expressions use the asynchronous stream mechanism rather than writing directly to the Debugger's output & error streams. llvm-svn: 132930
-
- Jun 10, 2011
-
-
Greg Clayton authored
llvm-svn: 132829
-
Greg Clayton authored
llvm-svn: 132828
-
Greg Clayton authored
llvm-svn: 132827
-
Greg Clayton authored
llvm-svn: 132823
-
Greg Clayton authored
to have the value for the map be a "const char *" instead of an unused uint32_t. This allows us to store the uniqued mangled/demangled counterpart in this map for mangled names. This also speeds up the mangled/demangled counterpart lookup that used to be maintained in a STL map by having direct access to the data. If we eventually need to associate other strings to strings to more data, we can make the value of the StringMap have a more complex value. Added the start of a history source and history event class. It isn't being used by anything yet, but might be shortly. llvm-svn: 132813
-
Johnny Chen authored
llvm-svn: 132808
-
Johnny Chen authored
If two SBAddress's have the same module and file address, they are considered equal. Add a test snippet 'sa1 == sa2' to exercise the rich comparison methods for SBAddress. llvm-svn: 132807
-
- Jun 06, 2011
-
-
Johnny Chen authored
llvm-svn: 132692
-
- Jun 04, 2011
-
-
Greg Clayton authored
cleaned up all base classes that had their own copy. Added a SetDescription accessor to the StopInfo class. llvm-svn: 132615
-
Greg Clayton authored
the thread we were running on (other thread crashed or had exceptional stop reason). llvm-svn: 132599
-
Greg Clayton authored
llvm-svn: 132597
-
- Jun 03, 2011
-
-
Johnny Chen authored
llvm-svn: 132594
-
Peter Collingbourne authored
llvm-svn: 132588
-
Peter Collingbourne authored
llvm-svn: 132587
-
Peter Collingbourne authored
llvm-svn: 132586
-
Peter Collingbourne authored
llvm-svn: 132585
-
Peter Collingbourne authored
llvm-svn: 132584
-
Peter Collingbourne authored
Currently the runtime dynamic linker lacks object file support for anything other than Mach-O. llvm-svn: 132583
-
Peter Collingbourne authored
llvm-svn: 132582
-
Caroline Tice authored
Make a few minor changes/corrections to scripting example on the web. llvm-svn: 132554
-
Jim Ingham authored
Added Debugger::GetAsync{Output/Error}Stream, and use it to print parse errors when we go to run a breakpoint condition. llvm-svn: 132517
-
Greg Clayton authored
llvm-svn: 132515
-
Caroline Tice authored
Add the web page for the 'Using Python Scripting to Debug a Program in LLDB' example. llvm-svn: 132513
-
Caroline Tice authored
Add source files for Python scripting example (coming soon). llvm-svn: 132512
-
Johnny Chen authored
llvm-svn: 132511
-
Johnny Chen authored
llvm-svn: 132507
-
Johnny Chen authored
When emulating an ill-formed instruction, we should bail out instead of asserting and bringing down the whole process. llvm-svn: 132506
-
Greg Clayton authored
llvm-svn: 132502
-
Greg Clayton authored
true/false in an extra boolean parameter and not cause the the binary that us using the LLDB framework to crash. llvm-svn: 132501
-
Greg Clayton authored
GDB server doesn't support the LLDB specific qThreadStopInfo packet. llvm-svn: 132499
-
Greg Clayton authored
handles. Also fixed a case where the packet wouldn't be dumped if it returned the unimplemented packet. llvm-svn: 132498
-
Caroline Tice authored
Use Py_InitializeEx(0) instead of Py_Initialize, to prevent Python from installing its own signal handlers. llvm-svn: 132492
-