Age | Commit message (Expand) | Author |
2010-07-22 | Turn off EH cleanups for __block variables; they caused some internal buildbot | John McCall |
2010-07-21 | Rename LazyCleanup -> Cleanup. No functionality change for these last three | John McCall |
2010-07-21 | Switch some random local-decl cleanups over to using lazy cleanups. Turn on | John McCall |
2010-07-15 | When deferring the emission of declarations with initializers in C++, remember | John McCall |
2010-07-13 | Teach IR generation how to lazily emit cleanups. This has a lot of advantages, | 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 | finally get around to doing a significant cleanup to irgen: | Chris Lattner |
2010-06-26 | Change EmitReferenceBindingToExpr to take a decl instead of a boolean. | Anders Carlsson |
2010-06-22 | Switch over to the new caching version of getMangledName. | Anders Carlsson |
2010-06-15 | Move CodeGenOptions.h *back* into Frontend. This should have been done when the | Chandler Carruth |
2010-06-05 | Added AccessSpecDecl node. | Abramo Bagnara |
2010-05-30 | Convert DeclNodes to use TableGen. | Sean Hunt |
2010-05-28 | This cast is no longer required. | Dan Gohman |
2010-05-26 | Patch to fix a irgen crash accessing an initialized local static | Fariborz Jahanian |
2010-05-25 | If a function definition has any sort of weak linkage, its static local | John McCall |
2010-05-17 | Ensure that destructors are called for NRVO'd objects when the | Douglas Gregor |
2010-05-15 | When applying the named return value optimization, we still need to | Douglas Gregor |
2010-05-15 | Implement a simple form of the C++ named return value optimization for | Douglas Gregor |
2010-05-04 | Emit the globals, metadata, etc. associated with static variables even when | John McCall |
2010-05-04 | Fixes a Code Gen. Crash when calling destructor on a __block | Fariborz Jahanian |
2010-05-03 | Just bail out immediately when emitting an unreachable function-local static | John McCall |
2010-05-02 | Add the same 'ForVirtualBase' parameter to EmitCXXDestructorCall. | Anders Carlsson |
2010-04-23 | I hate default statements. Fixes PR6874. | Douglas Gregor |
2010-04-19 | Some renaming of methods, fixes typo | Fariborz Jahanian |
2010-04-18 | Local static variables must be available module-wise | Fariborz Jahanian |
2010-04-04 | Reapply patch for adding support for address spaces and added a isVolatile fi... | Mon P Wang |
2010-04-02 | Revert r100193 since it causes failures in objc in clang | Mon P Wang |
2010-04-02 | Reapply patch for adding support for address spaces and added a isVolatile fi... | Mon P Wang |
2010-03-30 | Revert Mon Ping's 99930 due to broken llvm-gcc buildbots. | Bob Wilson |
2010-03-30 | Added support for address spaces and added a isVolatile field to memcpy, memm... | Mon P Wang |
2010-03-19 | Change CodeGenModule to rely on the Module's symbol table instead of | John McCall |
2010-03-12 | Fix a rare corner case bug which exposed a serious block API generation | Fariborz Jahanian |
2010-03-10 | set alignment on static locals properly, patch by Arnaud de Grandmaison! | Chris Lattner |
2010-02-09 | IRgen: Add CreateMemTemp, for creating an temporary memory object for a parti... | Daniel Dunbar |
2010-02-08 | Reapply r95393, without the change to CGExpr. I was wrong in assuming that the | Daniel Dunbar |
2010-02-07 | Use the right linkage for static variables inside C++ inline functions. | Anders Carlsson |
2010-02-05 | Revert r95393, which broke Clang's self-host. | Douglas Gregor |
2010-02-05 | IRgen: Use hasAggregateLLVMType instead of isSingleValueType() for cases that | Daniel Dunbar |
2010-02-03 | Revert the new reference binding code; I came up with a way simpler solution ... | Anders Carlsson |
2010-01-31 | Start creating CXXBindReferenceExpr nodes when binding complex types to refer... | Anders Carlsson |
2010-01-27 | Change the return type of ASTContext::getDeclAlignInBytes() to CharUnits and, | Ken Dyck |
2010-01-26 | Introduce CodeGenModule::GetTargetTypeStoreSize() to calculate the store size | Ken Dyck |
2010-01-26 | Make sure to always mark a global variable as not being constant if it has a ... | Anders Carlsson |
2010-01-11 | Roll out ASTContext::getTypeSizeInChars(), replacing instances of | Ken Dyck |
2009-12-24 | Pass ReturnValueSlot to EmitCall. No functionality change yet. | Anders Carlsson |
2009-12-22 | Move the implementation of ASTContext::getTypeSizeInChars() to the .cpp file to | Ken Dyck |
2009-12-18 | Change the return type of ASTContext::getTypeSizeInChars() from uint64_t to the | Ken Dyck |
2009-12-18 | Rename getByteSize() and getTypeSizeInBytes() in ASTContext to getCharWidth() | Ken Dyck |
2009-12-09 | Add cleanups for exceptional edges. WIP. | Mike Stump |