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
/
CGExpr.cpp
Commit message (
Expand
)
Author
Age
Files
Lines
*
Renamed ObjCKVCRefExpr to ObjCImplctSetterGetterRefExpr.
Fariborz Jahanian
2009-08-18
1
-4
/
+5
*
Only do this for initializers of course.
Anders Carlsson
2009-08-16
1
-8
/
+10
*
Destroy bound temporaries.
Anders Carlsson
2009-08-16
1
-0
/
+16
*
Add an IsInitializer flag to EmitAnyExpr. This is used to prevent temporaries...
Anders Carlsson
2009-08-16
1
-9
/
+16
*
use GetVLASize instead of accessing VLASizeMap directly, this gets an assert if
Chris Lattner
2009-08-14
1
-1
/
+1
*
Update for LLVM API change.
Owen Anderson
2009-08-13
1
-22
/
+33
*
Use the inbounds variant of getelementptr for common pointer arithmetic.
Dan Gohman
2009-08-12
1
-3
/
+3
*
Update for LLVM API changes.
Owen Anderson
2009-07-30
1
-8
/
+8
*
Canonicalize else spacing.
Mike Stump
2009-07-30
1
-10
/
+5
*
Remove bogus "unsupported" case for vectors (which shouldn't
Eli Friedman
2009-07-30
1
-2
/
+1
*
Update for LLVM API change.
Owen Anderson
2009-07-29
1
-8
/
+8
*
Change uses of:
Ted Kremenek
2009-07-29
1
-3
/
+3
*
Patch to provide cast of objects in member access
Fariborz Jahanian
2009-07-29
1
-16
/
+0
*
Code refactoring to define getCXXRecordDeclForPointerType
Fariborz Jahanian
2009-07-29
1
-10
/
+9
*
Update for LLVM API change.
Owen Anderson
2009-07-28
1
-6
/
+6
*
More cleanup of data member access and then some.
Fariborz Jahanian
2009-07-28
1
-8
/
+16
*
More work toward data member access ir-gen.
Fariborz Jahanian
2009-07-28
1
-0
/
+10
*
Update for LLVM API change.
Owen Anderson
2009-07-24
1
-29
/
+29
*
Move the LLVM field number for bit fields into the BitFieldInfo structure, si...
Anders Carlsson
2009-07-23
1
-7
/
+7
*
Preserve address space information through member accesses, e.g.,
Mon P Wang
2009-07-22
1
-22
/
+47
*
Per offline discussion with Steve Naroff, add back Type::getAsXXXType() methods
Ted Kremenek
2009-07-17
1
-3
/
+3
*
Add member template 'Type::getAs<T>', which converts a Type* to a respective T*.
Ted Kremenek
2009-07-16
1
-3
/
+3
*
Remove ASTContext::isObjCObjectPointerType().
Steve Naroff
2009-07-16
1
-1
/
+1
*
Update for LLVM API change.
Owen Anderson
2009-07-16
1
-1
/
+1
*
Update for LLVM API change, and contextify a bunch of related stuff.
Owen Anderson
2009-07-14
1
-50
/
+52
*
This patch includes a conceptually simple, but very intrusive/pervasive change.
Steve Naroff
2009-07-10
1
-8
/
+9
*
Remove the ASTContext parameter from the attribute-related methods of Decl.
Argyrios Kyrtzidis
2009-06-30
1
-2
/
+2
*
OpenCL 1.0 Support: fix a bug with lvalue swizzles
Nate Begeman
2009-06-26
1
-3
/
+4
*
Move the static DeclAttrs map into ASTContext. Fixes <rdar://problem/6983177>.
Douglas Gregor
2009-06-18
1
-2
/
+3
*
Fix PR4372, another case where non-prototyped functions can prevent
Chris Lattner
2009-06-13
1
-2
/
+1
*
PR4339: make sure to properly extend/trunc the index of a vector element
Eli Friedman
2009-06-06
1
-4
/
+4
*
A corner case of objc2 gc's write-barrier generation
Fariborz Jahanian
2009-06-01
1
-2
/
+2
*
PR4289: Make sure "&func" has the right LLVM type when "func" is a
Eli Friedman
2009-06-01
1
-2
/
+14
*
Emit destructors correctly for temporaries.
Anders Carlsson
2009-05-31
1
-1
/
+1
*
Add lvalue irgen support for CXXBindTemporaryExpr.
Anders Carlsson
2009-05-30
1
-2
/
+13
*
More temporary support.
Anders Carlsson
2009-05-30
1
-1
/
+10
*
Some small fixes for fields of reference type.
Eli Friedman
2009-05-30
1
-0
/
+2
*
Fixup the rest of the trivial cases of the codegen of volatile. If
Mike Stump
2009-05-29
1
-2
/
+3
*
Change a confusing variable name.
Fariborz Jahanian
2009-05-27
1
-3
/
+3
*
Handle operator call expressions where the callee is a member function.
Anders Carlsson
2009-05-27
1
-0
/
+5
*
Add support for emitting calls to functions that return references (as lvalue...
Anders Carlsson
2009-05-27
1
-1
/
+10
*
Rename an EmitCallExpr function to EmitCall to make it clear that it doesn't ...
Anders Carlsson
2009-05-27
1
-6
/
+6
*
Fixup codegen for volatile structs in the trivial cases (a a=a and a=a=a).
Mike Stump
2009-05-26
1
-2
/
+2
*
More volatile fixes. Can't testcase these yet as ultimately volatile
Mike Stump
2009-05-23
1
-1
/
+1
*
Initialize Obj-C GC attributes when emitting BlockDeclRefExprs.
Daniel Dunbar
2009-05-23
1
-1
/
+3
*
Handle the remaining unhandled cases in EmitReferenceBindingToExpr.
Eli Friedman
2009-05-20
1
-15
/
+18
*
irgen for references to complex rvales (Very important...)
Anders Carlsson
2009-05-20
1
-1
/
+7
*
Create a temporary if the lvalue is a bitfield. Reported by Eli.
Anders Carlsson
2009-05-20
1
-1
/
+1
*
Add support for binding references to scalar rvalues.
Anders Carlsson
2009-05-20
1
-0
/
+8
*
Bind references to lvalues correctly.
Anders Carlsson
2009-05-20
1
-0
/
+6
[next]