aboutsummaryrefslogtreecommitdiff
path: root/lib/CodeGen/CodeGenModule.h
AgeCommit message (Expand)Author
2013-02-22Apply the 'nobuiltin' attribute to call sites when the user specifies `-fno-b...Bill Wendling
2013-02-14Pass the target options through to code generation.Bill Wendling
2013-01-31Make sure that the Attribute object represents one attribute only.Bill Wendling
2013-01-25The standard ARM C++ ABI dictates that inline functions areJohn McCall
2013-01-18[ubsan] Add support for -fsanitize-blacklistWill Dietz
2013-01-14Topologically sort the link options generated for modules based onDouglas Gregor
2013-01-14Switch autolinking metadata format over to actual linker options, e.g.,Douglas Gregor
2013-01-14Implement parsing, AST, (de-)serialization, and placeholder globalDouglas Gregor
2013-01-12Remove useless 'llvm::' qualifier from names like StringRef and others that areDmitri Gribenko
2013-01-02Rewrite #includes for llvm/Foo.h to llvm/IR/Foo.h as appropriate toChandler Carruth
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-04Sort all of Clang's files under 'lib', and fix up the broken headersChandler Carruth
2012-11-15Use empty parens for empty function parameter list instead of '(void)'.Dmitri Gribenko
2012-11-06Implement codegen for init_priority attribute properly - make sure itAnton Korobeynikov
2012-10-11Add codegen support for __uuidof().Nico Weber
2012-10-10Remove the final bits of Attributes being declared in the AttributeBill Wendling
2012-10-08Move TargetData to DataLayout.Micah Villmow
2012-09-28Add basic support for adding !tbaa.struct metadata on llvm.memcpy calls forDan Gohman
2012-09-27Revert 'Fix a typo 'iff' => 'if''. iff is an abreviation of if and only if. S...Sylvestre Ledru
2012-09-27Fix a typo 'iff' => 'if'Sylvestre Ledru
2012-09-15Use LLVM_DELETED_FUNCTION in place of 'DO NOT IMPLEMENT' comments.Dmitri Gribenko
2012-06-28Add -ftls-model command-line flag.Hans Wennborg
2012-06-26block literal irgen: several improvements on naming blockFariborz Jahanian
2012-06-23Support the tls_model attribute (PR9788)Hans Wennborg
2012-05-20CUDA: add CodeGen support for global variable address spaces.Peter Collingbourne
2012-05-01Refactor the C++ ABI code a little bit to take advantage ofJohn McCall
2012-03-30Make sure we unique static-local decls across multiple emissions ofJohn McCall
2012-03-30Revert r153723, and its follow-ups r153728 and r153733.Chandler Carruth
2012-03-30Do the static-locals thing properly in the face of unions andJohn 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-09Make sure we update the static local decl address map when we are forced to r...Eli Friedman
2012-03-08Replace MarkVarRequired with a more genericRafael Espindola
2012-03-05Fix a small difference in sema and codegen views of what needs to be output.Rafael Espindola
2012-03-02Reinstate r151879, r151880, reverted in r151922, along with a bugfix forRichard Smith
2012-02-25CodeGen support for global variables of type std::initializer_list<X>.Sebastian Redl
2012-02-17Bug fix: do not emit static const local variables with mutable membersRichard Smith
2012-02-16Teach clang to add metadata tags to calls and invokes in ObjC withDan Gohman
2012-02-13Deal with a horrible C++11 special case. If a non-literal type has a constexprRichard Smith
2012-02-07simplify a bunch of code to use the well-known LLVM IR types computed by Code...Chris Lattner
2012-02-06use cheaper llvm APIs for various bits of IR generation.Chris Lattner
2012-01-20More dead code removal (using -Wunreachable-code)David Blaikie
2012-01-14constexpr irgen: Add irgen support for APValue::Struct, APValue::Union,Richard Smith
2012-01-08objc++: more atomic property api code forFariborz Jahanian
2012-01-06objc++: more code gen stuff for atomic property api,Fariborz Jahanian
2011-12-19Extend the fix for PR9614 to handle inline asm in the outer decl andRafael Espindola
2011-11-22Use static storage duration for file-scope compound literals, even when theyRichard Smith
2011-11-09Remove unnecessary include.Devang Patel