1. 3b8a605 Fix a copy/paste error in a comment. by Jim Ingham · 13 years ago
  2. 7dd98df Added the ability to _not_ skip the prologue when settings breakpoints by Greg Clayton · 13 years ago
  3. 9b82f86 Added the ability to see block variables when looking up addresses by Greg Clayton · 13 years ago
  4. f9ce9b8 Fixed some const issues with args to some lldb_private::Target functions. by Greg Clayton · 13 years ago
  5. bbea133 Added the start of the darwin dynamic loader plug-in. It isn't hooked up to by Greg Clayton · 13 years ago
  6. 801417e Added "target variable" command that allows introspection of global by Greg Clayton · 13 years ago
  7. e5ed8e9 Added Debugger::GetAsync{Output/Error}Stream, and use it to print parse errors when we go to run a breakpoint condition. by Jim Ingham · 13 years ago
  8. 577fbc3 Disable dynamic types being on by default until kinks get worked out when by Greg Clayton · 13 years ago
  9. c0fa533 Added new lldb_private::Process memory read/write functions to stop a bunch by Greg Clayton · 13 years ago
  10. 3613ae1 Target::EvaluateExpression should suppress stop hooks. by Jim Ingham · 13 years ago
  11. 53fe9cc Make sure you have an executable module before trying to print its name. by Jim Ingham · 13 years ago
  12. 696cf5f Made expressions that are just casts of pointer by Sean Callanan · 13 years ago
  13. 10de7d1 Change "frame var" over to using OptionGroups (and thus the OptionGroupVariableObjectDisplay). by Jim Ingham · 13 years ago
  14. 4a34808 by Caroline Tice · 13 years ago
  15. ff44ab4 Fixed the SymbolContext::DumpStopContext() to correctly indent and dump by Greg Clayton · 14 years ago
  16. 47da810 Fix up how the ValueObjects manage their life cycle so that you can hand out a shared by Jim Ingham · 14 years ago
  17. 17cd995 Did some work on the "register read" command to only show the first register by Greg Clayton · 14 years ago
  18. 41c56fa General cleanup on the UserSettingsController stuff. There were 5 different by Greg Clayton · 14 years ago
  19. e41494a Add support for "dynamic values" for C++ classes. This currently only works for "frame var" and for the by Jim Ingham · 14 years ago
  20. dbeb3e1 Order of initialization lists. by Stephen Wilson · 14 years ago
  21. f15996e Modified the ArchSpec to take an optional "Platform *" when setting the triple. by Greg Clayton · 14 years ago
  22. fa3a16a Convert ValueObject to explicitly maintain the Execution Context in which they were created, and then use that when they update themselves. That means all the ValueObject evaluate me type functions that used to require a Frame object now do not. I didn't remove the SBValue API's that take this now useless frame, but I added ones that don't require the frame, and marked the SBFrame taking ones as deprecated. by Jim Ingham · 14 years ago
  23. 24bc5d9 Many improvements to the Platform base class and subclasses. The base Platform by Greg Clayton · 14 years ago
  24. 889fbd0 Added the ability to get the min and max instruction byte size for by Greg Clayton · 14 years ago
  25. b344843 Fixed the LLDB build so that we can have private types, private enums and by Greg Clayton · 14 years ago
  26. cb8977d Added new platform commands: by Greg Clayton · 14 years ago
  27. c54840c Tidy up the stop hook printing when only one thread matches, and there is only one hook. by Jim Ingham · 14 years ago
  28. b1888f2 Added more platform support. There are now some new commands: by Greg Clayton · 14 years ago
  29. d60d94a Add a first pass at a "stop hook" mechanism. This allows you to add commands that get run every time the debugger stops, whether due to a breakpoint, the end of a step, interrupt, etc. You can also specify in which context you want the stop hook to run, for instance only on a particular thread, or only in a particular shared library, function, file, line range within a file. by Jim Ingham · 14 years ago
  30. 2a45681 by Caroline Tice · 14 years ago
  31. e4b9c1f LLDB now has "Platform" plug-ins. Platform plug-ins are plug-ins that provide by Greg Clayton · 14 years ago
  32. 940b103 Abtracted all mach-o and ELF out of ArchSpec. This patch is a modified form by Greg Clayton · 14 years ago
  33. d284b66 Added new target instance settings for execution settings: by Greg Clayton · 14 years ago
  34. 88fa7bd Destroy the dynamic loader plugin in Process::Finalize. If you wait till the auto_ptr gets deleted in the normal course of things the real process class will have been destroyed already, and it's hard to shut down the dynamic loader without accessing some process pure virtual method. by Jim Ingham · 14 years ago
  35. 395fc33 Made lldb_private::ArchSpec contain much more than just an architecture. It by Greg Clayton · 14 years ago
  36. 0467c78 Applied a fix to qualify "UUID" with the lldb_private namespace to fix by Greg Clayton · 14 years ago
  37. 455aae9 Removed unneeded header file. by Greg Clayton · 14 years ago
  38. 9f52704 Removed a memory map loading of a file where the mmap contents were just by Greg Clayton · 14 years ago
  39. 22c9e0d Fixed a crasher due to not checking if a shared pointer (m_last_created_breakpoint) by Greg Clayton · 14 years ago
  40. c67efa4 Added the ability to StackFrame::GetValueForVariableExpressionPath(...) to avoid by Greg Clayton · 14 years ago
  41. 6a92553 Implemented a major overhaul of the way variables are handled by Sean Callanan · 14 years ago
  42. a875b64 Put more smarts into the RegisterContext base class. Now the base class has by Greg Clayton · 14 years ago
  43. 26100dc Added the ability for Target::ReadMemory to prefer to read from the file by Greg Clayton · 14 years ago
  44. bdcda46 The LLDB API (lldb::SB*) is now thread safe! by Greg Clayton · 14 years ago
  45. c3b61d2 Fixed the "expression" command object to use the StackFrame::GetValueForExpressionPath() by Greg Clayton · 14 years ago
  46. 427f290 Modified LLDB expressions to not have to JIT and run code just to see variable by Greg Clayton · 14 years ago
  47. 7b9fcc0 When shared libraries are unloaded, they are now removed from the target by Greg Clayton · 14 years ago
  48. 638351a Added the ability for a process to inherit the current host environment. This by Greg Clayton · 14 years ago
  49. c0c1b0c Fixed an issue where the UserSettingsControllers were being created out of by Greg Clayton · 14 years ago
  50. 990de7b Cleaned up code that wasn't using the Initialize and Terminate paradigm by by Greg Clayton · 14 years ago
  51. e005f2c Modified all logging calls to hand out shared pointers to make sure we by Greg Clayton · 14 years ago
  52. 49ce682 Cleaned up the API logging a lot more to reduce redundant information and by Greg Clayton · 14 years ago
  53. a66ba46 Improved API logging. by Greg Clayton · 14 years ago
  54. 3f5ee7f Modified the lldb_private::TypeList to use a std::multimap for quicker lookup by Greg Clayton · 14 years ago
  55. 77e9394 Added a user-settable variable, 'target.expr-prefix', by Sean Callanan · 14 years ago
  56. 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
  57. 7826c88 First pass at adding logging capabilities for the API functions. At the moment by Caroline Tice · 14 years ago
  58. 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
  59. 24b48ff Added a new Host call to find LLDB related paths: by Greg Clayton · 14 years ago
  60. 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
  61. 3fed8b9 Hooked up ability to look up data symbols so they show up in disassembly by Greg Clayton · 14 years ago
  62. a830adb There are now to new "settings set" variables that live in each debugger by Greg Clayton · 14 years ago
  63. 1ebef44 by Caroline Tice · 14 years ago
  64. d0b3e2b Fixed a build warning where no return values was being returned. by Greg Clayton · 14 years ago
  65. bcb5b45 Make GetInstanceSettingsValue methods take an Error * rather than an Error &, by Caroline Tice · 14 years ago
  66. 5bc8c97 Add UserSettings to Target class, making Target settings by Caroline Tice · 14 years ago
  67. 49480b1 Clear the section list when a our current process is destroyed. by Greg Clayton · 14 years ago
  68. eea2640 Moved the section load list up into the target so we can use the target by Greg Clayton · 14 years ago
  69. 33ed170 Added support for inlined stack frames being represented as real stack frames by Greg Clayton · 14 years ago
  70. 7508e73 Change Target & Process so they can really be initialized with an invalid architecture. by Jim Ingham · 14 years ago
  71. c7f5d5c Added needed breakpoint functionality to the public API that includes: by Greg Clayton · 14 years ago
  72. 2cf6e9e Removed a commented out function and did a little reformatting. by Greg Clayton · 14 years ago
  73. 7043635 Centralized all disassembly into static functions in source/Core/Disassembler.cpp. by Greg Clayton · 14 years ago
  74. 12bec71 Added function name types to allow us to set breakpoints by name more 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. 24943d2 Initial checkin of lldb code from internal Apple repo. by Chris Lattner · 14 years ago