index
:
bcm5719-llvm
meklort-10.0.0
meklort-10.0.1
ortega-7.0.1
Project Ortega BCM5719 LLVM
Raptor Computing Systems
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
clang
/
lib
/
CodeGen
/
Mangle.cpp
Commit message (
Expand
)
Author
Age
Files
Lines
...
*
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
*
Remove unnecessary ASTContext parameters from isMain and isExternC
Douglas Gregor
2009-09-12
1
-1
/
+1
*
Remove tabs, and whitespace cleanups.
Mike Stump
2009-09-09
1
-61
/
+60
*
Refine vcall offsets. Cleanups. WIP.
Mike Stump
2009-09-07
1
-16
/
+17
*
Overhaul the mangler to use a visitor pattern, at least for types. We can sa...
John McCall
2009-09-05
1
-96
/
+134
*
Install thunks later to fixup overrides. Track space taken by vbase
Mike Stump
2009-09-05
1
-21
/
+16
*
Start emitting ElaboratedTypes in C++ mode. Support the effort in various
John McCall
2009-09-05
1
-0
/
+3
*
Add mangling for covariant thunks.
Mike Stump
2009-09-02
1
-6
/
+48
*
Shorten name.
Mike Stump
2009-09-02
1
-7
/
+6
*
Add mangling for thunks.
Mike Stump
2009-09-02
1
-22
/
+72
*
Disable all recognition of main() in -ffreestanding. Addresses bug #4720.
John McCall
2009-08-15
1
-1
/
+1
*
Add beginnigs of rtti generation, wire up more of -fno-exceptions.
Mike Stump
2009-07-31
1
-0
/
+15
*
Add code to setup the vtable pointer in the constructor. Work in progress.
Mike Stump
2009-07-31
1
-4
/
+16
*
Fix a couple recent ABI regressions noticed during code review (fallout from ...
Steve Naroff
2009-07-22
1
-2
/
+2
*
Implement the ObjC pseudo built-in types as clang "BuiltinType's". I say pseu...
Steve Naroff
2009-07-15
1
-0
/
+2
*
Basic support for C++0x unicode types. Support for literals will follow in a...
Alisdair Meredith
2009-07-14
1
-2
/
+4
*
This patch includes a conceptually simple, but very intrusive/pervasive change.
Steve Naroff
2009-07-10
1
-0
/
+5
*
Remove the ASTContext parameter from the attribute-related methods of Decl.
Argyrios Kyrtzidis
2009-06-30
1
-2
/
+2
*
Improve code generation for function template specializations:
Douglas Gregor
2009-06-29
1
-1
/
+29
*
Implement enough of the 'auto' keyword so we can claim to support N2546.
Anders Carlsson
2009-06-26
1
-0
/
+3
*
Move the static DeclAttrs map into ASTContext. Fixes <rdar://problem/6983177>.
Douglas Gregor
2009-06-18
1
-2
/
+2
*
Simplify mangleFunctionDecl by unnesting a crazy condition. This fixes
Chris Lattner
2009-06-13
1
-13
/
+14
*
Don't try to call getFileCharacteristic if the function declaration has an in...
Anders Carlsson
2009-05-31
1
-2
/
+3
*
Add support for converting member pointer types to LLVM types. Also mangle po...
Anders Carlsson
2009-05-17
1
-1
/
+6
*
Reflow some comments.
Mike Stump
2009-05-16
1
-2
/
+2
[prev]
[next]