aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/CodeGen/StackProtector.cpp
AgeCommit message (Expand)AuthorFilesLines
2014-04-22[Modules] Remove potential ODR violations by sinking the DEBUG_TYPEChandler Carruth1-1/+2
2014-04-17[stack protector] Make the StackProtector pass respect ssp-buffer-size.Josh Magee1-3/+3
2014-04-14[C++11] More 'nullptr' conversion. In some cases just using a boolean check i...Craig Topper1-7/+7
2014-03-09[C++11] Add range based accessors for the Use-Def chain of a Value.Chandler Carruth1-3/+1
2014-03-02[C++11] Replace llvm::next and llvm::prior with std::next and std::prev.Benjamin Kramer1-2/+1
2014-01-21Checked return warning from coverityRenato Golin1-2/+3
2014-01-20Update StackProtector when coloring merges stack slotsHal Finkel1-0/+21
2014-01-13[PM] Split DominatorTree into a concrete analysis result object whichChandler Carruth1-1/+3
2014-01-07Re-sort all of the includes with ./utils/sort_includes.py so thatChandler Carruth1-2/+2
2013-12-19[stackprotector] Use analysis from the StackProtector pass for stack layout i...Josh Magee1-1/+0
2013-10-30Reformat code with clang-format.Josh Magee1-37/+40
2013-10-29[stackprotector] Update the StackProtector pass to perform datalayout analysis.Josh Magee1-27/+60
2013-09-27[stackprotector] Refactor the StackProtector pass from a single .cpp file int...Josh Magee1-70/+1
2013-09-09[stackprotector] Modernize code with IRBuilderBenjamin Kramer1-32/+17
2013-08-20[stackprotector] Small cleanup.Michael Gottesman1-1/+2
2013-08-20[stackprotector] Small Bit of computation hoisting.Michael Gottesman1-5/+5
2013-08-20[stackprotector] Added significantly longer comment to FindPotentialTailCall ...Michael Gottesman1-1/+6
2013-08-20Removed trailing whitespace.Michael Gottesman1-18/+18
2013-08-20[stackprotector] Removed stale TODO.Michael Gottesman1-6/+3
2013-08-20[stackprotector] Added support for emitting the llvm intrinsic stack protecto...Michael Gottesman1-49/+150
2013-08-09[stackprotector] Simplify SP Pass so that we emit different fail basic blocks...Michael Gottesman1-10/+10
2013-07-22[stackprotector] Refactored ssp prologue creation code into its own helper fu...Michael Gottesman1-35/+41
2013-07-22Recommit r186217 with testcase fix:Bill Wendling1-7/+19
2013-07-13Revert commit r186217 -- this is breaking bots:Chandler Carruth1-19/+7
2013-07-12Use the function attributes to pass along the stack protector buffer size.Bill Wendling1-7/+19
2013-06-19Access the TargetLoweringInfo from the TargetMachine object instead of cachin...Bill Wendling1-7/+9
2013-06-07Support OpenBSD's native frame protection conventions.Rafael Espindola1-11/+36
2013-03-05Remove unused #includes.Bill Wendling1-1/+0
2013-01-23Add the heuristic to differentiate SSPStrong from SSPRequired.Bill Wendling1-23/+103
2013-01-23Add the IR attribute 'sspstrong'.Bill Wendling1-0/+6
2013-01-11Split TargetLowering into a CodeGen and a SelectionDAG part.Benjamin Kramer1-3/+3
2013-01-02Move all of the header files which are involved in modelling the LLVM IRChandler Carruth1-8/+8
2012-12-30Remove the Function::getFnAttributes method in favor of using the AttributeSetBill Wendling1-2/+4
2012-12-19Rename the 'Attributes' class to 'Attribute'. It's going to represent a singl...Bill Wendling1-2/+2
2012-12-03Use the new script to sort the includes of every file under lib.Chandler Carruth1-2/+2
2012-10-09Create enums for the different attributes.Bill Wendling1-2/+2
2012-10-08Move TargetData to DataLayout.Micah Villmow1-2/+2
2012-09-26Remove the `hasFnAttr' method from Function.Bill Wendling1-2/+2
2012-08-21Add support for the --param ssp-buffer-size= driver option.Chad Rosier1-9/+3
2012-08-17Implement stack protectors for structures with character arrays in them.Bill Wendling1-15/+40
2012-08-13Whitespace cleanup.Bill Wendling1-7/+7
2012-08-07For non-Darwin platforms, we want to generate stack protectors only forBill Wendling1-1/+10
2011-11-23Enable stack protectors for all arrays, not just char arrays. rdar://5875909Bob Wilson1-6/+1
2011-07-18land David Blaikie's patch to de-constify Type, with a few tweaks.Chris Lattner1-2/+2
2011-07-15Convert CallInst and InvokeInst APIs to use ArrayRef.Jay Foad1-1/+1
2011-03-29Inline check that's used only once.Bill Wendling1-2/+1
2011-03-29Rework the logic (and removing the bad check for an unreachable block) so thatBill Wendling1-8/+5
2011-03-29Don't try to add stack protector logic to a dead basic block. It messes upBill Wendling1-1/+2
2011-03-28In some cases, the "fail BB dominator" may be null after the BB was split (andBill Wendling1-1/+2
2011-03-11Fix the GCC test suite issue exposed by r127477, which was caused by stackCameron Zwarich1-3/+3