aboutsummaryrefslogtreecommitdiff
path: root/clang/lib/CodeGen/CGClass.cpp
AgeCommit message (Expand)AuthorFilesLines
2014-01-25Rename getResultType() on function and method declarations to getReturnType()Alp Toker1-1/+1
2014-01-23CodeGen: Handle PGO counters for constructors and destructorsJustin Bogner1-0/+6
2014-01-20Rename FunctionProtoType accessors from 'arguments' to 'parameters'Alp Toker1-3/+3
2014-01-13[ms-abi] Always generate complete constructors in the Microsoft C++ ABIReid Kleckner1-0/+4
2014-01-07Sort all the #include lines with LLVM's utils/sort_includes.py whichChandler Carruth1-1/+1
2013-12-18Fix comment-code function name mismatchHans Wennborg1-2/+2
2013-12-17[ms-cxxabi] The 'most derived' ctor parameter usually comes lastReid Kleckner1-3/+26
2013-12-13Move C++ destructor emission into CGCXXABIReid Kleckner1-17/+2
2013-12-04[ms-cxxabi] Construct and destroy call arguments in the correct orderReid Kleckner1-20/+5
2013-11-26Remove some unused localsAlp Toker1-1/+0
2013-11-05C++1y sized deallocation: if we have a use, but not a definition, of a sizedRichard Smith1-1/+1
2013-10-30Add CodeGenABITypes.h for use in LLDB.Mark Lacey1-0/+1
2013-10-16[-cxx-abi microsoft] Fix this argument/parameter offsets for virtual destruct...Timur Iskhodzhanov1-3/+6
2013-10-09Initialize vtorDisp in class constructors and destructorsTimur Iskhodzhanov1-0/+3
2013-10-02Thread a SourceLocation into the EmitCheck for "load_invalid_value". This occursNick Lewycky1-5/+7
2013-09-29Implement conversion to function pointer for generic lambdas without captures.Faisal Vali1-12/+21
2013-09-27Abstract out the emission of vtables, add basic support for vtable emission w...Timur Iskhodzhanov1-27/+7
2013-09-11Disable the bool and enum sanitizers when emitting the implicitly-defined copyNick Lewycky1-8/+33
2013-08-25CodeGen: Unify two implementations of canDevirtualizeMemberFunctionCall.Benjamin Kramer1-44/+18
2013-08-21[CGF] Get rid of passing redundant VTable pointer around in CodeGenFunction::...Timur Iskhodzhanov1-9/+4
2013-08-21Abstract out virtual calls and virtual function prologue code generation; imp...Timur Iskhodzhanov1-1/+1
2013-08-07Eliminate CXXConstructorDecl::IsImplicitlyDefined.Jordan Rose1-3/+3
2013-07-22[ms-cxxabi] Emit linkonce complete dtors in TUs that need themReid Kleckner1-3/+8
2013-07-13PR16214, PR14467: DebugInfo: use "RequireCompleteType" to decide when to emit...David Blaikie1-11/+0
2013-06-30Restore r184205 and associated commits (after commit of r185290)Stephen Lin1-11/+2
2013-06-28[ms-cxxabi] Move CodeGenVTables::needsVTTParameter to ItaniumCXXABI.Peter Collingbourne1-7/+8
2013-06-19Revert r184205 and associated patches while investigating issue with broken b...Stephen Lin1-2/+11
2013-06-19Corrections to r184205 ('this'-return optimization) due to the wrong version ...Stephen Lin1-3/+2
2013-06-19[ms-cxxabi] Emit and install appropriately mangled vbtablesReid Kleckner1-1/+2
2013-06-18CodeGen: Have 'this'-returning constructors and destructors to take advantage...Stephen Lin1-11/+3
2013-06-12PR12086, PR15117Richard Smith1-52/+41
2013-05-29[ms-cxxabi] Implement MSVC virtual base adjustmentReid Kleckner1-25/+6
2013-05-07Weaken an assertion in memcpyization to account forJohn McCall1-2/+6
2013-05-03Correctly emit certain implicit references to 'self' even withinJohn McCall1-3/+3
2013-04-20C++1y: Allow aggregates to have default initializers.Richard Smith1-0/+1
2013-04-16Standardize accesses to the TargetInfo in IR-gen.John McCall1-2/+2
2013-03-20Exploit this-return of a callsite in a this-return function.Manman Ren1-4/+13
2013-03-16revert r177211 due to its potential issuesManman Ren1-13/+4
2013-03-16Exploit this-return of a callsite in a this-return function.Manman Ren1-4/+13
2013-03-07Change hasAggregateLLVMType, which conflates complex andJohn McCall1-10/+18
2013-03-05Use ASTContext::getDeclAlign(<Field Decl>) to get the alignment of the firstLang Hames1-3/+1
2013-02-27Better support for constructors with -cxx-abi microsoft, partly fixes PR12784Timur Iskhodzhanov1-43/+56
2013-02-27Use the correct alignment for POD-member memcpys where the first field is aLang Hames1-7/+10
2013-02-17Re-apply r174919 - smarter copy/move assignment/construction, with fixes forLang Hames1-1/+369
2013-02-13ubsan: Add checking for invalid downcasts. Per [expr.static.cast]p2 and p11,Richard Smith1-1/+1
2013-02-13Emit virtual/deleting destructors properly with -cxx-abi microsoft, PR15058Timur Iskhodzhanov1-3/+38
2013-02-12Backing out r174919 while I investigate a self-host bug on Takumi's builder.Lang Hames1-358/+1
2013-02-11When generating IR for default copy-constructors, copy-assignment operators,Lang Hames1-1/+358
2013-02-01Destroy arrays and ARC fields when throwing out of ctors.John McCall1-30/+6
2013-01-31When we're emitting a constructor or destructor call from a delegatingDouglas Gregor1-15/+25