summaryrefslogtreecommitdiff
path: root/lib/CodeGen/StackProtector.cpp
Commit message (Expand)AuthorAge
* Access the TargetLoweringInfo from the TargetMachine object instead of cachin...Bill Wendling2013-06-19
* Support OpenBSD's native frame protection conventions.Rafael Espindola2013-06-07
* Remove unused #includes.Bill Wendling2013-03-05
* Add the heuristic to differentiate SSPStrong from SSPRequired.Bill Wendling2013-01-23
* Add the IR attribute 'sspstrong'.Bill Wendling2013-01-23
* Split TargetLowering into a CodeGen and a SelectionDAG part.Benjamin Kramer2013-01-11
* Move all of the header files which are involved in modelling the LLVM IRChandler Carruth2013-01-02
* Remove the Function::getFnAttributes method in favor of using the AttributeSetBill Wendling2012-12-30
* Rename the 'Attributes' class to 'Attribute'. It's going to represent a singl...Bill Wendling2012-12-19
* Use the new script to sort the includes of every file under lib.Chandler Carruth2012-12-03
* Create enums for the different attributes.Bill Wendling2012-10-09
* Move TargetData to DataLayout.Micah Villmow2012-10-08
* Remove the `hasFnAttr' method from Function.Bill Wendling2012-09-26
* Add support for the --param ssp-buffer-size= driver option.Chad Rosier2012-08-21
* Implement stack protectors for structures with character arrays in them.Bill Wendling2012-08-17
* Whitespace cleanup.Bill Wendling2012-08-13
* For non-Darwin platforms, we want to generate stack protectors only forBill Wendling2012-08-07
* Enable stack protectors for all arrays, not just char arrays. rdar://5875909Bob Wilson2011-11-23
* land David Blaikie's patch to de-constify Type, with a few tweaks.Chris Lattner2011-07-18
* Convert CallInst and InvokeInst APIs to use ArrayRef.Jay Foad2011-07-15
* Inline check that's used only once.Bill Wendling2011-03-29
* Rework the logic (and removing the bad check for an unreachable block) so thatBill Wendling2011-03-29
* Don't try to add stack protector logic to a dead basic block. It messes upBill Wendling2011-03-29
* In some cases, the "fail BB dominator" may be null after the BB was split (andBill Wendling2011-03-28
* Fix the GCC test suite issue exposed by r127477, which was caused by stackCameron Zwarich2011-03-11
* Make more passes preserve dominators (or state that they preserve dominators ifCameron Zwarich2011-01-08
* Get rid of static constructors for pass registration. Instead, every pass ex...Owen Anderson2010-10-19
* Now with fewer extraneous semicolons!Owen Anderson2010-10-07
* Reapply r110396, with fixes to appease the Linux buildbot gods.Owen Anderson2010-08-06
* Revert r110396 to fix buildbots.Owen Anderson2010-08-06
* Don't use PassInfo* as a type identifier for passes. Instead, use the addres...Owen Anderson2010-08-05
* Fix batch of converting RegisterPass<> to INTIALIZE_PASS().Owen Anderson2010-07-21
* tighten up this code.Chris Lattner2010-07-06
* Fix up -fstack-protector on linux to use the segmentEric Christopher2010-07-06
* Uniformize the names of type predicates: rather than having isFloatTy andDuncan Sands2010-02-15
* Move remaining stuff to the isInteger predicate.Benjamin Kramer2010-01-05
* Remove VISIBILITY_HIDDEN from class/struct found inside anonymous namespaces.Nick Lewycky2009-10-25
* Neuter stack protectors by only checking character arrays. This is what GCCBill Wendling2009-10-23
* Push LLVMContexts through the IntegerType APIs.Owen Anderson2009-08-13
* Revert yesterday's change by removing the LLVMContext parameter to AllocaInst...Owen Anderson2009-07-15
* Move EVER MORE stuff over to LLVMContext.Owen Anderson2009-07-14
* This started as a small change, I swear. Unfortunately, lots of things call ...Owen Anderson2009-07-09
* Rename PaddedSize to AllocSize, in the hope that thisDuncan Sands2009-05-09
* When we split a basic block, there's a default branch to the newly created BB.Bill Wendling2009-03-06
* Rename getABITypeSize to getTypePaddedSize, asDuncan Sands2009-01-12
* Rename stackprotector_create intrinsic to stackprotector.Bill Wendling2008-11-18
* Remove the stackprotector_check intrinsic. Use a volatile load instead.Bill Wendling2008-11-18
* - Use "moveAfter" instead of "remove/insert" of a basic block.Bill Wendling2008-11-18
* Implement stack protectors as function attributes: "ssp" and "sspreq".Bill Wendling2008-11-13
* Small simplification. Use the iterator already present as the insertion point.Bill Wendling2008-11-10