1. e14cf4e Add capability to set ignore count for watchpoint on the command line: by Johnny Chen · 13 years ago
  2. 8bdf57c Fix a problem where the stop-hook command 'frame variable g_val' produces nothing by Johnny Chen · 13 years ago
  3. ff9a7e0 Added missing file. by Greg Clayton · 13 years ago
  4. 00db215 Enable all the new accelerator tables if they are present and don't manually by Greg Clayton · 13 years ago
  5. 15afa9f Removed lldb::SBSourceManager_impl. We export everything in the lldb namespace by Greg Clayton · 13 years ago
  6. 5cac6a5 Add SBFrame.WatchLocation() to find and watch the location pointed to by by Johnny Chen · 13 years ago
  7. 2f57db0 Cleaned up the the code that figures out the inlined stack frames given a by Greg Clayton · 13 years ago
  8. f92d0dd Removed some commented out code from the DWARF parser. by Greg Clayton · 13 years ago
  9. 6c19c8a <rdar://problem/10212450> by Greg Clayton · 13 years ago
  10. 1b45252 Add an accompanying option to the 'frame variable -w' command to, instead of watching the variable, by Johnny Chen · 13 years ago
  11. ed11c1e Fixed an issue where a lexical block or inlined function might have bad debug by Greg Clayton · 13 years ago
  12. 2cd9fbd Free up some space in lldb_private::Block by not requiring a sibling pointer. by Greg Clayton · 13 years ago
  13. 9a93fcd If the new .apple_names and .apple_types DWARF accelerator tables by Greg Clayton · 13 years ago
  14. f6e3de2 Convert over to the latest and greatest on disc accelerator by Greg Clayton · 13 years ago
  15. 5eb54bb Add SBTarget::GetLastCreatedWatchpointLocation() API and export to the Python interface. by Johnny Chen · 13 years ago
  16. a7d8951 Added an API to SymbolContext to hide the complexity of getting the by Jim Ingham · 13 years ago
  17. 092bd15 Export the watchpoint related API (SBWatchpointLocation class and added SBTarget methods) by Johnny Chen · 13 years ago
  18. d9b4425 Fixed the public and internal disassembler API to be named correctly: by Greg Clayton · 13 years ago
  19. e97e4e3 Fixed an include path that was breaking Linux builds. by Sean Callanan · 13 years ago
  20. 096c293 Add SB API class SBWatchpointLocation and some extra methods to the SBTarget class to by Johnny Chen · 13 years ago
  21. de3d27e Factored out handling of the source code for an by Sean Callanan · 13 years ago
  22. 23b8abb Added more functionality to the public API to allow for better by Greg Clayton · 13 years ago
  23. 15ef51e Added the ability to get all section contents, or the section by Greg Clayton · 13 years ago
  24. 980c750 Fixed build issues after recent checkin. by Greg Clayton · 13 years ago
  25. 9a29f00 Add GetAddress to SBBreakpointLocation, and put the .i files in the API section of the Xcode project. by Jim Ingham · 13 years ago
  26. 3e8c25f Added to the public API to allow symbolication: by Greg Clayton · 13 years ago
  27. 4c24b0a Add an SB API SBFrame::WatchValue() and exported to the Python interface to by Johnny Chen · 13 years ago
  28. c86582f Add a (bool)end_to_end parameter, default true, to the Target::Remove/Disable/EnableALLWatchpointLocations() by Johnny Chen · 13 years ago
  29. d6d4797 Added the ability to restrict breakpoints by function name, function regexp, selector by Jim Ingham · 13 years ago
  30. cacedfb Watchpoint IDs and ID Ranges are not quite the same as Breakpoint IDs and ID Ranges. by Johnny Chen · 13 years ago
  31. 73d8eaf Added missing forward declarations for SBFileSpecList and SBInstructionList. by Greg Clayton · 13 years ago
  32. 01acfa7 Add initial implementation of watchpoint commands for list, enable, disable, and delete. by Johnny Chen · 13 years ago
  33. 567e7f3 Converted the lldb_private::Process over to use the intrusive shared pointers. by Greg Clayton · 13 years ago
  34. a8428a4 Fixed a problem with the IR interpreter that caused by Sean Callanan · 13 years ago
  35. 043f8c2 StopInfoWatchpoint should override the StopInfo::ShouldStop() virtual method and delegate to by Johnny Chen · 13 years ago
  36. 03c8ee5 Add a new breakpoint type "break by source regular expression". by Jim Ingham · 13 years ago
  37. 0576c24 A little refactoring of the way to add break IDs or ID ranges as command argument data by Johnny Chen · 13 years ago
  38. da5a802 Add some watchpoint maintenance methods to the Target class. by Johnny Chen · 13 years ago
  39. 6cf6c47 Fixed a problem where expressions would attempt to by Sean Callanan · 13 years ago
  40. 7e5fa7f Update declarations for all functions/methods that accept printf-style by Jason Molenda · 13 years ago
  41. 95b7b43 Change Error::SetErrorStringWithFormat() prototype to use an by Jason Molenda · 13 years ago
  42. 7d0e364 Add GetByIndex() methods to the WatchpointLocationList class to facilitate iteration by Johnny Chen · 13 years ago
  43. e40b642 Don't put modules for .o files into the global shared module list. We by Greg Clayton · 13 years ago
  44. 987c7eb Adopt the intrusive pointers in: by Greg Clayton · 13 years ago
  45. 02e210c Removed the function: by Greg Clayton · 13 years ago
  46. 6e0101c Convert lldb::ModuleSP to use an instrusive ref counted pointer. by Greg Clayton · 13 years ago
  47. 10b12b3 Add a declaraion info member field to the WatchpointLocation class. by Johnny Chen · 13 years ago
  48. cc7de48 Untabify and fix indentation. by Johnny Chen · 13 years ago
  49. dbcf98c Track whether a process was Launched or Attached to. If Attached, the detach when the debugger is destroyed, rather than killing the process. Also added a Debugger::Clear, which gets called in Debugger::Destroy to deal with all the targets in the Debugger. Also made the Driver's main loop call Destroy on the debugger, rather than just Destroying the currently selected Target's process. by Jim Ingham · 13 years ago
  50. 6c43c12 Add cleanup of watchpoint locations during Target::DeleteCurrentProcess(). by Johnny Chen · 13 years ago
  51. 47dc457 This patch modifies the expression parser to allow it by Sean Callanan · 13 years ago
  52. 25dcbeb Fix ArchSpec::operator== to take the Triple into account as well as the Core. Also make the constructors explicit. by Jim Ingham · 13 years ago
  53. 819dd5e by Jason Molenda · 13 years ago
  54. 69b6ec8 Watchpoint WIP: by Johnny Chen · 13 years ago
  55. 83dd203 Adding "-n", "-p" and "-w" flags to the lldb command-line tool to by Jim Ingham · 13 years ago
  56. cc63746 SBSourceManager now gets the real source manager either from the Debugger or Target. Also, move the SourceManager file cache into the debugger by Jim Ingham · 13 years ago
  57. 34bbf85 Watchpoint WIP: by Johnny Chen · 13 years ago
  58. 31cf0e7 Changed to using an "operator bool" instead of an "operator void*" by Greg Clayton · 13 years ago
  59. 86c2e74 Fixed up the comments in the headerdoc to match the current implementation by Greg Clayton · 13 years ago
  60. 448bd2f Fixes for Symtab.cpp to take advantage of the new unique C string map by Greg Clayton · 13 years ago
  61. 95decca Added extra calls to the UniqueCStringMap to allow it to be used by Greg Clayton · 13 years ago
  62. 439d033 A little bit of cleanup; set watch_mode to eWatchInvalid at the OptionParsingStarting() lifecycle point. by Johnny Chen · 13 years ago
  63. d1f8705 Add comment. by Johnny Chen · 13 years ago
  64. 4003f57 Refactoring: replace a bunch of static array size computation or hardcoded constant by Johnny Chen · 13 years ago
  65. 3b23d20 Renaming a bulk of method calls from Get() to something more descriptive by Enrico Granata · 13 years ago
  66. 58dba3c Add OptionGroupWatchpoint.cpp/.h (preparatory work) for hooking up watchpoint to the 'frame variable' comand. by Johnny Chen · 13 years ago
  67. d68e089 Added the ability to introspect types thourgh the public SBType interface. by Greg Clayton · 13 years ago
  68. 1ac6d1f Adding two new options to the 'help' command: by Enrico Granata · 13 years ago
  69. 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
  70. 30e8d97 Watchpoint WIP: on the debugger side, create an instance of either by Johnny Chen · 13 years ago
  71. 716a628 Refactoring of Get() methods in FormatManager/FormatCategory to have explicative names and return shared-pointers instead of bools by Enrico Granata · 13 years ago
  72. 21900fb Fill out implementation of Enable/DisableWatchpoint() for ProcessGDBRemote class (Not Tested Yet). by Johnny Chen · 13 years ago
  73. 9a3c2a5 Add a data type WatchpointLocationList to the repository. A Target contains an instance of watchpoint location list. by Johnny Chen · 13 years ago
  74. 9154480 Redesign of the interaction between Python and frozen objects: by Enrico Granata · 13 years ago
  75. edda23f Change the signature of WatchpointLocation ctor so that the second param becomes by Johnny Chen · 13 years ago
  76. 5c3861d Added the ability for DWARF locations to use the ABI plug-ins to resolve by Greg Clayton · 13 years ago
  77. c8cf5e2 Added support for accessing and loading our new .debug_names and .debug_types by Greg Clayton · 13 years ago
  78. 97b8f66 Forgot to write out the NULL terminator when putting C string value into by Greg Clayton · 13 years ago
  79. d84cc04 Added a DataEncoder class for the new IR evaluation expression parser so it by Greg Clayton · 13 years ago
  80. 2396777 Make ThreadList::GetSelectedThread() select and return the 0th thread if there's no by Johnny Chen · 13 years ago
  81. caf798c Fixing commas in enums (build breaker on GCC) as reported by Filipe Cabecinhas by Enrico Granata · 13 years ago
  82. 2431244 Added support for persistent types to the by Sean Callanan · 13 years ago
  83. 2c6a3d8 Additional code cleanups ; Short option name for --python-script in type summary add moved from -s to -o (this is a preliminary step in moving the short option for --summary-string from -f to -s) ; Accordingly updated the test suite by Enrico Granata · 13 years ago
  84. d587a58 Separated FormatNavigator and FormatManager in two different files ; moved FormatCategoryItem enum out of FormatManager.h as a debugger-wide lldb_private enum ; minor style cleanups by Enrico Granata · 13 years ago
  85. 0be2e9b More cleanups ; Separated implementation of FormatManager from class DataVisualization as a front-end by using separate .h/.cpp files - Final aim is to break up FormatManager.h/cpp into several separate files by Enrico Granata · 13 years ago
  86. b0968f5 Code cleanup and refactoring (round 4): by Enrico Granata · 13 years ago
  87. 37f962e Added a new plug-in type: lldb_private::OperatingSystem. The operating system by Greg Clayton · 13 years ago
  88. 3370f0c Fixed some SWIG interoperability issues by Enrico Granata · 13 years ago
  89. d8b9b06 Added the ability to create a SBCommandReturnObject object from a pointer by Greg Clayton · 13 years ago
  90. 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
  91. 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
  92. 2f2c6fb More thorough fix for the spaces-in-typename issue by Enrico Granata · 13 years ago
  93. d3a86a2 Third round of code cleanups: by Enrico Granata · 13 years ago
  94. 1c61743 Second round of code cleanups: by Enrico Granata · 13 years ago
  95. f501c59 First round of code cleanups: by Enrico Granata · 13 years ago
  96. 074e3b6 New category "gnu-libstdc++" provides summary for std::string and synthetic children for types std::map, std::list and std::vector by Enrico Granata · 13 years ago
  97. e5e34cb When defining a scripted command, it is possible to provide a docstring and that will be used as the help text for the command by Enrico Granata · 13 years ago
  98. 6b1596d Changes to Python commands: by Enrico Granata · 13 years ago
  99. c2a2825 Python commands: by Enrico Granata · 13 years ago
  100. d6bcc0d Fixed register value objects to be able to return their values as unsigned by Greg Clayton · 13 years ago