1. 52f7923 Huge change to clean up types. by Greg Clayton · 11 years ago
  2. 17d5a03 Add ${ansi.XX} parsing to lldb prompt, use-color setting, and -no-use-colors command line options. by Michael Sartain · 11 years ago
  3. 2154a41 When lldb stops in a stack frame where we have source level information (file, line number), don't by Jason Molenda · 11 years ago
  4. 7d40838 Convert from the C-based LLVM Disassembler shim to the full MC Disassembler API's. by Jim Ingham · 11 years ago
  5. 744dd79 Backed out a hacky fix that is no longer needed. by Greg Clayton · 11 years ago
  6. a7e864c <rdar://problem/13265297> by Greg Clayton · 11 years ago
  7. 8ea4878 Fixed a case where a stack frame could lose track of its own target. by Sean Callanan · 11 years ago
  8. b912457 <rdar://problem/12560257> by Greg Clayton · 12 years ago
  9. d891f9b Fix Linux build warnings due to redefinition of macros: by Daniel Malea · 12 years ago
  10. 5f35a4b Resolve printf formatting warnings on Linux: by Daniel Malea · 12 years ago
  11. 214d2a3 <rdar://problem/12445557> by Greg Clayton · 12 years ago
  12. 0c8fa2d Initial check-in of "fancy" inlined stepping. Doesn't do anything useful unless you switch LLDB_FANCY_INLINED_STEPPING to true. With that by Jim Ingham · 12 years ago
  13. 49ce896 <rdar://problem/11757916> by Greg Clayton · 12 years ago
  14. 73844aa Reimplemented the code that backed the "settings" in lldb. There were many issues with the previous implementation: by Greg Clayton · 12 years ago
  15. b3a1a2b <rdar://problem/11870357> by Greg Clayton · 12 years ago
  16. a7d3dc7 <rdar://problem/11852100> by Greg Clayton · 12 years ago
  17. cf09f88 Massive enumeration name changes: a number of enums in ValueObject were not following the naming pattern by Enrico Granata · 12 years ago
  18. 6e12c7a Updated the revision of LLVM/Clang used by LLDB. by Sean Callanan · 12 years ago
  19. 3508c38 <rdar://problem/10103468> by Greg Clayton · 12 years ago
  20. f4124de Thread hardening part 3. Now lldb_private::Thread objects have std::weak_ptr by Greg Clayton · 12 years ago
  21. 289afcb The second part in thread hardening the internals of LLDB where we make by Greg Clayton · 12 years ago
  22. 13d24fb Switching back to using std::tr1::shared_ptr. We originally switched away by Greg Clayton · 12 years ago
  23. be9875d Many GDB users always want to display disassembly when they stop by using by Greg Clayton · 13 years ago
  24. 23b8abb Added more functionality to the public API to allow for better by Greg Clayton · 13 years ago
  25. 567e7f3 Converted the lldb_private::Process over to use the intrusive shared pointers. by Greg Clayton · 13 years ago
  26. 95b7b43 Change Error::SetErrorStringWithFormat() prototype to use an by Jason Molenda · 13 years ago
  27. 987c7eb Adopt the intrusive pointers in: by Greg Clayton · 13 years ago
  28. 02e210c Removed the function: by Greg Clayton · 13 years ago
  29. fdf24ef Move the SourceManager from the Debugger to the Target. That way it can store the per-Target default Source File & Line. by Jim Ingham · 13 years ago
  30. 13a54a1 Taking care of an issue with using lldb_private types in SBCommandInterpreter.cpp ; Making NSString test case work on Snow Leopard ; Removing an unused variable warning by Enrico Granata · 13 years ago
  31. 6f30287 - Now using ${var} as the summary for an aggregate type will produce "name-of-type @ object-location" instead of giving an error by Enrico Granata · 13 years ago
  32. 9c57fc0 Fixed an issue where a pointer's address was being logged instead of its value by Enrico Granata · 13 years ago
  33. f669850 Basic support for reading synthetic children by index: by Enrico Granata · 13 years ago
  34. 6e2d282 Fixed an issue where StackFrame::GetValueForVariableExpressionPath(...) by Greg Clayton · 13 years ago
  35. 4c3fb4b The implementation of categories is now synchronization safe by Enrico Granata · 13 years ago
  36. 107e53d Fixed some issues with ARM backtraces by not processing any push/pop by Greg Clayton · 13 years ago
  37. 9762e10 new syntax for summary strings: by Enrico Granata · 13 years ago
  38. 4bb0f19 Fixed an issue where SBFrame::GetDisassembly() was returning disassembly that by Greg Clayton · 13 years ago
  39. 1bd2b2f Fixed variable parsing to not parse block variables over and over due to an by Greg Clayton · 13 years ago
  40. 10de7d1 Change "frame var" over to using OptionGroups (and thus the OptionGroupVariableObjectDisplay). by Jim Ingham · 13 years ago
  41. ff44ab4 Fixed the SymbolContext::DumpStopContext() to correctly indent and dump by Greg Clayton · 13 years ago
  42. 47da810 Fix up how the ValueObjects manage their life cycle so that you can hand out a shared by Jim Ingham · 13 years ago
  43. abe0fed Centralized a lot of the status information for processes, by Greg Clayton · 13 years ago
  44. e41494a Add support for "dynamic values" for C++ classes. This currently only works for "frame var" and for the by Jim Ingham · 13 years ago
  45. fa3a16a Convert ValueObject to explicitly maintain the Execution Context in which they were created, and then use that when they update themselves. That means all the ValueObject evaluate me type functions that used to require a Frame object now do not. I didn't remove the SBValue API's that take this now useless frame, but I added ones that don't require the frame, and marked the SBFrame taking ones as deprecated. by Jim Ingham · 13 years ago
  46. 149731c Cleaned up the Disassembler code a bit more. You can now request a disassembler by Greg Clayton · 13 years ago
  47. aa3e3e1 Add the ability to disassemble "n" instructions from the current PC, or the first "n" instructions in a function. by Jim Ingham · 13 years ago
  48. a846cc3 Fixed the -r parameter to the disassemble command by Sean Callanan · 13 years ago
  49. 395fc33 Made lldb_private::ArchSpec contain much more than just an architecture. It by Greg Clayton · 13 years ago
  50. bdcb6ab Enabled extra warnings and fixed a bunch of small issues. by Greg Clayton · 13 years ago
  51. c67efa4 Added the ability to StackFrame::GetValueForVariableExpressionPath(...) to avoid by Greg Clayton · 13 years ago
  52. b01000f A few of the issue I have been trying to track down and fix have been due to by Greg Clayton · 13 years ago
  53. 08d7d3a Fixed issues with RegisterContext classes and the subclasses. There was by Greg Clayton · 13 years ago
  54. bdcda46 The LLDB API (lldb::SB*) is now thread safe! by Greg Clayton · 13 years ago
  55. c3b61d2 Fixed the "expression" command object to use the StackFrame::GetValueForExpressionPath() by Greg Clayton · 13 years ago
  56. 427f290 Modified LLDB expressions to not have to JIT and run code just to see variable by Greg Clayton · 13 years ago
  57. 8e69de4 Change the DWARFExpression::Evaluate methods to take an optional by Jason Molenda · 14 years ago
  58. 8936359 Fixed StackFrame::GetVariableList to add global by Sean Callanan · 14 years ago
  59. f3d0b0c Updated the lldb_private::Flags class to have better method names and made by Greg Clayton · 14 years ago
  60. a830adb There are now to new "settings set" variables that live in each debugger by Greg Clayton · 14 years ago
  61. ccd584d Add GetSP to the StackFrame. by Jim Ingham · 14 years ago
  62. eea2640 Moved the section load list up into the target so we can use the target by Greg Clayton · 14 years ago
  63. 178710c Looking at some of the test suite failures in DWARF in .o files with the by Greg Clayton · 14 years ago
  64. e2c5e45 Fixed an assertion that happened when debugging DWARF in .o files with debug by Greg Clayton · 14 years ago
  65. 69aa5d9 Added more API to lldb::SBBlock to allow getting the block by Greg Clayton · 14 years ago
  66. 5205f0b Fixed the StackFrame to correctly resolve the StackID's SymbolContextScope. by Greg Clayton · 14 years ago
  67. 72b7158 Added a new bool parameter to many of the DumpStopContext() methods that by Greg Clayton · 14 years ago
  68. 17dae08 StackFrame objects now own ValueObjects for any frame variables (locals, args, by Greg Clayton · 14 years ago
  69. 4fb0815 Clarified the intent of the SymbolContextScope class in the header by Greg Clayton · 14 years ago
  70. 870a1cd Made it so we update the current frames from the previous frames by doing STL by Greg Clayton · 14 years ago
  71. 1d66ef5 Simplified the StackFrameList class down to a single frames list again by Greg Clayton · 14 years ago
  72. 65124ea Changed the StackID to store its start PC address as a load address instead of by Greg Clayton · 14 years ago
  73. 2154da4 Add StackFrame::IsInlined. by Jim Ingham · 14 years ago
  74. f40e308 Cleaned up the inline stack frame code one more time to prepare for inlined by Greg Clayton · 14 years ago
  75. 32f4fdd Fixed another issue with the inline stack frames where if the first frame by Greg Clayton · 14 years ago
  76. b04e7a8 Got a lot of the kinks worked out in the inline support after debugging more by Greg Clayton · 14 years ago
  77. 33ed170 Added support for inlined stack frames being represented as real stack frames by Greg Clayton · 14 years ago
  78. 75ccf50 Modified the host process monitor callback function Host::StartMonitoringChildProcess by Greg Clayton · 14 years ago
  79. 7043635 Centralized all disassembly into static functions in source/Core/Disassembler.cpp. by Greg Clayton · 14 years ago
  80. 63094e0 Very large changes that were needed in order to allow multiple connections by Greg Clayton · 14 years ago
  81. 24943d2 Initial checkin of lldb code from internal Apple repo. by Chris Lattner · 14 years ago