1. d55c5b1 Add Android.mk support for building LLDB on Linux host. by Todd Fiala · 11 years ago
  2. e6017d3 Adds a DW_OP_call_frame_cfa handler when evaluating DWARF 3/4 expressions by Ashok Thirumurthi · 11 years ago
  3. 7980d35 Fixed GetModuleSpecifications() to work better overall: by Greg Clayton · 11 years ago
  4. be43cbd TypeHierarchyNavigator was removed in r186130 by Ed Maste · 11 years ago
  5. 1e68e88 Unblock buildbot. by Greg Clayton · 11 years ago
  6. 52f7923 Huge change to clean up types. by Greg Clayton · 11 years ago
  7. 7940069 Cleanup on the unified section list changes. Main changes are: by Greg Clayton · 11 years ago
  8. 100b99e Symbol prologue code checks if funciton lines up with symbol and uses function prologue code with line info if so. by Michael Sartain · 11 years ago
  9. 5226e7d Workaround for infinite recursion in InitOSO->GetByteSize->GetSymbolVendor. by Jim Ingham · 11 years ago
  10. a807cee Split symbol support for ELF and Linux. by Michael Sartain · 11 years ago
  11. 2f3daef Default parameters are evil and should not be used. Case and point this checkin that fixes implicit conversions that were happening. by Greg Clayton · 11 years ago
  12. 0a5dfb9 Fixed a crasher that I encountered when looking up a virtual base class offset. by Greg Clayton · 11 years ago
  13. 77e67a5 Implemented a types.py module that allows types to be inspected for padding. by Greg Clayton · 11 years ago
  14. 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
  15. b267bbd <rdar://problem/14194140> by Enrico Granata · 11 years ago
  16. a8b5623 Added the ability to get a list of types from a SBModule or SBCompileUnit. Sebastien Metrot wanted this, and sent a hollowed out patch. I filled in the blanks and did the low level implementation. The new functions are: by Greg Clayton · 11 years ago
  17. 8c3391b <rdar://problem/14194128> by Enrico Granata · 11 years ago
  18. b6a4c56 <rdar://problem/12717717> by Enrico Granata · 11 years ago
  19. ac94caa Huge performance improvements when one breakpoint contains many locations. by Greg Clayton · 11 years ago
  20. a9dc882 Use llvm::APFloat for formatting if a target is available. Each target when debugging has a "ASTContext" that helps us to use the correct floating point semantics. Now that APFloat supports toString we now use that. If we don't have a target, we still fall back on the old display methodology, but the important formatting should always have a target available and thus use the compiler floating point code. by Greg Clayton · 11 years ago
  21. 6630d1f Patch from Yacine Belkadi that fixes a typo in an error message. by Greg Clayton · 11 years ago
  22. fcf1793 Patch from Yacine Belkadi that fixes an issue in Variable::GetValuesForVariableExpressionPath(). by Greg Clayton · 11 years ago
  23. 83d90c5 <rdar://problem/11398407> by Greg Clayton · 11 years ago
  24. 23a5162 <rdar://problem/13217784> by Greg Clayton · 11 years ago
  25. 946618a A first pass at auto completion for variables and their children. This is currently hooked up for "frame variable" only. With a little work we can also enable it for the "expression" command and also for other things. by Greg Clayton · 11 years ago
  26. 0e19160 <rdar://problem/13854277> <rdar://problem/13594769> by Greg Clayton · 11 years ago
  27. 994b86b <rdar://problem/13621080> by Enrico Granata · 11 years ago
  28. efc7e55 <rdar://problem/13338477> by Enrico Granata · 11 years ago
  29. bb53fe5 Make our eliding of artificially-generated methods by Sean Callanan · 11 years ago
  30. f62ba43 <rdar://problem/13776113> by Greg Clayton · 11 years ago
  31. 756bed4 Fixed completion of incomplete array types, fixing by Sean Callanan · 11 years ago
  32. 97a19b2 Cleanup logging to use the new "std::string FileSpec::GetPath()" function. Also added a similar function for modules: by Greg Clayton · 11 years ago
  33. 36b877d Added the ability to extract a ModuleSpecList (a new class) from an ObjectFile. This is designed to be used when you have an object file that contains one or more architectures (MacOSX universal (fat) files) and/or one or more objects (BSD archive (.a files)). by Greg Clayton · 11 years ago
  34. 764bca5 <rdar://problem/13298695> by Greg Clayton · 11 years ago
  35. 977260c Fix for expression/breakpoint setting of gnu indirect functions. by Matt Kopec · 11 years ago
  36. d387b46 Fixed some linux buildbot warnings. by Greg Clayton · 11 years ago
  37. 102b2c2 After discussing with Chris Lattner, we require C++11, so lets get rid of the macros and just use C++11. by Greg Clayton · 11 years ago
  38. 81a96aa Since we use C++11, we should switch over to using std::unique_ptr when C++11 is being used. To do this, we follow what we have done for shared pointers and we define a STD_UNIQUE_PTR macro that can be used and it will "do the right thing". Due to some API differences in std::unique_ptr and due to the fact that we need to be able to compile without C++11, we can't use move semantics so some code needed to change so that it can compile with either C++. by Greg Clayton · 11 years ago
  39. 4cdf705 Fix for regression in TestCPPStaticMethods.py due to refactoring in clang. by Ashok Thirumurthi · 11 years ago
  40. f58438f Fixed issues with the way ELF symbols are parsed: by Greg Clayton · 11 years ago
  41. 3525576 Static variables inside classes were not being added to the RecordDecl, now they are. This gets us closer to being able to display static variables in classes. by Greg Clayton · 11 years ago
  42. f95fc9e Added support "__attribute__((__vector_size__(B)))" and "__attribute__((ext_vector_type(N)))". by Greg Clayton · 11 years ago
  43. 00af72e <rdar://problem/13384801> by Greg Clayton · 11 years ago
  44. edb83a5 Fix build. by Rafael Espindola · 11 years ago
  45. 296b06d <rdar://problem/13506727> by Greg Clayton · 11 years ago
  46. f85902c Elide all artificial copy constructors, because by Sean Callanan · 11 years ago
  47. d11d312 Fixed the way ClangASTImporter deports types from by Sean Callanan · 11 years ago
  48. 952e9dc <rdar://problem/13521159> by Greg Clayton · 11 years ago
  49. 017c16a Don't use a "uintptr_t" for the metadata key, use a "void *". This removes all of the casts that were being used and cleans the code up a bit. Also added the ability to dump the metadata. by Greg Clayton · 11 years ago
  50. 133214f Add a way to dump a ClangASTType to stdout for debugging purposes. by Greg Clayton · 11 years ago
  51. 7b48427 Don't bother calling Reserve on the vector unless we have entries to be added. by Jason Molenda · 11 years ago
  52. 2d63ae1 Add a Reserve method to RangeVector and RangeDataVector. Have the by Jason Molenda · 11 years ago
  53. 40960a7 Modified the way we report fields of records. by Sean Callanan · 11 years ago
  54. d793839 Add a new method GetFunctionAddressAndSizeVector to DWARFCallFrameInfo. by Jason Molenda · 11 years ago
  55. c953b56 Change DWARFCallFrameInfo from using a vector of AddressRanges to by Jason Molenda · 11 years ago
  56. 3dc2a5b Cleanup to the ObjC runtime to remove the now useless ClassDescriptor_Invalid by Enrico Granata · 11 years ago
  57. 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
  58. a924b19 Performance improvements to the IsObjCNil () - we only try to resolve the value if the variable under consideration truly is an “Objective-C thing” by Enrico Granata · 11 years ago
  59. fe6dc6e <rdar://problem/13421412> by Greg Clayton · 11 years ago
  60. dddb1dd <rdar://problem/13413693> by Greg Clayton · 11 years ago
  61. d9c7d40 Switch from CreateTypeSourceInfo, which allocates by Sean Callanan · 11 years ago
  62. e5bc8c1 Misc. clang build warning fixes. by Matt Kopec · 11 years ago
  63. 62afa49 Made LLDB work with the latest Clang. Also fixed by Sean Callanan · 11 years ago
  64. 6741173 Added very lightweight, statically-allocated by Sean Callanan · 11 years ago
  65. be38b45 <rdar://problem/13374267> by Greg Clayton · 11 years ago
  66. 9c09181 <rdar://problem/13119621> by Greg Clayton · 11 years ago
  67. a48b8eb <rdar://problem/13362109> by Greg Clayton · 11 years ago
  68. d8d97f5 Fixed enum printing for negative enums. There previously was no testing to validate that enum values were being displayed correctly. by Greg Clayton · 11 years ago
  69. d5e48bd <rdar://problem/13341472> by Greg Clayton · 11 years ago
  70. 464a506 <rdar://problem/13338643> by Greg Clayton · 11 years ago
  71. 72374e3 <rdar://problem/12897838> by Enrico Granata · 11 years ago
  72. 3732a02 Fixed some problems with type deportation: by Sean Callanan · 11 years ago
  73. 0688435 Added eSymbolTypeResolver to a few switch statements that needed it. by Greg Clayton · 11 years ago
  74. 4f9103f Add GNU indirect function support in expressions for Linux. by Matt Kopec · 11 years ago
  75. a7e864c <rdar://problem/13265297> by Greg Clayton · 11 years ago
  76. aebeefd Adding CMake build system to LLDB. Some known issues remain: by Daniel Malea · 11 years ago
  77. 874378d Updated to support latest Clang option naming. by Sean Callanan · 11 years ago
  78. c113056 Quiet "the missing case in switch statement" warnings from newer clang builds. by Greg Clayton · 11 years ago
  79. 79e9f96 Made LLDB build with the latest Clang. This meant by Sean Callanan · 11 years ago
  80. 940ca94 Fixed 2 more issues found by the address sanitizer: by Greg Clayton · 11 years ago
  81. 4a58456 Fixed a problem that would cause LLDB to crash by Sean Callanan · 11 years ago
  82. cbe61bd <rdar://problem/13159777> by Greg Clayton · 11 years ago
  83. 3cf7ab5 <rdar://problem/11109570> by Greg Clayton · 11 years ago
  84. 2ddb2b8 <rdar://problem/13092722> by Greg Clayton · 11 years ago
  85. dbf2fb0 Modified the expression parser's class wrapper to by Sean Callanan · 11 years ago
  86. d025085 Get rid for switch statement warning for unhandled cases. by Greg Clayton · 11 years ago
  87. f892c42 <rdar://problem/9141269> by Greg Clayton · 11 years ago
  88. 36da2aa <rdar://problem/13069948> by Greg Clayton · 11 years ago
  89. 1a469c7 <rdar://problem/12711206> by Enrico Granata · 11 years ago
  90. 63d67ed <rdar://problem/11146929> by Enrico Granata · 11 years ago
  91. 2fcbf6e <rdar://problem/12953853> by Greg Clayton · 11 years ago
  92. 1e52600 Read bytes from zero-filled sections correctly instead of failing to read. by Sean Callanan · 11 years ago
  93. 924910c Handle the case of unordered sequences in a DWARF line table. by Andrew Kaylor · 11 years ago
  94. 19b6467 <rdar://problem/12928282> by Greg Clayton · 11 years ago
  95. c6fe581 Update to reflect API changes in r171367. by Chandler Carruth · 11 years ago
  96. ca8fb17 Made LLDB compile with LLVM top-of-tree again. by Sean Callanan · 11 years ago
  97. 1880918 Cleaned up the UUID mismatch just printing itself whenever it wants to by allowing an optional feedback stream to be passed along when getting the symbol vendor. by Greg Clayton · 11 years ago
  98. be754e6 Allow LLDB to work with dSYM files that have a DWARF compile unit with nothing else to support clang's new -gline-tables-only mode of compiling. by Greg Clayton · 11 years ago
  99. d35b7b3 More Linux warnings fixes (remove default labels as needed): by Daniel Malea · 11 years ago
  100. b912457 <rdar://problem/12560257> by Greg Clayton · 11 years ago