aboutsummaryrefslogtreecommitdiff
path: root/lib/CodeGen/CGExprCXX.cpp
AgeCommit message (Expand)Author
2013-03-13Tighten up the rules for precise lifetime and documentJohn McCall
2013-03-07Change hasAggregateLLVMType, which conflates complex andJohn McCall
2013-02-28Use the actual ABI-determined C calling convention for runtimeJohn McCall
2013-02-15Abstract out emitting the vdtor calls and do it properly when using -cxx-abi ...Timur Iskhodzhanov
2013-02-13Emit virtual/deleting destructors properly with -cxx-abi microsoft, PR15058Timur Iskhodzhanov
2013-02-03CodeGen: Implement hint values for dynamic_cast as described in the Itanium C...Benjamin Kramer
2013-02-03CodeGen: Mark the runtime function __dynamic_cast as readonly & nounwind.Benjamin Kramer
2013-01-31When we're emitting a constructor or destructor call from a delegatingDouglas Gregor
2013-01-02Rewrite #includes for llvm/Foo.h to llvm/IR/Foo.h as appropriate toChandler Carruth
2012-12-04Sort all of Clang's files under 'lib', and fix up the broken headersChandler Carruth
2012-11-01Simplify: replace getContext().getLangOpts() with just getLangOpts().Richard Smith
2012-10-25Cleanup some clang code to use new type functions instead of using cast<>.Micah Villmow
2012-10-25-fcatch-undefined-behavior checking for appropriate vptr value: Clang CodeGen...Richard Smith
2012-10-25When we're devirtualizing a method call, make sure the method has the correct...Eli Friedman
2012-10-23Switch CodeGenOptions over to a .def file, like we do with LangOptions.Douglas Gregor
2012-10-09-fcatch-undefined-behavior: emit calls to the runtime library whenever one of...Richard Smith
2012-09-30CodeGen: Copy tail padding when we're not dealing with a trivial copy assign ...Benjamin Kramer
2012-09-25When performing a ::delete of an object with a virtual destructor,John McCall
2012-09-10Remove redundant semicolons which are null statements.Dmitri Gribenko
2012-09-08-fcatch-undefined-behavior: Factor emission of the creation of, and branch to,Richard Smith
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