aboutsummaryrefslogtreecommitdiff
path: root/lib/CodeGen/CGExpr.cpp
AgeCommit message (Expand)Author
2009-06-30Remove the ASTContext parameter from the attribute-related methods of Decl.Argyrios Kyrtzidis
2009-06-26OpenCL 1.0 Support: fix a bug with lvalue swizzlesNate Begeman
2009-06-18Move the static DeclAttrs map into ASTContext. Fixes <rdar://problem/6983177>.Douglas Gregor
2009-06-13Fix PR4372, another case where non-prototyped functions can prevent Chris Lattner
2009-06-06PR4339: make sure to properly extend/trunc the index of a vector element Eli Friedman
2009-06-01A corner case of objc2 gc's write-barrier generationFariborz Jahanian
2009-06-01PR4289: Make sure "&func" has the right LLVM type when "func" is a Eli Friedman
2009-05-31Emit destructors correctly for temporaries.Anders Carlsson
2009-05-30Add lvalue irgen support for CXXBindTemporaryExpr.Anders Carlsson
2009-05-30More temporary support.Anders Carlsson
2009-05-30Some small fixes for fields of reference type.Eli Friedman
2009-05-29Fixup the rest of the trivial cases of the codegen of volatile. IfMike Stump
2009-05-27Change a confusing variable name.Fariborz Jahanian
2009-05-27Handle operator call expressions where the callee is a member function.Anders Carlsson
2009-05-27Add support for emitting calls to functions that return references (as lvalue...Anders Carlsson
2009-05-27Rename an EmitCallExpr function to EmitCall to make it clear that it doesn't ...Anders Carlsson
2009-05-26Fixup codegen for volatile structs in the trivial cases (a a=a and a=a=a).Mike Stump
2009-05-23More volatile fixes. Can't testcase these yet as ultimately volatileMike Stump
2009-05-23Initialize Obj-C GC attributes when emitting BlockDeclRefExprs.Daniel Dunbar
2009-05-20Handle the remaining unhandled cases in EmitReferenceBindingToExpr.Eli Friedman
2009-05-20irgen for references to complex rvales (Very important...)Anders Carlsson
2009-05-20Create a temporary if the lvalue is a bitfield. Reported by Eli.Anders Carlsson
2009-05-20Add support for binding references to scalar rvalues.Anders Carlsson
2009-05-20Bind references to lvalues correctly.Anders Carlsson
2009-05-20Add EmitReferenceBindingToExpr. Have EmitCallArg use it for now. Doesn't supp...Anders Carlsson
2009-05-19Improve support for irgen of references.Anders Carlsson
2009-05-19Only do the bitcast in EmitStoreOfScalar if the type is a boolean.Anders Carlsson
2009-05-19Pass the destination QualType to EmitStoreOfScalar. No functionality change.Anders Carlsson
2009-05-16Reflow some comments.Mike Stump
2009-05-12implement l-value codegen of comma exprChris Lattner
2009-05-12push GlobalDecl through enough of the CodeGenModule interfacesChris Lattner
2009-05-04Provide basic support for generation of objc2's Fariborz Jahanian
2009-05-03Make codegen for constructors work again.Anders Carlsson
2009-04-25fix PR4067: [Linux kernel] cannot aggregate codegen stmtexpr as lvalue Chris Lattner
2009-04-25Fix pointer addressing and array subscripting of Objective-C interfaceDaniel Dunbar
2009-04-24Clang part of r69947. Reverting back 69574 as it is no longer needed.Sanjiv Gupta
2009-04-23the logic for computing __func__ and friends is really broken:Chris Lattner
2009-04-22Make ObjCInterfaceDecl's const in some more places.Daniel Dunbar
2009-04-21use of predefined identifiers like __func__ at global scope warn in sema,Chris Lattner
2009-04-21Kill ASTContext::[gs]etFieldForDecl, instead we just lookup thingsDaniel Dunbar
2009-04-21Remove LateBoundIVars() runtime interface, it is unused.Daniel Dunbar
2009-04-18Use getAsPointerType instead of using getCanonicalType directly.Daniel Dunbar
2009-04-17tidy some code.Chris Lattner
2009-04-17Implement basic code generation of constructor calls. We can now compile:Anders Carlsson
2009-04-14Fixup whitespacing.Mike Stump
2009-04-14Use hasAttr instead of getAttr for conditionals.Mike Stump
2009-04-14Audit __private_extern__ handling.Daniel Dunbar
2009-04-14Fixup CodeGen for __weak __block variables. Radar 6756266Mike Stump
2009-04-13Update to use hasAttr() instead of getAttr().Daniel Dunbar
2009-04-08Use the new EmitCallArgs function. No indented functionality change.Anders Carlsson