summaryrefslogtreecommitdiff
path: root/clang/lib/CodeGen/CGExpr.cpp
AgeCommit message (Expand)Author
2009-11-07Change EmitPointerToDataMemberLValue to take a FieldDecl. No intended functio...Anders Carlsson
2009-10-28random tidyingChris Lattner
2009-10-28adjust for a pending LLVM change.Chris Lattner
2009-10-26Add Code gen support for '->*' operator which fellFariborz Jahanian
2009-10-23Eliminate QualifiedDeclRefExpr, which captured the notion of aDouglas Gregor
2009-10-23Emit calls using the canonical prototype of the called function.John McCall
2009-10-22Complete code gen for '.*' binary expression forFariborz Jahanian
2009-10-21Expand on code gen. for pointer to data members so it worksFariborz Jahanian
2009-10-21Code gen for pointer-to-datamember - WIP.Fariborz Jahanian
2009-10-20Code-gen for CXXZeroInitValueExpr AST passedFariborz Jahanian
2009-10-19Handle emitting the assignment operator when the lhs is a reference. Fixes PR...Anders Carlsson
2009-10-19Twinify CodeGenFunction::CreateTempAllocaDaniel Dunbar
2009-10-18When binding a reference to a temporary, it's important that other temporarie...Anders Carlsson
2009-10-15HandleAnders Carlsson
2009-10-13Simplify pointer creation with the new Type::getInt*Ptr methods.Benjamin Kramer
2009-10-12There is no need to attach debug location info with alloca instruction.Devang Patel
2009-10-06Add support to attach debug info to an instruction.Devang Patel
2009-09-30<rdar://problem/7263113> Make clang produce gcc's objc_assign_StrongCast as a...Fariborz Jahanian
2009-09-25Fixed another code gen bug in objc's new write-barrier API.Fariborz Jahanian
2009-09-24Patch fixes a code gen. bug in generation of objc_assign_ivarFariborz Jahanian
2009-09-24Refactor the representation of qualifiers to bring ExtQualType out of theJohn McCall
2009-09-21Change all the Type::getAsFoo() methods to specializations of Type::getAs().John McCall
2009-09-21Removed -fobjc-newgc-api option. clang now conforms toFariborz Jahanian
2009-09-21Miscellanous fixes in generatation of objc gc's write-barriers.Fariborz Jahanian
2009-09-18Fixed a bug in generation of the new write-barriers when Fariborz Jahanian
2009-09-16patch for generating objc'2 objc_assign_ivar. WIP.Fariborz Jahanian
2009-09-16Starting patch to generate more specific API for objc'sFariborz Jahanian
2009-09-16Removed a superfluous check before settingFariborz Jahanian
2009-09-15Code generation of Conditional operators that are lvalues (but that aren't bi...Anders Carlsson
2009-09-14Implement CodeGenFunction::EmitCXXExprWithTemporariesLValue.Anders Carlsson
2009-09-12Don't use the PredefinedExpr string as the global variable name, these don'tDaniel Dunbar
2009-09-12Handle CK_DerivedToBase when emitting lvalue casts.Anders Carlsson
2009-09-12Add support for __block variables with alignment greater than __alignof(void *).Anders Carlsson
2009-09-12Remove unnecessary ASTContext parameter from FunctionDecl::isBuiltinIDDouglas Gregor
2009-09-11Set the calling convention based on the CGFunctionInfo.Daniel Dunbar
2009-09-10GlobalDecl doesn't have an explicit constructor anymore.Anders Carlsson
2009-09-09If a cast expression needs either a conversion function or a constructor to b...Anders Carlsson
2009-09-09Remove tabs, and whitespace cleanups.Mike Stump
2009-09-09Reflow comments and some minor whitespace fixups.Mike Stump
2009-09-08Vastly improve PredefinedExpr output, both in Sema and CodeGen. Patch by Sam ...Anders Carlsson
2009-09-04Implement AST, semantics, and CodeGen for C++ pseudo-destructorDouglas Gregor
2009-09-01Handle member expressions that return references correctly.Anders Carlsson
2009-09-01Fixed a property getter ir-gen crash.Fariborz Jahanian
2009-08-31Eliminate CXXAdornedMemberExpr entirely. Instead, optionally allocateDouglas Gregor
2009-08-31Rename CXXQualifiedMemberExpr -> CXXAdornedMemberExpr, since we willDouglas Gregor
2009-08-29Patch for code gen. for c-style cast which ends inFariborz Jahanian
2009-08-28ir-gen related patch for type conversionFariborz Jahanian
2009-08-27Clean up CodeGenFunction::EmitCastLValue to use the cast kind. Error Eli Friedman
2009-08-26When a member reference expression includes a qualifier on the memberDouglas Gregor
2009-08-20Using "ObjCImplicitSetterGetterRefExpr" instead of "ObjCImplctSetterGetterRef...Fariborz Jahanian