summaryrefslogtreecommitdiff
path: root/clang/lib/CodeGen/CGExpr.cpp
AgeCommit message (Expand)Author
2009-08-18Renamed ObjCKVCRefExpr to ObjCImplctSetterGetterRefExpr.Fariborz Jahanian
2009-08-16Only do this for initializers of course.Anders Carlsson
2009-08-16Destroy bound temporaries.Anders Carlsson
2009-08-16Add an IsInitializer flag to EmitAnyExpr. This is used to prevent temporaries...Anders Carlsson
2009-08-14use GetVLASize instead of accessing VLASizeMap directly, this gets an assert if Chris Lattner
2009-08-13Update for LLVM API change.Owen Anderson
2009-08-12Use the inbounds variant of getelementptr for common pointer arithmetic.Dan Gohman
2009-07-30Update for LLVM API changes.Owen Anderson
2009-07-30Canonicalize else spacing.Mike Stump
2009-07-30Remove bogus "unsupported" case for vectors (which shouldn't Eli Friedman
2009-07-29Update for LLVM API change.Owen Anderson
2009-07-29Change uses of:Ted Kremenek
2009-07-29Patch to provide cast of objects in member accessFariborz Jahanian
2009-07-29Code refactoring to define getCXXRecordDeclForPointerTypeFariborz Jahanian
2009-07-28Update for LLVM API change.Owen Anderson
2009-07-28More cleanup of data member access and then some.Fariborz Jahanian
2009-07-28More work toward data member access ir-gen.Fariborz Jahanian
2009-07-24Update for LLVM API change.Owen Anderson
2009-07-23Move the LLVM field number for bit fields into the BitFieldInfo structure, si...Anders Carlsson
2009-07-22Preserve address space information through member accesses, e.g., Mon P Wang
2009-07-17Per offline discussion with Steve Naroff, add back Type::getAsXXXType() methodsTed Kremenek
2009-07-16Add member template 'Type::getAs<T>', which converts a Type* to a respective T*.Ted Kremenek
2009-07-16Remove ASTContext::isObjCObjectPointerType().Steve Naroff
2009-07-16Update for LLVM API change.Owen Anderson
2009-07-14Update for LLVM API change, and contextify a bunch of related stuff.Owen Anderson
2009-07-10This patch includes a conceptually simple, but very intrusive/pervasive change. Steve Naroff
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