1. 7064981 Be sure to print out the full file path when dumping breakpoint resolvers for file and line when the full path was specified. by Greg Clayton · 11 years ago
  2. ac94caa Huge performance improvements when one breakpoint contains many locations. by Greg Clayton · 11 years ago
  3. d93d913 Fixed a problem where evaluating a breakpoint by Sean Callanan · 11 years ago
  4. 5bdfd66 Error out if the expression for a breakpoint by Sean Callanan · 11 years ago
  5. f189358 Hardened LLDB against NULL conditions being passed to breakpoints. by Sean Callanan · 11 years ago
  6. 28195f9 Optimized the way breakpoint conditions are evaluated. by Sean Callanan · 11 years ago
  7. 81a96aa Since we use C++11, we should switch over to using std::unique_ptr when C++11 is being used. To do this, we follow what we have done for shared pointers and we define a STD_UNIQUE_PTR macro that can be used and it will "do the right thing". Due to some API differences in std::unique_ptr and due to the fact that we need to be able to compile without C++11, we can't use move semantics so some code needed to change so that it can compile with either C++. by Greg Clayton · 11 years ago
  8. 296b06d <rdar://problem/13506727> by Greg Clayton · 12 years ago
  9. 952e9dc <rdar://problem/13521159> by Greg Clayton · 12 years ago
  10. fd24bb5 For file & line breakpoints, if there are subsets of contiguous line table entries for the specified line, set the by Jim Ingham · 12 years ago
  11. aebeefd Adding CMake build system to LLDB. Some known issues remain: by Daniel Malea · 12 years ago
  12. b08d6b6 Probably should return that value we took the trouble to compute. by Jim Ingham · 12 years ago
  13. f892c42 <rdar://problem/9141269> by Greg Clayton · 12 years ago
  14. 090f831 Add "target.process.stop-on-shared-library-events" setting, and make it work. by Jim Ingham · 12 years ago
  15. 36da2aa <rdar://problem/13069948> by Greg Clayton · 12 years ago
  16. f74de22 Check for NULL breakpoint option thread name & queue name before comparing their values to the new value. by Jim Ingham · 12 years ago
  17. 2fcbf6e <rdar://problem/12953853> by Greg Clayton · 12 years ago
  18. 9c970a3 Adding events when watchpoints are set or changed. by Jim Ingham · 12 years ago
  19. d891f9b Fix Linux build warnings due to redefinition of macros: by Daniel Malea · 12 years ago
  20. 5f35a4b Resolve printf formatting warnings on Linux: by Daniel Malea · 12 years ago
  21. ed2b62a Turns out there are 8 bits in a byte. by Jim Ingham · 12 years ago
  22. 9e37662 Watchpoints remember the type of the expression or variable they were set with, and use by Jim Ingham · 12 years ago
  23. 2753a02 Add one-shot breakpoints (-o option to "break set") and a tbreak alias for our gdb friends. by Jim Ingham · 12 years ago
  24. bf41e19 Ran the sources through the compiler with -Wshadow warnings by Jason Molenda · 12 years ago
  25. 4f61ba9 Change the new breakpoint creation output (primarily from "break set") to something more useful. by Jim Ingham · 12 years ago
  26. 851e30e Stop using the "%z" size_t modifier and cast all size_t values to uint64_t. Some platforms don't support this modification. by Greg Clayton · 12 years ago
  27. 8ac035d Patch from info from Daniel Malea that should fix the build on linux after fixes committed with revision 162860. by Greg Clayton · 12 years ago
  28. 49ce896 <rdar://problem/11757916> by Greg Clayton · 12 years ago
  29. 258db3a Cope with the case where the user-supplied callbacks want the watchpoint itself to be disabled! by Johnny Chen · 12 years ago
  30. f84e566 Fix test failures in TestWatchpointIter.py due to http://llvm.org/viewvc/llvm-project?rev=162322&view=rev. by Johnny Chen · 12 years ago
  31. bd446f1 rdar://problem/12144930 by Johnny Chen · 12 years ago
  32. 519274f A little bit of refactoring. by Johnny Chen · 12 years ago
  33. 0b09366 When trying to take snapshots of a watched variable, if the frame is unable to evaluate the variable expression, by Johnny Chen · 12 years ago
  34. c9c2a9b Simplify the "Watchpoint ... hit" printout, make it more terse. by Johnny Chen · 12 years ago
  35. 9e98559 rdar://problem/12007576 by Johnny Chen · 12 years ago
  36. f3ec461 rdar://problem/11457143 [ER] need "watchpoint command ..." by Johnny Chen · 12 years ago
  37. fdbd10a Fix ignore counts on breakpoints so they actually work. by Jim Ingham · 12 years ago
  38. 9336790 We were accessing the ModuleList in the target without locking it for tasks like by Jim Ingham · 12 years ago
  39. 2cf5ccb Also push file & line breakpoints past the prologue. Also added a "-K" argument to the relevant by Jim Ingham · 12 years ago
  40. 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
  41. 1b584eb Don't expose the pthread_mutex_t underlying the Mutex & Mutex::Locker classes. by Jim Ingham · 12 years ago
  42. 14f17cf Jeeze... Remove two unneeded #include's of ThreadPlanTestCondition.h, and replace them with by Jim Ingham · 12 years ago
  43. b5d55cf Cleanup - removing the ThreadPlanTestCondition and its helper functions. It is not needed, by Jim Ingham · 12 years ago
  44. c705730 <rdar://problem/11282938> by Greg Clayton · 12 years ago
  45. 516f084 No functionality changes, mostly cleanup. by Greg Clayton · 12 years ago
  46. c9fda2d Initialize ivars in the order they are defined in the class. by Bill Wendling · 13 years ago
  47. b2cf58a First stage of implementing step by "run to next branch". Doesn't work yet, is turned off. by Jim Ingham · 13 years ago
  48. 0c31d3d <rdar://problem/10997402> by Greg Clayton · 13 years ago
  49. 4722b10 Add a command and an SB API to create exception breakpoints. Make the break output prettier for Exception breakpoints. by Jim Ingham · 13 years ago
  50. c105362 First step to making an LanguageRuntime Exception breakpoint API. by Jim Ingham · 13 years ago
  51. 116a5cd Make the Watchpoint IDs unique per target, not across targets as before. by Johnny Chen · 13 years ago
  52. 3508c38 <rdar://problem/10103468> by Greg Clayton · 13 years ago
  53. a4a1587 Make a nested if .. if .. else block nesting more explicit with some curly braces. by Jason Molenda · 13 years ago
  54. f4124de Thread hardening part 3. Now lldb_private::Thread objects have std::weak_ptr by Greg Clayton · 13 years ago
  55. 302d78c Extended function lookup to allow the user to by Sean Callanan · 13 years ago
  56. 5f4f327 Some Breakpoint:: methods crept down be log the Breakpoint::BreakpointEventData methods. by Jim Ingham · 13 years ago
  57. 28e2386 Send Breakpoint Changed events for all the relevant changes to breakpoints. by Jim Ingham · 13 years ago
  58. ca4fe80 Add const-ness to BreakpointLocation::IsEnabled(). by Johnny Chen · 13 years ago
  59. fd60a60 Reverted 149277 changeset. It was coded that way for a reason. by Johnny Chen · 13 years ago
  60. 55a2d5a Add "watch set" command as a more general interface in conjunction with "frame var -w". by Johnny Chen · 13 years ago
  61. fb0026b Make BreakpointLocation::IsEnabled() consistent with the BreakpointLocation::SetEnabled() implementation. by Johnny Chen · 13 years ago
  62. 13d24fb Switching back to using std::tr1::shared_ptr. We originally switched away by Greg Clayton · 13 years ago
  63. f8c0fc5 For Dump(Stream *s), use GetOptionsNoCreate()->GetIgnoreCount() and fix the indentation. by Johnny Chen · 13 years ago
  64. 736f0d6 Typo. by Johnny Chen · 13 years ago
  65. 1c2d941 Minor comment change. Plus use member function instead of directly accessing member field. by Johnny Chen · 13 years ago
  66. 51b7c5f Tiny refactoring to use member functions instead of directly accessing member fields. by Johnny Chen · 13 years ago
  67. a44297a Don't set breakpoints independently comp unit by comp unit, but look over all the file & line matches by Jim Ingham · 13 years ago
  68. daa6efe The "desired result type" code in the expression by Sean Callanan · 13 years ago
  69. bae39c5 Fixed some extra warnings that show up with the new clang. by Greg Clayton · 13 years ago
  70. d9919d3 Process IDs (lldb::pid_t) and thread IDs (lldb::tid_t) are now 64 bit. This by Greg Clayton · 13 years ago
  71. 5b658cc Added a language parameter to the expression parser, by Sean Callanan · 13 years ago
  72. 712a628 Add a commnad to set a condition for a watchpoint. Example: by Johnny Chen · 13 years ago
  73. 41a55ef Add SBWatchpoint::GetError() API, which is not currently populated as yet. by Johnny Chen · 13 years ago
  74. ecd4feb SBValue::Watch() and SBValue::WatchPointee() are now the official API for creating by Johnny Chen · 13 years ago
  75. aa4a553 Removed namespace qualification from symbol queries. by Sean Callanan · 13 years ago
  76. 3e80cd9 Added ClangNamespaceDecl * parameters to several by Sean Callanan · 13 years ago
  77. 8b7b227 Move the responsibility for translating the various eFunctionNameType lookups to the by Jim Ingham · 13 years ago
  78. b238517 Simplify the verbose output of WatchpointLocation::DumpWithLevel(). by Johnny Chen · 13 years ago
  79. 092bd15 Export the watchpoint related API (SBWatchpointLocation class and added SBTarget methods) by Johnny Chen · 13 years ago
  80. 096c293 Add SB API class SBWatchpointLocation and some extra methods to the SBTarget class to by Johnny Chen · 13 years ago
  81. d6d4797 Added the ability to restrict breakpoints by function name, function regexp, selector by Jim Ingham · 13 years ago
  82. 01acfa7 Add initial implementation of watchpoint commands for list, enable, disable, and delete. by Johnny Chen · 13 years ago
  83. 567e7f3 Converted the lldb_private::Process over to use the intrusive shared pointers. by Greg Clayton · 13 years ago
  84. 043f8c2 StopInfoWatchpoint should override the StopInfo::ShouldStop() virtual method and delegate to by Johnny Chen · 13 years ago
  85. 03c8ee5 Add a new breakpoint type "break by source regular expression". by Jim Ingham · 13 years ago
  86. da5a802 Add some watchpoint maintenance methods to the Target class. by Johnny Chen · 13 years ago
  87. 7e5fa7f Update declarations for all functions/methods that accept printf-style by Jason Molenda · 13 years ago
  88. 7d0e364 Add GetByIndex() methods to the WatchpointLocationList class to facilitate iteration by Johnny Chen · 13 years ago
  89. 987c7eb Adopt the intrusive pointers in: by Greg Clayton · 13 years ago
  90. 10b12b3 Add a declaraion info member field to the WatchpointLocation class. by Johnny Chen · 13 years ago
  91. 6c43c12 Add cleanup of watchpoint locations during Target::DeleteCurrentProcess(). by Johnny Chen · 13 years ago
  92. 47dc457 This patch modifies the expression parser to allow it by Sean Callanan · 13 years ago
  93. 5b2fc57 Add logging to Target::CreateWatchpointLocation() and fix some bug of using the wrong variable. by Johnny Chen · 13 years ago
  94. 69b6ec8 Watchpoint WIP: by Johnny Chen · 13 years ago
  95. 95f41b8 Add trivial implementation for GetDescription(). by Johnny Chen · 13 years ago
  96. 34bbf85 Watchpoint WIP: by Johnny Chen · 13 years ago
  97. 21900fb Fill out implementation of Enable/DisableWatchpoint() for ProcessGDBRemote class (Not Tested Yet). by Johnny Chen · 13 years ago
  98. 9a3c2a5 Add a data type WatchpointLocationList to the repository. A Target contains an instance of watchpoint location list. by Johnny Chen · 13 years ago
  99. edda23f Change the signature of WatchpointLocation ctor so that the second param becomes by Johnny Chen · 13 years ago
  100. d74270e Added alpha .debug_names and .debug_types support in the DWARF parser. by Greg Clayton · 13 years ago