1. c33ae02 Introduce a TypeSystem interface to support adding non-clang languages. by Pavel Labath · 10 years ago
  2. 1124045 Don't #include "lldb-python.h" from anywhere. by Zachary Turner · 10 years ago
  3. 8b33567 Get lldb-server building on android-9 by Vince Harron · 10 years ago
  4. 526ae04 Make a more complete fix for always supplying an execution context when getting byte sizes from types. by Greg Clayton · 11 years ago
  5. 1cd5e92 Preparatory infrastructural work to support dynamically determining sizes of ObjC types via the runtime by Enrico Granata · 11 years ago
  6. ff0f23d Remove the last vestige of the world before data formatters :-) by Enrico Granata · 11 years ago
  7. e29df23 This patch does a few things: by Enrico Granata · 11 years ago
  8. 3404221 Add the ability for the NSString and libc++ std::string formatters to retrieve uncapped data by Enrico Granata · 11 years ago
  9. 8da0bf3 LLGS Android target support - for Andy Chien : http://reviews.llvm.org/D6166 by Shawn Best · 11 years ago
  10. f35bc63 This is a large, but clearical, commit that enables the C++ formatters to take on the additional TypeSummaryOptions argument. It is still not used for anything, but it is now there. Adding support for this extra argument to Python formatters will follow suit by Enrico Granata · 11 years ago
  11. ebdc1ac Add a setting escape-non-printables that drives whether the StringPrinter should or should not escape sequences such as \t, \n, .. and generally any non-printing character by Enrico Granata · 11 years ago
  12. 2206b48 Also port the C string reading code in ValueObject over to using StringPrinter API by Enrico Granata · 11 years ago
  13. ca6c8ee Start adopting the StringPrinter API. The StringPrinter API is the new blessed way of printing strings that supports escaping non-printables, and has better handling of different UTF encodings by Enrico Granata · 11 years ago
  14. 76b08d5 Fix the NSPathStore2 data formatter to actually handle the explicit length stored inside the object. The meat of this commit, however, is a nice little API for easily adding new __lldb_autogen_ helper types to an AST context by Enrico Granata · 11 years ago
  15. 622be23 Expose the type-info flags at the public API layer. These flags provide much more informational content to consumers of the LLDB API than the existing TypeClass. Part of the fix for rdar://18517593 by Enrico Granata · 11 years ago
  16. 665f12a Remove unreachable code. by Jason Molenda · 11 years ago
  17. ba8eb12 Improve the way the ObjC data formatters fetch a valid frame to use for running expressions against by Enrico Granata · 11 years ago
  18. 705b180 Initial merge of some of the iOS 8 / Mac OS X Yosemite specific by Jason Molenda · 11 years ago
  19. 866e91c Better error reporting when a variable can't be by Sean Callanan · 12 years ago
  20. 6fbc48b This patch does a couple of things. by Jim Ingham · 12 years ago
  21. b57e4a1 Roll back the changes I made in r193907 which created a new Frame by Jason Molenda · 12 years ago
  22. f23bf74 Add a new base class, Frame. It is a pure virtual function which by Jason Molenda · 12 years ago
  23. f02a3c5 Use standard boolean operators. by Virgile Bello · 12 years ago
  24. b2f1fb2 MingW compilation (windows). Includes various refactoring to improve portability. by Virgile Bello · 12 years ago
  25. 57ee306 Huge change to clean up types. by Greg Clayton · 12 years ago
  26. c71f349 <rdar://problem/14005652> by Enrico Granata · 12 years ago
  27. ef14371 Fix various build warnings. by Matt Kopec · 12 years ago
  28. 1c333d0 An NSData with 0 bytes in it would report a summary of “0 byte” by Enrico Granata · 12 years ago
  29. 5a9c4fe <rdar://problem/13928053> by Enrico Granata · 12 years ago
  30. a3962a7 <rdar://problem/13821289> by Enrico Granata · 12 years ago
  31. c76b97b Make a synthetic children provider for the ObjC Class type by Enrico Granata · 13 years ago
  32. c03c586 char32_t should use an uppercase U as its prefix by Enrico Granata · 13 years ago
  33. 5676839 The new ReadStringFromMemory() API does not work correctly with NSStrings that have an explicit length and no NULL terminator by Enrico Granata · 13 years ago
  34. 03da4cc Fixed some linux buildbot warnings. by Greg Clayton · 13 years ago
  35. 6ac9d13 Provided a variant of ReadCStringFromMemory that supports null terminators of any character width. by Ashok Thirumurthi · 13 years ago
  36. 23ab35a Fixing a silly bug that would cause string summaries not to show up :-) by Enrico Granata · 13 years ago
  37. d83bfce <rdar://problem/13415737> by Enrico Granata · 13 years ago
  38. 6eca355 Hardening the vector iterator synthetic child(ren) provider against item-not-in-cluster asserts by Enrico Granata · 13 years ago
  39. 9237353 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 · 13 years ago
  40. 6d37cc6 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 · 13 years ago
  41. 9f71ad4 C++ formatters for NSTimeZone and for CFBitVector by Enrico Granata · 13 years ago
  42. 6a92511 NS(Mutable)IndexSet formatter moves from Python to C++ by Enrico Granata · 13 years ago
  43. 50b5ee5 Converting more data formatters to C++ - NSBundle, CFBinaryHeap, NSMachPort and NSNotification by Enrico Granata · 13 years ago
  44. 5590086 Porting the Objective-C Class data type’s summary from Python to C++ by Enrico Granata · 13 years ago
  45. f68f732 Moving CFBag and NSBundle summaries from Python to C++ by Enrico Granata · 13 years ago
  46. 87f00b4 Cleanup of the NSString data formatter by Enrico Granata · 13 years ago
  47. ea2bc0f <rdar://problem/4529976> by Enrico Granata · 13 years ago
  48. eac4a48 Fixing the lack of a space in an expression that was causing sheer unhappiness. by Enrico Granata · 13 years ago
  49. f615b80 NSSet formatter is now C++ code by Enrico Granata · 13 years ago
  50. 75dfb43 <rdar://problem/13204647> by Enrico Granata · 13 years ago
  51. 27692bc Fixing a logic flaw with NSURL summary. This was caught by running the test suite in 32bit mode by Enrico Granata · 13 years ago
  52. aa4c47a 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 · 13 years ago
  53. e214a02 This checkin implements the data formatter for NSURL in C++ code by Enrico Granata · 13 years ago
  54. 5bfce36 <rdar://problem/12898191> by Enrico Granata · 13 years ago
  55. 3b1b2da <rdar://problem/12953018> by Enrico Granata · 13 years ago
  56. aa073de llvm/Basic/ConvertUTF.h now exposes all functions without macro tricks by Dmitri Gribenko · 13 years ago
  57. 024aa85 UTF conversion routines were moved from clang/Basic to llvm/Support by Dmitri Gribenko · 13 years ago
  58. 5548cb5 <rdar://problem/12978143> by Enrico Granata · 13 years ago[Renamed (99%) from lldb/source/Core/CXXFormatterFunctions.cpp]
  59. c7bece56 <rdar://problem/13069948> by Greg Clayton · 13 years ago
  60. 93d5966 <rdar://problem/12790664> by Enrico Granata · 13 years ago
  61. 3309d88 <rdar://problem/12239827> by Enrico Granata · 13 years ago
  62. 2500e76 Making the Unicode formatters visually nicer by using the same prefix characters as the compiler expects in C++ code by Enrico Granata · 13 years ago
  63. 3835204 <rdar://problem/11383764> by Enrico Granata · 13 years ago
  64. f68df12 <rdar://problem/12725746> by Enrico Granata · 13 years ago
  65. ecbabe6 <rdar://problem/12848118> by Enrico Granata · 13 years ago
  66. 37c3e91 <rdar://problem/12817233> by Enrico Granata · 13 years ago
  67. a85e6b6 Fix a few more clang (3.2) warnings on Linux: by Daniel Malea · 13 years ago
  68. 93a6430 Fix Linux build warnings due to redefinition of macros: by Daniel Malea · 13 years ago
  69. c7cb314 In the data formatters, if we know the result by Sean Callanan · 13 years ago
  70. d01b295 Resolve printf formatting warnings on Linux: by Daniel Malea · 13 years ago
  71. b588726 <rdar://problem/11449953> Change Debugger::SetOutputFileHandle() so that it does not automatically initialize the script interpreter in order to transfer its output file handle to it by Enrico Granata · 13 years ago
  72. 91fe017 <rdar://problem/12523238> Commit 2 of 3 by Enrico Granata · 13 years ago
  73. adaf282 <rdar://problem/12523238> Commit 1 of 3 by Enrico Granata · 13 years ago
  74. 35e1bda Add the ability to set timeout & "run all threads" options both from the "expr" command and from by Jim Ingham · 13 years ago
  75. a5d3ba0 <rdar://problem/12462575> Refactoring a block of shared code in the NSString data formatter by Enrico Granata · 13 years ago
  76. 476b9ee <rdar://problem/12424824> Making sure that we correctly update our synthetic children provider for NSDictionary - providing better support for dynamic types by letting the filter recalculate itself when the type of the object changes by Enrico Granata · 13 years ago
  77. 7b8c038 <rdar://problem/12424824> Making sure that we correctly update our synthetic children provider for NSArray - the same work will need to be done for NSDictionary by Enrico Granata · 13 years ago
  78. f175ad1 <rdar://problem/12099592> Adding back a bunch of code-running summaries by Enrico Granata · 13 years ago
  79. 83c85e4 <rdar://problem/12349509> Renaming the structure that we use for NSDictionary children by Enrico Granata · 13 years ago
  80. 6d39077 <rdar://problem/12378910> Fix a bunch of other places where similar problems could happen by Enrico Granata · 13 years ago
  81. 60b81df <rdar://problem/12378910> Fixing a potential crasher in the data formatters where we fail to check for NULL or empty class name by Enrico Granata · 13 years ago
  82. 97fca50 <rdar://problem/11988289> Making C++ synthetic children provider for NSDictionary and related classes by Enrico Granata · 13 years ago
  83. 058049c Fixing a typo by Enrico Granata · 13 years ago
  84. b2698cd <rdar://problem/11086338> Implementing support for synthetic children generated by running C++ code instead of Python scripts ; Adding a bunch of value-generating APIs to our private code layer ; Providing synthetic children for NSArray by Enrico Granata · 13 years ago
  85. d4439aa Implementing an Options class for EvaluateExpression() in order to make the signature more compact and make it easy to 'just run an expression' by Enrico Granata · 13 years ago
  86. f519628 Adding to files that were missing in the previous commit by Enrico Granata · 13 years ago