1. dcf03f8 Made Target own a ClangASTSource that will be used by Sean Callanan · 13 years ago
  2. 527154d Added a new class to Process.h: ProcessAttachInfo. This class contains enough by Greg Clayton · 13 years ago
  3. bd06ff4 <rdar://problem/10103980> by Greg Clayton · 13 years ago
  4. 2d9adb7 Added the ability to run a process in a shell on MacOSX currently when using by Greg Clayton · 13 years ago
  5. 6db3594 Using the wrong type for the break id's (user_id_t is an unsigned int, but internal breakpoints can be negative, and anyway it is a good idea to use break_id_t for breakpoints, no?) by Jim Ingham · 13 years ago
  6. 0296fe7 Do a better job of detecting when a breakpoint command has set the target running again (except you have to ignore by Jim Ingham · 13 years ago
  7. abb3302 Moved many of the "settings" that used to be in "target.process.*" to just by Greg Clayton · 13 years ago
  8. 5b658cc Added a language parameter to the expression parser, by Sean Callanan · 13 years ago
  9. 3e4238d Fixed the Xcode project building of LLVM to be a bit more user friendly: by Greg Clayton · 13 years ago
  10. 36bc5ea Modified all Process::Launch() calls to use a ProcessLaunchInfo structure by Greg Clayton · 13 years ago
  11. ba560cc Enhanced the ObjC DynamicCheckerFunction to test for "object responds to selector" as well as by Jim Ingham · 13 years ago
  12. 705a098 warnings: Fix up several const qualified return types. by Daniel Dunbar · 13 years ago
  13. 7089d8a Added the ability for the target to specify Modules that will not be searched by Jim Ingham · 13 years ago
  14. 1c65853 Grab the address of the breakpoint site for the StopInfoBreakpoint so if by Jim Ingham · 13 years ago
  15. 9c23673 Cleaned up many error codes. For any who is filling in error strings into by Greg Clayton · 13 years ago
  16. 4d96a74 Add more context information to the stop-hook mechanism by displaying the stop-hook by Johnny Chen · 13 years ago
  17. 444e35b Moved lldb::user_id_t values to be 64 bit. This was going to be needed for by Greg Clayton · 13 years ago
  18. 4c8353b Changed lldb_private::Type over to use the intrusive ref counted pointers by Greg Clayton · 13 years ago
  19. 712a628 Add a commnad to set a condition for a watchpoint. Example: by Johnny Chen · 13 years ago
  20. 43d3906 Make "next" and "step-out" work when in stepping over or out of inlined functions. by Jim Ingham · 13 years ago
  21. 76e55f7 Make the step range plans capable of supporting multiple ranges. Also make their constructors public, there isn't any good reason why you shouldn't be able to make these plans. by Jim Ingham · 13 years ago
  22. e8f4e11 Make the "log enable lldb-step" output easier to parse. by Jim Ingham · 13 years ago
  23. ecd4feb SBValue::Watch() and SBValue::WatchPointee() are now the official API for creating by Johnny Chen · 13 years ago
  24. 8b7b227 Move the responsibility for translating the various eFunctionNameType lookups to the by Jim Ingham · 13 years ago
  25. ca804bf Don't look up main to find the default source file till somebody actually asks for it. by Jim Ingham · 13 years ago
  26. d426d63 <rdar://problem/10226227> by Greg Clayton · 13 years ago
  27. e14cf4e Add capability to set ignore count for watchpoint on the command line: by Johnny Chen · 13 years ago
  28. 840a992 Fixed a crasher where the m_frames collection was being accessed without by Greg Clayton · 13 years ago
  29. 00db215 Enable all the new accelerator tables if they are present and don't manually by Greg Clayton · 13 years ago
  30. 2f57db0 Cleaned up the the code that figures out the inlined stack frames given a by Greg Clayton · 13 years ago
  31. 5eb54bb Add SBTarget::GetLastCreatedWatchpointLocation() API and export to the Python interface. by Johnny Chen · 13 years ago
  32. 096c293 Add SB API class SBWatchpointLocation and some extra methods to the SBTarget class to by Johnny Chen · 13 years ago
  33. 23b8abb Added more functionality to the public API to allow for better by Greg Clayton · 13 years ago
  34. 3e8c25f Added to the public API to allow symbolication: by Greg Clayton · 13 years ago
  35. c86582f Add a (bool)end_to_end parameter, default true, to the Target::Remove/Disable/EnableALLWatchpointLocations() by Johnny Chen · 13 years ago
  36. 0f4d0f3 If stepping takes us from the line range we were stepping through into the MIDDLE of another line, then continue till we get to the real beginning of a line. This is mostly to work around debug information bugs. by Jim Ingham · 13 years ago
  37. d6d4797 Added the ability to restrict breakpoints by function name, function regexp, selector by Jim Ingham · 13 years ago
  38. 850ac6e Remove the Stop Hooks / End Stop Hooks lines before/after running by Jason Molenda · 13 years ago
  39. 01acfa7 Add initial implementation of watchpoint commands for list, enable, disable, and delete. by Johnny Chen · 13 years ago
  40. 567e7f3 Converted the lldb_private::Process over to use the intrusive shared pointers. by Greg Clayton · 13 years ago
  41. 043f8c2 StopInfoWatchpoint should override the StopInfo::ShouldStop() virtual method and delegate to by Johnny Chen · 13 years ago
  42. 03c8ee5 Add a new breakpoint type "break by source regular expression". by Jim Ingham · 13 years ago
  43. da5a802 Add some watchpoint maintenance methods to the Target class. by Johnny Chen · 13 years ago
  44. 6cf6c47 Fixed a problem where expressions would attempt to by Sean Callanan · 13 years ago
  45. 7e5fa7f Update declarations for all functions/methods that accept printf-style by Jason Molenda · 13 years ago
  46. 95b7b43 Change Error::SetErrorStringWithFormat() prototype to use an by Jason Molenda · 13 years ago
  47. e40b642 Don't put modules for .o files into the global shared module list. We by Greg Clayton · 13 years ago
  48. 987c7eb Adopt the intrusive pointers in: by Greg Clayton · 13 years ago
  49. 02e210c Removed the function: by Greg Clayton · 13 years ago
  50. c0c5324 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
  51. 6c43c12 Add cleanup of watchpoint locations during Target::DeleteCurrentProcess(). by Johnny Chen · 13 years ago
  52. 47dc457 This patch modifies the expression parser to allow it by Sean Callanan · 13 years ago
  53. 0d7f777 Take out all the separate places in Attach where we were getting the target architecture, and move that but of functionality into CompleteAttach. by Jim Ingham · 13 years ago
  54. 22a56cc Fix a bug where re-use of the same existing target-wise watchpoint did not work correctly. by Johnny Chen · 13 years ago
  55. 5b2fc57 Add logging to Target::CreateWatchpointLocation() and fix some bug of using the wrong variable. by Johnny Chen · 13 years ago
  56. 72095e8 If we haven't gotten the architecture of the process we're attaching by Jim Ingham · 13 years ago
  57. 87ff53b Add comments. by Johnny Chen · 13 years ago
  58. 69b6ec8 Watchpoint WIP: by Johnny Chen · 13 years ago
  59. 61286a5 Get the address and the size of the variable for passing to the Target::CreateWatchpointLocation() method. by Johnny Chen · 13 years ago
  60. 9bf1199 Fix compiler warning. by Johnny Chen · 13 years ago
  61. 08b8ed4 In ThreadList::GetSelectedThread, handle the case where we have no by Jason Molenda · 13 years ago
  62. 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
  63. 34bbf85 Watchpoint WIP: by Johnny Chen · 13 years ago
  64. b14ec34 Patch from Filipe! by Johnny Chen · 13 years ago
  65. 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
  66. 9a3c2a5 Add a data type WatchpointLocationList to the repository. A Target contains an instance of watchpoint location list. by Johnny Chen · 13 years ago
  67. 9154480 Redesign of the interaction between Python and frozen objects: by Enrico Granata · 13 years ago
  68. 914e718 Modify the impl of ThreadList::GetSelectedThread() so that it tries to fetch the by Johnny Chen · 13 years ago
  69. 2396777 Make ThreadList::GetSelectedThread() select and return the 0th thread if there's no by Johnny Chen · 13 years ago
  70. 0a77f90 Fix compilation error with DEBUG_STACK_FRAMES defined, patch by Filipe Cabecinhas! by Johnny Chen · 13 years ago
  71. 37f962e Added a new plug-in type: lldb_private::OperatingSystem. The operating system by Greg Clayton · 13 years ago
  72. 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
  73. 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
  74. c2da8eb Add missing check for non-NULL frame_sp. by Jim Ingham · 13 years ago
  75. 3ad4da0 Factor out the code that parses ObjC Method names into a static method by Jim Ingham · 13 years ago
  76. 7bbebaf Remember to restore the frame in the exe_ctx passed in to RunThreadPlan. by Jim Ingham · 13 years ago
  77. 574c3d6 Make ValueObject::SetValueFromCString work correctly. by Jim Ingham · 13 years ago
  78. c51ffbf We were leaking a stack frame in StackFrameList in Thread.cpp which could by Greg Clayton · 13 years ago
  79. c5dca6c Fixed some issues with parsing C++ methods where our detection by Greg Clayton · 13 years ago
  80. 018921d *Some more optimizations in usage of ConstString by Enrico Granata · 13 years ago
  81. 9c57fc0 Fixed an issue where a pointer's address was being logged instead of its value by Enrico Granata · 13 years ago
  82. f2bf870 Patch for "process load" by Filipe Cabecinhas. by Greg Clayton · 13 years ago
  83. b01760c Fix the broken build that happened with my last checkin. by Greg Clayton · 13 years ago
  84. 5beb99d Added the ability to remove orphaned module shared pointers from a ModuleList. by Greg Clayton · 13 years ago
  85. 9d56ba9 Check log shared pointer before using it. by Johnny Chen · 13 years ago
  86. 153ccd7 While tracking down memory consumption issue a few things were needed: the by Greg Clayton · 13 years ago
  87. f6d3d79 Fix a bunch of places where we were calling log->Printf to put CStrings. by Jim Ingham · 13 years ago
  88. ed3f86b Fixed a potential crash in Process.cpp when we used a log unchecked. by Sean Callanan · 13 years ago
  89. 21f37ad Move the handling of breakpoint conditions from the Private event loop to the StopInfoBreakpoint::DoActions, which happens as the by Jim Ingham · 13 years ago
  90. f669850 Basic support for reading synthetic children by index: by Enrico Granata · 13 years ago
  91. 24e0d61 Don't create a new stop info if we've already calculated one and it is still valid. by Jim Ingham · 13 years ago
  92. 34ce4ea Create the scratch AST context in the accessor function, not by Greg Clayton · 13 years ago
  93. 3b8a605 Fix a copy/paste error in a comment. by Jim Ingham · 13 years ago
  94. 6e2d282 Fixed an issue where StackFrame::GetValueForVariableExpressionPath(...) by Greg Clayton · 13 years ago
  95. 7868bcc Indent the frames in the "thread.GetStatus" frame listing. Also put the same space after each thread listing for "thread backtrace all" as "thread backtrace 1 3 5" by Jim Ingham · 13 years ago
  96. 4c3fb4b The implementation of categories is now synchronization safe by Enrico Granata · 13 years ago
  97. 8d2ea28 Added a boolean to the pure virtual lldb_private::Process::CanDebug(...) by Greg Clayton · 13 years ago
  98. 7dd98df Added the ability to _not_ skip the prologue when settings breakpoints by Greg Clayton · 13 years ago
  99. 9b82f86 Added the ability to see block variables when looking up addresses by Greg Clayton · 13 years ago
  100. f9ce9b8 Fixed some const issues with args to some lldb_private::Target functions. by Greg Clayton · 13 years ago