| Commit message (Expand) | Author | Age | Files | Lines |
| * | 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 |
| * | mangleTemplatePrefix and mangleUnscopedTemplateName should take a TemplateDecl. | Anders Carlsson | 2009-09-26 | 1 | -10/+9 |
| * | Mangle record types as decls. | Anders Carlsson | 2009-09-26 | 1 | -1/+17 |
| * | Change isTemplate to return the actual template declaration. | Anders Carlsson | 2009-09-26 | 1 | -5/+5 |
| * | Improve mangling of typename types. | Anders Carlsson | 2009-09-26 | 1 | -1/+16 |
| * | Refactor the representation of qualifiers to bring ExtQualType out of the | John McCall | 2009-09-24 | 1 | -17/+14 |
| * | CXXMethodDecls should always be mangled, even if they are inside an extern "C... | Anders Carlsson | 2009-09-22 | 1 | -1/+4 |
| * | Don't assert that linkage decls are always C++, it's not true. Fixes PR5019. | Anders Carlsson | 2009-09-22 | 1 | -4/+1 |
| * | Change all the Type::getAsFoo() methods to specializations of Type::getAs(). | John McCall | 2009-09-21 | 1 | -1/+1 |
| * | Start mangling expressions. | Anders Carlsson | 2009-09-21 | 1 | -3/+41 |
| * | More mangling work. | Anders Carlsson | 2009-09-18 | 1 | -7/+9 |
| * | Make the mangler conform even better to the grammar. | Anders Carlsson | 2009-09-18 | 1 | -12/+8 |
| * | More mangler mangling. | Anders Carlsson | 2009-09-18 | 1 | -12/+26 |
| * | Call mangleTemplatePrefix. | Anders Carlsson | 2009-09-18 | 1 | -5/+7 |
| * | Change manglePrefix to return early if the DC is the translation unit. | Anders Carlsson | 2009-09-18 | 1 | -2/+4 |
| * | More mangling goodness. | Anders Carlsson | 2009-09-18 | 1 | -20/+42 |
| * | Handle mangling of TemplateSpecializationType. | Anders Carlsson | 2009-09-18 | 1 | -7/+58 |
| * | Ignore extern "C++" { } when mangling. | Anders Carlsson | 2009-09-17 | 1 | -3/+9 |
| * | Revert r82123 for now. | Anders Carlsson | 2009-09-17 | 1 | -21/+14 |
| * | Treat an unqualified RecordType as a RecordDecl when substituting. | Anders Carlsson | 2009-09-17 | 1 | -14/+21 |
| * | Substitution for prefixes. | Anders Carlsson | 2009-09-17 | 1 | -3/+12 |
| * | Substitute unscoped template names. | Anders Carlsson | 2009-09-17 | 1 | -0/+4 |
| * | Add mangleSubstitution/addSubstitution variants that take a NamedDecl. | Anders Carlsson | 2009-09-17 | 1 | -3/+20 |
| * | When mangling function template specialization, mangle the type encoding of t... | Anders Carlsson | 2009-09-17 | 1 | -5/+9 |
| * | Add new functions to the mangler for the <unscoped-name> and <unscoped-templa... | Anders Carlsson | 2009-09-17 | 1 | -8/+25 |
| * | Add basic substitution to the C++ mangler. It currently only looks at types. | Anders Carlsson | 2009-09-17 | 1 | -8/+72 |
| * | We can't have ctors in the vtable (right Doug?) :-) | Mike Stump | 2009-09-12 | 1 | -4/+0 |