1. 889fbd0 Added the ability to get the min and max instruction byte size for by Greg Clayton · 13 years ago
  2. b344843 Fixed the LLDB build so that we can have private types, private enums and by Greg Clayton · 13 years ago
  3. 4fdf760 Split all of the core of LLDB.framework/lldb.so into a by Greg Clayton · 13 years ago
  4. b1888f2 Added more platform support. There are now some new commands: by Greg Clayton · 13 years ago
  5. 279584c Updated to LLVM/Clang revision 127600. by Sean Callanan · 13 years ago
  6. 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 · 13 years ago
  7. e4b9c1f LLDB now has "Platform" plug-ins. Platform plug-ins are plug-ins that provide by Greg Clayton · 13 years ago
  8. 940b103 Abtracted all mach-o and ELF out of ArchSpec. This patch is a modified form by Greg Clayton · 13 years ago
  9. 2e8cb8a - Changed all the places where CommandObjectReturn was exporting a StreamString to just exporting by Jim Ingham · 13 years ago
  10. 04c9c7b Clean up a bit of the type getting code where lldb_private:Type now has by Greg Clayton · 13 years ago
  11. 395fc33 Made lldb_private::ArchSpec contain much more than just an architecture. It by Greg Clayton · 13 years ago
  12. c3c4661 All UnwindPlan objects are now passed around as shared pointers. by Greg Clayton · 13 years ago
  13. 7bb069b Modified version of a patch from Warren Paul that takes care of issues with by Greg Clayton · 13 years ago
  14. 3c12604 Fixed a crasher that could happen when trying to look at N_GSYM entries by Greg Clayton · 13 years ago
  15. 52fd984 Modified the PluginManager to be ready for loading plug-ins from a system by Greg Clayton · 14 years ago
  16. 5aad3f5 Added missing return statement (patch from Kirk Beitz). by Greg Clayton · 14 years ago
  17. 9353338 Improved support for GCC complex integers. by Greg Clayton · 14 years ago
  18. 28d5fcc Changed the SymbolFile::FindFunction() function calls to only return by Greg Clayton · 14 years ago
  19. d5b3c35 Updated Clang to a version that supports propagating by Sean Callanan · 14 years ago
  20. bdcb6ab Enabled extra warnings and fixed a bunch of small issues. by Greg Clayton · 14 years ago
  21. db599d3 Revert one unintended change checked in to DWARFCallFrameInfo.cpp by Jason Molenda · 14 years ago
  22. d03b25a Use new Section::IsEncrypted() method to check if the eh_frame by Jason Molenda · 14 years ago
  23. a4881d0 Sped up the shutdown time on MacOSX by quite a bit by making sure any by Greg Clayton · 14 years ago
  24. 00c3ae7 Fixed up the SBValue::GetExpressionPath() to be more correct under more by Greg Clayton · 14 years ago
  25. cd15169 Made the DWARF + debug map symbol file parser be much more efficient when it isn't by Greg Clayton · 14 years ago
  26. 7a183dc Fixed the auto completion of objective C types with the new ExternalASTSource by Greg Clayton · 14 years ago
  27. ad29309 Updated to revision 123723 of LLVM, to bring in by Sean Callanan · 14 years ago
  28. 864bfdb Quick fixes to set access specifiers for Typedefs and Enums inside classes. by Sean Callanan · 14 years ago
  29. 215ce00 Removed commented out code since it was incorrect code to begin with and we don't want anyone thinking they should put it back in. by Greg Clayton · 14 years ago
  30. e74b403 Fixed a bug which would trigger an assert() in LLDB; by Sean Callanan · 14 years ago
  31. d8b6502 Added missing source files. by Greg Clayton · 14 years ago
  32. 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
  33. e52f37b Added complete complex support for displaying and parsing complex types. by Greg Clayton · 14 years ago
  34. 0d62dfd Fixed an error in the type map for "char **" that was a bad memory smasher. by Greg Clayton · 14 years ago
  35. 6a92553 Implemented a major overhaul of the way variables are handled by Sean Callanan · 14 years ago
  36. 9db023b Make sure we don't assert if we have a child with zero byte size. Also by Greg Clayton · 14 years ago
  37. 5382281 Made FuncUnwinders threadsafe. by Greg Clayton · 14 years ago
  38. e2f9064 Fixed issues with the unwinding code where the collection of FuncUnwinders by Greg Clayton · 14 years ago
  39. 08d7d3a Fixed issues with RegisterContext classes and the subclasses. There was by Greg Clayton · 14 years ago
  40. e179a58 Added the ability to get an set the desired format for SBValue objects. by Greg Clayton · 14 years ago
  41. 15bc1f5 Line tables were trying to be too clever and only use 24 bits for a line by Greg Clayton · 14 years ago
  42. c3b61d2 Fixed the "expression" command object to use the StackFrame::GetValueForExpressionPath() by Greg Clayton · 14 years ago
  43. 427f290 Modified LLDB expressions to not have to JIT and run code just to see variable by Greg Clayton · 14 years ago
  44. 3aa7da5 Added support for generating expressions that have by Sean Callanan · 14 years ago
  45. 9e7958e Updated to latest Clang revision. This involved by Sean Callanan · 14 years ago
  46. 887d251 Made all LLDB-generated ASTContexts have valid by Sean Callanan · 14 years ago
  47. 494735d Simplified the code that handles overloaded operator names. by Sean Callanan · 14 years ago
  48. c2c9a14 Fixed detection of overloaded operators in type by Sean Callanan · 14 years ago
  49. 8290758 Fixed a problem where the AST importer would assert() by Sean Callanan · 14 years ago
  50. c4217a6 Fixes to make id work as well as well as fix minor errors by Sean Callanan · 14 years ago
  51. b9f09a6 Fixed a bug in which the SEL type was being resolved by Sean Callanan · 14 years ago
  52. 22defe8 Updated to latest LLVM/Clang for external AST source changes that allow by Greg Clayton · 14 years ago
  53. e8e5557 Fixed ClangUserExpression's wrapping of expressions by Sean Callanan · 14 years ago
  54. ba4fc4a Removed a stray dump() that made it into top-of-tree. by Sean Callanan · 14 years ago
  55. eae9124 Updated to latest and greatest clang for a "print cvr-qualifiers on function by Greg Clayton · 14 years ago
  56. a91dd99 Added support for indicating to the expression parser by Sean Callanan · 14 years ago
  57. 8a3b0a8 Updated to the LLVM/Clang of 2010-11-17 at 3:30pm. by Sean Callanan · 14 years ago
  58. 2403b5e First attempt and getting "const" C++ method function signatures correct. by Greg Clayton · 14 years ago
  59. 3bc52d0 Just like functions can have a basename and a mangled/demangled name, variable by Greg Clayton · 14 years ago
  60. 034c996 Fixed an issue where we were trying to resolve lldb_private::Type encoding by Greg Clayton · 14 years ago
  61. feb6e56 Fixed a crasher (an assert was firing in the DWARF parser) when setting by Greg Clayton · 14 years ago
  62. 6916e35 Modified the lldb_private::Type clang type resolving code to handle three by Greg Clayton · 14 years ago
  63. e4b0784 I'm not thrilled with how I structured this but RegisterContextLLDB by Jason Molenda · 14 years ago
  64. 2b8732c Fixed an issue with Function::GetPrologueByteSize() where if a function's first line table entry didn't have the same address as the start address of the function itself, we could end up returning and incorrect value. by Greg Clayton · 14 years ago
  65. 53d287b Fixed an issue where we might not be able to track down a real definition of by Greg Clayton · 14 years ago
  66. e98ac25 Modified lldb_private::SymboleFile to be able to override where its TypeList by Greg Clayton · 14 years ago
  67. cf18faa Added a named container for the source QualType by Sean Callanan · 14 years ago
  68. d6ef16a Fix thinko in UnwindTable.cpp where it wouldn't provde a by Jason Molenda · 14 years ago
  69. 23cf0c7 Cleaned up the pseudo terminal code in ProcessGDBRemote as it was spawning by Greg Clayton · 14 years ago
  70. e005f2c Modified all logging calls to hand out shared pointers to make sure we by Greg Clayton · 14 years ago
  71. 89e4bae Fix the infinite recursion crash reported by Antoine Missout: by Johnny Chen · 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. 8ff5d55 Fixed cases where we were translating "long long" types to use the "long" by Greg Clayton · 14 years ago
  75. cff44fd These two casts are up casts, no need to use dynamic_cast. by Johnny Chen · 14 years ago
  76. 8950c9a Updated LLVM to latest version as of 10/28 at by Sean Callanan · 14 years ago
  77. 3f5ee7f Modified the lldb_private::TypeList to use a std::multimap for quicker lookup by Greg Clayton · 14 years ago
  78. ad5b61b Explicatory comment for folks that may not be by Sean Callanan · 14 years ago
  79. 839fde4 Logging fixes. Added a simple class to handle by Sean Callanan · 14 years ago
  80. 6bc44a4 Don't include the ":" character when building the selector identifiers by Greg Clayton · 14 years ago
  81. f3d0b0c Updated the lldb_private::Flags class to have better method names and made by Greg Clayton · 14 years ago
  82. 68d4753 Removed an inappropriate function lookup path. by Sean Callanan · 14 years ago
  83. 4e12194 Add an unwind log Printf to note when an eh_frame section is by Jason Molenda · 14 years ago
  84. 8280cbe Check in the native lldb unwinder. by Jason Molenda · 14 years ago
  85. 0432506 Fixes to Objective-C built-in type handling. by Sean Callanan · 14 years ago
  86. 537a7a8 Fixed an issue where we were resolving paths when we should have been. by Greg Clayton · 14 years ago
  87. bf8e42b Fixed an expression parsing issue where if you were stopped somewhere without by Greg Clayton · 14 years ago
  88. fb7c51c Fixed C++ class clang type creation and display by making sure we omit by Greg Clayton · 14 years ago
  89. 48fbdf7 Modified the "breakpoint set --name NAME" to be the auto breakpoint set by Greg Clayton · 14 years ago
  90. ad60bf4 Fixed the Objective C method prototypes to be correct (the selectors weren't by Greg Clayton · 14 years ago
  91. 306edca Fixed an issue where objc types weren't ever getting fully resolved (beyond by Greg Clayton · 14 years ago
  92. 6bc0b5d Added the ability to get error strings back from failed by Greg Clayton · 14 years ago
  93. 8d3802d Added mutex protection to the Symtab class. by Greg Clayton · 14 years ago
  94. 3fed8b9 Hooked up ability to look up data symbols so they show up in disassembly by Greg Clayton · 14 years ago
  95. 5325a36 One final patch for all of this class constructor, destructor, and conversion by Greg Clayton · 14 years ago
  96. dbf2615 Get the declaration names for C++ ctors, dtors, and operators from the by Greg Clayton · 14 years ago
  97. b433a3d Fixed an issue where if a method funciton was asked to be parsed before by Greg Clayton · 14 years ago
  98. 90e325d Added correct C++ method declarations for destructors and for conversion by Greg Clayton · 14 years ago
  99. 30449d5 Make C++ constructors and destructors correctly within the clang types we by Greg Clayton · 14 years ago
  100. 4a19f58 Fixed handling of signed short types in expressions. by Sean Callanan · 14 years ago