aboutsummaryrefslogtreecommitdiff
path: root/clang/lib/CodeGen/CGDecl.cpp
AgeCommit message (Expand)AuthorFilesLines
2013-02-02Revert r174246, accidentally committed.David Blaikie1-6/+2
2013-02-02BasicsDavid Blaikie1-2/+6
2013-02-01Destroy arrays and ARC fields when throwing out of ctors.John McCall1-1/+12
2013-01-31When we're emitting a constructor or destructor call from a delegatingDouglas Gregor1-1/+3
2013-01-02Rewrite #includes for llvm/Foo.h to llvm/IR/Foo.h as appropriate toChandler Carruth1-4/+4
2012-12-24CGDecl.cpp: Prune three descriptions in two methods, CodeGenFunction::pushIrr...NAKAMURA Takumi1-8/+0
2012-12-21Don't eagerly emit a global static merged with a local extern.Rafael Espindola1-1/+1
2012-12-04Sort all of Clang's files under 'lib', and fix up the broken headersChandler Carruth1-3/+3
2012-11-01Simplify: replace getContext().getLangOpts() with just getLangOpts().Richard Smith1-4/+4
2012-10-23Switch CodeGenOptions over to a .def file, like we do with LangOptions.Douglas Gregor1-5/+7
2012-10-08Move TargetData to DataLayout.Micah Villmow1-2/+2
2012-09-27Revert 'Fix a typo 'iff' => 'if''. iff is an abreviation of if and only if. S...Sylvestre Ledru1-1/+1
2012-09-27Fix a typo 'iff' => 'if'Sylvestre Ledru1-1/+1
2012-08-28CUDA: give correct address space to globals declared in functionsPeter Collingbourne1-1/+3
2012-08-27CodeGen: Hoist check from recursive function to its only callsite.Benjamin Kramer1-4/+4
2012-08-27CodeGen: When emitting stores for an initializer, only emit a GEP if we reall...Benjamin Kramer1-7/+10
2012-06-28Add -ftls-model command-line flag.Hans Wennborg1-12/+6
2012-06-23Support the tls_model attribute (PR9788)Hans Wennborg1-4/+14
2012-06-19objc-arc: captured block variable accessed in its block literalFariborz Jahanian1-0/+8
2012-05-04This patch adds a new Clang compiler flag "-gline-tables-only".Alexey Samsonov1-10/+20
2012-04-13Don't enter cleanups for unreachable variables. It's impossible toJohn McCall1-0/+4
2012-03-30Make sure we unique static-local decls across multiple emissions ofJohn McCall1-17/+25
2012-03-30Revert r153723, and its follow-ups r153728 and r153733.Chandler Carruth1-96/+55
2012-03-30Do the static-locals thing properly in the face of unions andJohn McCall1-61/+84
2012-03-30When emitting a static local variable in C++, handleJohn McCall1-0/+18
2012-03-29Revert r153613 as it's causing large compile-time regressions on the nightly ...Chad Rosier1-3/+2
2012-03-28When we can't prove that the target of an aggregate copy isJohn McCall1-2/+3
2012-03-11Unify naming of LangOptions variable/get function across the Clang stack (Lex...David Blaikie1-5/+5
2012-03-10Remove BlockDeclRefExpr and introduce a bit on DeclRefExpr toJohn McCall1-4/+4
2012-03-09Make sure we update the static local decl address map when we are forced to r...Eli Friedman1-1/+3
2012-02-19Make heap-allocation of std::initializer_list 'work'.Sebastian Redl1-1/+1
2012-02-18Fix comment.Chad Rosier1-1/+1
2012-02-17Basic code generation support for std::initializer_list.Sebastian Redl1-0/+1
2012-02-17Bug fix: do not emit static const local variables with mutable membersRichard Smith1-15/+10
2012-02-17Whether an argument is required (in contrast with being anJohn McCall1-1/+1
2012-02-13Deal with a horrible C++11 special case. If a non-literal type has a constexprRichard Smith1-1/+19
2012-02-09CWG issue 1405: mutable members are allowed in literal types, but can't undergoRichard Smith1-5/+9
2012-01-31enhance some optimization logic to handle ConstantDataSequentialChris Lattner1-9/+26
2012-01-27Placate gcc's -Wreturn-typeMatt Beaumont-Gay1-0/+1
2012-01-26Use function pointers, rather than references, to pass DestroyersPeter Collingbourne1-28/+20
2012-01-16Some improvements to the handling of C11 atomic types:David Chisnall1-8/+8
2012-01-14constexpr irgen: Add irgen support for APValue::Struct, APValue::Union,Richard Smith1-2/+2
2012-01-01Eliminate ObjCForwardProtocolDecl, which is redundant now thatDouglas Gregor1-1/+0
2011-12-30Unrevert r147271, reverted in r147361.Richard Smith1-6/+7
2011-12-27Eliminate ObjCClassDecl, which is redundant now that ObjCInterfaceDeclDouglas Gregor1-1/+0
2011-12-03Switch LValue so that it exposes alignment in CharUnits. (No functional chan...Eli Friedman1-2/+2
2011-12-02Introduce a module import declaration, so that we properly represent, e.g.,Douglas Gregor1-0/+1
2011-12-02Fix wrong-code bug when a const automatic variable of struct type has both aRichard Smith1-7/+10
2011-11-29The cheap version of getName() is sufficient here.Benjamin Kramer1-1/+1
2011-11-21CodeGen: Simplify code.Benjamin Kramer1-6/+3