aboutsummaryrefslogtreecommitdiff
path: root/lib/CodeGen/CGExprCXX.cpp
AgeCommit message (Expand)Author
2012-08-25Fix a CodeGen bug where we would skip zero-initialization forEli Friedman
2012-08-24New -fcatch-undefined-behavior features:Richard Smith
2012-08-15Devirtualize calls on glvalues produced by class member access expressions.Richard Smith
2012-08-13Factor out computation of whether a typeid's expression is potentiallyRichard Smith
2012-07-09The delete argument should not be converted to void*.Abramo Bagnara
2012-07-07Distinguish more carefully between free functions and C++ instance methodsJohn McCall
2012-06-28Compare the canonical types and document why we give up on the covariant case.Rafael Espindola
2012-06-28Disable devirtualization when we have covariant returns. I will open a bugRafael Espindola
2012-06-28Don't devirtualize calls when we don't have the correct type of the this pointerRafael Espindola
2012-06-28Fix another issue with devirtualizing calls to final methods by passing themRafael Espindola
2012-06-27Implement John McCall's review of r159212 other than the this pointer notRafael Espindola
2012-06-26Fix a bug in my previous patch: If we are not doing a virtual call becauseRafael Espindola
2012-06-26During codegen of a virtual call we would extract any casts in the expressionRafael Espindola
2012-06-06Revert Decl's iterators back to pointer value_type rather than reference valu...David Blaikie
2012-05-20Zap a bogus assert for delegating constructors. PR12890, part 2.Eli Friedman
2012-04-30Remove the ref/value inconsistency in filter_decl_iterator.David Blaikie
2012-04-27Use enum to set debug info size generated by ClangAlexey Samsonov
2012-04-16Propagate alignment on lvalues through EmitLValueForField. PR12395.Eli Friedman
2012-03-29Revert r153613 as it's causing large compile-time regressions on the nightly ...Chad Rosier
2012-03-28When we can't prove that the target of an aggregate copy isJohn McCall
2012-03-11Unify naming of LangOptions variable/get function across the Clang stack (Lex...David Blaikie
2012-02-29Formatting.Eric Christopher
2012-02-24Reapply r151172 - Unwind path cleanup for array new list initializers - with aChad Rosier
2012-02-23Replace a use of hasTrivialDefaultConstructor() with the appropriateDouglas Gregor
2012-02-22Revert r151172: Unwind path cleanup for array new list initializers.Chad Rosier
2012-02-22Unwind path cleanup for array new list initializers.Sebastian Redl
2012-02-22CodeGen for array new list initializers. Doesn't correctly clean up in the fa...Sebastian Redl
2012-02-19Make heap-allocation of std::initializer_list 'work'.Sebastian Redl
2012-02-17Whether an argument is required (in contrast with being anJohn McCall
2012-02-16Elide copy construction in new expressions. PR11757.Eli Friedman
2012-02-16Revert "Revert "Make CXXNewExpr contain only a single initialier, and not hol...Sebastian Redl
2012-02-16Revert "Make CXXNewExpr contain only a single initialier, and not hold the us...Sebastian Redl
2012-02-16Make CXXNewExpr contain only a single initialier, and not hold the used const...Sebastian Redl
2012-02-14Implement IRGen of lambda expressions which capture arrays.Eli Friedman
2012-02-09Use RAII object for cleanups.Eli Friedman
2012-02-09Refactor lambda IRGen so AggExprEmitter::VisitLambdaExpr does the right thing.Eli Friedman
2012-02-07simplify a bunch of code to use the well-known LLVM IR types computed by Code...Chris Lattner
2011-12-09Make array new on a pointer to data member type work correctly. PR11523.Eli Friedman
2011-12-03Switch LValue so that it exposes alignment in CharUnits. (No functional chan...Eli Friedman
2011-12-03Switch the Alignment argument on AggValueSlot over to CharUnits, per John's r...Eli Friedman
2011-12-03Track alignment in AggValueSlot. No functional change in this patch, but I'l...Eli Friedman
2011-11-10Whenever explicitly activating or deactivating a cleanup, weJohn McCall
2011-10-14PR11124: Don't overwrite memory outside of a base class when performing zero-...Eli Friedman
2011-10-06CUDA: IR generation support for kernel call expressionsPeter Collingbourne
2011-09-15Rewrite this loop to use partial destruction; I'm not sure it'sJohn McCall
2011-09-06Rearrange code so that we pass the right pointer to delete[] when an exceptio...Eli Friedman
2011-09-06When performing a derived-to-base cast on the right-hand side of theDouglas Gregor
2011-08-30Declare and define implicit move constructor and assignment operator.Sebastian Redl
2011-08-26Since the 'is aliased' bit is critical for correctness in C++, itJohn McCall
2011-08-25Use stronger typing for the flags on AggValueSlot and requireJohn McCall