1. 8aaa523 Fixes for LLDB build to work around host 4.6.2+ compiler issues. by Todd Fiala · 11 years ago
  2. d55c5b1 Add Android.mk support for building LLDB on Linux host. by Todd Fiala · 11 years ago
  3. 3160832 clean up about 22 warnings messages by Michael Sartain · 11 years ago
  4. 473e233 Disabling the introspecting summary for __NSCFSet (essentially, for CF*SetRef) by Enrico Granata · 11 years ago
  5. 52f7923 Huge change to clean up types. by Greg Clayton · 11 years ago
  6. 4bb4232 Adding a summary for ObjC blocks by Enrico Granata · 11 years ago
  7. a227fcd Remove the #define USE_CACHE since the formatters cache has been operational for a while now and has not caused issues that warrant disabling it by Enrico Granata · 11 years ago
  8. 237bbc1 <rdar://problem/14005652> by Enrico Granata · 11 years ago
  9. 3e11c7e Sort out a number of mismatched integer types in order to cut down the number of compiler warnings. by Andy Gibbs · 11 years ago
  10. b6a4c56 <rdar://problem/12717717> by Enrico Granata · 11 years ago
  11. 349caf7 Removing a redundant write by Enrico Granata · 11 years ago
  12. 6fb3f2c Remove eFormatHalfFloat as it isn't needed. eFormatFloat should be used and the byte size will tell us how to display it. by Greg Clayton · 11 years ago
  13. 01c3be1 <rdar://problem/12783351> by Enrico Granata · 11 years ago
  14. 129b120 <rdar://problem/14101771> by Enrico Granata · 11 years ago
  15. 3990c27 <rdar://problem/13125225> by Enrico Granata · 11 years ago
  16. 0c9166c <rdar://problem/14003462> by Enrico Granata · 11 years ago
  17. 884288b Fix various build warnings. by Matt Kopec · 11 years ago
  18. 7b61b79 An NSData with 0 bytes in it would report a summary of “0 byte” by Enrico Granata · 11 years ago
  19. 17d5a03 Add ${ansi.XX} parsing to lldb prompt, use-color setting, and -no-use-colors command line options. by Michael Sartain · 11 years ago
  20. d922272 <rdar://problem/13928053> by Enrico Granata · 11 years ago
  21. 0c2921f Fixed a few obvious errors pointed out by the static analyzer. by Jim Ingham · 11 years ago
  22. 8295262 <rdar://problem/13821289> by Enrico Granata · 11 years ago
  23. 8f0f475 <rdar://problem/11669154> by Enrico Granata · 11 years ago
  24. 01400dc Harden against potential empty nodes in the map by Enrico Granata · 11 years ago
  25. c881c1d <rdar://problem/13749871> by Enrico Granata · 11 years ago
  26. 5c2cd1f <rdar://problem/12529989> by Enrico Granata · 11 years ago
  27. 39ebb98 Make a synthetic children provider for the ObjC Class type by Enrico Granata · 11 years ago
  28. 98b449f See: http://stackoverflow.com/questions/16166897/c-how-to-obtain-address-of-stdvector-object-in-lldb-xcode by Enrico Granata · 11 years ago
  29. d9661be Changes to the ObjC runtime by Enrico Granata · 11 years ago
  30. ca87313 Closing parentheses is good - doing it while respecting printf format specifiers is even better by Enrico Granata · 11 years ago
  31. bf5d9d4 char32_t should use an uppercase U as its prefix by Enrico Granata · 11 years ago
  32. e34ed40 Closing parentheses once they are open is a good idea by Enrico Granata · 11 years ago
  33. 66cd2b5 The new ReadStringFromMemory() API does not work correctly with NSStrings that have an explicit length and no NULL terminator by Enrico Granata · 11 years ago
  34. fe26a23 <rdar://problem/13437949> by Enrico Granata · 11 years ago
  35. ca85d93 Much better way to get at the size of an std::list by Enrico Granata · 11 years ago
  36. d387b46 Fixed some linux buildbot warnings. by Greg Clayton · 11 years ago
  37. 347d722 Provided a variant of ReadCStringFromMemory that supports null terminators of any character width. by Ashok Thirumurthi · 11 years ago
  38. 12fbcf5 <rdar://problem/13563628> by Enrico Granata · 11 years ago
  39. cfeaa43 <rdar://problem/13563697> by Enrico Granata · 11 years ago
  40. b902709 #include clang's AST/DeclCXX.h to pick up CXXRecordDecl definition, by Jason Molenda · 11 years ago
  41. 33d1098 <rdar://problem/13563403> by Enrico Granata · 11 years ago
  42. 54f3020 Fixing a silly bug that would cause string summaries not to show up :-) by Enrico Granata · 11 years ago
  43. fb1493d <rdar://problem/13415737> by Enrico Granata · 11 years ago
  44. 1ce7000 <rdar://problem/12410225> by Enrico Granata · 11 years ago
  45. d32acdb Hardening the vector iterator synthetic child(ren) provider against item-not-in-cluster asserts by Enrico Granata · 11 years ago
  46. 952e9dc <rdar://problem/13521159> by Greg Clayton · 11 years ago
  47. dea1f15 <rdar://problem/13339196> by Enrico Granata · 11 years ago
  48. 23fde4e Data formatters cleanup: by Enrico Granata · 11 years ago
  49. 7002d45 Don't crash when we have an element size of zero. by Greg Clayton · 11 years ago
  50. 3dc2a5b Cleanup to the ObjC runtime to remove the now useless ClassDescriptor_Invalid by Enrico Granata · 11 years ago
  51. 597c0de Update source/DataFormatters/CMakeLists.txt to reflect actual source files. by Andy Gibbs · 11 years ago
  52. cc5d274 The formatters for std::shared_ptr, std::weak_ptr, std::list, std::vector and std::map as provided by libc++ are now written in C++ instead of Python by Enrico Granata · 11 years ago
  53. cba09f6 This checkin removes the last Cocoa formatters that were implemented in Python and reimplements them in C++. The Python Cocoa formatters are not shipped as part of LLDB anymore, but still exist in the source repository for user reference. Python formatters still exist for STL classes and users can still define their own Python formatters by Enrico Granata · 11 years ago
  54. 5782dae C++ formatters for NSTimeZone and for CFBitVector by Enrico Granata · 11 years ago
  55. 3818e6a NS(Mutable)IndexSet formatter moves from Python to C++ by Enrico Granata · 11 years ago
  56. dc1df6b Converting more data formatters to C++ - NSBundle, CFBinaryHeap, NSMachPort and NSNotification by Enrico Granata · 11 years ago
  57. 280b30f Porting the Objective-C Class data type’s summary from Python to C++ by Enrico Granata · 11 years ago
  58. b70c6ef Moving CFBag and NSBundle summaries from Python to C++ by Enrico Granata · 11 years ago
  59. ade70cf Optimization of the code-running NSDictionary formatter to skip runtime symbol fetching by Enrico Granata · 11 years ago
  60. 24c8029 If we crash while making a Python summary, the crash info will tell us more about it by Enrico Granata · 11 years ago
  61. b703112 The summary for const char* was not cascading. by Enrico Granata · 11 years ago
  62. fe21d4f Fix clang warnings related to python macro redefinition and printf format specifiers. by Matt Kopec · 11 years ago
  63. 33cf3f0 Update CMake lists of sources to include files added in r175787 and r175323 by Daniel Malea · 11 years ago
  64. aebeefd Adding CMake build system to LLDB. Some known issues remain: by Daniel Malea · 11 years ago
  65. f3a217e Cleanup of the NSString data formatter by Enrico Granata · 11 years ago
  66. 32d7ee3 <rdar://problem/4529976> by Enrico Granata · 11 years ago
  67. 04d3bb2 Fixing the lack of a space in an expression that was causing sheer unhappiness. by Enrico Granata · 11 years ago
  68. fa3a670 <rdar://problem/12529957> by Enrico Granata · 11 years ago
  69. ea68753 NSSet formatter is now C++ code by Enrico Granata · 11 years ago
  70. d85fab9 Only enable RTTI for cxa_demangle.cpp by Filipe Cabecinhas · 11 years ago
  71. 1f9df78 <rdar://problem/13204647> by Enrico Granata · 11 years ago
  72. 2fd2615 Fixing a logic flaw with NSURL summary. This was caught by running the test suite in 32bit mode by Enrico Granata · 11 years ago
  73. 0cd3340 Fixed a store to data that isn't needed and that also could end up writing beyond the end of the buffer. This was found by the address sanitizer. by Greg Clayton · 11 years ago
  74. 979c4b5 This checkin implements the data formatter for NSURL in C++ code by Enrico Granata · 11 years ago
  75. dcffc1a <rdar://problem/12898191> by Enrico Granata · 11 years ago
  76. 0433419 Fix GCC 4.6 build by avoiding delegating ctors by Daniel Malea · 11 years ago
  77. 689696c <rdar://problem/12953018> by Enrico Granata · 11 years ago
  78. d9da5b0 Making sure a Pythonless build of LLDB works by #ifdef-ing out formatters code. by Enrico Granata · 11 years ago
  79. 53d268c llvm/Basic/ConvertUTF.h now exposes all functions without macro tricks by Dmitri Gribenko · 11 years ago
  80. 2a64f9a UTF conversion routines were moved from clang/Basic to llvm/Support by Dmitri Gribenko · 11 years ago
  81. 77332ba Fix build problems with libstdc++ 4.6/4.7 by Daniel Malea · 11 years ago
  82. 30c187c Continuing the fix for the r173732 fix. Now lldb gets built with Makefiles (Darwin). by Filipe Cabecinhas · 11 years ago
  83. f846c81 Adding a Makefile. Hopefully that will make the Linux buildbot happy by Enrico Granata · 11 years ago
  84. f509c5e <rdar://problem/12978143> by Enrico Granata · 11 years ago