1. 14e71ec Separate initing the stdout/stderr for running the Python Script interpreter from initing the lldb.target/frame/etc globals, by Jim Ingham · 12 years ago
  2. 0b93a75 <rdar://problem/12749733> by Greg Clayton · 12 years ago
  3. d891f9b Fix Linux build warnings due to redefinition of macros: by Daniel Malea · 12 years ago
  4. 5f35a4b Resolve printf formatting warnings on Linux: by Daniel Malea · 12 years ago
  5. 146d952 <rdar://problem/12586350> by Enrico Granata · 12 years ago
  6. b9bd4ee <rdar://problem/12473003> by Greg Clayton · 12 years ago
  7. 1b97a65 llvm needs the OS to be set to either iOS or Mac OS X by Jason Molenda · 12 years ago
  8. f737d37 Added a new "module" log channel which covers module creation, deletion, and common module list actions. by Greg Clayton · 12 years ago
  9. 58aa715 <rdar://problem/11791234> by Greg Clayton · 12 years ago
  10. 851e30e Stop using the "%z" size_t modifier and cast all size_t values to uint64_t. Some platforms don't support this modification. by Greg Clayton · 12 years ago
  11. ae2ae94 <rdar://problem/11485744> Implement important data formatters in C++. Have the Objective-C language runtime plugin expose class descriptors objects akin to the objc_runtime.py Pythonic implementation. Rewrite the data formatters for some core Cocoa classes in C++ instead of Python. by Enrico Granata · 12 years ago
  12. 49ce896 <rdar://problem/11757916> by Greg Clayton · 12 years ago
  13. cbacba1 <rdar://problem/11740973> by Greg Clayton · 12 years ago
  14. 545762f <rdar://problem/11357711> by Greg Clayton · 12 years ago
  15. e82d8ed <rdar://problem/11819635> by Greg Clayton · 12 years ago
  16. 73a3571 Added the ability to log a message with a backtrace when verbose logging is enabled to the Module class. Used this new function in the DWARF parser. by Greg Clayton · 12 years ago
  17. c705730 <rdar://problem/11282938> by Greg Clayton · 12 years ago
  18. 808e92a Don't put the address of the module in the module basename as this hoses up our ability to find shared libraries by name. We now put it into the Module object name. by Greg Clayton · 12 years ago
  19. 860b9ea <rdar://problem/11202426> by Greg Clayton · 12 years ago
  20. 9ab696e lldb_private::Section objects have a boolean flag that can be set that by Greg Clayton · 12 years ago
  21. dc0a38c <rdar://problem/11113279> by Greg Clayton · 12 years ago
  22. 2418fdd <rdar://problem/11072382> by Greg Clayton · 12 years ago
  23. 964deba <rdar://problem/8196933> by Greg Clayton · 12 years ago
  24. 444fe99 Made a ModuleSpec class in Module.h which can specify a module using one or by Greg Clayton · 12 years ago
  25. 6c5438b Fixed a crasher that was happening after making ObjectFile objects have a by Greg Clayton · 12 years ago
  26. 3508c38 <rdar://problem/10103468> by Greg Clayton · 12 years ago
  27. 302d78c Extended function lookup to allow the user to by Sean Callanan · 12 years ago
  28. b5a8f14 <rdar://problem/10560053> by Greg Clayton · 12 years ago
  29. 13d24fb Switching back to using std::tr1::shared_ptr. We originally switched away by Greg Clayton · 12 years ago
  30. 08205a6 Added a ModuleList::Destroy() method which will reclaim the std::vector by Greg Clayton · 12 years ago
  31. c149c8b Fixed an issue that could happen during global object destruction in our by Greg Clayton · 12 years ago
  32. a334c9d Let the Module FindType do the stripping of namespace components, that's not expensive by Jim Ingham · 13 years ago
  33. db2dc2b Big change in the way ObjectFile file contents are managed. We now by Greg Clayton · 13 years ago
  34. 7129913 Fixed a missing space when reporting errors and warning through the module by Greg Clayton · 13 years ago
  35. df6dc88 Added code in the Host layer that can report system log messages by Greg Clayton · 13 years ago
  36. cd186e5 http://llvm.org/bugs/show_bug.cgi?id=11560 lldb::SBTarget::FindFirstType crashes when passed None by Johnny Chen · 13 years ago
  37. 75d8c25 CommandObjectProcess was recently changed to automatically use the platform by Greg Clayton · 13 years ago
  38. b67c2a2 We can't have the global vector of modules be a static object, or it might get destroyed by Jim Ingham · 13 years ago
  39. aa4a553 Removed namespace qualification from symbol queries. by Sean Callanan · 13 years ago
  40. 0fcec13 Completed the glue that passes a ClangNamespaceDecl * by Sean Callanan · 13 years ago
  41. 3e80cd9 Added ClangNamespaceDecl * parameters to several by Sean Callanan · 13 years ago
  42. 6a64bbf The first part of a fix for being able to select an architecture slice from by Greg Clayton · 13 years ago
  43. 7e5fa7f Update declarations for all functions/methods that accept printf-style by Jason Molenda · 13 years ago
  44. e40b642 Don't put modules for .o files into the global shared module list. We by Greg Clayton · 13 years ago
  45. 02e210c Removed the function: by Greg Clayton · 13 years ago
  46. 6e0101c Convert lldb::ModuleSP to use an instrusive ref counted pointer. by Greg Clayton · 13 years ago
  47. c51ffbf We were leaking a stack frame in StackFrameList in Thread.cpp which could by Greg Clayton · 13 years ago
  48. 899025f Added a "--global" option to the "target modules list" by Greg Clayton · 13 years ago
  49. 433c64a testing for a previous issue where formats in summaries where not enforced in all cases ; removed an unused local variable by Enrico Granata · 13 years ago
  50. 51b11e0 Add method Module::IsLoadedInTarget, and then in the MacOS X dynamic loader, after we by Jim Ingham · 13 years ago
  51. 979e20d Public API changes: by Enrico Granata · 13 years ago
  52. 801417e Added "target variable" command that allows introspection of global by Greg Clayton · 13 years ago
  53. 9935a86 FindFunctions was skipping the include_symbols section if it found a SymbolVendor. by Jim Ingham · 13 years ago
  54. b72d0f0 Moved the execution context that was in the Debugger into by Greg Clayton · 13 years ago
  55. b0e68d9 Added some functions to our API related to classifying symbols as code, data, by Greg Clayton · 13 years ago
  56. 24bc5d9 Many improvements to the Platform base class and subclasses. The base Platform by Greg Clayton · 13 years ago
  57. 889fbd0 Added the ability to get the min and max instruction byte size for by Greg Clayton · 13 years ago
  58. 940b103 Abtracted all mach-o and ELF out of ArchSpec. This patch is a modified form by Greg Clayton · 13 years ago
  59. 395fc33 Made lldb_private::ArchSpec contain much more than just an architecture. It by Greg Clayton · 13 years ago
  60. 0467c78 Applied a fix to qualify "UUID" with the lldb_private namespace to fix by Greg Clayton · 13 years ago
  61. 28d5fcc Changed the SymbolFile::FindFunction() function calls to only return by Greg Clayton · 14 years ago
  62. 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
  63. e005f2c Modified all logging calls to hand out shared pointers to make sure we by Greg Clayton · 14 years ago
  64. 49ce682 Cleaned up the API logging a lot more to reduce redundant information and by Greg Clayton · 14 years ago
  65. 7826c88 First pass at adding logging capabilities for the API functions. At the moment by Caroline Tice · 14 years ago
  66. 537a7a8 Fixed an issue where we were resolving paths when we should have been. by Greg Clayton · 14 years ago
  67. 3fed8b9 Hooked up ability to look up data symbols so they show up in disassembly by Greg Clayton · 14 years ago
  68. 7c36fa0 Remove the eSymbolTypeFunction, eSymbolTypeGlobal, and eSymbolTypeStatic. by Greg Clayton · 14 years ago
  69. 236c1c7 Remove the Flags member in lldb_private::Module in favor of bitfield boolean by Greg Clayton · 14 years ago
  70. bddb789 Don't re-look up the symbol in ResolveSymbolContextForAddress. by Jim Ingham · 14 years ago
  71. 7508e73 Change Target & Process so they can really be initialized with an invalid architecture. by Jim Ingham · 14 years ago
  72. 7aff9ff Added FindTypes to Module and ModuleList. by Greg Clayton · 14 years ago
  73. 12bec71 Added function name types to allow us to set breakpoints by name more by Greg Clayton · 14 years ago
  74. 24943d2 Initial checkin of lldb code from internal Apple repo. by Chris Lattner · 14 years ago