| Commit message (Expand) | Author | Age | Files | Lines |
* | Create enums for the different attributes. | Bill Wendling | 2012-10-09 | 1 | -2/+2 |
* | Move TargetData to DataLayout. | Micah Villmow | 2012-10-08 | 1 | -2/+2 |
* | Remove the `hasFnAttr' method from Function. | Bill Wendling | 2012-09-26 | 1 | -2/+2 |
* | Add support for the --param ssp-buffer-size= driver option. | Chad Rosier | 2012-08-21 | 1 | -9/+3 |
* | Implement stack protectors for structures with character arrays in them. | Bill Wendling | 2012-08-17 | 1 | -15/+40 |
* | Whitespace cleanup. | Bill Wendling | 2012-08-13 | 1 | -7/+7 |
* | For non-Darwin platforms, we want to generate stack protectors only for | Bill Wendling | 2012-08-07 | 1 | -1/+10 |
* | Enable stack protectors for all arrays, not just char arrays. rdar://5875909 | Bob Wilson | 2011-11-23 | 1 | -6/+1 |
* | land David Blaikie's patch to de-constify Type, with a few tweaks. | Chris Lattner | 2011-07-18 | 1 | -2/+2 |
* | Convert CallInst and InvokeInst APIs to use ArrayRef. | Jay Foad | 2011-07-15 | 1 | -1/+1 |
* | Inline check that's used only once. | Bill Wendling | 2011-03-29 | 1 | -2/+1 |
* | Rework the logic (and removing the bad check for an unreachable block) so that | Bill Wendling | 2011-03-29 | 1 | -8/+5 |
* | Don't try to add stack protector logic to a dead basic block. It messes up | Bill Wendling | 2011-03-29 | 1 | -1/+2 |
* | In some cases, the "fail BB dominator" may be null after the BB was split (and | Bill Wendling | 2011-03-28 | 1 | -1/+2 |
* | Fix the GCC test suite issue exposed by r127477, which was caused by stack | Cameron Zwarich | 2011-03-11 | 1 | -3/+3 |
* | Make more passes preserve dominators (or state that they preserve dominators if | Cameron Zwarich | 2011-01-08 | 1 | -0/+18 |
* | Get rid of static constructors for pass registration. Instead, every pass ex... | Owen Anderson | 2010-10-19 | 1 | -2/+6 |
* | Now with fewer extraneous semicolons! | Owen Anderson | 2010-10-07 | 1 | -1/+1 |
* | Reapply r110396, with fixes to appease the Linux buildbot gods. | Owen Anderson | 2010-08-06 | 1 | -2/+2 |
* | Revert r110396 to fix buildbots. | Owen Anderson | 2010-08-06 | 1 | -2/+2 |
* | Don't use PassInfo* as a type identifier for passes. Instead, use the addres... | Owen Anderson | 2010-08-05 | 1 | -2/+2 |
* | Fix batch of converting RegisterPass<> to INTIALIZE_PASS(). | Owen Anderson | 2010-07-21 | 1 | -2/+2 |
* | tighten up this code. | Chris Lattner | 2010-07-06 | 1 | -12/+7 |
* | Fix up -fstack-protector on linux to use the segment | Eric Christopher | 2010-07-06 | 1 | -2/+15 |
* | Uniformize the names of type predicates: rather than having isFloatTy and | Duncan Sands | 2010-02-15 | 1 | -1/+1 |
* | Move remaining stuff to the isInteger predicate. | Benjamin Kramer | 2010-01-05 | 1 | -1/+1 |
* | Remove VISIBILITY_HIDDEN from class/struct found inside anonymous namespaces. | Nick Lewycky | 2009-10-25 | 1 | -1/+1 |
* | Neuter stack protectors by only checking character arrays. This is what GCC | Bill Wendling | 2009-10-23 | 1 | -1/+6 |
* | Push LLVMContexts through the IntegerType APIs. | Owen Anderson | 2009-08-13 | 1 | -4/+7 |
* | Revert yesterday's change by removing the LLVMContext parameter to AllocaInst... | Owen Anderson | 2009-07-15 | 1 | -1/+1 |
* | Move EVER MORE stuff over to LLVMContext. | Owen Anderson | 2009-07-14 | 1 | -1/+1 |
* | This started as a small change, I swear. Unfortunately, lots of things call ... | Owen Anderson | 2009-07-09 | 1 | -1/+1 |
* | Rename PaddedSize to AllocSize, in the hope that this | Duncan Sands | 2009-05-09 | 1 | -1/+1 |
* | When we split a basic block, there's a default branch to the newly created BB. | Bill Wendling | 2009-03-06 | 1 | -0/+3 |
* | Rename getABITypeSize to getTypePaddedSize, as | Duncan Sands | 2009-01-12 | 1 | -1/+1 |
* | Rename stackprotector_create intrinsic to stackprotector. | Bill Wendling | 2008-11-18 | 1 | -1/+1 |
* | Remove the stackprotector_check intrinsic. Use a volatile load instead. | Bill Wendling | 2008-11-18 | 1 | -6/+4 |
* | - Use "moveAfter" instead of "remove/insert" of a basic block. | Bill Wendling | 2008-11-18 | 1 | -103/+104 |
* | Implement stack protectors as function attributes: "ssp" and "sspreq". | Bill Wendling | 2008-11-13 | 1 | -14/+12 |
* | Small simplification. Use the iterator already present as the insertion point. | Bill Wendling | 2008-11-10 | 1 | -4/+3 |
* | - Make sure that we don't over-increment the iterator when going through the | Bill Wendling | 2008-11-10 | 1 | -7/+8 |
* | - Modify the stack protector algorithm so that the stack slot is allocated in | Bill Wendling | 2008-11-07 | 1 | -31/+29 |
* | Remove unneeded header file. | Bill Wendling | 2008-11-06 | 1 | -1/+0 |
* | Don't build a vector of returns. Just modify the Function in the loop. | Bill Wendling | 2008-11-06 | 1 | -46/+49 |
* | The size limit is for individual arrays. So if any array has more than 8 bytes | Bill Wendling | 2008-11-06 | 1 | -5/+3 |
* | - Rename stackprotector_{prologue,epilogue} to stackprotector_{create,check}. | Bill Wendling | 2008-11-06 | 1 | -2/+2 |
* | Adjust the stack protector heuristic to care about only arrays or calls to | Bill Wendling | 2008-11-06 | 1 | -1/+9 |
* | Implement the stack protector stack accesses via intrinsics: | Bill Wendling | 2008-11-06 | 1 | -9/+11 |
* | Remove dead variable. | Bill Wendling | 2008-11-05 | 1 | -1/+0 |
* | Simplify the allocated size calculation. | Bill Wendling | 2008-11-05 | 1 | -3/+3 |