Age | Commit message (Expand) | Author |
2010-08-21 | IRgen: Change Emit{Load,Store}OfScalar to take a required Alignment argument and | Daniel Dunbar |
2010-08-10 | When initializing a static local, pop the guard-abort EH cleanup after | John McCall |
2010-07-30 | Emit global destructors even if the destroyed object has no initializers or has | John McCall |
2010-07-21 | Rename LazyCleanup -> Cleanup. No functionality change for these last three | John McCall |
2010-07-21 | Switch the __cxa_guard_abort cleanup to being a lazy cleanup. | John McCall |
2010-07-15 | When deferring the emission of declarations with initializers in C++, remember | John McCall |
2010-07-06 | When creating functions to run global initializers and destructors, mark them | John McCall |
2010-07-06 | Validated by nightly-test runs on x86 and x86-64 darwin, including after | John McCall |
2010-07-01 | Remove unnecessary ASTContext parameter from | Douglas Gregor |
2010-06-27 | Correctly destroy reference temporaries with global storage. Remove ErrorUnsu... | Anders Carlsson |
2010-06-27 | finally get around to doing a significant cleanup to irgen: | Chris Lattner |
2010-06-27 | tidy up OrderGlobalInits | Chris Lattner |
2010-06-26 | Change EmitReferenceBindingToExpr to take a decl instead of a boolean. | Anders Carlsson |
2010-06-22 | Per Chris's comment, remove another static (this one | Fariborz Jahanian |
2010-06-21 | Avoid using a local static for providing lexical | Fariborz Jahanian |
2010-06-21 | In supporting init-priority, globals with the same init_priority must be | Fariborz Jahanian |
2010-06-21 | Use more efficient API of SmallVector/array_pod_sort | Fariborz Jahanian |
2010-06-21 | IRGen for implementation of init-priority attribute. | Fariborz Jahanian |
2010-06-19 | Fix PR7097, a bad interaction between -fno-use-cxa-atexit and | Chris Lattner |
2010-06-15 | Move CodeGenOptions.h *back* into Frontend. This should have been done when the | Chandler Carruth |
2010-06-08 | On Darwin, initialization and destruction functions should go into the __Stat... | Anders Carlsson |
2010-06-08 | Add a global CreateGlobalInitOrDestructFunction and use it for creating globa... | Anders Carlsson |
2010-06-08 | Rename __tcf_ to __cxx_global_array_dtor. Remove the UniqueAggreDestructorCou... | Anders Carlsson |
2010-06-08 | Move GenerateCXXAggrDestructorHelper to CGDeclCXX.cpp where it belongs. | Anders Carlsson |
2010-06-08 | Simplify GenerateCXXAggrDestructorHelper. | Anders Carlsson |
2010-05-16 | When initializing thread-safe statics, put the call to | Douglas Gregor |
2010-05-16 | Revert r103880 (thread-safe static initialization w/ exceptions), | Douglas Gregor |
2010-05-15 | When initializing thread-safe statics, put the call to | Douglas Gregor |
2010-05-05 | For thread-safe static initialization of local statics with | Douglas Gregor |
2010-05-04 | Emit the globals, metadata, etc. associated with static variables even when | John McCall |
2010-04-26 | emit dtors with the right calling convention in -fno-use-cxa-atexit | Chris Lattner |
2010-03-20 | C++: Add support for -fno-use-cxa-atexit. | Daniel Dunbar |
2010-03-20 | IRgen: Inline GenerateCXXGlobal[VarDecl]InitFunc into sole caller. | Daniel Dunbar |
2010-02-06 | Add support for threadsafe statics, and make them the default (matching gcc). | Anders Carlsson |
2010-02-03 | Revert the new reference binding code; I came up with a way simpler solution ... | Anders Carlsson |
2010-01-25 | global variable that binds reference to a non-lvalue reproted | Fariborz Jahanian |
2010-01-25 | Fix a code gen. bug involving compiling global references. | Fariborz Jahanian |
2010-01-08 | Fix for PR5967: Make const-marking for LLVM globals correct for cases requiring | Eli Friedman |
2009-12-10 | Actually store the pointer into the global variable, spotted by Eli. | Anders Carlsson |
2009-12-10 | Handle emitting static variables that have reference type. | Anders Carlsson |
2009-12-10 | Separate generating code for static variables and global variables. | Anders Carlsson |
2009-12-10 | Move more decl related functions to CGDeclCXX.cpp | Anders Carlsson |
2009-12-10 | Add CGDeclCXX.cpp and move EmitCXXGlobalVarDeclInit there. | Anders Carlsson |