| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | Add a cautionary note about the mangling I just invented. | John McCall | 2010-02-04 | 1 | -0/+3 |
* | Add mangling support for calls, sizeof/alignof, constructor calls, | John McCall | 2010-02-04 | 1 | -29/+151 |
* | When a function or variable somehow depends on a type or declaration | Douglas Gregor | 2010-02-03 | 1 | -3/+2 |
* | Remove abstract expression kinds from the StmtClass enum. Update a few users | John McCall | 2010-02-03 | 1 | -6/+23 |
* | Name mangling for cast expressions, from Matthias Schiffer! Fixes PR5876. | Douglas Gregor | 2010-01-29 | 1 | -0/+18 |
* | Mangle static variables with an extra name to distinguish them from non-stati... | Alexis Hunt | 2010-01-24 | 1 | -6/+11 |
* | fix PR5869: mangle static symbols like gcc does to make it easier to diff sym... | Nuno Lopes | 2010-01-07 | 1 | -1/+4 |
* | Get rid of FixedWidthIntType, as suggested by Chris and Eli. | Anders Carlsson | 2009-12-29 | 1 | -4/+0 |
* | Mangle block pointer types. Fixes PR5858. | Anders Carlsson | 2009-12-23 | 1 | -1/+2 |
* | There is no such thing as typeinfo for a cv-qualified type. Assert | Douglas Gregor | 2009-12-23 | 1 | -0/+1 |
* | Mangle template template parameters. Fixes PR5861. | Anders Carlsson | 2009-12-23 | 1 | -9/+12 |
* | Make sure that we mangle overloaded operators that are member functions corre... | Anders Carlsson | 2009-12-22 | 1 | -7/+22 |
* | Mangle CXXOperatorCallExprs, fixes PR5796. | Anders Carlsson | 2009-12-16 | 1 | -0/+10 |
* | Mangle unary, binary and ternary expressions correctly. | Anders Carlsson | 2009-12-14 | 1 | -18/+58 |
* | Un-namespace-qualify llvm_unreachable. It's a macro, so the qualification gave | Jeffrey Yasskin | 2009-12-12 | 1 | -2/+2 |
* | Make sure mangling doesn't crash in another case. Add some more tests. | Eli Friedman | 2009-12-11 | 1 | -1/+1 |
* | Fix for PR5706: let mangleName deal with mangling names without identifiers | Eli Friedman | 2009-12-11 | 1 | -4/+1 |
* | Mangle static variables inside Objective-C methods in Objective-C++. We curre... | Anders Carlsson | 2009-12-10 | 1 | -3/+24 |
* | Mangle basic_ostream and basic_iostream specializations. | Anders Carlsson | 2009-12-07 | 1 | -12/+34 |
* | Fix "using typename" and the instantiation of non-dependent using declarations. | John McCall | 2009-12-04 | 1 | -0/+6 |
* | Put in FIXME that this mangling is not official in. | Alexis Hunt | 2009-12-04 | 1 | -1/+1 |
* | Switch mangling of literal operator names to a string that's | Alexis Hunt | 2009-12-04 | 1 | -1/+1 |
* | Correctly mangle the 'std' namespace inside extern "C++" blocks. | Anders Carlsson | 2009-12-04 | 1 | -13/+23 |
* | Note a failure I saw from the g++ testsuite: | Mike Stump | 2009-12-03 | 1 | -0/+1 |
* | Work-in-progress: teach mangler how to mangle thunks for destructors. | Eli Friedman | 2009-12-03 | 1 | -3/+13 |
* | Fix for PR5522 and PR5666: fix a bunch of mangling issues with extern variables | Eli Friedman | 2009-12-02 | 1 | -11/+25 |
* | Change rtti/Rtti to RTTI, as it is an acronym. | Mike Stump | 2009-12-02 | 1 | -2/+2 |
* | 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 |