aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGenCXX/mangle.cpp
AgeCommit message (Expand)Author
2013-02-08Use the target address space value when mangling names.Tanya Lattner
2012-11-14Provide the correct mangling and linkage for certain unnamed nested classes.David Blaikie
2012-09-13Revert r163829. The world (or libstdc++, at least) is not ready.Richard Smith
2012-09-13Remove speculative fix for C++ core issue 1407, since it was resolved as NAD.Richard Smith
2012-01-30Per discussion on cxx-abi-dev, don't drop leading zeroes from theJohn McCall
2012-01-18constexpr: converted constant expression handling for enumerator values, caseRichard Smith
2011-10-13Update all tests other than Driver/std.cpp to use -std=c++11 rather thanRichard Smith
2011-09-18Fix PR10531. Attach an initializer to anonymous unions, since the default con...Richard Smith
2011-07-12Improve name mangling for instantiation-dependent types that are notDouglas Gregor
2011-07-12Implement name mangling for sizeof...(function parameter pack).Douglas Gregor
2011-07-12Mangle dependent template names of unknown arityDouglas Gregor
2011-07-12Implement the Itanium C++ ABI's mangling rule forDouglas Gregor
2011-07-11Allow us to compute linkage et al for instantiation-dependent types.Douglas Gregor
2011-07-01Just mangle substituted template parameter types as unresolved types.John McCall
2011-07-01Introduce the notion of instantiation dependence into Clang's AST. ADouglas Gregor
2011-07-01Change the mangling of enclosing template template parametersJohn McCall
2011-06-28Be more thorough about mangling unresolved types.John McCall
2011-06-21Fix the mangling of dependent-scope decl ref expressions so that theyJohn McCall
2011-05-04Type prefixes of unresolved-names should only be mangled as unresolved-typesJohn McCall
2011-04-27t/clang/type-traitsJohn Wiegley
2011-04-24GCC seems to create address-of expression manglings when passing *any*John McCall
2011-04-24Update the mangler for some of the "new" unresolved-name manglings.John McCall
2011-04-24The ABI settled on mangling float literals with lowercase hex dumps.John McCall
2011-03-22File-scope static functions need to be mangled with 'L' so thatJohn McCall
2011-01-26When mangling a qualified array type, push the qualifiers down to theJohn McCall
2010-11-04Mangle std::nullptr_t as specified by the Itanium C++ ABI.Anders Carlsson
2010-11-02Fix a crash mangling decayed val argument-typed function.Fariborz Jahanian
2010-08-20Mangle explicit template arguments in dependent or overloaded names.John McCall
2010-08-18Contextual arity is a feature of mangling expressions; kill offJohn McCall
2010-08-17Whoops. Don't fall through into the overload case when mangling aJohn McCall
2010-08-05Don't crash when mangling empty anonymous unions. We never actually *need*John McCall
2010-07-24Mangle enum constant expressions. Fixes rdar://problem/8204122John McCall
2010-07-18Fix mangling for static member variables of classes inside an extern "C"Eli Friedman
2010-07-14Fix the mangling of template template arguments, which do not alwaysJohn McCall
2010-06-02Correctly mangle unsigned integer literals where the high bit is set.Anders Carlsson
2010-06-02Correctly mangle variadic functions that don't have any other parameters.Anders Carlsson
2010-04-09Provide manglings for bool and character literal expressions. These areJohn McCall
2010-04-09Turn access control on by default in -cc1.John McCall
2010-03-17Correctly mangle dependent TypenameType.Rafael Espindola
2010-03-13Give explicit template instantiations weak ODR linkage. FormerDouglas Gregor
2010-03-13Re-revert the explicit template instantiation linkage patch. I am beginning t...Douglas Gregor
2010-03-13Reinstate patch to turn explicit template instantiations into weak symbolsDouglas Gregor
2010-03-12Revert the linkage change for explicit template instantiations; something is ...Douglas Gregor
2010-03-12Give explicit template instantiations weak linkage (but don't deferDouglas Gregor
2010-03-11Correctly mangle address of member in template arguments. Fixes PR6460Rafael Espindola
2010-03-01Split out types that are non-canonical unless dependent as their ownJohn McCall
2010-03-01The latest draft uses 'dt' to mangle member expressions, and now so do we.John McCall
2010-02-18Revert the ctor/dtor alias optimization for now; the buildbots can detectJohn McCall
2010-02-17Emit complete constructors and destructors as aliases to base constructorsJohn McCall
2010-02-06Only append 'L' for internal variable declarations, not all declarations. (Fo...Anders Carlsson