1. 8aaa523 Fixes for LLDB build to work around host 4.6.2+ compiler issues. by Todd Fiala · 11 years ago fp2-sibon fp2-sibon-2.0.1 fp2-sibon-2.0.2 FP2-open-16.05.0 FP2-open-16.06.0 FP2-open-16.07.1 FP2-open-16.08.0 FP2-open-16.09.0 FP2-open-16.10.0 FP2-open-16.11.0 FP2-open-16.12.0 FP2-open-17.01.0 FP2-open-17.04.0
  2. d55c5b1 Add Android.mk support for building LLDB on Linux host. by Todd Fiala · 11 years ago
  3. 0b864ee Updates the DW_AT_data_member_location handlers for the LLDB DWARF plugin by Ashok Thirumurthi · 11 years ago
  4. e5dadc1 Add explicit braces to quiet the "avoid dangling else" warning from clang. by Greg Clayton · 11 years ago
  5. 6b80ad9 Fixes LLDB address ranges with gcc 4.8 by Ashok Thirumurthi · 11 years ago
  6. 1e46e1a Fix issues with GCC debugging. GCC emits DWARF in unique ways that LLDB wasn't handling. This fix will fix cases where classes are forward declared using DW_TAG_structure_type and then actually defined using DW_TAG_class_type. LLDB, when it finds a forward declaration, would try and find and parse the complete type. It does this by: by Greg Clayton · 11 years ago
  7. 13a63b9 Fix the linux gcc 4.6.3 buildbot failures that happened after my recent types checkin. by Greg Clayton · 11 years ago
  8. 52f7923 Huge change to clean up types. by Greg Clayton · 11 years ago
  9. 7940069 Cleanup on the unified section list changes. Main changes are: by Greg Clayton · 11 years ago
  10. 5226e7d Workaround for infinite recursion in InitOSO->GetByteSize->GetSymbolVendor. by Jim Ingham · 11 years ago
  11. 49409a5 Recognize "decltype(nullptr)" as a valid DW_AT_name for DW_TAG_unspecified_type tags as meaning the C++11 null pointer type. by Greg Clayton · 11 years ago
  12. a807cee Split symbol support for ELF and Linux. by Michael Sartain · 11 years ago
  13. 00f42bb Adding support for extracting line table information from .o files that do not have aranges by Enrico Granata · 11 years ago
  14. bc46e29 Unique types a bit more using the clang type to make sure we don't get multiple copies of the same type due to the debug info having multiple types that get uniqued. by Greg Clayton · 11 years ago
  15. 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
  16. 53fde4b <rdar://problem/13455021> by Greg Clayton · 11 years ago
  17. 6680109 <rdar://problem/13893094> by Greg Clayton · 11 years ago
  18. fb1b8e2 strncmp was checked incorrectly in the Linux symbol lookup fix. by Matt Kopec · 11 years ago
  19. cfc053e Use mangled and demangled names when checking for a function in a namespace and a function in an anonymous namespace, respectively. by Matt Kopec · 11 years ago
  20. 0e19160 <rdar://problem/13854277> <rdar://problem/13594769> by Greg Clayton · 11 years ago
  21. 96641d8 Add temporary fix for calling c++ global/anonymous functions on Linux. by Matt Kopec · 11 years ago
  22. 9d35870 Don't completely drop methods we don't want to put by Sean Callanan · 11 years ago
  23. 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
  24. 764bca5 <rdar://problem/13298695> by Greg Clayton · 11 years ago
  25. c1c3690 When parsing dwarf, add C functions to the fullname index. by Matt Kopec · 11 years ago
  26. 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
  27. 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
  28. 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
  29. e9b48f0 Don't erroneously put FunctionDecls into CXXRecordDecls by Sean Callanan · 11 years ago
  30. f95fc9e Added support "__attribute__((__vector_size__(B)))" and "__attribute__((ext_vector_type(N)))". by Greg Clayton · 11 years ago
  31. e3125ac More support for version 4 of DWARF. by Greg Clayton · 11 years ago
  32. 00af72e <rdar://problem/13384801> by Greg Clayton · 11 years ago
  33. 3f8c606 <rdar://problem/13561911> by Greg Clayton · 11 years ago
  34. 296b06d <rdar://problem/13506727> by Greg Clayton · 11 years ago
  35. 952e9dc <rdar://problem/13521159> by Greg Clayton · 11 years ago
  36. 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
  37. b4fe227 <rdar://problem/13502196> by Greg Clayton · 11 years ago
  38. 2938217 <rdar://problem/13502196> by Greg Clayton · 11 years ago
  39. 9eead7d Don't need to resolve the .o file path. by Greg Clayton · 11 years ago
  40. fe6dc6e <rdar://problem/13421412> by Greg Clayton · 11 years ago
  41. d93d69d Add a missing check for getting a NULL oso module back from GetModuleByCompUnitInfo. by Jim Ingham · 11 years ago
  42. d7d583f Add a missing call to GetFileRangeMap. It's absence was causing debug info from .o files to sometimes by Jim Ingham · 11 years ago
  43. c2fe09b <rdar://problem/13361742> by Greg Clayton · 11 years ago
  44. be38b45 <rdar://problem/13374267> by Greg Clayton · 11 years ago
  45. 9c09181 <rdar://problem/13119621> by Greg Clayton · 11 years ago
  46. e2f06c3 Typeo in warning message. by Jason Molenda · 11 years ago
  47. a48b8eb <rdar://problem/13362109> by Greg Clayton · 11 years ago
  48. 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
  49. d5e48bd <rdar://problem/13341472> by Greg Clayton · 11 years ago
  50. 464a506 <rdar://problem/13338643> by Greg Clayton · 11 years ago
  51. 17a0b56 <rdar://problem/13287629> by Greg Clayton · 11 years ago
  52. 89a86ef A quick variable rename Sean and I had discussed earlier to make things a bit clearer. by Greg Clayton · 11 years ago
  53. d3beda6 Fixed several problems with class uniq'ing in the SymbolFileDWARF code: by Sean Callanan · 11 years ago
  54. a7e864c <rdar://problem/13265297> by Greg Clayton · 11 years ago
  55. fe21d4f Fix clang warnings related to python macro redefinition and printf format specifiers. by Matt Kopec · 11 years ago
  56. aebeefd Adding CMake build system to LLDB. Some known issues remain: by Daniel Malea · 11 years ago
  57. 0ac1f0c Improved handling for DW_AT_const_value by Andrew Kaylor · 11 years ago
  58. 732579b Be ready for fully qualified hash names in the __apples_types tables. by Greg Clayton · 11 years ago
  59. 4a58456 Fixed a problem that would cause LLDB to crash by Sean Callanan · 11 years ago
  60. 3cf7ab5 <rdar://problem/11109570> by Greg Clayton · 11 years ago
  61. 0be3134 <rdar://problem/12866706> by Greg Clayton · 11 years ago
  62. 6ac5bf1 <rdar://problem/13130975> by Greg Clayton · 11 years ago
  63. f892c42 <rdar://problem/9141269> by Greg Clayton · 11 years ago
  64. 36da2aa <rdar://problem/13069948> by Greg Clayton · 11 years ago
  65. 924910c Handle the case of unordered sequences in a DWARF line table. by Andrew Kaylor · 11 years ago
  66. aadc7f7 Clang sometimes emits "objc_object*" rather than "id" by Sean Callanan · 11 years ago
  67. 282c22c This patch removes the SymbolFileSymtab support by Sean Callanan · 11 years ago
  68. 4856200 Remove unused variable. by Greg Clayton · 11 years ago
  69. 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
  70. 467be71 <rdar://problem/12878674> by Greg Clayton · 11 years ago
  71. 23e2b6d Some incorrect debug information caused LLDB by Sean Callanan · 11 years ago
  72. 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
  73. 6f3a711 Make sure to check for DW_AT_linkage_name to get the mangled name in the DWARF along with the older DW_AT_MIPS_linkage_name attribute. by Greg Clayton · 12 years ago
  74. b9db9d5 Fix a few more clang (3.2) warnings on Linux: by Daniel Malea · 12 years ago
  75. b912457 <rdar://problem/12560257> by Greg Clayton · 12 years ago
  76. 48f833c Rewrote the bitfield logic. Major changes include: by Sean Callanan · 12 years ago
  77. a7eb248 <rdar://problem/12560257> by Greg Clayton · 12 years ago
  78. 5f35a4b Resolve printf formatting warnings on Linux: by Daniel Malea · 12 years ago
  79. 2c825fb <rdar://problem/12636970> by Greg Clayton · 12 years ago
  80. 14fe7f1 <rdar://problem/12636970> by Greg Clayton · 12 years ago
  81. b5bdf6a <rdar://problem/11782181> by Greg Clayton · 12 years ago
  82. e727b87 <rdar://problem/12153915> by Greg Clayton · 12 years ago
  83. d94bf68 Fix libstdc++ build by Daniel Malea · 12 years ago
  84. b6ea174 Fix a crasher in by Jason Molenda · 12 years ago
  85. b3ac5bf <rdar://problem/12645617> <rdar://problem/12153915> (partial fix) by Greg Clayton · 12 years ago
  86. c2ed5cc Added unnamed bitfields to our bitfield test. by Greg Clayton · 12 years ago
  87. f270fa9 <rdar://problem/12582031> by Greg Clayton · 12 years ago
  88. 88db459 <rdar://problem/12585314> by Greg Clayton · 12 years ago
  89. 8d6d0f2 Avoid a crash when trying to parse a line table in the DWARF parser. by Greg Clayton · 12 years ago
  90. c71397b Fixed a crash when we couldn't create a by Sean Callanan · 12 years ago
  91. 8fda922 Change a couple of raw printf's to expression log output. by Jim Ingham · 12 years ago
  92. 4756b67 Use the "data()" accessor on the std::vector<clang_type_t> in case it is empty. by Greg Clayton · 12 years ago
  93. a32c5a5 This is the first phase of supporting the DW_AT_object_pointer tag. I expanded the decl metadata by Jim Ingham · 12 years ago
  94. b8183d4 Added support for zero-length arrays at the end by Sean Callanan · 12 years ago
  95. c7e5708 Fixed a bug where empty C structs were given size by Sean Callanan · 12 years ago
  96. 6f01c93 Bunch of cleanups for warnings found by the llvm static analyzer. by Jim Ingham · 12 years ago
  97. 72a005e Make DebugMapModule destructor virtual since it inherits from Module. by Greg Clayton · 12 years ago
  98. b4ba18e Fixed an assertion in the SymbolFile resulting from a NULL ObjCInterfaceDecl. by Sean Callanan · 12 years ago
  99. 03f6d64 Ashok Thirumurthi patch to enable the latest and greatest DWARF forms from the DWARF 4 specification. by Greg Clayton · 12 years ago
  100. 06dc17f Brought LLDB top-of-tree into sync with LLVM/Clang by Sean Callanan · 12 years ago