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
*
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
*
Add EmitReferenceBindingToExpr. Have EmitCallArg use it for now. Doesn't supp...
Anders Carlsson
2009-05-20
1
-0
/
+7
*
Improve support for irgen of references.
Anders Carlsson
2009-05-19
1
-4
/
+10
*
Only do the bitcast in EmitStoreOfScalar if the type is a boolean.
Anders Carlsson
2009-05-19
1
-15
/
+12
*
Pass the destination QualType to EmitStoreOfScalar. No functionality change.
Anders Carlsson
2009-05-19
1
-3
/
+3
*
Reflow some comments.
Mike Stump
2009-05-16
1
-11
/
+10
*
implement l-value codegen of comma expr
Chris Lattner
2009-05-12
1
-0
/
+6
*
push GlobalDecl through enough of the CodeGenModule interfaces
Chris Lattner
2009-05-12
1
-1
/
+1
*
Provide basic support for generation of objc2's
Fariborz Jahanian
2009-05-04
1
-1
/
+6
*
Make codegen for constructors work again.
Anders Carlsson
2009-05-03
1
-2
/
+0
*
fix PR4067: [Linux kernel] cannot aggregate codegen stmtexpr as lvalue
Chris Lattner
2009-04-25
1
-2
/
+15
*
Fix pointer addressing and array subscripting of Objective-C interface
Daniel Dunbar
2009-04-25
1
-3
/
+19
*
Clang part of r69947. Reverting back 69574 as it is no longer needed.
Sanjiv Gupta
2009-04-24
1
-5
/
+2
*
the logic for computing __func__ and friends is really broken:
Chris Lattner
2009-04-23
1
-1
/
+4
*
Make ObjCInterfaceDecl's const in some more places.
Daniel Dunbar
2009-04-22
1
-1
/
+1
*
use of predefined identifiers like __func__ at global scope warn in sema,
Chris Lattner
2009-04-21
1
-1
/
+1
*
Kill ASTContext::[gs]etFieldForDecl, instead we just lookup things
Daniel Dunbar
2009-04-21
1
-4
/
+2
*
Remove LateBoundIVars() runtime interface, it is unused.
Daniel Dunbar
2009-04-21
1
-12
/
+0
*
Use getAsPointerType instead of using getCanonicalType directly.
Daniel Dunbar
2009-04-18
1
-10
/
+6
*
tidy some code.
Chris Lattner
2009-04-17
1
-5
/
+2
*
Implement basic code generation of constructor calls. We can now compile:
Anders Carlsson
2009-04-17
1
-0
/
+2
*
Fixup whitespacing.
Mike Stump
2009-04-14
1
-1
/
+1
*
Use hasAttr instead of getAttr for conditionals.
Mike Stump
2009-04-14
1
-1
/
+1
*
Audit __private_extern__ handling.
Daniel Dunbar
2009-04-14
1
-1
/
+1
*
Fixup CodeGen for __weak __block variables. Radar 6756266
Mike Stump
2009-04-14
1
-3
/
+4
*
Update to use hasAttr() instead of getAttr().
Daniel Dunbar
2009-04-13
1
-1
/
+1
*
Use the new EmitCallArgs function. No indented functionality change.
Anders Carlsson
2009-04-08
1
-3
/
+1
*
Pointer width on targets like PIC16 is 16-bit, while the valid index size to ...
Sanjiv Gupta
2009-04-08
1
-2
/
+5
*
Remove some dead code.
Anders Carlsson
2009-04-07
1
-9
/
+5
*
Various fixes to symbols used for Obj-C x86_64 metadata.
Daniel Dunbar
2009-04-07
1
-1
/
+4
*
Add support for calling C++ member functions.
Anders Carlsson
2009-04-03
1
-0
/
+3
*
Support member reference on ?: of struct type.
Daniel Dunbar
2009-03-24
1
-0
/
+20
*
fix CreateTempAlloca to not set a name on the alloca for temporaries
Chris Lattner
2009-03-22
1
-1
/
+2
*
simplify and comment some code better. Make BindRuntimeGlobals
Chris Lattner
2009-03-21
1
-0
/
+1
*
fix the more complex cases by actually codegen'ing the right expr :)
Chris Lattner
2009-03-18
1
-1
/
+1
*
add codegen support for casting an element to a union.
Chris Lattner
2009-03-18
1
-8
/
+25
*
teach codegen to handle noop casts as lvalues.
Chris Lattner
2009-03-18
1
-0
/
+13
*
Minor cleanup for choose expressions: add a helper that returns the
Eli Friedman
2009-03-04
1
-5
/
+1
*
Improved ABI compliance for __block variables. No testcases yet as we
Mike Stump
2009-03-04
1
-39
/
+11
[next]