| Commit message (Expand) | Author | Age | Files | Lines |
| ... | |
| * | Add DeclarationName support for C++0x operator literals. They should now work as | Alexis Hunt | 2009-11-29 | 1 | -0/+6 |
| * | Remove remaining VISIBILITY_HIDDEN from anonymous namespaces. | Benjamin Kramer | 2009-11-28 | 1 | -1/+0 |
| * | Add a CovariantThunkAdjustment struct that represents the adjustments needed ... | Anders Carlsson | 2009-11-26 | 1 | -5/+6 |
| * | Move the mangler into the CodeGen namespace. Change mangleThunk to take a Thu... | Anders Carlsson | 2009-11-26 | 1 | -13/+12 |
| * | Add a ThunkAdjustment struct which holds a non-virtual and a virtual adjustme... | Anders Carlsson | 2009-11-26 | 1 | -28/+33 |
| * | When mangling a ctor/dtor we need to take into consideration whether it's a m... | Anders Carlsson | 2009-11-24 | 1 | -2/+17 |
| * | This patch implements objective-c's 'SEL' type as a built-in | Fariborz Jahanian | 2009-11-21 | 1 | -0/+1 |
| * | Mangler: Sketch mangling for TemplateArgument::Declaration kind. | Daniel Dunbar | 2009-11-21 | 1 | -27/+32 |
| * | Mangler: Lift shouldMangleDeclName predicate out of CXXNameMangler::mangle. | Daniel Dunbar | 2009-11-21 | 1 | -36/+44 |
| * | Mangler: Strengthen invariants, MangleContext::mangleName should only be call... | Daniel Dunbar | 2009-11-21 | 1 | -15/+12 |
| * | Mangler: Inline a bunch of functions into their sole caller, not that I don't... | Daniel Dunbar | 2009-11-21 | 1 | -106/+56 |
| * | Remove dead variable. | Daniel Dunbar | 2009-11-21 | 1 | -1/+0 |
| * | Mangler: Split isStdNamespace for when the caller already has a NamespaceDecl. | Daniel Dunbar | 2009-11-21 | 1 | -5/+6 |
| * | IRgen: Eliminate CXXNameMangler::mangleCXX{C,D}tor. | Daniel Dunbar | 2009-11-21 | 1 | -24/+10 |
| * | IRgen: Switch the C++ mangler interfaces to take the SmallVector to write into, | Daniel Dunbar | 2009-11-21 | 1 | -48/+29 |
| * | Sink free mangle* methods into MangleContext. | Daniel Dunbar | 2009-11-21 | 1 | -178/+175 |
| * | Delete trailing space. | Daniel Dunbar | 2009-11-21 | 1 | -85/+85 |
| * | Draw a brighter line between "unresolved" expressions, where we have done the | John McCall | 2009-11-19 | 1 | -2/+2 |
| * | First part of changes to eliminate problems with cv-qualifiers and | Douglas Gregor | 2009-11-16 | 1 | -3/+3 |
| * | Implement typeid for class types. | Mike Stump | 2009-11-15 | 1 | -0/+2 |
| * | Mangling support for typeinfo names. | Mike Stump | 2009-11-14 | 1 | -0/+16 |
| * | Finish off mangling for the VTT. | Mike Stump | 2009-11-10 | 1 | -0/+8 |
| * | Add mangling for the construction vtable. | Mike Stump | 2009-11-10 | 1 | -0/+22 |
| * | Always mangle functions with special names. Fixes PR5420. | Anders Carlsson | 2009-11-07 | 1 | -3/+5 |
| * | When looking up and adding substitutions to the substitution table, make sure... | Anders Carlsson | 2009-11-07 | 1 | -0/+3 |
| * | Handle ParenExprs in mangleExpression. | Anders Carlsson | 2009-11-06 | 1 | -0/+5 |
| * | Fix thinko, mangleCXXRtti should obviously take a QualType! | Anders Carlsson | 2009-10-30 | 1 | -5/+4 |
| * | mangleCXXRtti obviously needs to take a type, what was I thinking... | Anders Carlsson | 2009-10-30 | 1 | -5/+7 |
| * | Mangle based on the declaration we're given, not the canonical | Douglas Gregor | 2009-10-28 | 1 | -1/+2 |
| * | Add mangling for VTTs. | Mike Stump | 2009-10-28 | 1 | -0/+7 |
| * | When building types from declarators, instead of building two types (one for | John McCall | 2009-10-22 | 1 | -1/+6 |
| * | PR5218: Replace IdentifierInfo::getName with StringRef version, now that clients | Daniel Dunbar | 2009-10-18 | 1 | -1/+1 |
| * | Move misc clients to IdentifierInfo StringRef API. | Daniel Dunbar | 2009-10-18 | 1 | -4/+1 |
| * | Builtin types are subsitutable if they are qualified. Fixes PR5196. | Anders Carlsson | 2009-10-16 | 1 | -1/+1 |
| * | Change mangleCXXVtable and mangleCXXRtti to take CXXRecordDecls instead of Qu... | Anders Carlsson | 2009-10-11 | 1 | -10/+10 |
| * | Mangle std::basic_ostream<char, std::char_traits<char>> as So. | Anders Carlsson | 2009-10-08 | 1 | -0/+18 |
| * | Mangle anonymous structs/unions correctly. Fixes PR5139. | Anders Carlsson | 2009-10-07 | 1 | -3/+34 |
| * | Add a MangleContext and pass it to all mangle functions. It will be used for ... | Anders Carlsson | 2009-10-07 | 1 | -20/+22 |
| * | When mangling names, always use the canonical decl. Fixes PR5144. | Anders Carlsson | 2009-10-06 | 1 | -1/+1 |
| * | Anonymous namespaces, sema + codegen. A lot of semantics are still broken, | John McCall | 2009-10-01 | 1 | -3/+11 |
| * | Mangle dependent name expressions. Fixes PR5063. | Anders Carlsson | 2009-09-27 | 1 | -0/+20 |
| * | Use mangleTemplatePrefix when we know that we're mangling a nested template n... | Anders Carlsson | 2009-09-27 | 1 | -2/+4 |
| * | Look for substitutions when mangling TypenameTypes. | Anders Carlsson | 2009-09-27 | 1 | -3/+6 |
| * | Better template parameter type mangling. | Anders Carlsson | 2009-09-27 | 1 | -11/+18 |
| * | Mangle std::basic_string<char, std::char_traits<char>, std::allocator<char> >... | Anders Carlsson | 2009-09-27 | 1 | -0/+63 |
| * | Mangle ::std::basic_string as Sb. | Anders Carlsson | 2009-09-26 | 1 | -0/+6 |
| * | Mangle ::std::allocator as Sa. | Anders Carlsson | 2009-09-26 | 1 | -11/+19 |
| * | Handle substitutions in mangleTemplatePrefix. | Anders Carlsson | 2009-09-26 | 1 | -1/+6 |
| * | Substitute "::std::" as "St". | Anders Carlsson | 2009-09-26 | 1 | -1/+22 |
| * | Don't crash when trying to mangle function templates. | Anders Carlsson | 2009-09-26 | 1 | -2/+2 |