index
:
emscripten-fastcomp-clang
master
emscripten clang
git repository hosting
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
test
/
CodeGenCXX
/
mangle.cpp
Age
Commit message (
Expand
)
Author
2009-11-06
Handle ParenExprs in mangleExpression.
Anders Carlsson
2009-10-07
Mangle anonymous structs/unions correctly. Fixes PR5139.
Anders Carlsson
2009-10-06
When mangling names, always use the canonical decl. Fixes PR5144.
Anders Carlsson
2009-09-27
Mangle dependent name expressions. Fixes PR5063.
Anders Carlsson
2009-09-27
Better template parameter type mangling.
Anders Carlsson
2009-09-26
Handle substitutions in mangleTemplatePrefix.
Anders Carlsson
2009-09-26
Don't crash when trying to mangle function templates.
Anders Carlsson
2009-09-26
Improve mangling of typename types.
Anders Carlsson
2009-09-22
CXXMethodDecls should always be mangled, even if they are inside an extern "C...
Anders Carlsson
2009-09-22
Don't assert that linkage decls are always C++, it's not true. Fixes PR5019.
Anders Carlsson
2009-09-21
Start mangling expressions.
Anders Carlsson
2009-09-18
More mangling goodness.
Anders Carlsson
2009-09-18
Fix error in test.
Anders Carlsson
2009-09-18
Handle mangling of TemplateSpecializationType.
Anders Carlsson
2009-09-17
Ignore extern "C++" { } when mangling.
Anders Carlsson
2009-09-17
Substitute unscoped template names.
Anders Carlsson
2009-09-17
When mangling function template specialization, mangle the type encoding of t...
Anders Carlsson
2009-09-16
Add a simple const mangling test.
Anders Carlsson
2009-05-17
Add support for converting member pointer types to LLVM types. Also mangle po...
Anders Carlsson
2009-05-16
extern "C" should preserve the 'extern' qualifier for VarDecls. Fixes 6853728.
Anders Carlsson
2009-05-15
Name mangling for class template specializations and template arguments.
Anders Carlsson
2009-04-30
only support int128_t on 64-bit and larger targets. 32-bit targets don't
Chris Lattner
2009-04-30
initial support for __[u]int128_t, which should be basically
Chris Lattner
2009-04-13
Use the new guard variable mangling function and get rid of the old code.
Anders Carlsson
2009-04-02
Implement mangling of declarations inside functions.
Anders Carlsson
2009-04-02
Mangle VarDecls correctly.
Anders Carlsson
2009-04-02
Emit code for linkage specifications.
Anders Carlsson
2009-04-01
Implement code generation of namespaces and add mangling tests.
Anders Carlsson
2009-04-01
Fix a mangling bug where functions with no arguments weren't getting the 'v' ...
Anders Carlsson
2009-03-24
Rename clang to clang-cc.
Daniel Dunbar
2009-03-10
Address Doug's comments wrt the mangler and fix Eli's test case
Anders Carlsson
2009-03-07
Make mangling work with anonymous tag types. Doug, please review
Anders Carlsson
2009-02-13
Add basic support for C++ name mangling according to the Itanium C++
Douglas Gregor