aboutsummaryrefslogtreecommitdiffstats
path: root/lib/CodeGen/StackColoring.cpp
Commit message (Expand)AuthorAgeFilesLines
* Update aosp/master LLVM for rebase to r235153Pirama Arumuga Nainar2015-05-181-1/+1
* Update aosp/master llvm for rebase to r233350Pirama Arumuga Nainar2015-04-091-1/+1
* Update aosp/master LLVM for rebase to r230699.Stephen Hines2015-03-231-1/+2
* Update aosp/master LLVM for rebase to r222494.Stephen Hines2014-12-021-1/+1
* Update LLVM for 3.5 rebase (r209712).Stephen Hines2014-05-291-19/+13
* Update to LLVM 3.5a.Stephen Hines2014-04-241-120/+106
* Rename LiveRange to LiveInterval::SegmentMatthias Braun2013-10-101-4/+4
* Fix spelling intruction -> instruction.Robert Wilhelm2013-09-281-1/+1
* Use SmallVectorImpl instead of SmallVector for iterators and references to av...Craig Topper2013-07-031-3/+3
* Fix miscompile due to StackColoring incorrectly merging stack slots (PR15707)Derek Schuff2013-05-151-11/+8
* StackColoring: don't clear an instruction's mem operand if the underlyingAkira Hatanaka2013-05-141-0/+5
* Couple more sets of tidying.Eric Christopher2013-03-251-5/+5
* Formatting.Eric Christopher2013-03-251-4/+4
* More const correcting of stack coloring.Craig Topper2013-02-191-8/+8
* Const-correct the stack coloring code.Craig Topper2013-02-191-18/+15
* Avoid extra DenseMap lookups in StackColoring::calculateLocalLiveness.Craig Topper2013-02-191-18/+32
* Make the dump() function const and reduce the number of hash lookups it perfo...Craig Topper2013-02-191-11/+17
* Use a reference into the BlockLiveness DenseMap to avoid repeated hash lookup...Craig Topper2013-02-191-6/+9
* Fixing warnings revealed by gcc release buildEdwin Vane2013-01-291-3/+2
* Move MachineTraceMetrics.h into include/llvm/CodeGen.Jakob Stoklund Olesen2013-01-171-1/+0
* Move all of the header files which are involved in modelling the LLVM IRChandler Carruth2013-01-021-3/+3
* Remove duplicate includes.Roman Divacky2012-12-211-1/+0
* Use the new script to sort the includes of every file under lib.Chandler Carruth2012-12-031-11/+11
* Use std::stable_sort instead of std::sort when sorting stack slotsUlrich Weigand2012-11-151-1/+3
* Clear unknown mem ops when merging stack slots (pr14090)Sebastian Pop2012-10-181-6/+13
* Change MachineFrameInfo::StackObject::Alloca from Value* to AllocaInst*Sebastian Pop2012-10-181-0/+1
* Disable the protection from escaped allocas in an attempt to find violating p...Nadav Rotem2012-09-171-2/+1
* Rename the flag which protects from escaped allocas, which may come from bugs...Nadav Rotem2012-09-131-5/+12
* Fix a typo.Nadav Rotem2012-09-131-1/+1
* Stack Coloring: We have code that checks that all of the uses of allocasNadav Rotem2012-09-131-5/+17
* Add a flag to disable the code that looks for allocas which escaped the lifet...Nadav Rotem2012-09-121-6/+18
* Enable stack-coloring, in hope that the recent fixes will enable correct drag...Nadav Rotem2012-09-121-1/+1
* Stack coloring: remove lifetime intervals which contain escaped allocas.Nadav Rotem2012-09-121-0/+47
* Dragonegg selfhost exposed additional cases where alloca usage moved outside ...Nadav Rotem2012-09-111-1/+1
* Enable stack coloring.Nadav Rotem2012-09-111-1/+1
* Stack Coloring: Dont crash on dbg values which use stack frames.Nadav Rotem2012-09-111-3/+5
* Remove redundant semicolons which are null statements.Dmitri Gribenko2012-09-101-1/+1
* Disable stack coloring because it makes dragonegg fail bootstrapping.Nadav Rotem2012-09-101-1/+1
* Enable stack coloring.Nadav Rotem2012-09-101-1/+1
* Stack Coloring: Handle the case where END markers come before BEGIN markers p...Nadav Rotem2012-09-101-0/+12
* Minor cleanup. No functional change.Nadav Rotem2012-09-101-3/+3
* Stack Coloring: Debug prints to print the slot number and not the array index.Nadav Rotem2012-09-101-1/+2
* Stack Coloring: When searching for disjoint regions, do not compare intervals...Nadav Rotem2012-09-101-1/+1
* Stack Coloring: Add support for multiple regions of the same slot, within a ...Nadav Rotem2012-09-101-23/+33
* Fix a typo in the comment.Nadav Rotem2012-09-101-2/+2
* Add an assertion that the frame index is indeed inside the declared lifetime ...Nadav Rotem2012-09-101-0/+16
* Dont cast away const needlessly. Found by gcc48 -Wcast-qual.Roman Divacky2012-09-061-1/+1
* Disable stack coloring by default in order to resolve the i386 failures.Nadav Rotem2012-09-061-1/+1
* Add a new optimization pass: Stack Coloring, that merges disjoint static allo...Nadav Rotem2012-09-061-0/+657