1. cecf348 Fixed the async packets (packets that need to be sent to the GDB server by Greg Clayton · 14 years ago
  2. 15dcb7c Back up both the register AND the stop state when calling functions. by Jim Ingham · 14 years ago
  3. 4e1ba0f Delay sync with the parent thread in ProcessLinux/ProcessMonitor. by Stephen Wilson · 14 years ago
  4. e0c20da Make LinuxThread use the LLDB unwinder. by Stephen Wilson · 14 years ago
  5. f3cbdc2 Do not enable hardware stepping when resuming a step-enabled thread. by Stephen Wilson · 14 years ago
  6. 89d46e3 Fix implementation of LinuxThread::HardwareSingleStep. by Stephen Wilson · 14 years ago
  7. f5db7cf Implement RegisterContextLinux_x86_64::ReadRegisterBytes. by Stephen Wilson · 14 years ago
  8. bc5d8a2 Support the reading of registers en masse via the linux ProcessMonitor. by Stephen Wilson · 14 years ago
  9. 83047fc Timeout if we fail to receive a state change event when destroying an inferior. by Stephen Wilson · 14 years ago
  10. 07fc7a9 Only enqueue valid ProcessLinux messages. by Stephen Wilson · 14 years ago
  11. c71899e Thread safety changes in debugserver and also in the process GDB remote plugin. by Greg Clayton · 14 years ago
  12. 1724dec Avoid infinite loops in stack backtraces and renamed: by Greg Clayton · 14 years ago
  13. b01000f A few of the issue I have been trying to track down and fix have been due to by Greg Clayton · 14 years ago
  14. 92241ef Initial support for a DynamicLoader plugin on Linux. by Stephen Wilson · 14 years ago
  15. b47794a Make a mandatory call to DestroyThread() in ~LinuxThread(). by Stephen Wilson · 14 years ago
  16. 593b5e1 Add empty implementation of pure virtual RegisterContext::InvalidateAllRegisters. by Stephen Wilson · 14 years ago
  17. 1f004c6 Set the ID of a ProcessLinux instance to the PID of the inferior on launch. by Stephen Wilson · 14 years ago
  18. 25defec Miscellaneous cleanups in ProcessMonitor. by Stephen Wilson · 14 years ago
  19. ec2bab4 Use the correct type for thread handle. by Stephen Wilson · 14 years ago
  20. 0131642 Implement ProcessLinux::GetImageInfoAddress(). by Stephen Wilson · 14 years ago
  21. 140f69a Have LinuxThread cache it's current StopInfo object. by Stephen Wilson · 14 years ago
  22. 6a92553 Implemented a major overhaul of the way variables are handled by Sean Callanan · 14 years ago
  23. a875b64 Put more smarts into the RegisterContext base class. Now the base class has by Greg Clayton · 14 years ago
  24. 5382281 Made FuncUnwinders threadsafe. by Greg Clayton · 14 years ago
  25. 5d187e5 Spelling changes applied from lldb_spelling.diffs from Bruce Mitchener. by Greg Clayton · 14 years ago
  26. 4862fa2 Modified the stop reply packet to be able to send the thread name using the by Greg Clayton · 14 years ago
  27. 869efc2 Fixed an issue with the UnwindLLDB code where if there were inlined stack by Greg Clayton · 14 years ago
  28. fd11999 Added memory caching to lldb_private::Process. All lldb_private::Process by Greg Clayton · 14 years ago
  29. 26100dc Added the ability for Target::ReadMemory to prefer to read from the file by Greg Clayton · 14 years ago
  30. bc1418b Fix a few small issues in r122981 to ensure compilation on Linux. by Stephen Wilson · 14 years ago
  31. 90ccf88 First try at patching linux for the recent RegisterContext patch. Can someone by Greg Clayton · 14 years ago
  32. 08d7d3a Fixed issues with RegisterContext classes and the subclasses. There was by Greg Clayton · 14 years ago
  33. 6c4f6b2 Fix typo (presumably carried over from the MacOSX plugin). by Stephen Wilson · 14 years ago
  34. d61182d Provide LinuxThread with an implementation of Thread::GetUnwinder. by Stephen Wilson · 14 years ago
  35. ed56002 Remove LinuxThread::GetRawStopReason and implement Thread::GetPrivateStopReason. by Stephen Wilson · 14 years ago
  36. 9702556 StopInfo now lives in the lldb_private namespace. Qualify. by Stephen Wilson · 14 years ago
  37. c8c74e0 Use default implementation of Thread::GetStackFrameCount and Thread::GetStackFrameAtIndex. by Stephen Wilson · 14 years ago
  38. a280e58 Do not load sections manually when launching a Linux process. by Stephen Wilson · 14 years ago
  39. 3a80431 by Stephen Wilson · 14 years ago
  40. 09e34d5 by Stephen Wilson · 14 years ago
  41. 4504bca Replace old "CurrentThread" calls with equivalent "SelectedThread" calls. by Stephen Wilson · 14 years ago
  42. d4c5cd5 RegisterContextLLDB.cpp (InitializeNonZerothFrame): If we get a by Jason Molenda · 14 years ago
  43. dad0b76 Removed darwin specific CPU type defines to make UnwindAssemblyProfiler_x86 able to compile on linux (patch from Stephen Wilson). by Greg Clayton · 14 years ago
  44. 6e889b1 Removed libunwind sources as we aren't using them anymore. by Greg Clayton · 14 years ago
  45. ff5cac2 Fixed a crasher where when a ProcessGDBRemote class was being destroyed, it would eventually destroy the dynamic loader (when the lldb_private::Process::m_dynamic_loader_ap destroys itself in the object member destructor chain). The dynamic loader was calling a pure virtual method in Process which was causing a crash. The quick fix is to reset the auto pointer in the ProcessGDBRemote destructor when ProcessGDBRemote is still a valid object with all its pure virtual functions intact. by Greg Clayton · 14 years ago
  46. 58e844b Added the ability to dump sections to a certain depth (for when sections by Greg Clayton · 14 years ago
  47. eecb0f3 More reverting of the EOF stuff as the API was changed which we don't want to by Greg Clayton · 14 years ago
  48. bd66601 Add '-no-stdio' option to 'process launch' command, which causes the by Caroline Tice · 14 years ago
  49. b749a26 Fixed a race condition that could cause ProcessGDBRemote::DoResume() to return by Greg Clayton · 14 years ago
  50. c0da615 Fixed DoResume to watch for the correct return value from WaitForIsRunning to avoid spurious errors due to previous fix. by Greg Clayton · 14 years ago
  51. 220494a Fixed bad logic that was trying to determine if the gdb remote resumed a process or not. by Greg Clayton · 14 years ago
  52. 9ac497b by Caroline Tice · 14 years ago
  53. 8e69de4 Change the DWARFExpression::Evaluate methods to take an optional by Jason Molenda · 14 years ago
  54. c4f55fe Add the ability to catch and do the right thing with Interrupts (often control-c) by Caroline Tice · 14 years ago
  55. 990de7b Cleaned up code that wasn't using the Initialize and Terminate paradigm by by Greg Clayton · 14 years ago
  56. 20d338f Fixed Process::Halt() as it was broken for "process halt" after recent changes by Greg Clayton · 14 years ago
  57. cdea236 The thread plan destructors may call Thread virtual methods. That means they have to get cleaned up in the derived class's destructor. Make sure that happens. by Jim Ingham · 14 years ago
  58. 3ae449a Added an "Interrupted" bit to the ProcessEventData. Halt now generates an event by Jim Ingham · 14 years ago
  59. 861efb3 Make processes use InputReaders for their input. Move the process by Caroline Tice · 14 years ago
  60. 19e5435 Add an UnwindPlan Row for the last instruction of a function when by Jason Molenda · 14 years ago
  61. e4b0784 I'm not thrilled with how I structured this but RegisterContextLLDB by Jason Molenda · 14 years ago
  62. fddc25a Silence a bunch of clang warnings. by Benjamin Kramer · 14 years ago
  63. 2ecd040 Implement RegisterContext::WriteRegisterBytes in RegisterContextLLDB. by Jason Molenda · 14 years ago
  64. 1da513b Refactor UnwindLLDB so it doesn't populate the entire stack unless by Jason Molenda · 14 years ago
  65. d6ef16a Fix thinko in UnwindTable.cpp where it wouldn't provde a by Jason Molenda · 14 years ago
  66. 23cf0c7 Cleaned up the pseudo terminal code in ProcessGDBRemote as it was spawning by Greg Clayton · 14 years ago
  67. e005f2c Modified all logging calls to hand out shared pointers to make sure we by Greg Clayton · 14 years ago
  68. 91a1dab If debugserver is running on the local machine, pass it a by Caroline Tice · 14 years ago
  69. dc7422c Use the new native unwinder by default. by Jason Molenda · 14 years ago
  70. 8132f2d Add #ifdef to easily switch between the current libunwind-remote based unwinder by Jason Molenda · 14 years ago
  71. 96829fb Revert last checking to ThreadGDBRemote.cpp; I accidentally checked by Jason Molenda · 14 years ago
  72. a6b71de Built the native unwinder with all the warnings c++-4.2 could muster; by Jason Molenda · 14 years ago
  73. 800d11d Handle the case where no eh_frame section is present. by Jason Molenda · 14 years ago
  74. 926060e Add the ability to disable individual log categories, rather by Caroline Tice · 14 years ago
  75. f3d0b0c Updated the lldb_private::Flags class to have better method names and made by Greg Clayton · 14 years ago
  76. 4e12194 Add an unwind log Printf to note when an eh_frame section is by Jason Molenda · 14 years ago
  77. 2e2ba54 Don't indent log lines by frame # spaces if the frame # exceeds 100 - the indentation by Jason Molenda · 14 years ago
  78. a2c269c Get a disassembler based on the correct architecture for assembly by Jason Molenda · 14 years ago
  79. 8280cbe Check in the native lldb unwinder. by Jason Molenda · 14 years ago
  80. 11e9585 If we hit a thread specific breakpoint for another thread, don't report the Exception as the stop reason, you have to report no stop reason. by Jim Ingham · 14 years ago
  81. 537a7a8 Fixed an issue where we were resolving paths when we should have been. by Greg Clayton · 14 years ago
  82. 3b2c41c Still trying to get detach to work with debugserver. Got a bit closer, by Greg Clayton · 14 years ago
  83. c1d3775 Fixed debugserver to properly attach to a process by name with the by Greg Clayton · 14 years ago
  84. 24b48ff Added a new Host call to find LLDB related paths: by Greg Clayton · 14 years ago
  85. af6e9e4 Fixed the dispatch queue name retrieval for threads by looking in an extra by Greg Clayton · 14 years ago
  86. 8f6be2a Fixed process.gdb-remote to be able to properly propagate the signals and by Greg Clayton · 14 years ago
  87. 4912f39 Make sure to lock down the sequence mutex and select the thread we want when read or write all registers. by Greg Clayton · 14 years ago
  88. d8c6253 Cleaned up the SWIG stuff so all includes happen as they should, no pulling by Greg Clayton · 14 years ago
  89. 2fcb13e Use the LLVM Macho.h header instead of relying on the system one, by Chris Lattner · 14 years ago
  90. 4b40711 Cleaned up a unused member variable in Debugger. by Greg Clayton · 14 years ago
  91. 4fb400f Hooked up detach for ProcessGDBRemote. by Greg Clayton · 14 years ago
  92. ea0dbca Add a new ArchVolatileRegs plugin class to identify by Jason Molenda · 14 years ago
  93. eea2640 Moved the section load list up into the target so we can use the target by Greg Clayton · 14 years ago
  94. 515ea54 Added logging of an error message in GDBRemoteCommunication::SendPacketNoLock() by Johnny Chen · 14 years ago
  95. 178710c Looking at some of the test suite failures in DWARF in .o files with the by Greg Clayton · 14 years ago
  96. 3a4ea24 The first part of an lldb native stack unwinder. by Jason Molenda · 14 years ago
  97. 0a7f75f Got the ARM version of debugserver up to date. by Greg Clayton · 14 years ago
  98. f04d661 Cleaned up step logging a bit. by Greg Clayton · 14 years ago
  99. c5b15db Fixed an lldb infrastructure bug, where the debugger should reaaly update its by Johnny Chen · 14 years ago
  100. b4d1d33 Added some extra logging to track asynchronous packet activity. by Greg Clayton · 14 years ago