1. 4f33a82 Fix the partial backtrace when using a combination of stripped function symbols by Ashok Thirumurthi · 11 years ago
  2. 2029d58 elf-core: Support FreeBSD at compile-time by Ed Maste · 11 years ago
  3. f6f5269 Re-introduces ELF core file support for Linux x86-64 by Ashok Thirumurthi · 11 years ago
  4. 8f9653b Correct comment to match class name by Ed Maste · 11 years ago
  5. 7220c65 FreeBSD: Replace GetSignalInfo with GetLwpInfo by Ed Maste · 11 years ago
  6. 0bbfea6 simple plugin now works with Linux fix assert in SetPluginInfo implement Linux ePathTypeLLDBSystemPlugins and ePathTypeLLDBUserPlugins implement Linux Host::Backtrace and Host::GetEnvironment add .gnu_debugdata comment by Michael Sartain · 11 years ago
  7. 36a09d1 Fix Rendezvous breakpoint to only be set once, resolve addr in BreakpointLocationList::FindByAddress by Michael Sartain · 11 years ago
  8. 3407e76 Fix typeos. by Jason Molenda · 11 years ago
  9. 0645d18 Add tests for 'thread step out' for multithreaded programs by Daniel Malea · 11 years ago
  10. 250e749 Fixed a problem in IRForTarget where we would not by Sean Callanan · 11 years ago
  11. 473e233 Disabling the introspecting summary for __NSCFSet (essentially, for CF*SetRef) by Enrico Granata · 11 years ago
  12. 801c11e Remove unused RunLocker and related code by Ed Maste · 11 years ago
  13. 97abb6d <rdar://problem/13793059> by Greg Clayton · 11 years ago
  14. a5445d5 Fix typeo in diagnose-unwind.py. by Jason Molenda · 11 years ago
  15. 1e46e1a Fix issues with GCC debugging. GCC emits DWARF in unique ways that LLDB wasn't handling. This fix will fix cases where classes are forward declared using DW_TAG_structure_type and then actually defined using DW_TAG_class_type. LLDB, when it finds a forward declaration, would try and find and parse the complete type. It does this by: by Greg Clayton · 11 years ago
  16. a9aab24 Actually use the return value we get back when by Sean Callanan · 11 years ago
  17. 0b009ee Adds a passing test for step-over and step-out when the inferior is about to call longjmp (non-local goto) in a single-threaded inferior. by Ashok Thirumurthi · 11 years ago
  18. 7a11ebd Bump version number to 310.99.0. by Jason Molenda · 11 years ago
  19. 9671f05 Commit Timothee Besset's patch to update Host/linux/Host.cpp to keep up by Jason Molenda · 11 years ago
  20. 4a4448b Modified the expression parser to only try to by Sean Callanan · 11 years ago
  21. 750ed92 Revert the ELF core file support until a few things can be worked out: by Greg Clayton · 11 years ago
  22. f789be4 Missed a checking that should have been checked in with 186211. by Greg Clayton · 11 years ago
  23. 7980d35 Fixed GetModuleSpecifications() to work better overall: by Greg Clayton · 11 years ago
  24. 26345cb Introduces core file support for Linux x86-64 using 'lldb a.out -c core'. by Ashok Thirumurthi · 11 years ago
  25. 95eeb63 Added Repr() and Str() member functions to our PythonObject class to allow easy conversion to-string of every PythonObject by Enrico Granata · 11 years ago
  26. f68ffcd Adding information on the scriptable keywords ${target|process|thread|frame.script:function} to the LLDB documentation by Enrico Granata · 11 years ago
  27. 13a63b9 Fix the linux gcc 4.6.3 buildbot failures that happened after my recent types checkin. by Greg Clayton · 11 years ago
  28. ecced88 Enabled the "--debug" option functionality that will SIGSTOP the current process allowing a debugger to attach. by Greg Clayton · 11 years ago
  29. 9a76f6f Work-around for GCC issue where setting a breakpoint on a vector definition also adds a breakpoint on the d'tor call by Daniel Malea · 11 years ago
  30. 674f7d1 Handle BreakNotify for threads whose tid doesn't match the ThreadSpec of the BreakpointSite by Ashok Thirumurthi · 11 years ago
  31. bcbf2b5 The correct max value for size_t variables is SIZE_MAX not UINT64_MAX. Removes lots of warnings when building on 32 bit hosts. by Jim Ingham · 11 years ago
  32. a04d685 Fix gcc buildbot failures, re-enable tests disabled due to llvm.org/pr16575 by Daniel Malea · 11 years ago
  33. be43cbd TypeHierarchyNavigator was removed in r186130 by Ed Maste · 11 years ago
  34. 1e68e88 Unblock buildbot. by Greg Clayton · 11 years ago
  35. 4e49a5b Get debugserver to call task_set_state to prime the control registers so that watchpoints by Jim Ingham · 11 years ago
  36. 52f7923 Huge change to clean up types. by Greg Clayton · 11 years ago
  37. e14eec8 Tentatively re-enabling TestBreakAfterJoin on Linux by Daniel Malea · 11 years ago
  38. 1a58e83 Added a memory.py module that contains a 'memfind' command which allows you to search memory for a byte pattern. by Greg Clayton · 11 years ago
  39. cb18736 Enable Mac OS X tests disabled due to llvm.org/pr16567 by Daniel Malea · 11 years ago
  40. 571be42 Improve TestConcurrentEvents.py by Daniel Malea · 11 years ago
  41. b89642b Tweaks to the Python reference and example command to use the preferred print style and the (finally available :-) SetError API by Enrico Granata · 11 years ago
  42. 513ca60 Adds methods to ObjectFileELF to access data in ELF segments by Ashok Thirumurthi · 11 years ago
  43. 21d8200 Fix unhandled SIGTRAP signal on Linux causing assertion. by Matt Kopec · 11 years ago
  44. 0c4c43c Fix "source list -n printf" on Linux (printf is symbol alias for __printf) by Michael Sartain · 11 years ago
  45. 3d8e151 Add stub GetThreadName for FreeBSD, missed in r186033. by Ed Maste · 11 years ago
  46. 737579d Add a -remote-file option to “target create” to specify the location of the executable on a remote system (if debugging remotely using debugserver on the target system.) This gets us closer to being able to set up a remote debugging session from the lldb command line. by Jim Ingham · 11 years ago
  47. 8592329 Stop process monitor from ProcessPOSIX::Finalize by Andrew Kaylor · 11 years ago
  48. 0ba7548 Add support for listing inferior thread names on Linux. by Matt Kopec · 11 years ago
  49. 4bb4232 Adding a summary for ObjC blocks by Enrico Granata · 11 years ago
  50. ea46260 Fixed an issue introduced with my last fix where the command and sequence ID extraction were moved causing them to be reversed. by Greg Clayton · 11 years ago
  51. b090a39 Call xmlFree on the node contents returned by xmlNodeGetContent, as the docs say to do. by Jim Ingham · 11 years ago
  52. 7940069 Cleanup on the unified section list changes. Main changes are: by Greg Clayton · 11 years ago
  53. 7efa088 Fixed the CommunicationKDP::SendRequestAndGetReply() to correctly be able to deal with getting a reply from a previous packet without resending the packet again. by Greg Clayton · 11 years ago
  54. 246621a Add silent option to command source. Patch from Matthew Sorrels by Michael Sartain · 11 years ago
  55. e279f1a Reverting ProcessMonitor shared pointer changes by Andrew Kaylor · 11 years ago
  56. b9d995d Second attempt at getting the PyCallable changes in trunk by Enrico Granata · 11 years ago
  57. 784091a Cleanup in TestConcurrentEvents.py by Daniel Malea · 11 years ago
  58. cd2b54b Change TestRegisters.py attach case to attach to a.out and enable that test case by Andrew Kaylor · 11 years ago
  59. 1dc7fe8 Use shared pointers to hold the process in ProcessMonitor by Andrew Kaylor · 11 years ago
  60. ff3536b Fix signal handling for POSIX (only tested on Linux) processes in multi-threaded programs. by Matt Kopec · 11 years ago
  61. ff1bf4d Add the frame content dumper function call to one more place. by Jason Molenda · 11 years ago
  62. 297fc67 Add new information gathering to the lldb & simple backtrace methods: by Jason Molenda · 11 years ago
  63. 7847c11 Update exception to match decorator name by Ed Maste · 11 years ago
  64. ff5c6d9 Add TestConcurrentEvents test for LLDB's handling of inferior threads by Daniel Malea · 11 years ago
  65. 1617c78 Added missing SBModuleSpec.cpp file to the CMakeLists.txt by Greg Clayton · 11 years ago
  66. f9215ba Added a way to extract the module specifications from a file. A module specification is information that is required to describe a module (executable, shared library, object file, ect). This information includes host path, platform path (remote path), symbol file path, UUID, object name (for objects in .a files for example you could have an object name of "foo.o"), and target triple. Module specification can be used to create a module, or used to add a module to a target. A list of module specifications can be used to enumerate objects in container objects (like universal mach files and BSD archive files). by Greg Clayton · 11 years ago
  67. 28dafe0 Use target DisplaySource if available so we can get mixed source and assembly. by Michael Sartain · 11 years ago
  68. 731c629 Pass tid through to ptrace operations by Ed Maste · 11 years ago
  69. 4c7dfad Avoid crash if we fail to resolve process in attach by Ed Maste · 11 years ago
  70. f78578b Remove @expectedFailureGcc from TestInlineStepping as function prologue bug is not reproducible anymore. by Daniel Malea · 11 years ago
  71. 2bea9f0 Skip Test-rdar-9974002 with Clang 3.4 (due to llvm.org/pr16214) by Daniel Malea · 11 years ago
  72. 78f2f67 Add missing -std=c99 flag to appease GCC 4.6 by Daniel Malea · 11 years ago
  73. 8bbc216 Re-apply TestHelp.py fix by Daniel Malea · 11 years ago
  74. f3b68be Fix python 2.6 compatibility issue introduced by r184615 by Daniel Malea · 11 years ago
  75. 26bc105 Revert commits that cause broken builds on GCC buildbots by Daniel Malea · 11 years ago
  76. f390b21 Remove empty files left behind from move to POSIX/ by Ed Maste · 11 years ago
  77. 100b99e Symbol prologue code checks if funciton lines up with symbol and uses function prologue code with line info if so. by Michael Sartain · 11 years ago
  78. 45158a8 Update error message; detach-keeps-stopped is also not on FreeBSD by Ed Maste · 11 years ago
  79. 5577ce0 Remove lldb's custom copy of the C++ demangler, used only on Mac by Jason Molenda · 11 years ago
  80. 4fa5470 Fix ObjectFileELF crc32 code used when no build id is present. by Michael Sartain · 11 years ago
  81. 5226e7d Workaround for infinite recursion in InitOSO->GetByteSize->GetSymbolVendor. by Jim Ingham · 11 years ago
  82. a114603 Import the builtin type prefix before we import the user expression prefix so that the user expression prefix can use the uint, int, size_t, and other types without having to define them. by Greg Clayton · 11 years ago
  83. a0e48cc Mark the "step over single instruction" plan private in the StopInfoWatchpoint::PerformAction to by Jim Ingham · 11 years ago
  84. ca14706 Fix build with LLVM_DISABLE_PYTHON by Ed Maste · 11 years ago
  85. 82dc0f1 Add split symbol support to test makefile & add linux split symbol test case. by Michael Sartain · 11 years ago
  86. ed0c095 Add SymbolVenderELF to autotools build (for Linux + FreeBSD) by Daniel Malea · 11 years ago
  87. 20670a7 Sync parts of FreeBSD Process plugin with Linux by Ed Maste · 11 years ago
  88. 8bf4e92 Remove obsolete comment by Ed Maste · 11 years ago
  89. efac8e0 Build standalone debug symbol file support on FreeBSD too by Ed Maste · 11 years ago
  90. bf1bec6 Use the "last created watchpoint" rather than asserting on watchpoint commands passing no watchpoint ID. by Jim Ingham · 11 years ago
  91. 52fbbd2 Change the default timeout for KDP communications to be 5 seconds. by Jason Molenda · 11 years ago
  92. 13b1089 Added SymbolVendorELF to the wrong target (lldb-tool), now it is correctly added to lldb-core. by Greg Clayton · 11 years ago
  93. 02b2a20 Fixed Xcode project to include SymbolVendorELF. by Greg Clayton · 11 years ago
  94. 49409a5 Recognize "decltype(nullptr)" as a valid DW_AT_name for DW_TAG_unspecified_type tags as meaning the C++11 null pointer type. by Greg Clayton · 11 years ago
  95. a807cee Split symbol support for ELF and Linux. by Michael Sartain · 11 years ago
  96. b54b7dc Formatting cleanup. by Jim Ingham · 11 years ago
  97. fa2cd91 Following the modification introduced in llvm by commit 185311 by Sylvestre Ledru · 11 years ago
  98. b0cb21e More useful printout of arguments after the recent changes to support LLDB_TEST_ARGUMENTS by Enrico Granata · 11 years ago
  99. 151416f Fixed SBProcess::RemoteLaunch() to use the platform executable path. Patch from Sebastien Metrot. by Greg Clayton · 11 years ago
  100. a91efb6 <rdar://problem/14309010> by Enrico Granata · 11 years ago