Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | It turns out that linkers (at least, the Darwin linker) don't necessarily | John McCall | 2010-08-05 | 1 | -3/+3 |
| | | | | | | | | | | | do the right thing with mixed-visibility symbols, so disable the visibility optimization where that's possible, i.e. with template classes (since it's possible that an arbitrary template might be subject to an explicit instantiation elsewhere). 447.dealII actually does this. I've put the code under an option that's currently not hooked up to anything. llvm-svn: 110374 | ||||
* | Extend the hidden-visibility vtables optimization to template classes that | John McCall | 2010-08-04 | 1 | -3/+3 |
| | | | | | | haven't been explicitly instantiated. llvm-svn: 110189 | ||||
* | Don't substitute 'St' for 'std' when the namespace is nested inside another ↵ | Anders Carlsson | 2010-06-02 | 1 | -0/+10 |
| | | | | | | namespace. llvm-svn: 105330 | ||||
* | Be sure to use the standard substitutions when mangling the names of | Douglas Gregor | 2010-05-26 | 1 | -3/+41 |
| | | | | | | vtables, VTTs, and construction vtables. Fixes PR7201. llvm-svn: 104675 | ||||
* | PR6400: Handle an extreme edge case in mangling correctly. | Eli Friedman | 2010-02-23 | 1 | -0/+6 |
| | | | | llvm-svn: 96961 | ||||
* | Revert the ctor/dtor alias optimization for now; the buildbots can detect | John McCall | 2010-02-18 | 1 | -2/+1 |
| | | | | | | some failure here that I can't. llvm-svn: 96612 | ||||
* | Emit complete constructors and destructors as aliases to base constructors | John McCall | 2010-02-17 | 1 | -1/+2 |
| | | | | | | | | and destructors when the two entities are semantically identical, i.e. when the class has no virtual base classes. We only do this for linkage types for which aliases are supported, i.e. internal and external, i.e. not linkonce. llvm-svn: 96451 | ||||
* | Update tests to use %clang_cc1 instead of 'clang-cc' or 'clang -cc1'. | Daniel Dunbar | 2009-12-15 | 1 | -1/+1 |
| | | | | | | | | | - This is designed to make it obvious that %clang_cc1 is a "test variable" which is substituted. It is '%clang_cc1' instead of '%clang -cc1' because it can be useful to redefine what gets run as 'clang -cc1' (for example, to set a default target). llvm-svn: 91446 | ||||
* | Mangle basic_ostream and basic_iostream specializations. | Anders Carlsson | 2009-12-07 | 1 | -0/+8 |
| | | | | llvm-svn: 90794 | ||||
* | Correctly mangle the 'std' namespace inside extern "C++" blocks. | Anders Carlsson | 2009-12-04 | 1 | -0/+10 |
| | | | | llvm-svn: 90544 | ||||
* | Mangle std::basic_ostream<char, std::char_traits<char>> as So. | Anders Carlsson | 2009-10-08 | 1 | -3/+10 |
| | | | | llvm-svn: 83557 | ||||
* | Remove PR5061 workaround. | Anders Carlsson | 2009-09-29 | 1 | -6/+2 |
| | | | | llvm-svn: 83046 | ||||
* | Mangle std::basic_string<char, std::char_traits<char>, std::allocator<char> ↵ | Anders Carlsson | 2009-09-27 | 1 | -3/+12 |
| | | | | | | > as Ss. llvm-svn: 82882 | ||||
* | Mangle ::std::basic_string as Sb. | Anders Carlsson | 2009-09-26 | 1 | -1/+10 |
| | | | | llvm-svn: 82881 | ||||
* | Mangle ::std::allocator as Sa. | Anders Carlsson | 2009-09-26 | 1 | -0/+9 |
| | | | | llvm-svn: 82880 | ||||
* | Substitute "::std::" as "St". | Anders Carlsson | 2009-09-26 | 1 | -0/+9 |
llvm-svn: 82874 |