1. c4f55fe Add the ability to catch and do the right thing with Interrupts (often control-c) by Caroline Tice · 14 years ago
  2. 990de7b Cleaned up code that wasn't using the Initialize and Terminate paradigm by by Greg Clayton · 14 years ago
  3. 20d338f Fixed Process::Halt() as it was broken for "process halt" after recent changes by Greg Clayton · 14 years ago
  4. 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
  5. 3ae449a Added an "Interrupted" bit to the ProcessEventData. Halt now generates an event by Jim Ingham · 14 years ago
  6. 861efb3 Make processes use InputReaders for their input. Move the process by Caroline Tice · 14 years ago
  7. 19e5435 Add an UnwindPlan Row for the last instruction of a function when by Jason Molenda · 14 years ago
  8. e4b0784 I'm not thrilled with how I structured this but RegisterContextLLDB by Jason Molenda · 14 years ago
  9. fddc25a Silence a bunch of clang warnings. by Benjamin Kramer · 14 years ago
  10. 2ecd040 Implement RegisterContext::WriteRegisterBytes in RegisterContextLLDB. by Jason Molenda · 14 years ago
  11. 1da513b Refactor UnwindLLDB so it doesn't populate the entire stack unless by Jason Molenda · 14 years ago
  12. d6ef16a Fix thinko in UnwindTable.cpp where it wouldn't provde a by Jason Molenda · 14 years ago
  13. 23cf0c7 Cleaned up the pseudo terminal code in ProcessGDBRemote as it was spawning by Greg Clayton · 14 years ago
  14. e005f2c Modified all logging calls to hand out shared pointers to make sure we by Greg Clayton · 14 years ago
  15. 91a1dab If debugserver is running on the local machine, pass it a by Caroline Tice · 14 years ago
  16. dc7422c Use the new native unwinder by default. by Jason Molenda · 14 years ago
  17. 8132f2d Add #ifdef to easily switch between the current libunwind-remote based unwinder by Jason Molenda · 14 years ago
  18. 96829fb Revert last checking to ThreadGDBRemote.cpp; I accidentally checked by Jason Molenda · 14 years ago
  19. a6b71de Built the native unwinder with all the warnings c++-4.2 could muster; by Jason Molenda · 14 years ago
  20. 800d11d Handle the case where no eh_frame section is present. by Jason Molenda · 14 years ago
  21. 926060e Add the ability to disable individual log categories, rather by Caroline Tice · 14 years ago
  22. f3d0b0c Updated the lldb_private::Flags class to have better method names and made by Greg Clayton · 14 years ago
  23. 4e12194 Add an unwind log Printf to note when an eh_frame section is by Jason Molenda · 14 years ago
  24. 2e2ba54 Don't indent log lines by frame # spaces if the frame # exceeds 100 - the indentation by Jason Molenda · 14 years ago
  25. a2c269c Get a disassembler based on the correct architecture for assembly by Jason Molenda · 14 years ago
  26. 8280cbe Check in the native lldb unwinder. by Jason Molenda · 14 years ago
  27. 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
  28. 537a7a8 Fixed an issue where we were resolving paths when we should have been. by Greg Clayton · 14 years ago
  29. 3b2c41c Still trying to get detach to work with debugserver. Got a bit closer, by Greg Clayton · 14 years ago
  30. c1d3775 Fixed debugserver to properly attach to a process by name with the by Greg Clayton · 14 years ago
  31. 24b48ff Added a new Host call to find LLDB related paths: by Greg Clayton · 14 years ago
  32. af6e9e4 Fixed the dispatch queue name retrieval for threads by looking in an extra by Greg Clayton · 14 years ago
  33. 8f6be2a Fixed process.gdb-remote to be able to properly propagate the signals and by Greg Clayton · 14 years ago
  34. 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
  35. d8c6253 Cleaned up the SWIG stuff so all includes happen as they should, no pulling by Greg Clayton · 14 years ago
  36. 2fcb13e Use the LLVM Macho.h header instead of relying on the system one, by Chris Lattner · 14 years ago
  37. 4b40711 Cleaned up a unused member variable in Debugger. by Greg Clayton · 14 years ago
  38. 4fb400f Hooked up detach for ProcessGDBRemote. by Greg Clayton · 14 years ago
  39. ea0dbca Add a new ArchVolatileRegs plugin class to identify by Jason Molenda · 14 years ago
  40. eea2640 Moved the section load list up into the target so we can use the target by Greg Clayton · 14 years ago
  41. 515ea54 Added logging of an error message in GDBRemoteCommunication::SendPacketNoLock() by Johnny Chen · 14 years ago
  42. 178710c Looking at some of the test suite failures in DWARF in .o files with the by Greg Clayton · 14 years ago
  43. 3a4ea24 The first part of an lldb native stack unwinder. by Jason Molenda · 14 years ago
  44. 0a7f75f Got the ARM version of debugserver up to date. by Greg Clayton · 14 years ago
  45. f04d661 Cleaned up step logging a bit. by Greg Clayton · 14 years ago
  46. c5b15db Fixed an lldb infrastructure bug, where the debugger should reaaly update its by Johnny Chen · 14 years ago
  47. b4d1d33 Added some extra logging to track asynchronous packet activity. by Greg Clayton · 14 years ago
  48. 1a67946 Fixed a case where we might be able to acquire a mutex with a try lock and by Greg Clayton · 14 years ago
  49. 2653be9 Pacify operator precedence warnings. No functionality change because eLaunchFlagDisableASLR happens to be 1. by Benjamin Kramer · 14 years ago
  50. 5205f0b Fixed the StackFrame to correctly resolve the StackID's SymbolContextScope. by Greg Clayton · 14 years ago
  51. 452bf61 Added the ability to disable ASLR (Address Space Layout Randomization). ASLR by Greg Clayton · 14 years ago
  52. 4fb0815 Clarified the intent of the SymbolContextScope class in the header by Greg Clayton · 14 years ago
  53. c833295 Change "Current" as in GetCurrentThread, GetCurrentStackFrame, etc, to "Selected" i.e. GetSelectedThread. Selected makes more sense, since these are set by some user action (a selection). I didn't change "CurrentProcess" since this is always controlled by the target, and a given target can only have one process, so it really can't be selected. by Jim Ingham · 14 years ago
  54. b04e7a8 Got a lot of the kinks worked out in the inline support after debugging more by Greg Clayton · 14 years ago
  55. 33ed170 Added support for inlined stack frames being represented as real stack frames by Greg Clayton · 14 years ago
  56. 75ccf50 Modified the host process monitor callback function Host::StartMonitoringChildProcess by Greg Clayton · 14 years ago
  57. 7121908 Now that we are using the Unwinder (or Jason's new unwinder when that comes about) all the plugin-specific details of getting stack frames by Jim Ingham · 14 years ago
  58. ac9c8b5 Remove unused powerpc unwind support. by Jason Molenda · 14 years ago
  59. 7508e73 Change Target & Process so they can really be initialized with an invalid architecture. by Jim Ingham · 14 years ago
  60. 643ee73 Abtracted the old "lldb_private::Thread::StopInfo" into an abtract class. by Greg Clayton · 14 years ago
  61. 960d6a4 Added support for objective C built-in types: id, Class, and SEL. This by Greg Clayton · 14 years ago
  62. f6f4033 Add a new Process plugin for Linux. by Stephen Wilson · 14 years ago
  63. 7661a98 Centralized the Mach exception stop info code by adding it as a first by Greg Clayton · 14 years ago
  64. f8e98a6 Warnings cleanup patch from Jean-Daniel Dupas. by Greg Clayton · 14 years ago
  65. 7cebe13 Added Mach exception stop descriptions. The chunk of code I just added needs to be placed into a utility location so it can be used by ProcessMacOSX and debugserver. by Greg Clayton · 14 years ago
  66. 1674b12 Change over to using the definitions for mach-o types and defines to the by Greg Clayton · 14 years ago
  67. 53d68e7 Remove use of STL collection class use of the "data()" method since it isn't by Greg Clayton · 14 years ago
  68. bef1583 I enabled some extra warnings for hidden local variables and for hidden by Greg Clayton · 14 years ago
  69. 54e7afa Merged Eli Friedman's linux build changes where he added Makefile files that by Greg Clayton · 14 years ago
  70. c041815 typedef fixups, patch from Jean-Daniel Dupas. by Greg Clayton · 14 years ago
  71. 47ebf9b Avoid duplicate names (something else that clang++ really doesn't like) in by Greg Clayton · 14 years ago
  72. f2a4d2e Applied pid.patch from Jean-Daniel Dupas. by Greg Clayton · 14 years ago
  73. cdd22d0 Plugged 4 more leaks in the libunwind code. One leaks is still left in as it by Greg Clayton · 14 years ago
  74. e9d0df4 More leaks detection: by Greg Clayton · 14 years ago
  75. 63094e0 Very large changes that were needed in order to allow multiple connections by Greg Clayton · 14 years ago
  76. 3ae9340 Initialize member so GDBRemoteRegisterContext::ReadRegisterBytes doesn't rely on by Benjamin Kramer · 14 years ago
  77. 3c7b5b9 Add a "thread specification" class that specifies thread specific breakpoints by name, index, queue or TID. by Jim Ingham · 14 years ago
  78. 84cdc15 Move Args.{cpp,h} and Options.{cpp,h} to Interpreter where they really belong. by Jim Ingham · 14 years ago
  79. 011cb18 Fixed the build after recent header changes. by Greg Clayton · 14 years ago
  80. 6d8fe90 Include mach/mach_types.h in two files to adjust for their by Jason Molenda · 14 years ago
  81. 53d9686 Applied PluginManager.cpp patch from Jean-Daniel Dupas. by Jason Molenda · 14 years ago
  82. cf01505 Made lldb_private::ArchSpec more generic so that it can take a mach-o cpu by Greg Clayton · 14 years ago
  83. dea5ea7 Move source/Utility/PseudoTerminal.h into include/lldb/Utility. by Jason Molenda · 14 years ago
  84. 24943d2 Initial checkin of lldb code from internal Apple repo. by Chris Lattner · 14 years ago