aboutsummaryrefslogtreecommitdiffstats
path: root/lib/CodeGen/StackProtector.cpp
Commit message (Expand)AuthorAgeFilesLines
* Enable stack protectors for all arrays, not just char arrays. rdar://5875909Bob Wilson2011-11-231-6/+1
* land David Blaikie's patch to de-constify Type, with a few tweaks.Chris Lattner2011-07-181-2/+2
* Convert CallInst and InvokeInst APIs to use ArrayRef.Jay Foad2011-07-151-1/+1
* Inline check that's used only once.Bill Wendling2011-03-291-2/+1
* Rework the logic (and removing the bad check for an unreachable block) so thatBill Wendling2011-03-291-8/+5
* Don't try to add stack protector logic to a dead basic block. It messes upBill Wendling2011-03-291-1/+2
* In some cases, the "fail BB dominator" may be null after the BB was split (andBill Wendling2011-03-281-1/+2
* Fix the GCC test suite issue exposed by r127477, which was caused by stackCameron Zwarich2011-03-111-3/+3
* Make more passes preserve dominators (or state that they preserve dominators ifCameron Zwarich2011-01-081-0/+18
* Get rid of static constructors for pass registration. Instead, every pass ex...Owen Anderson2010-10-191-2/+6
* Now with fewer extraneous semicolons!Owen Anderson2010-10-071-1/+1
* Reapply r110396, with fixes to appease the Linux buildbot gods.Owen Anderson2010-08-061-2/+2
* Revert r110396 to fix buildbots.Owen Anderson2010-08-061-2/+2
* Don't use PassInfo* as a type identifier for passes. Instead, use the addres...Owen Anderson2010-08-051-2/+2
* Fix batch of converting RegisterPass<> to INTIALIZE_PASS().Owen Anderson2010-07-211-2/+2
* tighten up this code.Chris Lattner2010-07-061-12/+7
* Fix up -fstack-protector on linux to use the segmentEric Christopher2010-07-061-2/+15
* Uniformize the names of type predicates: rather than having isFloatTy andDuncan Sands2010-02-151-1/+1
* Move remaining stuff to the isInteger predicate.Benjamin Kramer2010-01-051-1/+1
* Remove VISIBILITY_HIDDEN from class/struct found inside anonymous namespaces.Nick Lewycky2009-10-251-1/+1
* Neuter stack protectors by only checking character arrays. This is what GCCBill Wendling2009-10-231-1/+6
* Push LLVMContexts through the IntegerType APIs.Owen Anderson2009-08-131-4/+7
* Revert yesterday's change by removing the LLVMContext parameter to AllocaInst...Owen Anderson2009-07-151-1/+1
* Move EVER MORE stuff over to LLVMContext.Owen Anderson2009-07-141-1/+1
* This started as a small change, I swear. Unfortunately, lots of things call ...Owen Anderson2009-07-091-1/+1
* Rename PaddedSize to AllocSize, in the hope that thisDuncan Sands2009-05-091-1/+1
* When we split a basic block, there's a default branch to the newly created BB.Bill Wendling2009-03-061-0/+3
* Rename getABITypeSize to getTypePaddedSize, asDuncan Sands2009-01-121-1/+1
* Rename stackprotector_create intrinsic to stackprotector.Bill Wendling2008-11-181-1/+1
* Remove the stackprotector_check intrinsic. Use a volatile load instead.Bill Wendling2008-11-181-6/+4
* - Use "moveAfter" instead of "remove/insert" of a basic block.Bill Wendling2008-11-181-103/+104
* Implement stack protectors as function attributes: "ssp" and "sspreq".Bill Wendling2008-11-131-14/+12
* Small simplification. Use the iterator already present as the insertion point.Bill Wendling2008-11-101-4/+3
* - Make sure that we don't over-increment the iterator when going through theBill Wendling2008-11-101-7/+8
* - Modify the stack protector algorithm so that the stack slot is allocated inBill Wendling2008-11-071-31/+29
* Remove unneeded header file.Bill Wendling2008-11-061-1/+0
* Don't build a vector of returns. Just modify the Function in the loop.Bill Wendling2008-11-061-46/+49
* The size limit is for individual arrays. So if any array has more than 8 bytesBill Wendling2008-11-061-5/+3
* - Rename stackprotector_{prologue,epilogue} to stackprotector_{create,check}.Bill Wendling2008-11-061-2/+2
* Adjust the stack protector heuristic to care about only arrays or calls toBill Wendling2008-11-061-1/+9
* Implement the stack protector stack accesses via intrinsics:Bill Wendling2008-11-061-9/+11
* Remove dead variable.Bill Wendling2008-11-051-1/+0
* Simplify the allocated size calculation.Bill Wendling2008-11-051-3/+3
* Fix commentBill Wendling2008-11-051-1/+2
* Some code simplification. It now doesn't generate a prologue if the epilogueBill Wendling2008-11-051-61/+47
* Small simplification of the stack guard type.Bill Wendling2008-11-041-4/+3
* - Add a "getOrInsertGlobal" method to the Module class. This acts similarly toBill Wendling2008-11-041-14/+11
* Update in response to feedback from Chris:Bill Wendling2008-11-041-28/+34
* Initial checkin for stack protectors. Here's what it does:Bill Wendling2008-11-041-0/+228