aboutsummaryrefslogtreecommitdiff
path: root/lib/CodeGen/CGExpr.cpp
AgeCommit message (Expand)Author
2009-11-17More const is always good.Anders Carlsson
2009-11-16Implement most of dynamic_cast. WIP.Mike Stump
2009-11-16Some minor cleanup for EmitCastLValue.Eli Friedman
2009-11-15Implement typeid for class types.Mike Stump
2009-11-14Handle CK_BitCast in EmitCastLValue.Anders Carlsson
2009-11-14Handle CXXDefaultArgExprs in EmitLValue. Fixes PR5484.Anders Carlsson
2009-11-09Explicitly note that pre-inc/dec lvalues are not supported yet, so that itEli Friedman
2009-11-08Add clarifying parens.Daniel Dunbar
2009-11-07Handle member expressions where the member declaration is actually a static v...Anders Carlsson
2009-11-07More LValue related code cleanup.Anders Carlsson
2009-11-07More cleanup, the code is much easier to follow now.Anders Carlsson
2009-11-07Reduce nesting, no functionality change.Anders Carlsson
2009-11-07We only need to call SetObjCNonGC for local variables. No functionality change.Anders Carlsson
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