1. 987c7eb Adopt the intrusive pointers in: by Greg Clayton · 13 years ago
  2. 02e210c Removed the function: by Greg Clayton · 13 years ago
  3. 6e0101c Convert lldb::ModuleSP to use an instrusive ref counted pointer. by Greg Clayton · 13 years ago
  4. 2080155 Added more logging, and renamed FPR to FPU in a the register set/flavor enum. by Greg Clayton · 13 years ago
  5. 48e8373 Correctly handle the when we the 'G' packet fails. There were by Greg Clayton · 13 years ago
  6. 1a3e9e6 Make sure to print out register names when reading registers and also by Greg Clayton · 13 years ago
  7. 36889ad Foe x86_64/i386, piggyback the hardware index of the fired watchpoint in the exception by Johnny Chen · 13 years ago
  8. 26ec874 Fix typo. by Johnny Chen · 13 years ago
  9. f9f3302 Add comment. by Johnny Chen · 13 years ago
  10. 10b12b3 Add a declaraion info member field to the WatchpointLocation class. by Johnny Chen · 13 years ago
  11. 6a45148 Minor change for output message (less is better). by Johnny Chen · 13 years ago
  12. 178c8d9 To be more paranoid, check cmd_output before searching in it. by Johnny Chen · 13 years ago
  13. 6a4e087 Rephrase the checkDsymForUUIDIsNotOn() a bit so that in the normal case where automatic by Johnny Chen · 13 years ago
  14. 5114e88 Tighten up the 'log enable lldb unwind' printing for by Jason Molenda · 13 years ago
  15. 2891bb0 Add a check for the test driver to make sure that, on Mac OS X, the automatic lookup and caching by Johnny Chen · 13 years ago
  16. cc7de48 Untabify and fix indentation. by Johnny Chen · 13 years ago
  17. cbecb9a Fix wrong test method name. by Johnny Chen · 13 years ago
  18. 6a388c9 Untabify and fix indentations. Tabs are bad. by Johnny Chen · 13 years ago
  19. 2e1f447 Add fuzz calls for added API methods: FindFirstType(), FindTypes(), and GetSourceManager(). by Johnny Chen · 13 years ago
  20. 12a8ecd Add fuzz calls to newly added methods: GetAsync() and SetSelectedTarget(SBTarget). by Johnny Chen · 13 years ago
  21. 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
  22. 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
  23. 58c66e2 Add a simple watchpoint test to exercise watchpoint creation followed by watchpoint hit events. by Johnny Chen · 13 years ago
  24. 6c43c12 Add cleanup of watchpoint locations during Target::DeleteCurrentProcess(). by Johnny Chen · 13 years ago
  25. 97ad47f Fixed a problem where the symbol context was not by Sean Callanan · 13 years ago
  26. f7649bb Fixed a problem where the expression parser would by Sean Callanan · 13 years ago
  27. 3823c84 Fixed indentation. by Johnny Chen · 13 years ago
  28. a1cb0f4 Add comment regarding method call to DNBArchProtocol::NotifyException(). by Johnny Chen · 13 years ago
  29. 47dc457 This patch modifies the expression parser to allow it by Sean Callanan · 13 years ago
  30. ba3d698 Modify MachThread::NotifyException() to allow the arch specific protocol to process by Johnny Chen · 13 years ago
  31. 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
  32. ee940e2 Change the "attach" command to always wait synchronously for the target to stop. It's not very useful to return the prompt in mid-attach, and it makes reporting the result of the attach hard to do. by Jim Ingham · 13 years ago
  33. 65ac966 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
  34. 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
  35. 819dd5e by Jason Molenda · 13 years ago
  36. 89798cc Set the OS in the triple correctly in response to the qHostInfo packet. by Greg Clayton · 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. 72095e8 If we haven't gotten the architecture of the process we're attaching by Jim Ingham · 13 years ago
  40. 87ff53b Add comments. by Johnny Chen · 13 years ago
  41. 0ff8162 Update I386 DNB impl to fix the same errors as DNBArchImplX86_64: ('==' instead of '=') and (by value instead of by reference). by Johnny Chen · 13 years ago
  42. 69b6ec8 Watchpoint WIP: by Johnny Chen · 13 years ago
  43. 83dd203 Adding "-n", "-p" and "-w" flags to the lldb command-line tool to by Jim Ingham · 13 years ago
  44. 61286a5 Get the address and the size of the variable for passing to the Target::CreateWatchpointLocation() method. by Johnny Chen · 13 years ago
  45. 57067a0 Fixed some incorrect return values. by Greg Clayton · 13 years ago
  46. 9bf1199 Fix compiler warning. by Johnny Chen · 13 years ago
  47. 95f41b8 Add trivial implementation for GetDescription(). by Johnny Chen · 13 years ago
  48. 08b8ed4 In ThreadList::GetSelectedThread, handle the case where we have no by Jason Molenda · 13 years ago
  49. 38e44ec Change the macosx Host::FindProcesses() to include all processes by Jason Molenda · 13 years ago
  50. 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
  51. 649d3f1 Remove an unnecessary 'else { ... }', which adds to vertical as well as horizontal spans, by Johnny Chen · 13 years ago
  52. 34bbf85 Watchpoint WIP: by Johnny Chen · 13 years ago
  53. 144188b Huge memory and performance improvements in the DWARF parser. by Greg Clayton · 13 years ago
  54. ca3e91a Fix indentations, add some comments. by Johnny Chen · 13 years ago
  55. b50787d Added GDB/LLDB commands for the "target stop-hook add" command. by Greg Clayton · 13 years ago
  56. 3066b25 Fix a bug in OptionGroupWatchpoint.cpp where the '-w' option arg parsing result was not checked by Johnny Chen · 13 years ago
  57. d996d0c Fixed the header guards. by Greg Clayton · 13 years ago
  58. dad26a8 Fixed the logging output to be done consistently across all plug-ins. by Greg Clayton · 13 years ago
  59. 31cf0e7 Changed to using an "operator bool" instead of an "operator void*" by Greg Clayton · 13 years ago
  60. 86c2e74 Fixed up the comments in the headerdoc to match the current implementation by Greg Clayton · 13 years ago
  61. 448bd2f Fixes for Symtab.cpp to take advantage of the new unique C string map by Greg Clayton · 13 years ago
  62. 95decca Added extra calls to the UniqueCStringMap to allow it to be used by Greg Clayton · 13 years ago
  63. d6edcb5 Don't skip the application specific ~/.lldbinit file when the program by Greg Clayton · 13 years ago
  64. 439d033 A little bit of cleanup; set watch_mode to eWatchInvalid at the OptionParsingStarting() lifecycle point. by Johnny Chen · 13 years ago
  65. cfbf7fe Convert OptionGroupVariable.cpp to use the arraysize() template function, as well. by Johnny Chen · 13 years ago
  66. 707e340 Quick fixes to the PE COFF file loader. by Greg Clayton · 13 years ago
  67. d1f8705 Add comment. by Johnny Chen · 13 years ago
  68. 4003f57 Refactoring: replace a bunch of static array size computation or hardcoded constant by Johnny Chen · 13 years ago
  69. 3b23d20 Renaming a bulk of method calls from Get() to something more descriptive by Enrico Granata · 13 years ago
  70. 58dba3c Add OptionGroupWatchpoint.cpp/.h (preparatory work) for hooking up watchpoint to the 'frame variable' comand. by Johnny Chen · 13 years ago
  71. d68e089 Added the ability to introspect types thourgh the public SBType interface. by Greg Clayton · 13 years ago
  72. 0a44b0d Reset the debug status register, only if necessary, before we resume, by Johnny Chen · 13 years ago
  73. 48a5e85 Fix compiler warnings for GetGDBStoppointType(). by Johnny Chen · 13 years ago
  74. e9f4982 Added first pass at PE COFF file reading support. It parses the sections by Greg Clayton · 13 years ago
  75. 1ac6d1f Adding two new options to the 'help' command: by Enrico Granata · 13 years ago
  76. c39793d Fixed the error message: by Johnny Chen · 13 years ago
  77. 2e7711c Objective-C runtime wrapper by Enrico Granata · 13 years ago
  78. 271568f Fixing an issue with Python commands defined interactively by Enrico Granata · 13 years ago
  79. f7908e6 Patch from Pilipe to allow "target create" on the remote-macosx platform! by Johnny Chen · 13 years ago
  80. 01b79d2 FreeBSD platform patch from Filipe! by Johnny Chen · 13 years ago
  81. 520e7fe Basic infrastructure code to exploit malloc stack logging as available on Mac OS X to track the allocation history of pointers on the target process by Enrico Granata · 13 years ago
  82. b14ec34 Patch from Filipe! by Johnny Chen · 13 years ago
  83. 677aabd Remove code rot (unused class OptionGroupFrameVariable) from CommandObjectFrameVariable. by Johnny Chen · 13 years ago
  84. 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
  85. 30e8d97 Watchpoint WIP: on the debugger side, create an instance of either by Johnny Chen · 13 years ago
  86. aac59fe Added help on stack frame selection compared to GDB and corrected the register by Greg Clayton · 13 years ago
  87. d8b7248 Added comments about exception code. by Johnny Chen · 13 years ago
  88. fc89093 Add logic to the DNBArchImplX86_64/DNBArchImplI386::NotifyException() callback method by Johnny Chen · 13 years ago
  89. d9fa9d7 "frame select -r" should return an error if you are already at the top of the stack & try to go up or at the bottom and try to go down. by Jim Ingham · 13 years ago
  90. 0c5c9a2 other documentation changes by Enrico Granata · 13 years ago
  91. 9e4102f documentation changes (WIP) by Enrico Granata · 13 years ago
  92. 2c45f54 Add logic to MachThreadList::GetThreadID() for the use case of setting a watchpoint by Johnny Chen · 13 years ago
  93. 390a0e7 Minor change: compare the return val of DNBWatchpointSet() against INVALID_NUB_WATCH_ID by Johnny Chen · 13 years ago
  94. 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
  95. 21900fb Fill out implementation of Enable/DisableWatchpoint() for ProcessGDBRemote class (Not Tested Yet). by Johnny Chen · 13 years ago
  96. d86218a Test should print to stdout only if self.TraceOn() is True. by Johnny Chen · 13 years ago
  97. 9a3c2a5 Add a data type WatchpointLocationList to the repository. A Target contains an instance of watchpoint location list. by Johnny Chen · 13 years ago
  98. 31d8918 DNBBreakpoint::SetEnabled() should take a bool, not a uint32_t, as its input argument. by Johnny Chen · 13 years ago
  99. 9154480 Redesign of the interaction between Python and frozen objects: by Enrico Granata · 13 years ago
  100. edda23f Change the signature of WatchpointLocation ctor so that the second param becomes by Johnny Chen · 13 years ago