1. 461e326 Rename CGVtable files to CGVTables. by Anders Carlsson · 14 years ago
  2. 4a2023f Extend DependentNameType with a keyword enum that specifies whether by Douglas Gregor · 14 years ago
  3. 4714c12 Rename TypenameType to DependentNameType in anticipation of some by Douglas Gregor · 14 years ago
  4. bfb7a1d Remove the old vtable layout code. by Anders Carlsson · 14 years ago
  5. 0e5f067 Implement new mangling for vectors. by Nick Lewycky · 14 years ago
  6. 19879c9 More thunks scaffolding. by Anders Carlsson · 14 years ago
  7. 9b35b25 Correctly mangle dependent TypenameType. Fixes PR6625. by Rafael Espindola · 15 years ago
  8. 1935754 Use SmallString instead of SmallVector by Kovarththanan Rajaratnam · 15 years ago
  9. d980072 Correctly mangle address of member in template arguments. Fixes PR6460 by Rafael Espindola · 15 years ago
  10. 96df6cf Don't turn off mangling in implicitly extern "C" system headers. GCC by Douglas Gregor · 15 years ago
  11. 4819ac4 Refactor local class name mangling and make it ABI conforming. by Fariborz Jahanian · 15 years ago
  12. 5705853 Implements mangling of local class names to by Fariborz Jahanian · 15 years ago
  13. ad5e738 Split out types that are non-canonical unless dependent as their own by John McCall · 15 years ago
  14. e1e342f The latest draft uses 'dt' to mangle member expressions, and now so do we. by John McCall · 15 years ago
  15. 4b2ccfc Improve name mangling for dependently-scoped declaration references. by Douglas Gregor · 15 years ago
  16. 5ed1bc3 Add name mangling for DeclRefExprs that refer to external names by Douglas Gregor · 15 years ago
  17. 5370ee2 Make previous fix handle a few more edge cases. by Eli Friedman · 15 years ago
  18. b1162f1 PR6400: Handle an extreme edge case in mangling correctly. by Eli Friedman · 15 years ago
  19. aec2523 Only append 'L' for internal variable declarations, not all declarations. (Found by the mangle checker, yay) by Anders Carlsson · 15 years ago
  20. 2d565b3 Assert when we try to mangle a dependent template name, rather than by Douglas Gregor · 15 years ago
  21. 32fb4e1 Implement name mangling for template template parameters by Douglas Gregor · 15 years ago
  22. f98574b Check in a mangle checker that's turned off by default. by Anders Carlsson · 15 years ago
  23. 2f27bf8 Mangle member expressions. Also invented. by John McCall · 15 years ago
  24. a3218e7 Add a cautionary note about the mangling I just invented. by John McCall · 15 years ago
  25. 1dd7383 Add mangling support for calls, sizeof/alignof, constructor calls, by John McCall · 15 years ago
  26. 0b6bc8b When a function or variable somehow depends on a type or declaration by Douglas Gregor · 15 years ago
  27. 09cc141 Remove abstract expression kinds from the StmtClass enum. Update a few users by John McCall · 15 years ago
  28. 46287c7 Name mangling for cast expressions, from Matthias Schiffer! Fixes PR5876. by Douglas Gregor · 15 years ago
  29. 3145525 Mangle static variables with an extra name to distinguish them from non-static variables in the same TU. by Sean Hunt · 15 years ago
  30. a9efbf0 fix PR5869: mangle static symbols like gcc does to make it easier to diff symbol tables by Nuno Lopes · 15 years ago
  31. f5f7d86 Get rid of FixedWidthIntType, as suggested by Chris and Eli. by Anders Carlsson · 15 years ago
  32. f28c687 Mangle block pointer types. Fixes PR5858. by Anders Carlsson · 15 years ago
  33. 154fe98 There is no such thing as typeinfo for a cv-qualified type. Assert by Douglas Gregor · 15 years ago
  34. 9e85c74 Mangle template template parameters. Fixes PR5861. by Anders Carlsson · 15 years ago
  35. 8257d41 Make sure that we mangle overloaded operators that are member functions correctly, giving them the correct arity. by Anders Carlsson · 15 years ago
  36. 58040a5 Mangle CXXOperatorCallExprs, fixes PR5796. by Anders Carlsson · 15 years ago
  37. e170ba7 Mangle unary, binary and ternary expressions correctly. by Anders Carlsson · 15 years ago
  38. 9f61aa9 Un-namespace-qualify llvm_unreachable. It's a macro, so the qualification gave by Jeffrey Yasskin · 15 years ago
  39. 6f9f25d Make sure mangling doesn't crash in another case. Add some more tests. by Eli Friedman · 15 years ago
  40. ecb7e93 Fix for PR5706: let mangleName deal with mangling names without identifiers by Eli Friedman · 15 years ago
  41. 7b06f6c Mangle static variables inside Objective-C methods in Objective-C++. We currently mangle them the same way as gcc does. by Anders Carlsson · 15 years ago
  42. 91f8860 Mangle basic_ostream and basic_iostream specializations. by Anders Carlsson · 15 years ago
  43. ed97649 Fix "using typename" and the instantiation of non-dependent using declarations. by John McCall · 15 years ago
  44. 5dd6b39 Put in FIXME that this mangling is not official in. by Sean Hunt · 15 years ago
  45. 2421f66 Switch mangling of literal operator names to a string that's by Sean Hunt · 15 years ago
  46. 47846d2 Correctly mangle the 'std' namespace inside extern "C++" blocks. by Anders Carlsson · 15 years ago
  47. 7087d75 Note a failure I saw from the g++ testsuite: by Mike Stump · 15 years ago
  48. 61d89b6 Work-in-progress: teach mangler how to mangle thunks for destructors. by Eli Friedman · 15 years ago
  49. 7facf84 Fix for PR5522 and PR5666: fix a bunch of mangling issues with extern variables by Eli Friedman · 15 years ago
  50. de05057 Change rtti/Rtti to RTTI, as it is an acronym. by Mike Stump · 15 years ago
  51. 3e518bd Add DeclarationName support for C++0x operator literals. They should now work as by Sean Hunt · 15 years ago
  52. 85b4521 Remove remaining VISIBILITY_HIDDEN from anonymous namespaces. by Benjamin Kramer · 15 years ago
  53. 7622cd3 Add a CovariantThunkAdjustment struct that represents the adjustments needed for a covariant thunk. by Anders Carlsson · 15 years ago
  54. b73a5be Move the mangler into the CodeGen namespace. Change mangleThunk to take a ThunkAdjustment. by Anders Carlsson · 15 years ago
  55. a94822e Add a ThunkAdjustment struct which holds a non-virtual and a virtual adjustment offset. Start using it. General cleanup in Mangle.cpp. by Anders Carlsson · 15 years ago
  56. 7e12003 When mangling a ctor/dtor we need to take into consideration whether it's a member template. by Anders Carlsson · 15 years ago
  57. 13dcd00 This patch implements objective-c's 'SEL' type as a built-in by Fariborz Jahanian · 15 years ago
  58. 7e0c195 Mangler: Sketch mangling for TemplateArgument::Declaration kind. by Daniel Dunbar · 15 years ago
  59. f981bf8 Mangler: Lift shouldMangleDeclName predicate out of CXXNameMangler::mangle. by Daniel Dunbar · 15 years ago
  60. c02ab4c Mangler: Strengthen invariants, MangleContext::mangleName should only be called on var or function decls. by Daniel Dunbar · 15 years ago
  61. c074771 Mangler: Inline a bunch of functions into their sole caller, not that I don't love typing for typings sake, but... by Daniel Dunbar · 15 years ago
  62. c7bced4 Remove dead variable. by Daniel Dunbar · 15 years ago
  63. 1308af9 Mangler: Split isStdNamespace for when the caller already has a NamespaceDecl. by Daniel Dunbar · 15 years ago
  64. 77939c9 IRgen: Eliminate CXXNameMangler::mangleCXX{C,D}tor. by Daniel Dunbar · 15 years ago
  65. 94fd26d IRgen: Switch the C++ mangler interfaces to take the SmallVector to write into, by Daniel Dunbar · 15 years ago
  66. 1b07711 Sink free mangle* methods into MangleContext. by Daniel Dunbar · 15 years ago
  67. 3c9e463 Delete trailing space. by Daniel Dunbar · 15 years ago
  68. 865d447 Draw a brighter line between "unresolved" expressions, where we have done the by John McCall · 15 years ago
  69. a4923eb First part of changes to eliminate problems with cv-qualifiers and by Douglas Gregor · 15 years ago
  70. c2e84ae Implement typeid for class types. by Mike Stump · 15 years ago
  71. 6779598 Mangling support for typeinfo names. by Mike Stump · 15 years ago
  72. 82d75b0 Finish off mangling for the VTT. by Mike Stump · 15 years ago
  73. ab3f7e9 Add mangling for the construction vtable. by Mike Stump · 15 years ago
  74. a1e1622 Always mangle functions with special names. Fixes PR5420. by Anders Carlsson · 15 years ago
  75. 433d137 When looking up and adding substitutions to the substitution table, make sure to always use the canonical declaration. With tihs change, FileCheck compiles and links but crashes during startup. by Anders Carlsson · 15 years ago
  76. a769408 Handle ParenExprs in mangleExpression. by Anders Carlsson · 15 years ago
  77. d313e40 Fix thinko, mangleCXXRtti should obviously take a QualType! by Anders Carlsson · 15 years ago
  78. 731f7f9 mangleCXXRtti obviously needs to take a type, what was I thinking... by Anders Carlsson · 15 years ago
  79. 457e281 Mangle based on the declaration we're given, not the canonical by Douglas Gregor · 15 years ago
  80. 88e9171 Add mangling for VTTs. by Mike Stump · 15 years ago
  81. 54e14c4 When building types from declarators, instead of building two types (one for by John McCall · 15 years ago
  82. 01eb9b9 PR5218: Replace IdentifierInfo::getName with StringRef version, now that clients by Daniel Dunbar · 15 years ago
  83. 5ffe14c Move misc clients to IdentifierInfo StringRef API. by Daniel Dunbar · 15 years ago
  84. 410f764 Builtin types are subsitutable if they are qualified. Fixes PR5196. by Anders Carlsson · 15 years ago
  85. fc3bf4d Change mangleCXXVtable and mangleCXXRtti to take CXXRecordDecls instead of QualTypes. by Anders Carlsson · 15 years ago
  86. 8f8fd8e Mangle std::basic_ostream<char, std::char_traits<char>> as So. by Anders Carlsson · 15 years ago
  87. c4355b6 Mangle anonymous structs/unions correctly. Fixes PR5139. by Anders Carlsson · 15 years ago
  88. b540491 Add a MangleContext and pass it to all mangle functions. It will be used for keeping state, such as identifiers assigned to anonymous structs as well as scope encoding. by Anders Carlsson · 15 years ago
  89. b217c1b When mangling names, always use the canonical decl. Fixes PR5144. by Anders Carlsson · 15 years ago
  90. 9aeed32 Anonymous namespaces, sema + codegen. A lot of semantics are still broken, by John McCall · 15 years ago
  91. 50755b0 Mangle dependent name expressions. Fixes PR5063. by Anders Carlsson · 15 years ago
  92. e45117b Use mangleTemplatePrefix when we know that we're mangling a nested template name. by Anders Carlsson · 15 years ago
  93. 8859917 Look for substitutions when mangling TypenameTypes. by Anders Carlsson · 15 years ago
  94. 0ccdf8d Better template parameter type mangling. by Anders Carlsson · 15 years ago
  95. f514b54 Mangle std::basic_string<char, std::char_traits<char>, std::allocator<char> > as Ss. by Anders Carlsson · 15 years ago
  96. 189d59c Mangle ::std::basic_string as Sb. by Anders Carlsson · 15 years ago
  97. 8c03155 Mangle ::std::allocator as Sa. by Anders Carlsson · 15 years ago
  98. aeb8537 Handle substitutions in mangleTemplatePrefix. by Anders Carlsson · 15 years ago
  99. e7c8cb6 Substitute "::std::" as "St". by Anders Carlsson · 15 years ago
  100. 1668f20 Don't crash when trying to mangle function templates. by Anders Carlsson · 15 years ago