1. b5a8f14 <rdar://problem/10560053> by Greg Clayton · 13 years ago
  2. 334d33a SBFrame is now threadsafe using some extra tricks. One issue is that stack by Greg Clayton · 13 years ago
  3. 13d24fb Switching back to using std::tr1::shared_ptr. We originally switched away by Greg Clayton · 13 years ago
  4. 4e4805b Only create new ASTImporters on demand, not proactively. by Sean Callanan · 13 years ago
  5. 4b23ab3 <rdar://problem/10652336> by Greg Clayton · 13 years ago
  6. daa6efe The "desired result type" code in the expression by Sean Callanan · 13 years ago
  7. 931449e rdar://problem/10227672 by Johnny Chen · 13 years ago
  8. 37bb8dd Added a new class called lldb_private::SymbolFileType which is designed to by Greg Clayton · 13 years ago
  9. fa21ffd rdar://problem/10501020 by Johnny Chen · 13 years ago
  10. 4938bd6 I made the ClangASTImporter owned by the target by Sean Callanan · 13 years ago
  11. e0b7f94 Fixed a problem where the target didn't use a by Sean Callanan · 13 years ago
  12. dcf03f8 Made Target own a ClangASTSource that will be used by Sean Callanan · 13 years ago
  13. abb3302 Moved many of the "settings" that used to be in "target.process.*" to just by Greg Clayton · 13 years ago
  14. 5b658cc Added a language parameter to the expression parser, by Sean Callanan · 13 years ago
  15. 705a098 warnings: Fix up several const qualified return types. by Daniel Dunbar · 13 years ago
  16. 7089d8a Added the ability for the target to specify Modules that will not be searched by Jim Ingham · 13 years ago
  17. 9c23673 Cleaned up many error codes. For any who is filling in error strings into by Greg Clayton · 13 years ago
  18. 4d96a74 Add more context information to the stop-hook mechanism by displaying the stop-hook by Johnny Chen · 13 years ago
  19. 444e35b Moved lldb::user_id_t values to be 64 bit. This was going to be needed for by Greg Clayton · 13 years ago
  20. ecd4feb SBValue::Watch() and SBValue::WatchPointee() are now the official API for creating by Johnny Chen · 13 years ago
  21. ca804bf Don't look up main to find the default source file till somebody actually asks for it. by Jim Ingham · 13 years ago
  22. e14cf4e Add capability to set ignore count for watchpoint on the command line: by Johnny Chen · 13 years ago
  23. 5eb54bb Add SBTarget::GetLastCreatedWatchpointLocation() API and export to the Python interface. by Johnny Chen · 13 years ago
  24. 096c293 Add SB API class SBWatchpointLocation and some extra methods to the SBTarget class to by Johnny Chen · 13 years ago
  25. 3e8c25f Added to the public API to allow symbolication: by Greg Clayton · 13 years ago
  26. c86582f Add a (bool)end_to_end parameter, default true, to the Target::Remove/Disable/EnableALLWatchpointLocations() by Johnny Chen · 13 years ago
  27. d6d4797 Added the ability to restrict breakpoints by function name, function regexp, selector by Jim Ingham · 13 years ago
  28. 850ac6e Remove the Stop Hooks / End Stop Hooks lines before/after running by Jason Molenda · 13 years ago
  29. 01acfa7 Add initial implementation of watchpoint commands for list, enable, disable, and delete. by Johnny Chen · 13 years ago
  30. 567e7f3 Converted the lldb_private::Process over to use the intrusive shared pointers. by Greg Clayton · 13 years ago
  31. 03c8ee5 Add a new breakpoint type "break by source regular expression". by Jim Ingham · 13 years ago
  32. da5a802 Add some watchpoint maintenance methods to the Target class. by Johnny Chen · 13 years ago
  33. 95b7b43 Change Error::SetErrorStringWithFormat() prototype to use an by Jason Molenda · 13 years ago
  34. 987c7eb Adopt the intrusive pointers in: by Greg Clayton · 13 years ago
  35. 6c43c12 Add cleanup of watchpoint locations during Target::DeleteCurrentProcess(). by Johnny Chen · 13 years ago
  36. 47dc457 This patch modifies the expression parser to allow it by Sean Callanan · 13 years ago
  37. 22a56cc Fix a bug where re-use of the same existing target-wise watchpoint did not work correctly. by Johnny Chen · 13 years ago
  38. 5b2fc57 Add logging to Target::CreateWatchpointLocation() and fix some bug of using the wrong variable. by Johnny Chen · 13 years ago
  39. 87ff53b Add comments. by Johnny Chen · 13 years ago
  40. 69b6ec8 Watchpoint WIP: by Johnny Chen · 13 years ago
  41. 61286a5 Get the address and the size of the variable for passing to the Target::CreateWatchpointLocation() method. by Johnny Chen · 13 years ago
  42. 9bf1199 Fix compiler warning. by Johnny Chen · 13 years ago
  43. 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
  44. 34bbf85 Watchpoint WIP: by Johnny Chen · 13 years ago
  45. 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
  46. 9a3c2a5 Add a data type WatchpointLocationList to the repository. A Target contains an instance of watchpoint location list. by Johnny Chen · 13 years ago
  47. 9154480 Redesign of the interaction between Python and frozen objects: by Enrico Granata · 13 years ago
  48. 018921d *Some more optimizations in usage of ConstString by Enrico Granata · 13 years ago
  49. 5beb99d Added the ability to remove orphaned module shared pointers from a ModuleList. by Greg Clayton · 13 years ago
  50. 153ccd7 While tracking down memory consumption issue a few things were needed: the by Greg Clayton · 13 years ago
  51. f669850 Basic support for reading synthetic children by index: by Enrico Granata · 13 years ago
  52. 34ce4ea Create the scratch AST context in the accessor function, not by Greg Clayton · 13 years ago
  53. 3b8a605 Fix a copy/paste error in a comment. by Jim Ingham · 13 years ago
  54. 7dd98df Added the ability to _not_ skip the prologue when settings breakpoints by Greg Clayton · 13 years ago
  55. 9b82f86 Added the ability to see block variables when looking up addresses by Greg Clayton · 13 years ago
  56. f9ce9b8 Fixed some const issues with args to some lldb_private::Target functions. by Greg Clayton · 13 years ago
  57. bbea133 Added the start of the darwin dynamic loader plug-in. It isn't hooked up to by Greg Clayton · 13 years ago
  58. 801417e Added "target variable" command that allows introspection of global by Greg Clayton · 13 years ago
  59. e5ed8e9 Added Debugger::GetAsync{Output/Error}Stream, and use it to print parse errors when we go to run a breakpoint condition. by Jim Ingham · 13 years ago
  60. 577fbc3 Disable dynamic types being on by default until kinks get worked out when by Greg Clayton · 13 years ago
  61. c0fa533 Added new lldb_private::Process memory read/write functions to stop a bunch by Greg Clayton · 13 years ago
  62. 3613ae1 Target::EvaluateExpression should suppress stop hooks. by Jim Ingham · 13 years ago
  63. 53fe9cc Make sure you have an executable module before trying to print its name. by Jim Ingham · 13 years ago
  64. 696cf5f Made expressions that are just casts of pointer by Sean Callanan · 13 years ago
  65. 10de7d1 Change "frame var" over to using OptionGroups (and thus the OptionGroupVariableObjectDisplay). by Jim Ingham · 13 years ago
  66. 4a34808 by Caroline Tice · 13 years ago
  67. ff44ab4 Fixed the SymbolContext::DumpStopContext() to correctly indent and dump by Greg Clayton · 13 years ago
  68. 47da810 Fix up how the ValueObjects manage their life cycle so that you can hand out a shared by Jim Ingham · 13 years ago
  69. 17cd995 Did some work on the "register read" command to only show the first register by Greg Clayton · 13 years ago
  70. 41c56fa General cleanup on the UserSettingsController stuff. There were 5 different by Greg Clayton · 13 years ago
  71. 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
  72. dbeb3e1 Order of initialization lists. by Stephen Wilson · 13 years ago
  73. f15996e Modified the ArchSpec to take an optional "Platform *" when setting the triple. by Greg Clayton · 13 years ago
  74. 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
  75. 24bc5d9 Many improvements to the Platform base class and subclasses. The base Platform by Greg Clayton · 13 years ago
  76. 889fbd0 Added the ability to get the min and max instruction byte size for by Greg Clayton · 13 years ago
  77. b344843 Fixed the LLDB build so that we can have private types, private enums and by Greg Clayton · 13 years ago
  78. cb8977d Added new platform commands: by Greg Clayton · 13 years ago
  79. c54840c Tidy up the stop hook printing when only one thread matches, and there is only one hook. by Jim Ingham · 13 years ago
  80. b1888f2 Added more platform support. There are now some new commands: by Greg Clayton · 13 years ago
  81. d60d94a Add a first pass at a "stop hook" mechanism. This allows you to add commands that get run every time the debugger stops, whether due to a breakpoint, the end of a step, interrupt, etc. You can also specify in which context you want the stop hook to run, for instance only on a particular thread, or only in a particular shared library, function, file, line range within a file. by Jim Ingham · 13 years ago
  82. 2a45681 by Caroline Tice · 13 years ago
  83. e4b9c1f LLDB now has "Platform" plug-ins. Platform plug-ins are plug-ins that provide by Greg Clayton · 13 years ago
  84. 940b103 Abtracted all mach-o and ELF out of ArchSpec. This patch is a modified form by Greg Clayton · 14 years ago
  85. d284b66 Added new target instance settings for execution settings: by Greg Clayton · 14 years ago
  86. 88fa7bd Destroy the dynamic loader plugin in Process::Finalize. If you wait till the auto_ptr gets deleted in the normal course of things the real process class will have been destroyed already, and it's hard to shut down the dynamic loader without accessing some process pure virtual method. by Jim Ingham · 14 years ago
  87. 395fc33 Made lldb_private::ArchSpec contain much more than just an architecture. It by Greg Clayton · 14 years ago
  88. 0467c78 Applied a fix to qualify "UUID" with the lldb_private namespace to fix by Greg Clayton · 14 years ago
  89. 455aae9 Removed unneeded header file. by Greg Clayton · 14 years ago
  90. 9f52704 Removed a memory map loading of a file where the mmap contents were just by Greg Clayton · 14 years ago
  91. 22c9e0d Fixed a crasher due to not checking if a shared pointer (m_last_created_breakpoint) by Greg Clayton · 14 years ago
  92. c67efa4 Added the ability to StackFrame::GetValueForVariableExpressionPath(...) to avoid by Greg Clayton · 14 years ago
  93. 6a92553 Implemented a major overhaul of the way variables are handled by Sean Callanan · 14 years ago
  94. a875b64 Put more smarts into the RegisterContext base class. Now the base class has by Greg Clayton · 14 years ago
  95. 26100dc Added the ability for Target::ReadMemory to prefer to read from the file by Greg Clayton · 14 years ago
  96. bdcda46 The LLDB API (lldb::SB*) is now thread safe! by Greg Clayton · 14 years ago
  97. c3b61d2 Fixed the "expression" command object to use the StackFrame::GetValueForExpressionPath() by Greg Clayton · 14 years ago
  98. 427f290 Modified LLDB expressions to not have to JIT and run code just to see variable by Greg Clayton · 14 years ago
  99. 7b9fcc0 When shared libraries are unloaded, they are now removed from the target by Greg Clayton · 14 years ago
  100. 638351a Added the ability for a process to inherit the current host environment. This by Greg Clayton · 14 years ago