aboutsummaryrefslogtreecommitdiff
path: root/lib/CodeGen/CGClass.cpp
AgeCommit message (Expand)Author
2013-05-03Correctly emit certain implicit references to 'self' even withinJohn McCall
2013-04-20C++1y: Allow aggregates to have default initializers.Richard Smith
2013-04-16Standardize accesses to the TargetInfo in IR-gen.John McCall
2013-03-20Exploit this-return of a callsite in a this-return function.Manman Ren
2013-03-16revert r177211 due to its potential issuesManman Ren
2013-03-16Exploit this-return of a callsite in a this-return function.Manman Ren
2013-03-07Change hasAggregateLLVMType, which conflates complex andJohn McCall
2013-03-05Use ASTContext::getDeclAlign(<Field Decl>) to get the alignment of the firstLang Hames
2013-02-27Better support for constructors with -cxx-abi microsoft, partly fixes PR12784Timur Iskhodzhanov
2013-02-27Use the correct alignment for POD-member memcpys where the first field is aLang Hames
2013-02-17Re-apply r174919 - smarter copy/move assignment/construction, with fixes forLang Hames
2013-02-13ubsan: Add checking for invalid downcasts. Per [expr.static.cast]p2 and p11,Richard Smith
2013-02-13Emit virtual/deleting destructors properly with -cxx-abi microsoft, PR15058Timur Iskhodzhanov
2013-02-12Backing out r174919 while I investigate a self-host bug on Takumi's builder.Lang Hames
2013-02-11When generating IR for default copy-constructors, copy-assignment operators,Lang Hames
2013-02-01Destroy arrays and ARC fields when throwing out of ctors.John McCall
2013-01-31When we're emitting a constructor or destructor call from a delegatingDouglas Gregor
2013-01-25First pass at abstracting out a class for the target C++ ABI.John McCall
2012-12-24CGClass.cpp: [PR14335] Remove comma-separated \param, for now. [-Wdocumentation]NAKAMURA Takumi
2012-12-20Rename llvm::Attributes to llvm::Attribute.Bill Wendling
2012-12-20Revert r170500. It over-zealously converted *ALL* things named Attributes, wh...Bill Wendling
2012-12-19Rename the 'Attributes' class to 'Attribute'. It's going to represent a singl...Bill Wendling
2012-12-19Change DeclContextLookup(Const)Result to (Mutable)ArrayRef<NamedDecl*>, as pe...David Blaikie
2012-12-13Make sure the __invoke function for lambdas returns properly. Per bug report...Eli Friedman
2012-11-07When deciding whether to convert an array construction loop into a memcpy, lookRichard Smith
2012-11-01Simplify: replace getContext().getLangOpts() with just getLangOpts().Richard Smith
2012-10-23Switch CodeGenOptions over to a .def file, like we do with LangOptions.Douglas Gregor
2012-10-10Have 'addFnAttr' take the attribute enum value. Then have it build the attrib...Bill Wendling
2012-10-09-fcatch-undefined-behavior: emit calls to the runtime library whenever one of...Richard Smith
2012-08-08Fix an assertion failure with a C++ constructor initializing aEli Friedman
2012-08-01When devirtualizing the conversion to a virtual base subobject,John McCall
2012-07-07Distinguish more carefully between free functions and C++ instance methodsJohn McCall
2012-06-06Revert Decl's iterators back to pointer value_type rather than reference valu...David Blaikie
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-20Fix bug 12574 - Avoid infinite recursion in constructors and destructors when...Timur Iskhodzhanov
2012-04-16Propagate alignment on lvalues through EmitLValueForField. PR12395.Eli Friedman
2012-03-30Add a note about a missing optimization in the case of virtualJohn McCall
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-26add tbaa metadata to vtable pointer loads/storesKostya Serebryany
2012-03-11Unify naming of LangOptions variable/get function across the Clang stack (Lex...David Blaikie
2012-03-01Implement "optimization" for lambda-to-block conversion which inlines the gen...Eli Friedman
2012-02-28Prefer bitcast+GEP over ptrtoint+sub+inttoptr: it's semantically equivalent h...Eli Friedman
2012-02-26Ensure that we delete destructors in the right cases. Specifically:Richard Smith
2012-02-25Work-in-progress for lambda conversion-to-block operator. Still need to impl...Eli Friedman
2012-02-19Make heap-allocation of std::initializer_list 'work'.Sebastian Redl
2012-02-19Make std::initializer_list member initializers 'work'.Sebastian Redl
2012-02-17Whether an argument is required (in contrast with being anJohn McCall
2012-02-17Rework the Sema/AST/IRgen dance for the lambda closure type'sDouglas Gregor