1. 7b71b17 Added an "rb" alias that sets breakpoints by regular expression. by Sean Callanan · 12 years ago
  2. b1a7143 Integrated a check into Clang that make sure that by Sean Callanan · 12 years ago
  3. 96e02ab Added a GDB equivalent for saving binary memory data. by Sean Callanan · 12 years ago
  4. 6b1763b <rdar://problem/11355592> Fixing a bug where we would incorrectly try and determine a dynamic type for a variable of a pointer type that is not a valid generic type for dynamic pointers. by Enrico Granata · 12 years ago
  5. f7d782b Fixes the case where we created a dummy target, deleted it, and then tried to evaluate an expression with no target. by Filipe Cabecinhas · 12 years ago
  6. 45bc395 Updated LLVM to take a disassembler fix that causes by Sean Callanan · 12 years ago
  7. 8967a8f bump to lldb-150. by Jason Molenda · 12 years ago
  8. eeeb2af Forgot to bump the local string buffer up in size after debugging to make sure long strings would be correctly read when the buffer is too small for the string. by Greg Clayton · 12 years ago
  9. 3864f04 Add test cases where we start three worker threads, with a write watchpoint set. As soon as a watchpoint is hit in either of the worker thread, by Johnny Chen · 12 years ago
  10. dd29b97 Found a quick way to improve the speed with which we can read object files from memory when they are in the shared cache: always read the symbol table strings from memory and let the process' memory cache do the work. by Greg Clayton · 12 years ago
  11. 9d1fa2a Warn when we detect a valid dSYM file that is empty. This can happen when a dSYM file is created from a binary with no debug info, that has been stripped, or when the .o files are not available when the dSYM is created. by Greg Clayton · 12 years ago
  12. dc5e877 Cleanup a custom thread-format so we don't fail TestLoadUnload when running the by Filipe Cabecinhas · 12 years ago
  13. 6bf058b Optimizations to the Python ObjC formatters - Benchmarking infrastructure by Enrico Granata · 12 years ago
  14. cd1b7fc Fixed the test for the new process launch abbreviation. by Filipe Cabecinhas · 12 years ago
  15. cf5927e <rdar://problem/11386214> <rdar://problem/11455913> by Greg Clayton · 12 years ago
  16. 2e4ca56 bump to lldb 149. by Jason Molenda · 12 years ago
  17. 9986a3b rdar://problem/11140741 by Johnny Chen · 12 years ago
  18. 20c3708 Make the debug output that comes as printf's from code called in the target for getting ObjC class names and ObjC method implementations only come out when doing verbose logging. by Jim Ingham · 12 years ago
  19. 86c50d7 <rdar://problem/11405850> by Greg Clayton · 12 years ago
  20. 930f10a I have updated Clang to include support for Objective-C by Sean Callanan · 12 years ago
  21. bb55057 <rdar://11477301> by Han Ming Ong · 12 years ago
  22. aad177d Reduce the timeout value for the "get class name" and "po" functions to .1 second. 1 second (what they were before) is way too long. by Jim Ingham · 12 years ago
  23. 03e5e51 If we notice that a module with a given file path is replaced by another with the same file by Jim Ingham · 12 years ago
  24. f42d3f6 We shouldn't save g_dummy_target_sp. Other code will simply call Destroy() on it. by Filipe Cabecinhas · 12 years ago
  25. eb4cd8d Make sure to subtract one from the PC when doing the symbolication of stack frames when it isn't the zero'th frame. by Greg Clayton · 12 years ago
  26. 0578f45 Bump to version 148. by Jason Molenda · 12 years ago
  27. 4bc8d16 Warn the user when several commands match the input given. Added a testcase. by Filipe Cabecinhas · 12 years ago
  28. 82b147f <rdar://problem/11439755> by Greg Clayton · 12 years ago
  29. 5d44dcc Fix a typo. by Johnny Chen · 12 years ago
  30. f061318 Enabled C++11 in the expression parser. auto and by Sean Callanan · 12 years ago
  31. 5df5dda Disassemble the signal number and also the mach exceptions when dumping stop reply packets. by Greg Clayton · 12 years ago
  32. 35f62f8 Fixed an exception when parsing crash logs. by Greg Clayton · 12 years ago
  33. f2d3e8d Updated LLVM to fix a problem where the Thumb by Sean Callanan · 12 years ago
  34. e39170b Update the comments for lldbtest module. The test driver is the only way to run the test suite. by Johnny Chen · 12 years ago
  35. 47dcd1e Make the script more friendly when running under python debugger. by Johnny Chen · 12 years ago
  36. 8aa684d The redo.py script can take no argument where it uses heuristics to find the latest session directory. by Johnny Chen · 12 years ago
  37. 4f397a2 Don't do a stat compare of the module with its underlying file if we already matched the UUID. by Jim Ingham · 12 years ago
  38. a80d1e8 Add GetID to the .i file. by Jim Ingham · 12 years ago
  39. 8492371 Cleanup after functionalities/alias/TestAliases.py by Filipe Cabecinhas · 12 years ago
  40. 67b402c Make sure that our thread list can't get out of date like was happening before Jims fix in revision 156894. by Greg Clayton · 12 years ago
  41. f63f2ba Always call RefreshStateAfterStop when we get a stop event. We were skipping doing it in the case where we had interrupted the target. Presumably at some point in the past RefreshStateAfterStop was done more directly when we handled the interrupt, but it isn't any more so now we need to do it all the time. by Jim Ingham · 12 years ago
  42. 1c4ae3e Add an accessor on SBBreakpointLocation to get its location ID. by Jim Ingham · 12 years ago
  43. ad4be9a Bump debugserver version # to 187. by Jason Molenda · 12 years ago
  44. a6909bd Bump version # to lldb-147. by Jason Molenda · 12 years ago
  45. 45c47aa Add LLDB_DISABLE_PYTHON around newly added methods in by Jason Molenda · 12 years ago
  46. 53628e7 Set the result status correctly for asynchronous step-in/out/over commands. by Jim Ingham · 12 years ago
  47. d2a9d9b Fix comment typeo. by Jason Molenda · 12 years ago
  48. 70eddeb Change lockdown API use in RNBSocket::ConnectToService. by Jason Molenda · 12 years ago
  49. 7461e23 Fix Makefile to pass the correct -arch flag to the toolchains. by Johnny Chen · 12 years ago
  50. e585240 <rdar://problem/11246147> by Greg Clayton · 12 years ago
  51. 08af598 Include llvm/ADT/STLExtras.h from lldb/Utility/Utils.h and use llvm::array_lengthof(), instead. by Johnny Chen · 12 years ago
  52. f3e5da2 Add i386-only expectedFailure decorators for current ToT. by Johnny Chen · 12 years ago
  53. 0cbaacd Modified "image lookup -t <typename>" to expand typedefs. by Greg Clayton · 12 years ago
  54. 2ad894b <rdar://problem/11455398> by Greg Clayton · 12 years ago
  55. c2c822c Fixed a typo: "aync" => "async" by Greg Clayton · 12 years ago
  56. 469e08d <rdar://problem/11451919> by Greg Clayton · 12 years ago
  57. bd5c23d <rdar://problem/11240464> by Greg Clayton · 12 years ago
  58. a695aa2 Fixing a bug where the summary for certain NSStrings was being returned as empty in spite of the string actually having a content by Enrico Granata · 12 years ago
  59. 79aaca0 Fixing a typo in the lldb-gdb webpage by Enrico Granata · 12 years ago
  60. b7cdd6c Fix missing NEON registers for the 'register read' command with the lldb debugserver which supports the 'qRegisterInfo' packet by Johnny Chen · 12 years ago
  61. 9721fe9 Add a useful error message to "log enable" with the wrong number of arguments, and reject "log enable lldb" which just silently did nothing before. by Jim Ingham · 12 years ago
  62. ca0761b <rdar://problem/11439169> by Greg Clayton · 12 years ago
  63. 5b0025f <rdar://problem/11439022> by Greg Clayton · 12 years ago
  64. d1ec3d6 Fix a comment I had incorrectly altered. by Jim Ingham · 12 years ago
  65. d82bc6d Found one more place where the OkayToDiscard needs to be consulted. by Jim Ingham · 12 years ago
  66. 07f258f Remove comments and an extra print statement. by Greg Clayton · 12 years ago
  67. 3cae38b Make every Python API __len__() method return a PyIntObject. by Filipe Cabecinhas · 12 years ago
  68. 01584eb Fix SBProcess::ReadMemory's typemap to handle PyLongObjects. by Filipe Cabecinhas · 12 years ago
  69. 22cf41b Make issue_11588/Test11588 work with a recent swig that converts ints to PyLongObjects by Filipe Cabecinhas · 12 years ago
  70. 110b55f Don't try to use "OkayToDiscard" to mean BOTH this plan is a user plan or not AND unwind on error. by Jim Ingham · 12 years ago
  71. 1a7f630 Fixed an issue in the platform options where if no architecture was specified where the platform would fail to select itself with something like: by Greg Clayton · 12 years ago
  72. 8ec3513 Add "echo" -> "script print". by Jim Ingham · 12 years ago
  73. bf47965 More fixes to "malloc_history". by Greg Clayton · 12 years ago
  74. d8056e2 Modified the symbolication.Image object to store its uuid as a uuid.UUID object and made an accessor for getting a normalized UUID value out of the image object. by Greg Clayton · 12 years ago
  75. 5a4e5af Don't intercept the quit command and override what is was doing. This was causing the "lldb" command line to deadlock when the quit command was executed sometimes. by Greg Clayton · 12 years ago
  76. 6f446f3 "--stack-history" now works if you have MallocStackLogggingNoCompact defined in your app's environment. by Greg Clayton · 12 years ago
  77. f4e3044 Fixed a build error. by Greg Clayton · 12 years ago
  78. 7a24576 Added the ability to get the stack history for a malloc block. This is a work in progress. Checking this in so I can work on it some more. by Greg Clayton · 12 years ago
  79. 2bb4de3 Make crashlog.py more robust when dealing with the "Version: ..." header from the crash log file. by Johnny Chen · 12 years ago
  80. 37a07e9 Updated LLVM/Clang to force the record layout engine by Sean Callanan · 12 years ago
  81. 492b123 Sanity check the return value from SBSCopyApplicationDisplayIdentifiers() before calling CFArrayGetCount() on it. by Johnny Chen · 12 years ago
  82. 23c3fcd <rdar://problem/11388521> by Greg Clayton · 12 years ago
  83. ea93bf4 Remove stuff from the xcscheme file that need not be checked in. by Greg Clayton · 12 years ago
  84. 0fef968 <rdar://problem/11330621> by Greg Clayton · 12 years ago
  85. 038fa8e If the ObjC Step Through Trampoline plan causes a target crash, properly propagate the error back to by Jim Ingham · 12 years ago
  86. 90f7856 Added a #define of NULL to 0 to make NULL usable in expressions. by Sean Callanan · 12 years ago
  87. 8ab2c22 Make ctrl-c terminate the current input line and start an empty line, instead of the previous content. by Johnny Chen · 12 years ago
  88. 6884bdd Option processing fix: should match '-F' exactly, instead. by Johnny Chen · 12 years ago
  89. 1b8de0a Make redo.py more error-proof by Filipe Cabecinhas · 12 years ago
  90. 18ae2b1 Remove the string pool from the global destructor chain so it doesn't get yanked out from under us prematurely on exit. by Jim Ingham · 12 years ago
  91. f92ddcc Print out a notification when the process of a target other than the currently selected target stops. by Jim Ingham · 12 years ago
  92. 07baf83 <rdar://problem/11338654> Fixing a bug where having a summary for a bitfield without a format specified would in certain cases crash LLDB - This has also led to refactoring the by-type accessors for the data formatter subsystem. These now belong in our internal layer, and are just invoked by the public API stratum by Enrico Granata · 12 years ago
  93. da23dff <rdar://problem/11400476> by Han Ming Ong · 12 years ago
  94. 79a5926 <rdar://problem/11408853> by Han Ming Ong · 12 years ago
  95. 651cbe2 <rdar://problem/11239650> Fixing a bug where the SetValueFromCString() method failed to operate on dynamic values. The fix consists in making the set operation fall through to the parent. We only actually allow this if the dynamic value is at a 0-offset from the parent, or the new value is 0. Other scenarios would need agreement on the actual meaning of the set operation (do we keep offsetting? do we just assume the user knows what they are doing?) so we prevent them, and let the expression parser deal with the complexity by Enrico Granata · 12 years ago
  96. 4c87ebf Fixing some indentation. by Jim Ingham · 12 years ago
  97. 7402d3b A simple implementation of a summary and synthetic children providers for LLDB-specific shared pointers - This could be generalized to work with C++11 shared pointers with relative ease by Enrico Granata · 12 years ago
  98. d9488c8 Removing spurious friend declaration by Enrico Granata · 12 years ago
  99. 4758a3c First part of a fix to make GetNonSyntheticValue() work correctly by Enrico Granata · 12 years ago
  100. 5f2b926 <rdar://problem/10605072> by Greg Clayton · 12 years ago