1. 9c11d47 Fixed a typo in comment. by Johnny Chen · 14 years ago
  2. 9ac497b by Caroline Tice · 14 years ago
  3. 360f53f Moved the code in ClangUserExpression that set up & ran the thread plan with timeouts, and restarting with all threads into a utility function in Process. This required a bunch of renaming. by Jim Ingham · 14 years ago
  4. 8e69de4 Change the DWARFExpression::Evaluate methods to take an optional by Jason Molenda · 14 years ago
  5. c4f55fe Add the ability to catch and do the right thing with Interrupts (often control-c) by Caroline Tice · 14 years ago
  6. c0c1b0c Fixed an issue where the UserSettingsControllers were being created out of by Greg Clayton · 14 years ago
  7. 990de7b Cleaned up code that wasn't using the Initialize and Terminate paradigm by by Greg Clayton · 14 years ago
  8. 640dc6b Added the ability to get more information on the SBThread's stop reason by Greg Clayton · 14 years ago
  9. 20d338f Fixed Process::Halt() as it was broken for "process halt" after recent changes by Greg Clayton · 14 years ago
  10. 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
  11. c783660 Add a missing newline to the ThreadPlanAssemblyTracer output. by Jim Ingham · 14 years ago
  12. ae7862a Add a ThreadPlanAssemblyTracer that takes just a thread (since that's how we call it from ThreadPlanBase...) by Jim Ingham · 14 years ago
  13. 3ae449a Added an "Interrupted" bit to the ProcessEventData. Halt now generates an event by Jim Ingham · 14 years ago
  14. 861efb3 Make processes use InputReaders for their input. Move the process by Caroline Tice · 14 years ago
  15. 6916e35 Modified the lldb_private::Type clang type resolving code to handle three by Greg Clayton · 14 years ago
  16. 5b0228a Added a thread plan tracer that prints lines of by Sean Callanan · 14 years ago
  17. 4868568 Excised a version of the low-level function calling by Sean Callanan · 14 years ago
  18. 745ac7a Add ThreadPlanTracer class to allow instruction step tracing of execution. by Jim Ingham · 14 years ago
  19. 83e8b9d Remove an obsolete reference to immediate plans. by Jim Ingham · 14 years ago
  20. 6dff827 Added more logging so we see the register state by Sean Callanan · 14 years ago
  21. e005f2c Modified all logging calls to hand out shared pointers to make sure we by Greg Clayton · 14 years ago
  22. ea9d426 Added the equivalent of gdb's "unwind-on-signal" to the expression command, and a parameter to control it in ClangUserExpression, and on down to ClangFunction. by Jim Ingham · 14 years ago
  23. 981e44c Don't need both LIBLLDB_LOG_DYNAMIC_LOADER and LIBLLDB_LOG_SHLIB. Go with the former. by Jim Ingham · 14 years ago
  24. 4f385f1 Handle stepping through ObjC vtable trampoline code. by Jim Ingham · 14 years ago
  25. 2eac2b9 Add a ObjC V1 runtime, and a generic AppleObjCRuntime plugin. by Jim Ingham · 14 years ago
  26. 0baa394 Added support for loading and unloading shared libraries. This was done by by Greg Clayton · 14 years ago
  27. 14a97ff Re-enabled LLDB's pointer checkers, and moved the by Sean Callanan · 14 years ago
  28. 29756d4 Factored the code that implements breakpoints on by Sean Callanan · 14 years ago
  29. 94fb543 Modified ThreadPlanCallFunction to perform the by Sean Callanan · 14 years ago
  30. 07f3d8d Modified the thread plan that calls functions to by Sean Callanan · 14 years ago
  31. 8936359 Fixed StackFrame::GetVariableList to add global by Sean Callanan · 14 years ago
  32. 49ce682 Cleaned up the API logging a lot more to reduce redundant information and by Greg Clayton · 14 years ago
  33. a66ba46 Improved API logging. by Greg Clayton · 14 years ago
  34. 926060e Add the ability to disable individual log categories, rather by Caroline Tice · 14 years ago
  35. 3f5ee7f Modified the lldb_private::TypeList to use a std::multimap for quicker lookup by Greg Clayton · 14 years ago
  36. 77e9394 Added a user-settable variable, 'target.expr-prefix', by Sean Callanan · 14 years ago
  37. f3d0b0c Updated the lldb_private::Flags class to have better method names and made by Greg Clayton · 14 years ago
  38. bf6e210 After a recent fix to not set the default architecture to "x86_64", the string value for the default arch was coming out as a value that shouldn't be user visible. Now we don't show any value when it isn't set. by Greg Clayton · 14 years ago
  39. 7826c88 First pass at adding logging capabilities for the API functions. At the moment by Caroline Tice · 14 years ago
  40. c2c6f77 Fixed a problem where function calls on i386 weren't being generated correctly. by Sean Callanan · 14 years ago
  41. 988ddbc The call function thread plan should allow internal breakpoints to continue on. Also made stopping by Jim Ingham · 14 years ago
  42. fe97289 Don't set the default architecture to x86_64. Leave it NULL so that it isn't set to anything and so that any single architecture binary will adopt that architecture instead of posting an error stating the binary doesn't contain "x86_64". by Greg Clayton · 14 years ago
  43. 8280cbe Check in the native lldb unwinder. by Jason Molenda · 14 years ago
  44. 6297a3a Don't cache the public stop reason, since it can change as plan completion gets processed. That means GetStopReason needs to return a shared pointer, not a pointer to the thread's cached version. Also allow the thread plans to get and set the thread private stop reason - that is usually more appropriate for the logic the thread plans need to do. by Jim Ingham · 14 years ago
  45. 1af4e79 Removed a bit of dead code. Thanks to Eric Christopher for pointing it out. by Sean Callanan · 14 years ago
  46. ba8547d Expressions now claim responsibility for all stops by Sean Callanan · 14 years ago
  47. 36f63a9 Stop the driver from handling SIGPIPE in case we communicate with stale by Greg Clayton · 14 years ago
  48. 3b2c41c Still trying to get detach to work with debugserver. Got a bit closer, by Greg Clayton · 14 years ago
  49. c1d3775 Fixed debugserver to properly attach to a process by name with the by Greg Clayton · 14 years ago
  50. 24b48ff Added a new Host call to find LLDB related paths: by Greg Clayton · 14 years ago
  51. bd296c6 Fixed the UnixSignals class to be able to get a signal by name, short name, or signal number when using: by Greg Clayton · 14 years ago
  52. deb391c Added short names and descriptions to the UnixSignals class. Also cleaned up by Greg Clayton · 14 years ago
  53. d168690 Added support for breakpoint conditions. I also had to separate the "run the expression" part of ClangFunction::Execute from the "Gather the expression result" so that in the case of the Breakpoint condition I can move the condition evaluation into the normal thread plan processing. by Jim Ingham · 14 years ago
  54. 028784b Fix a regression introduced in r116430 with the added 'break' statement, by Johnny Chen · 14 years ago
  55. 23d6f27 Add new argument type, eArgSignalName, by Caroline Tice · 14 years ago
  56. 63e24d7 Add a way to temporarily divert events from a broadcaster to a private listener. by Jim Ingham · 14 years ago
  57. c12b6b4 Added a new test case to test signals with. by Greg Clayton · 14 years ago
  58. 8f6be2a Fixed process.gdb-remote to be able to properly propagate the signals and by Greg Clayton · 14 years ago
  59. 3fed8b9 Hooked up ability to look up data symbols so they show up in disassembly by Greg Clayton · 14 years ago
  60. d8c6253 Cleaned up the SWIG stuff so all includes happen as they should, no pulling by Greg Clayton · 14 years ago
  61. a830adb There are now to new "settings set" variables that live in each debugger by Greg Clayton · 14 years ago
  62. 324067b Add "-o" option to "expression" which prints the object description if available. by Jim Ingham · 14 years ago
  63. b66cd07 Replace the vestigial Value::GetOpaqueCLangQualType with the more correct Value::GetValueOpaqueClangQualType. by Jim Ingham · 14 years ago
  64. 1ebef44 by Caroline Tice · 14 years ago
  65. ccd584d Add GetSP to the StackFrame. by Jim Ingham · 14 years ago
  66. 642036f Committing the skeleton of Language runtime plugin classes. by Jim Ingham · 14 years ago
  67. d0b3e2b Fixed a build warning where no return values was being returned. by Greg Clayton · 14 years ago
  68. 3c9c5eb Removed the hacky "#define this ___clang_this" handler by Sean Callanan · 14 years ago
  69. bcb5b45 Make GetInstanceSettingsValue methods take an Error * rather than an Error &, by Caroline Tice · 14 years ago
  70. 5bc8c97 Add UserSettings to Target class, making Target settings by Caroline Tice · 14 years ago
  71. d0a5a23 Added code that will allow completely customizable prompts for use in by Greg Clayton · 14 years ago
  72. 75b11a3 Fix issues with CreateInstanceName, a virtual function, being called by Caroline Tice · 14 years ago
  73. 0e81b64 Step past prologues when we step into functions. by Jim Ingham · 14 years ago
  74. e4b8aeb Adding a bit more logging. by Jim Ingham · 14 years ago
  75. 49480b1 Clear the section list when a our current process is destroyed. by Greg Clayton · 14 years ago
  76. eea2640 Moved the section load list up into the target so we can use the target by Greg Clayton · 14 years ago
  77. 17454cf Add the ability for "ThreadPlanRunToAddress" to run to multiple addresses. by Jim Ingham · 14 years ago
  78. c14069e Fixed an issue that was always causing an extra empty argument to be sent by Greg Clayton · 14 years ago
  79. 178710c Looking at some of the test suite failures in DWARF in .o files with the by Greg Clayton · 14 years ago
  80. e2c5e45 Fixed an assertion that happened when debugging DWARF in .o files with debug by Greg Clayton · 14 years ago
  81. 4ae5196 Move the "Object Description" into the ValueObject, and the add an API to by Jim Ingham · 14 years ago
  82. 3a4ea24 The first part of an lldb native stack unwinder. by Jason Molenda · 14 years ago
  83. eddffe9 If the file the user specifies can't be found in the current directory, by Caroline Tice · 14 years ago
  84. 396704b Add comments to InstanceSettings constructors explaining why they have by Caroline Tice · 14 years ago
  85. f2c330d Move the ProcessPlugins enum definition from lldb-enumerations.h to by Caroline Tice · 14 years ago
  86. 004afcb Make sure creating a pending instance doesn't also trigger creating a live instance; also make sure creating a by Caroline Tice · 14 years ago
  87. 20594b1 Add a user settings controller to Thread. Then added a step-avoid-regexp setting by Jim Ingham · 14 years ago
  88. 7ac83bd Move common code from GetSettingsController in Process & Debugger into static functions by Jim Ingham · 14 years ago
  89. 8709723 Fix various minor bugs in the Settings stuff. by Caroline Tice · 14 years ago
  90. 69aa5d9 Added more API to lldb::SBBlock to allow getting the block by Greg Clayton · 14 years ago
  91. 6e4c5ce by Caroline Tice · 14 years ago
  92. f04d661 Cleaned up step logging a bit. by Greg Clayton · 14 years ago
  93. 5205f0b Fixed the StackFrame to correctly resolve the StackID's SymbolContextScope. by Greg Clayton · 14 years ago
  94. 72b7158 Added a new bool parameter to many of the DumpStopContext() methods that by Greg Clayton · 14 years ago
  95. 17dae08 StackFrame objects now own ValueObjects for any frame variables (locals, args, by Greg Clayton · 14 years ago
  96. 452bf61 Added the ability to disable ASLR (Address Space Layout Randomization). ASLR by Greg Clayton · 14 years ago
  97. 4fb0815 Clarified the intent of the SymbolContextScope class in the header by Greg Clayton · 14 years ago
  98. 870a1cd Made it so we update the current frames from the previous frames by doing STL by Greg Clayton · 14 years ago
  99. 1d66ef5 Simplified the StackFrameList class down to a single frames list again by Greg Clayton · 14 years ago
  100. 65124ea Changed the StackID to store its start PC address as a load address instead of by Greg Clayton · 14 years ago