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
Commit message (
Expand
)
Author
Age
Files
Lines
*
Move the implementation of ASTContext::getTypeSizeInChars() to the .cpp file to
Ken Dyck
2009-12-22
1
-0
/
+1
*
Make sure that we mangle overloaded operators that are member functions corre...
Anders Carlsson
2009-12-22
1
-7
/
+22
*
x86_64: Structures with no fields but which have padding should be classified as
Daniel Dunbar
2009-12-22
1
-0
/
+4
*
Eliminate the ASTContext argument to CXXConstructorDecl::isCopyConstructor, s...
Douglas Gregor
2009-12-22
2
-3
/
+3
*
Improve on my previous fix for debug information. Rather than
Douglas Gregor
2009-12-21
1
-51
/
+42
*
Teach debug info generation to handle TemplateSpecializationType,
Douglas Gregor
2009-12-21
1
-3
/
+50
*
Incomplete structs should also have internal linkage.
Anders Carlsson
2009-12-21
1
-9
/
+76
*
Correcly handle pointers to member pointer types where the class or the point...
Anders Carlsson
2009-12-20
1
-42
/
+48
*
Rework the way pointer types are handled by the RTTI builder. We now get the ...
Anders Carlsson
2009-12-20
1
-101
/
+354
*
Remove ';' after method definition. Noticed by clang++, which one would think
Daniel Dunbar
2009-12-19
3
-18
/
+18
*
Fix for PR5524: make reference binding in default argument work correctly.
Eli Friedman
2009-12-19
1
-1
/
+4
*
Work in progress for setting the vtable pointers for all bases correctly in
Eli Friedman
2009-12-18
3
-13
/
+63
*
Cleanup switch so it doesn't have a default case.
Eli Friedman
2009-12-18
1
-1
/
+7
*
Fix for PR5830: fix the computation of the offset to a virtual base.
Eli Friedman
2009-12-18
1
-3
/
+36
*
Fix a few MSVC warnings.
Daniel Dunbar
2009-12-18
1
-3
/
+1
*
CK_UserDefinedConversion is a valid kind when doing copy ctor elision.
Anders Carlsson
2009-12-18
1
-1
/
+2
*
Change the return type of ASTContext::getTypeSizeInChars() from uint64_t to the
Ken Dyck
2009-12-18
1
-1
/
+2
*
Rename getByteSize() and getTypeSizeInBytes() in ASTContext to getCharWidth()
Ken Dyck
2009-12-18
1
-1
/
+1
*
Fix regression I introduced when dynamic_cast-ing to a reference type.
Anders Carlsson
2009-12-18
1
-1
/
+1
*
It's perfectly fine to see UserDefinedConversion casts when emitting scalar e...
Anders Carlsson
2009-12-18
1
-1
/
+1
*
Address some of Anders comments
Douglas Gregor
2009-12-18
1
-4
/
+8
*
Switch the initialization required by return statements over to the
Douglas Gregor
2009-12-18
1
-3
/
+6
*
Add -dwarf-debug-flags, which provides a way to embed the cc1 level options used
Daniel Dunbar
2009-12-18
1
-7
/
+3
*
Handle case when DestPtr is 0.
Mike Stump
2009-12-18
1
-3
/
+22
*
Rename GetAddrOfRTTI to GetAddrOfRTTIDescriptor. Remove the overload that tak...
Anders Carlsson
2009-12-17
5
-81
/
+69
*
Ensure we run cleanups for CXXTemporaries on the exceptional edge. WIP.
Mike Stump
2009-12-17
2
-1
/
+48
*
Simplify RTTIBuilder::finish.
Anders Carlsson
2009-12-17
1
-11
/
+9
*
Move the Info vector into the RTTIBuilder struct. No functionality change.
Anders Carlsson
2009-12-17
1
-18
/
+19
*
Fix for PR5801: codegen memcpy, memmove, memset directly to LLVM intrinsics.
Eli Friedman
2009-12-17
1
-0
/
+3
*
When value-initializing a class with no user-defined constructors but
Douglas Gregor
2009-12-16
2
-1
/
+7
*
Baby steps towards fixing PR5589. If a class needs a vtable pointer, add one.
Anders Carlsson
2009-12-16
2
-0
/
+21
*
Use GetAddrOfRTTI everywhere and remove GenerateRTTI and GenerateRTTIRef. Wit...
Anders Carlsson
2009-12-16
4
-38
/
+8
*
Handle ImplicitValueInitExpr in AggExprEmitter.
Anders Carlsson
2009-12-16
1
-2
/
+8
*
Mangle CXXOperatorCallExprs, fixes PR5796.
Anders Carlsson
2009-12-16
1
-0
/
+10
*
Add an addition check for undefined behavior for when we hit a
Mike Stump
2009-12-16
1
-0
/
+2
*
Implement additional undefined checks for additional loads and stores. WIP.
Mike Stump
2009-12-16
3
-4
/
+49
*
Fixes a code gen bug related to accessing a now
Fariborz Jahanian
2009-12-15
1
-0
/
+1
*
ShouldDestroyTemporaries? I don't think so.
Anders Carlsson
2009-12-15
2
-15
/
+3
*
update to match LLVM API change:
Chris Lattner
2009-12-15
1
-8
/
+7
*
Fix a small bug in ComputeMethodVtableIndices.
Eli Friedman
2009-12-15
1
-2
/
+10
*
Don't force the emission of destructor definitions.
Eli Friedman
2009-12-15
1
-3
/
+3
*
Fix spacing.
Mike Stump
2009-12-15
1
-1
/
+1
*
Ensure we preserve line information for each trap for
Mike Stump
2009-12-15
1
-1
/
+9
*
Switch codegen for -fcatch-undefined-bahavior over to __builtin_trap
Mike Stump
2009-12-15
4
-26
/
+20
*
We have to allow one to form an address for one past the end. WIP.
Mike Stump
2009-12-14
1
-1
/
+1
*
Add support for detecting undefined shift behavior. WIP.
Mike Stump
2009-12-14
3
-7
/
+27
*
Patch to fix 32-bit @try failure with internal assertion when compiling
Fariborz Jahanian
2009-12-14
1
-2
/
+5
*
Simplifiy.
Mike Stump
2009-12-14
1
-16
/
+3
*
Revert mmx palignr to use an intrinsic, since mmx shuffle patterns are missing.
Nate Begeman
2009-12-14
1
-1
/
+4
*
Support x86's PALIGNR instruction without the use of a palignr intrinsic.
Nate Begeman
2009-12-14
1
-4
/
+32
[next]