summaryrefslogtreecommitdiff
path: root/lib/CodeGen/StackColoring.cpp
AgeCommit message (Expand)AuthorFilesLines
2014-04-22[Modules] Remove potential ODR violations by sinking the DEBUG_TYPEChandler Carruth1-1/+2
2014-04-15Break PseudoSourceValue out of the Value hierarchy. It is now the root of its...Nick Lewycky1-7/+2
2014-04-11Implement depth_first and inverse_depth_first range factory functions.David Blaikie1-11/+9
2014-03-31Disable each MachineFunctionPass for 'optnone' functions, unless thatPaul Robinson1-0/+3
2014-03-09StackColoring: Use range-based for loops.Benjamin Kramer1-79/+47
2014-03-09MachineModuleInfo: Turn nested std::pairs into a proper struct.Benjamin Kramer1-9/+6
2014-03-07[C++11] Add 'override' keyword to virtual methods that override their base cl...Craig Topper1-2/+2
2014-03-06[Layering] Move DebugInfo.h into the IR library where its implementationChandler Carruth1-1/+1
2014-03-01Now that we have C++11, turn simple functors into lambdas and remove a ton of...Benjamin Kramer1-15/+7
2014-01-25Disable the use of TBAA when using AA in CodeGenHal Finkel1-0/+7
2014-01-20Update StackProtector when coloring merges stack slotsHal Finkel1-0/+10
2014-01-20Update IR when merging slots in stack coloringHal Finkel1-12/+21
2014-01-13[cleanup] Move the Dominators.h and Verifier.h headers into the IRChandler Carruth1-1/+1
2013-12-05Correct word hyphenationsAlp Toker1-1/+1
2013-10-10Rename LiveRange to LiveInterval::SegmentMatthias Braun1-4/+4
2013-09-28Fix spelling intruction -> instruction.Robert Wilhelm1-1/+1
2013-07-03Use SmallVectorImpl instead of SmallVector for iterators and references to av...Craig Topper1-3/+3
2013-05-15Fix miscompile due to StackColoring incorrectly merging stack slots (PR15707)Derek Schuff1-11/+8
2013-05-14StackColoring: don't clear an instruction's mem operand if the underlyingAkira Hatanaka1-0/+5
2013-03-25Couple more sets of tidying.Eric Christopher1-5/+5
2013-03-25Formatting.Eric Christopher1-4/+4
2013-02-19More const correcting of stack coloring.Craig Topper1-8/+8
2013-02-19Const-correct the stack coloring code.Craig Topper1-18/+15
2013-02-19Avoid extra DenseMap lookups in StackColoring::calculateLocalLiveness.Craig Topper1-18/+32
2013-02-19Make the dump() function const and reduce the number of hash lookups it perfo...Craig Topper1-11/+17
2013-02-19Use a reference into the BlockLiveness DenseMap to avoid repeated hash lookup...Craig Topper1-6/+9
2013-01-29Fixing warnings revealed by gcc release buildEdwin Vane1-3/+2
2013-01-17Move MachineTraceMetrics.h into include/llvm/CodeGen.Jakob Stoklund Olesen1-1/+0
2013-01-02Move all of the header files which are involved in modelling the LLVM IRChandler Carruth1-3/+3
2012-12-21Remove duplicate includes.Roman Divacky1-1/+0
2012-12-03Use the new script to sort the includes of every file under lib.Chandler Carruth1-11/+11
2012-11-15Use std::stable_sort instead of std::sort when sorting stack slotsUlrich Weigand1-1/+3
2012-10-18Clear unknown mem ops when merging stack slots (pr14090)Sebastian Pop1-6/+13
2012-10-18Change MachineFrameInfo::StackObject::Alloca from Value* to AllocaInst*Sebastian Pop1-0/+1
2012-09-17Disable the protection from escaped allocas in an attempt to find violating p...Nadav Rotem1-2/+1
2012-09-13Rename the flag which protects from escaped allocas, which may come from bugs...Nadav Rotem1-5/+12
2012-09-13Fix a typo.Nadav Rotem1-1/+1
2012-09-13Stack Coloring: We have code that checks that all of the uses of allocasNadav Rotem1-5/+17
2012-09-12Add a flag to disable the code that looks for allocas which escaped the lifet...Nadav Rotem1-6/+18
2012-09-12Enable stack-coloring, in hope that the recent fixes will enable correct drag...Nadav Rotem1-1/+1
2012-09-12Stack coloring: remove lifetime intervals which contain escaped allocas.Nadav Rotem1-0/+47
2012-09-11Dragonegg selfhost exposed additional cases where alloca usage moved outside ...Nadav Rotem1-1/+1
2012-09-11Enable stack coloring.Nadav Rotem1-1/+1
2012-09-11Stack Coloring: Dont crash on dbg values which use stack frames.Nadav Rotem1-3/+5
2012-09-10Remove redundant semicolons which are null statements.Dmitri Gribenko1-1/+1
2012-09-10Disable stack coloring because it makes dragonegg fail bootstrapping.Nadav Rotem1-1/+1
2012-09-10Enable stack coloring.Nadav Rotem1-1/+1
2012-09-10Stack Coloring: Handle the case where END markers come before BEGIN markers p...Nadav Rotem1-0/+12
2012-09-10Minor cleanup. No functional change.Nadav Rotem1-3/+3
2012-09-10Stack Coloring: Debug prints to print the slot number and not the array index.Nadav Rotem1-1/+2