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
*
Make the comma operator consistently call EnsureInsertPoint.
Eli Friedman
2009-12-07
1
-0
/
+1
*
use new helpers to simplify code.
Chris Lattner
2009-12-06
1
-8
/
+4
*
Make EmitStoreOfScalar generate a more sane representation of boolean stores.
Eli Friedman
2009-12-01
1
-6
/
+1
*
Don't pass false (default) for isVolatile parameter to CreateLoad.
Daniel Dunbar
2009-11-29
1
-2
/
+5
*
Implement IRGen for MemberExpr referring to static member function.
Eli Friedman
2009-11-26
1
-17
/
+24
*
Eliminate CXXConditionDeclExpr with extreme prejudice.
Douglas Gregor
2009-11-25
1
-8
/
+0
*
Rename CleanupScope -> DelayedCleanupBlock. No functionality change.
Douglas Gregor
2009-11-24
1
-1
/
+1
*
Handle base-to-derived casts. Will land test case shortly.
Anders Carlsson
2009-11-23
1
-5
/
+21
*
Clean up EmitPointerToDataMemberBinaryExpr a bit.
Eli Friedman
2009-11-18
1
-7
/
+5
*
More const is always good.
Anders Carlsson
2009-11-17
1
-4
/
+4
*
Implement most of dynamic_cast. WIP.
Mike Stump
2009-11-16
1
-5
/
+15
*
Some minor cleanup for EmitCastLValue.
Eli Friedman
2009-11-16
1
-11
/
+7
*
Implement typeid for class types.
Mike Stump
2009-11-15
1
-0
/
+8
*
Handle CK_BitCast in EmitCastLValue.
Anders Carlsson
2009-11-14
1
-3
/
+12
*
Handle CXXDefaultArgExprs in EmitLValue. Fixes PR5484.
Anders Carlsson
2009-11-14
1
-2
/
+4
*
Explicitly note that pre-inc/dec lvalues are not supported yet, so that it
Eli Friedman
2009-11-09
1
-1
/
+5
*
Add clarifying parens.
Daniel Dunbar
2009-11-08
1
-1
/
+1
*
Handle member expressions where the member declaration is actually a static v...
Anders Carlsson
2009-11-07
1
-0
/
+3
*
More LValue related code cleanup.
Anders Carlsson
2009-11-07
1
-18
/
+27
*
More cleanup, the code is much easier to follow now.
Anders Carlsson
2009-11-07
1
-24
/
+11
*
Reduce nesting, no functionality change.
Anders Carlsson
2009-11-07
1
-18
/
+20
*
We only need to call SetObjCNonGC for local variables. No functionality change.
Anders Carlsson
2009-11-07
1
-3
/
+3
*
Change EmitPointerToDataMemberLValue to take a FieldDecl. No intended functio...
Anders Carlsson
2009-11-07
1
-4
/
+3
*
random tidying
Chris Lattner
2009-10-28
1
-101
/
+104
*
adjust for a pending LLVM change.
Chris Lattner
2009-10-28
1
-3
/
+3
*
Add Code gen support for '->*' operator which fell
Fariborz Jahanian
2009-10-26
1
-1
/
+4
*
Eliminate QualifiedDeclRefExpr, which captured the notion of a
Douglas Gregor
2009-10-23
1
-6
/
+4
*
Emit calls using the canonical prototype of the called function.
John McCall
2009-10-23
1
-3
/
+5
*
Complete code gen for '.*' binary expression for
Fariborz Jahanian
2009-10-22
1
-0
/
+25
*
Expand on code gen. for pointer to data members so it works
Fariborz Jahanian
2009-10-21
1
-3
/
+4
*
Code gen for pointer-to-datamember - WIP.
Fariborz Jahanian
2009-10-21
1
-0
/
+21
*
Code-gen for CXXZeroInitValueExpr AST passed
Fariborz Jahanian
2009-10-20
1
-0
/
+14
*
Handle emitting the assignment operator when the lhs is a reference. Fixes PR...
Anders Carlsson
2009-10-19
1
-0
/
+10
*
Twinify CodeGenFunction::CreateTempAlloca
Daniel Dunbar
2009-10-19
1
-2
/
+2
*
When binding a reference to a temporary, it's important that other temporarie...
Anders Carlsson
2009-10-18
1
-16
/
+22
*
Handle
Anders Carlsson
2009-10-15
1
-3
/
+45
*
Simplify pointer creation with the new Type::getInt*Ptr methods.
Benjamin Kramer
2009-10-13
1
-2
/
+1
*
There is no need to attach debug location info with alloca instruction.
Devang Patel
2009-10-12
1
-5
/
+1
*
Add support to attach debug info to an instruction.
Devang Patel
2009-10-06
1
-1
/
+5
*
<rdar://problem/7263113> Make clang produce gcc's objc_assign_StrongCast as a...
Fariborz Jahanian
2009-09-30
1
-1
/
+11
*
Fixed another code gen bug in objc's new write-barrier API.
Fariborz Jahanian
2009-09-25
1
-1
/
+2
*
Patch fixes a code gen. bug in generation of objc_assign_ivar
Fariborz Jahanian
2009-09-24
1
-2
/
+13
*
Refactor the representation of qualifiers to bring ExtQualType out of the
John McCall
2009-09-24
1
-99
/
+59
*
Change all the Type::getAsFoo() methods to specializations of Type::getAs().
John McCall
2009-09-21
1
-6
/
+6
*
Removed -fobjc-newgc-api option. clang now conforms to
Fariborz Jahanian
2009-09-21
1
-2
/
+1
*
Miscellanous fixes in generatation of objc gc's write-barriers.
Fariborz Jahanian
2009-09-21
1
-17
/
+13
*
Fixed a bug in generation of the new write-barriers when
Fariborz Jahanian
2009-09-18
1
-1
/
+11
*
patch for generating objc'2 objc_assign_ivar. WIP.
Fariborz Jahanian
2009-09-16
1
-14
/
+9
*
Starting patch to generate more specific API for objc's
Fariborz Jahanian
2009-09-16
1
-2
/
+37
*
Removed a superfluous check before setting
Fariborz Jahanian
2009-09-16
1
-2
/
+1
[next]