| Commit message (Expand) | Author | Age | Files | Lines |
* | Add support for declaring register contraints in variables. They are only used | Rafael Espindola | 2010-12-30 | 1 | -3/+0 |
* | Correct function name in comment. | Nick Lewycky | 2010-12-30 | 1 | -1/+1 |
* | Simplify mem{cpy, move, set} creation with IRBuilder. | Benjamin Kramer | 2010-12-30 | 1 | -12/+4 |
* | IR Gen. part of API support for __block cxx | Fariborz Jahanian | 2010-12-02 | 1 | -2/+5 |
* | Improve codegen for initializer lists to use memset more aggressively | Chris Lattner | 2010-12-02 | 1 | -3/+2 |
* | attempt to fix a buildbot failure, apparently apache fails to build. | Chris Lattner | 2010-12-02 | 1 | -11/+8 |
* | Enhance the init generation logic to emit a memset followed by a few stores when | Chris Lattner | 2010-12-02 | 1 | -6/+41 |
* | add some infrastructure that will let us codegen | Chris Lattner | 2010-12-01 | 1 | -6/+67 |
* | get some i32/i8/i1 constants from Builder, which is much less painful than | Chris Lattner | 2010-12-01 | 1 | -18/+9 |
* | Declaring local static in global block | Fariborz Jahanian | 2010-11-30 | 1 | -3/+13 |
* | Fix warning: enumeration value 'IndirectField' not handled in switch. | Francois Pichet | 2010-11-21 | 1 | -0/+1 |
* | Fixes synthesis of type for the object which holds info. | Fariborz Jahanian | 2010-11-17 | 1 | -1/+2 |
* | Some cleanup of block API code. | Fariborz Jahanian | 2010-11-15 | 1 | -1/+1 |
* | Simplify the logic for emitting guard variables for template static | John McCall | 2010-11-06 | 1 | -1/+1 |
* | Ensure that static local variables in function templates inherit the | John McCall | 2010-11-02 | 1 | -1/+5 |
* | Death to blocks, or at least the word "block" in one particular obnoxiously | John McCall | 2010-10-15 | 1 | -22/+21 |
* | Re-enable EH cleanups to destroy __block variables, now that we have a moment to | John McCall | 2010-10-06 | 1 | -2/+1 |
* | one piece of code is responsible for the lifetime of every aggregate | John McCall | 2010-09-15 | 1 | -1/+1 |
* | Implement ARM static local initialization guards, which are more compact than | John McCall | 2010-09-08 | 1 | -3/+3 |
* | Local static block variable referecned in its | Fariborz Jahanian | 2010-09-07 | 1 | -3/+4 |
* | Truncate block variable of bool type to i1 when its | Fariborz Jahanian | 2010-09-03 | 1 | -1/+1 |
* | A constant initializer never matches the type of the variable it's | John McCall | 2010-09-03 | 1 | -1/+1 |
* | Revert "Another i1 vs. i8 type mismatch issue. This time", it breaks some pro... | Daniel Dunbar | 2010-09-03 | 1 | -1/+1 |
* | Another i1 vs. i8 type mismatch issue. This time | Fariborz Jahanian | 2010-09-02 | 1 | -1/+1 |
* | De-memberify the VarDecl and FunctionDecl StorageClass enums. | John McCall | 2010-08-26 | 1 | -7/+7 |
* | IRgen: Change Emit{Load,Store}OfScalar to take a required Alignment argument and | Daniel Dunbar | 2010-08-21 | 1 | -3/+5 |
* | IRgen: Use Ty consistently in this function. | Daniel Dunbar | 2010-08-21 | 1 | -5/+4 |
* | Further adjustments to -Wglobal-constructors; works for references and direct | John McCall | 2010-08-02 | 1 | -2/+2 |
* | Turn off EH cleanups for __block variables; they caused some internal buildbot | John McCall | 2010-07-22 | 1 | -1/+3 |
* | Rename LazyCleanup -> Cleanup. No functionality change for these last three | John McCall | 2010-07-21 | 1 | -13/+13 |
* | Switch some random local-decl cleanups over to using lazy cleanups. Turn on | John McCall | 2010-07-21 | 1 | -52/+57 |
* | When deferring the emission of declarations with initializers in C++, remember | John McCall | 2010-07-15 | 1 | -2/+2 |
* | Teach IR generation how to lazily emit cleanups. This has a lot of advantages, | John McCall | 2010-07-13 | 1 | -46/+56 |
* | Validated by nightly-test runs on x86 and x86-64 darwin, including after | John McCall | 2010-07-06 | 1 | -54/+58 |
* | Remove unnecessary ASTContext parameter from | Douglas Gregor | 2010-07-01 | 1 | -1/+1 |
* | finally get around to doing a significant cleanup to irgen: | Chris Lattner | 2010-06-27 | 1 | -7/+6 |
* | Change EmitReferenceBindingToExpr to take a decl instead of a boolean. | Anders Carlsson | 2010-06-26 | 1 | -1/+1 |
* | Switch over to the new caching version of getMangledName. | Anders Carlsson | 2010-06-22 | 1 | -6/+4 |
* | Move CodeGenOptions.h *back* into Frontend. This should have been done when the | Chandler Carruth | 2010-06-15 | 1 | -1/+1 |
* | Added AccessSpecDecl node. | Abramo Bagnara | 2010-06-05 | 1 | -0/+1 |
* | Convert DeclNodes to use TableGen. | Alexis Hunt | 2010-05-30 | 1 | -1/+1 |
* | This cast is no longer required. | Dan Gohman | 2010-05-28 | 1 | -4/+0 |
* | Patch to fix a irgen crash accessing an initialized local static | Fariborz Jahanian | 2010-05-26 | 1 | -2/+3 |
* | If a function definition has any sort of weak linkage, its static local | John McCall | 2010-05-25 | 1 | -8/+8 |
* | Ensure that destructors are called for NRVO'd objects when the | Douglas Gregor | 2010-05-17 | 1 | -3/+31 |
* | When applying the named return value optimization, we still need to | Douglas Gregor | 2010-05-15 | 1 | -2/+5 |
* | Implement a simple form of the C++ named return value optimization for | Douglas Gregor | 2010-05-15 | 1 | -22/+36 |
* | Emit the globals, metadata, etc. associated with static variables even when | John McCall | 2010-05-04 | 1 | -5/+2 |
* | Fixes a Code Gen. Crash when calling destructor on a __block | Fariborz Jahanian | 2010-05-04 | 1 | -4/+9 |
* | Just bail out immediately when emitting an unreachable function-local static | John McCall | 2010-05-03 | 1 | -0/+3 |