1. 5e41dd3 Added the start of platform configuration designed for internal LLDB use. by Greg Clayton · 13 years ago
  2. 52fd984 Modified the PluginManager to be ready for loading plug-ins from a system by Greg Clayton · 13 years ago
  3. 6e74dbb Added a new class, ASTDumper, that provides verbose by Sean Callanan · 13 years ago
  4. 8482ded Made the EmulateInstruction class into a plug-in interface and moved the by Greg Clayton · 13 years ago
  5. 17801bc Bumped Xcode project versions to lldb-46 and debugserver-131. by Greg Clayton · 13 years ago
  6. b2b604f Adding a Xcode workspace for lldb. by Jim Ingham · 13 years ago
  7. 8d8ad88 Removed the "lldb" folder reference from the Xcode project. by Greg Clayton · 13 years ago
  8. abea3cb Updated Xcode project versions: lldb-45 and debugserver-130 by Greg Clayton · 13 years ago
  9. 28d5fcc Changed the SymbolFile::FindFunction() function calls to only return by Greg Clayton · 13 years ago
  10. 8584c92 Move #define's out of ARMUtils.h and into a newly created file ARMDefines.h. by Johnny Chen · 13 years ago
  11. 108d5aa Move the generic instruction bits manipulation routines into a newly created file by Johnny Chen · 13 years ago
  12. bdcb6ab Enabled extra warnings and fixed a bunch of small issues. by Greg Clayton · 13 years ago
  13. 9d71c95 Bumped Xcode project versions to lldb-44 and debugserver-129. by Greg Clayton · 13 years ago
  14. c72af6b When we are stepping a thread, force it to resume ALL the way to 0. And of course, when we stop by Jim Ingham · 13 years ago
  15. 4baf2e3 Add an ARMUtils.h file to house utility functions for the ARM/Thumb Instruction Set Architecture. by Johnny Chen · 13 years ago
  16. 42ddc49 Bumped Xcode project versions: lldb-43 and debugserver-128. by Greg Clayton · 13 years ago
  17. d330bfd One more thing... Resume any threads that we discover were created while we stop as by Greg Clayton · 13 years ago
  18. 6ae318c Add some more logging of broadcaster and Process. Also, protect the event broadcasting against hijacking in mid-event delivery. by Jim Ingham · 13 years ago
  19. 879bfee Restored some missing APIs for the test suite. Now testsuite still has some failures by Greg Clayton · 13 years ago
  20. 64c8443 Added the start of opcode emulation for ARM instructions. This class is designed by Greg Clayton · 13 years ago
  21. 7a183dc Fixed the auto completion of objective C types with the new ExternalASTSource by Greg Clayton · 13 years ago
  22. 15dcb7c Back up both the register AND the stop state when calling functions. by Jim Ingham · 13 years ago
  23. b01000f A few of the issue I have been trying to track down and fix have been due to by Greg Clayton · 13 years ago
  24. 1364b3b lldb-41 and debugserver-126 are set in the Xcode projects. by Greg Clayton · 13 years ago
  25. 9063e1d Bumped Xcode project version to 40 for lldb-40. by Greg Clayton · 14 years ago
  26. 7b19fc2 Bumped Xcode versions to lldb-39 and debugserver-125. by Greg Clayton · 14 years ago
  27. 124b23a Bumped versions in Xcode projects: lldb is now at lldb-38, debugserver is now by Greg Clayton · 14 years ago
  28. 8e1e126 Fixed the file ordering (alphabetic) in the Commands folder. by Greg Clayton · 14 years ago
  29. 902e018 Add a simple command: 'version' to the command interpreter, and an accompanying by Johnny Chen · 14 years ago
  30. a2cec4f Updated Xcode build version to lldb-37 and debugserver-123. by Greg Clayton · 14 years ago
  31. 3b2cfc2 Bumped Xcode project versions to for lldb-36 and debugserver-122. by Greg Clayton · 14 years ago
  32. 6e889b1 Removed libunwind sources as we aren't using them anymore. by Greg Clayton · 14 years ago
  33. c3b61d2 Fixed the "expression" command object to use the StackFrame::GetValueForExpressionPath() by Greg Clayton · 14 years ago
  34. 539b3ef Removed unused files that were out of date and causing issues with the by Greg Clayton · 14 years ago
  35. dd62d72 Fixed SBFrame to properly check to make sure it has a valid m_opaque_sp object by Greg Clayton · 14 years ago
  36. 6507dd9 Changing the ObjC find method implementation to use a ClangUtilityFunction inserted into the target. Consolidate all the by Jim Ingham · 14 years ago
  37. 3355d11 Bumped lldb Xcode version to 35 for lldb-35, and debugserver to 121 for by Greg Clayton · 14 years ago
  38. 9d972a4 Fixed an issue when debugging with DWARF in the .o files where by Greg Clayton · 14 years ago
  39. 7524a1d Bumped Xcode project build version to 34 for lldb-34. by Greg Clayton · 14 years ago
  40. 304fab4 Bumped lldb version to lldb-33 and debugserver to debugserver-120. by Greg Clayton · 14 years ago
  41. 9a7b291 Documentation fix - explain how to unset conditions. Also fix unsetting -x and -t so they work. by Jim Ingham · 14 years ago
  42. 539d945 Make sure to index the DWARF if we already haven't so we can resolve forward by Greg Clayton · 14 years ago
  43. b749a26 Fixed a race condition that could cause ProcessGDBRemote::DoResume() to return by Greg Clayton · 14 years ago
  44. c2d382c Fix completion for multi-word commands in the "help" command. by Jim Ingham · 14 years ago
  45. 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
  46. c0c1b0c Fixed an issue where the UserSettingsControllers were being created out of by Greg Clayton · 14 years ago
  47. 990de7b Cleaned up code that wasn't using the Initialize and Terminate paradigm by by Greg Clayton · 14 years ago
  48. 640dc6b Added the ability to get more information on the SBThread's stop reason by Greg Clayton · 14 years ago
  49. 20d338f Fixed Process::Halt() as it was broken for "process halt" after recent changes by Greg Clayton · 14 years ago
  50. 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
  51. 3ae449a Added an "Interrupted" bit to the ProcessEventData. Halt now generates an event by Jim Ingham · 14 years ago
  52. b5037af Added quotes around names that are being lookup up or inspected in the by Greg Clayton · 14 years ago
  53. 3bc52d0 Just like functions can have a basename and a mangled/demangled name, variable by Greg Clayton · 14 years ago
  54. feb6e56 Fixed a crasher (an assert was firing in the DWARF parser) when setting by Greg Clayton · 14 years ago
  55. e4b9df0 Fixed an issue where we might not find global variables by name when we have by Greg Clayton · 14 years ago
  56. 6916e35 Modified the lldb_private::Type clang type resolving code to handle three by Greg Clayton · 14 years ago
  57. 745ac7a Add ThreadPlanTracer class to allow instruction step tracing of execution. by Jim Ingham · 14 years ago
  58. abab590 Bumped Xcode versions to lldb-32 and debugserver-119. by Greg Clayton · 14 years ago
  59. 53d287b Fixed an issue where we might not be able to track down a real definition of by Greg Clayton · 14 years ago
  60. d7cb26e Added initial support to the lldb_private::SymbolFile for finding by Greg Clayton · 14 years ago
  61. 670c1f8 Bumped versions in Xcode projects to lldb-31 and debugserver-118. by Greg Clayton · 14 years ago
  62. 23cf0c7 Cleaned up the pseudo terminal code in ProcessGDBRemote as it was spawning by Greg Clayton · 14 years ago
  63. d6d806c Fixed FileSpec's operator == to deal with equivalent paths such as "/tmp/a.c" by Greg Clayton · 14 years ago
  64. 538eb82 Added copy constructors and assignment operators to all lldb::SB* classes by Greg Clayton · 14 years ago
  65. 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
  66. 2eac2b9 Add a ObjC V1 runtime, and a generic AppleObjCRuntime plugin. by Jim Ingham · 14 years ago
  67. 12e4185 Removed the hardcoding of the system compiler to gcc 4.2 by Greg Clayton · 14 years ago
  68. 81ab615 Bumped version for lldb-29 and debugserver-116 in the Xcode projects. by Greg Clayton · 14 years ago
  69. 9d2993d Fixed shared library unloads when the unloaded library doesn't come off by Greg Clayton · 14 years ago
  70. c9e821e Make sure darwin-debug gets installed in /Developer/usr/bin instead of by Greg Clayton · 14 years ago
  71. 03f4e93 Bumped lldb Xcode project version to 28 for lldb-28. by Greg Clayton · 14 years ago
  72. b0f8e23 Bumped version in Xcode project to lldb-27, and debugserver to debugserver-115. by Greg Clayton · 14 years ago
  73. 49ce682 Cleaned up the API logging a lot more to reduce redundant information and by Greg Clayton · 14 years ago
  74. a5dc3a7 Overloading is not broken any more. No need for an #ifndef. by Sean Callanan · 14 years ago
  75. 3f5ee7f Modified the lldb_private::TypeList to use a std::multimap for quicker lookup by Greg Clayton · 14 years ago
  76. 5790e06 Remove references to particular Python version (use the system default by Caroline Tice · 14 years ago
  77. 9bd7e35 Fixed the "frame variable -G NAME" that would print global by Greg Clayton · 14 years ago
  78. f3d0b0c Updated the lldb_private::Flags class to have better method names and made by Greg Clayton · 14 years ago
  79. 8280cbe Check in the native lldb unwinder. by Jason Molenda · 14 years ago
  80. 537a7a8 Fixed an issue where we were resolving paths when we should have been. by Greg Clayton · 14 years ago
  81. 6bd1a9e Fixed all known race conditions with starting a process in a new terminal. by Greg Clayton · 14 years ago
  82. ea3259d Use AppleScript when lauching inferior in terminal so the command that by Greg Clayton · 14 years ago
  83. 3b2c41c Still trying to get detach to work with debugserver. Got a bit closer, 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. 0e0e81d Did a bit of parameter renaming. by Greg Clayton · 14 years ago
  86. 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
  87. 48fbdf7 Modified the "breakpoint set --name NAME" to be the auto breakpoint set by Greg Clayton · 14 years ago
  88. ad60bf4 Fixed the Objective C method prototypes to be correct (the selectors weren't by Greg Clayton · 14 years ago
  89. 63e24d7 Add a way to temporarily divert events from a broadcaster to a private listener. by Jim Ingham · 14 years ago
  90. 887eb31 Bumped versions to lldb-26 and debugserver-114 for a build. by Greg Clayton · 14 years ago
  91. 66ed2fb Added a new ValueObject type that will be used to freeze dry expression by Greg Clayton · 14 years ago
  92. 4b40711 Cleaned up a unused member variable in Debugger. by Greg Clayton · 14 years ago
  93. 324067b Add "-o" option to "expression" which prints the object description if available. by Jim Ingham · 14 years ago
  94. 462d414 Fixed the forward declaration issue that was present in the DWARF parser after by Greg Clayton · 14 years ago
  95. b66cd07 Replace the vestigial Value::GetOpaqueCLangQualType with the more correct Value::GetValueOpaqueClangQualType. by Jim Ingham · 14 years ago
  96. 102f4e3 Bumped Xcode lldb build number to 25 for lldb-25 and debugserver build to by Greg Clayton · 14 years ago
  97. 1d8173f Added the ability to create an objective C method for an objective C by Greg Clayton · 14 years ago
  98. 642036f Committing the skeleton of Language runtime plugin classes. by Jim Ingham · 14 years ago
  99. 412440a Added motheds to C++ classes as we parse them to keep clang happy. by Greg Clayton · 14 years ago
  100. e49ec18 Remove all the __repr__ methods from the API/*.h files, and put them by Caroline Tice · 14 years ago