- 091e0fa Move the building of llvm/clang and the swig wrappers into the lldb-core target. by Greg Clayton · 14 years ago
- ce16665 Fixed a warning with gcc 4.2 when the Xcode project falls back to the by Greg Clayton · 14 years ago
- 4fdf760 Split all of the core of LLDB.framework/lldb.so into a by Greg Clayton · 14 years ago
- ce1eefd Modify disasm.py to better deal with the objc method name which has ':' in them. by Johnny Chen · 14 years ago
- b1888f2 Added more platform support. There are now some new commands: by Greg Clayton · 14 years ago
- 10ff991 Add cases to test that two template instantiations of std::vector<long> and std::vector<short> by Johnny Chen · 14 years ago
- 3e40797 by Caroline Tice · 14 years ago
- 70c5562 Relax the constraint on the types of ValueObjects that we'll by default try the by Jim Ingham · 14 years ago
- 8d681f5 by Caroline Tice · 14 years ago
- e258440 Fix a problem where we were looking up the class pointer in the {class/sel -> implementation} cache for a objc_msgSendSuper call - where we should have looked up the class's super-class. by Jim Ingham · 14 years ago
- 53bfd06 Get ObjC stepping working again when the process is not the default host architecture. by Jim Ingham · 14 years ago
- 0251bc7 Tidy up the input file given to 'llvm-mc -disassemble' and also append the gdb by Johnny Chen · 14 years ago
- 9c407f5 Add a Python script to take an executable, run gdb to disassemble a function, by Johnny Chen · 14 years ago
- d793146 As a simple measure, output the lldb version and the svn info for by Johnny Chen · 14 years ago
- 8ce836d by Caroline Tice · 14 years ago
- 2b03ed8 by Caroline Tice · 14 years ago
- 1d080bd Updated LLVM/Clang to the latest release, to pick up AVX disassembly support. by Sean Callanan · 14 years ago
- 04fdd67 Now that we have the debug map issues fixed, change the Xcode project to by Greg Clayton · 14 years ago
- f1b73af Added a fix that should help incorrect type uniquing. There was an issue by Greg Clayton · 14 years ago
- 06cfe2e Make the first vector of "long" instead of "int" so we can tell the difference by Greg Clayton · 14 years ago
- 13acfc9 Added a test case for unique types. In the test case there are two std::vector by Greg Clayton · 14 years ago
- dd506e1 Added a fix to not re-use object files when doing DWARF with debug map. by Greg Clayton · 14 years ago
- 279584c Updated to LLVM/Clang revision 127600. by Sean Callanan · 14 years ago
- 52ce561 Fix makefile builds when llvm is configured with -enable-shared. by Stephen Wilson · 14 years ago
- f6aaf7d Turn labels into actual switch cases. by Benjamin Kramer · 14 years ago
- 015eb23 Add a missing include. by Stephen Wilson · 14 years ago
- 7304147 Add a test directory stop-hook to test the newly added "target stop-hook" command. by Johnny Chen · 14 years ago
- 8a3c043 Add pexpect-2.4 (a pure Python module for controlling and automating other programs) to the test directory. by Johnny Chen · 14 years ago
- 4f52c40 Discover the 'lldb' executable in the setUp() hook of the base test class. by Johnny Chen · 14 years ago
- 26901c8 Add a mechanism to discover the full path of the 'lldb' program into the test driver. by Johnny Chen · 14 years ago
- d60d94a Add a first pass at a "stop hook" mechanism. This allows you to add commands that get run every time the debugger stops, whether due to a breakpoint, the end of a step, interrupt, etc. You can also specify in which context you want the stop hook to run, for instance only on a particular thread, or only in a particular shared library, function, file, line range within a file. by Jim Ingham · 14 years ago
- a4fede3 CommandInterpreter::HandleCommands should take its commands as a "const StringList &" since it doesn't modify it... by Jim Ingham · 14 years ago
- 4a9d790 Fix a few things in the CommandArguments table. by Jim Ingham · 14 years ago
- 8053904 Declare some const functions as const. by Jim Ingham · 14 years ago
- a526823 Fix a typo in a comment. by Jim Ingham · 14 years ago
- 8d237a2 Add test cases to exercise the SBThread.GetProcess() API. We launch the process using the by Johnny Chen · 14 years ago
- 8054ba3 Minor typo fix and TAB removals. by Johnny Chen · 14 years ago
- ce207c1 by Caroline Tice · 14 years ago
- 4a384a9 Add a test case test_run_to_address() to exercise the SBThread.RunToAddress(lldb::addr_t addr) API. by Johnny Chen · 14 years ago
- a846cc3 Fixed the -r parameter to the disassemble command by Sean Callanan · 14 years ago
- 650fef9 Add test cases to TestThreadAPI.py to exercise SBThread.StepOver() by stopping at a breakpoint, by Johnny Chen · 14 years ago
- 912675f by Caroline Tice · 14 years ago
- 2a45681 by Caroline Tice · 14 years ago
- d09dcac Test cleanup. Check for the full caller symbol of malloc -- b(int). by Johnny Chen · 14 years ago
- ef6635b Add Makefile support for the Platform plugins. by Stephen Wilson · 14 years ago
- c97bfdb Centralize the GDB remote timeout value into the GDBRemoteCommunication as a by Greg Clayton · 14 years ago
- 69af39d Add test cases for Python SBThread.StepOut() API by stepping out of a malloc call where the call site is at function b(). by Johnny Chen · 14 years ago
- d151c8a Fixed a bug where the disassembly syntax specified for the by Sean Callanan · 14 years ago
- e59b869 There's no sense checking for < 0 with a return type of size_t: by Johnny Chen · 14 years ago
- 88e7859 Add an expectedFailure decorator to the test_connect_remote() test case. by Johnny Chen · 14 years ago
- e4b9c1f LLDB now has "Platform" plug-ins. Platform plug-ins are plug-ins that provide by Greg Clayton · 14 years ago
- 791af3b Fix ObjectFileElf::GetEntryPointAddress() by Stephen Wilson · 14 years ago
- 8be525a Add Makefile support for the new DynamicLoaderStatic plugin. by Stephen Wilson · 14 years ago
- e45140f I didn't notice there was already an ObjectFile::GetEntryPoint. Move that over to GetEntryPointAddress 'cause that's more consistent with other functions in ObjectFile, do the mutatis mutandi and also in the ELF case I return a section offset address rather than a bare load address. by Jim Ingham · 14 years ago
- e84d4fd Reverting the part of the debug-in-ofile patch from earlier today that removes them from the shared module list. That was causing a bunch of asserts. Greg is working on a better fix. by Jim Ingham · 14 years ago
- 2877594 Add a method "GetEntryPoint" to the ObjectFile class, and implement it on MachO & ELF - though the ELF implementation is probably a little weak. Then use this method in place of directly looking for "start" in the ThreadPlanCallFunction constructor to find the stopping point for our function evaluation. by Jim Ingham · 14 years ago
- 9d352ce by Caroline Tice · 14 years ago
- 329bb8b Add an extra twist of stopping the inferior in a breakpoint, and then continue till it's done. by Johnny Chen · 14 years ago
- edc0524 Add test cases for SBTarget.Launch() API with the stdout of the inferior redirected to a file. by Johnny Chen · 14 years ago
- 586a3e6 Add TestThreadAPI.py file to house the Python SBThread API test cases. by Johnny Chen · 14 years ago
- 2cd9418 Don't cache .o files in the debug map + DWARF in .o files. If we cache them by Greg Clayton · 14 years ago
- 42da4da Add a test case ProcessAPITestCase.test_remote_launch() which tests SBProcess.RemoteLaunch() by Johnny Chen · 14 years ago
- bd321c5 Added a DynamicLoaderStatic plug-in that will act as a static dynamic loader. by Greg Clayton · 14 years ago
- a7951be Add a test case for the lldb command 'process connect'. by Johnny Chen · 14 years ago
- d3475a2 Allow the macosx frame backchain to use 32/64 bit as the selector when by Greg Clayton · 14 years ago
- 7d71b1a Add docstrings for unittest framework's test methods. by Johnny Chen · 14 years ago
- 1f968f4 Change the CFLAGS variable assignment operator to ?= (conditional variable assignment operator). by Johnny Chen · 14 years ago
- e96c72b Add TestObjcOptimized.py under the objc-optimized directory to by Johnny Chen · 14 years ago
- 5acc343 Add objc source file and Makefile. Test case to follow. by Johnny Chen · 14 years ago
- 1a4d5e7 Add the ability for the test suite to specify a list of compilers and a list of architectures by Johnny Chen · 14 years ago
- 3809340 Expose ConnectRemote API through SBTarget and SBProcess. by James McIlree · 14 years ago
- 50339fe Fixed a bug in the expression parser where the 'this' by Sean Callanan · 14 years ago
- b27771d by Caroline Tice · 14 years ago
- 51ed1b6 Add TestDisasmAPI.py which exercises the newly added SBFunction/SBSymbol.GetStartAddress(), by Johnny Chen · 14 years ago
- 11555f2 by Caroline Tice · 14 years ago
- 8ce96d9 by Caroline Tice · 14 years ago
- 868198b by Caroline Tice · 14 years ago
- 6bf6516 by Caroline Tice · 14 years ago
- 77356a0 Add TestTargetAPI.py: by Johnny Chen · 14 years ago
- 40b1a6c by Caroline Tice · 14 years ago
- dcc11b3 by Caroline Tice · 14 years ago
- 89f1aa7 Export the ability to get the start and end addresses for functions by Greg Clayton · 14 years ago
- 5c1e2ed by Caroline Tice · 14 years ago
- afb8186 Added a missing API call in SBTarget that enables one to get by Greg Clayton · 14 years ago
- 291a3e9 by Caroline Tice · 14 years ago
- d2765fc Clarified the docstrings for int_to_bytearray() and bytearray_to_int(). by Johnny Chen · 14 years ago
- c7129c3 Add some function docs. by Jim Ingham · 14 years ago
- a6e29c2 Add some comments. by Johnny Chen · 14 years ago
- d2fac09 by Caroline Tice · 14 years ago
- 4c70f28 Add two utility functions to lldbutil.py: by Johnny Chen · 14 years ago
- 78fb563 by Caroline Tice · 14 years ago
- 672f311 by Caroline Tice · 14 years ago
- 60a544f Add an API SBProcess::GetByteOrder() and add test cases which utilizes GetByteOrder(), by Johnny Chen · 14 years ago
- 5f59391 by Caroline Tice · 14 years ago
- a5e28af by Caroline Tice · 14 years ago
- 27f0f40 Fix wrong placement of skipUnless() decorator. by Johnny Chen · 14 years ago
- aaea42e Add test methods for SBProcess.WriteMemory() API to the TestProcessAPI.py file. by Johnny Chen · 14 years ago
- 0e6bc95 by Caroline Tice · 14 years ago
- 36a0f74 Add TestProcessAPI.py which exercises some Python SBProcess API. In particular, this tests by Johnny Chen · 14 years ago
- 2396b9f Look for swig in /usr/bin and /usr/local/bin. by Jim Ingham · 14 years ago