aboutsummaryrefslogtreecommitdiffstats
path: root/lib/CodeGen/TailDuplication.cpp
Commit message (Expand)AuthorAgeFilesLines
* Update aosp/master LLVM for rebase to r230699.Stephen Hines2015-03-231-2/+1
* Update aosp/master LLVM for rebase to r222494.Stephen Hines2014-12-021-5/+4
* Update LLVM for 3.5 rebase (r209712).Stephen Hines2014-05-291-15/+14
* Update to LLVM 3.5a.Stephen Hines2014-04-241-15/+27
* Remove several unused variables.Rafael Espindola2013-10-011-2/+0
* Fix build by replacing '>>' with '> >'Tobias Grosser2013-07-141-7/+5
* Use SmallVectorImpl& instead of SmallVector to avoid repeating small vector s...Craig Topper2013-07-141-13/+13
* Move all of the header files which are involved in modelling the LLVM IRChandler Carruth2013-01-021-1/+1
* Remove the Function::getFnAttributes method in favor of using the AttributeSetBill Wendling2012-12-301-2/+2
* Use MachineInstrBuilder in a few CodeGen passes.Jakob Stoklund Olesen2012-12-201-4/+3
* Rename the 'Attributes' class to 'Attribute'. It's going to represent a singl...Bill Wendling2012-12-191-1/+1
* Use the new script to sort the includes of every file under lib.Chandler Carruth2012-12-031-9/+9
* Create enums for the different attributes.Bill Wendling2012-10-091-1/+2
* Remove the `hasFnAttr' method from Function.Bill Wendling2012-09-261-1/+1
* Stop leaking RegScavengers from TailDuplication.Benjamin Kramer2012-06-061-3/+4
* Teach taildup to update livein set. rdar://11538365Evan Cheng2012-05-301-0/+25
* Constrain register classes in TailDup.Jakob Stoklund Olesen2012-05-201-3/+5
* Make post-ra tail duplication bundle safe. No test case as recent codegenEvan Cheng2012-02-201-3/+6
* Codegen pass definition cleanup. No functionality.Andrew Trick2012-02-081-4/+4
* Move pass configuration out of pass constructors: TailDuplicate::PreRegAllocAndrew Trick2012-02-081-6/+7
* Add bundle aware API for querying instruction properties and switch the codeEvan Cheng2011-12-071-5/+5
* First chunk of MachineInstr bundle support.Evan Cheng2011-12-061-2/+1
* Trim an unneeded header.Jakob Stoklund Olesen2011-08-091-0/+1
* Move most of the pre BB code to TailDuplicateAndUpdate. Change theRafael Espindola2011-07-041-112/+125
* Reduce indentation and fix the count of how many PHIs we have inserted.Rafael Espindola2011-07-041-75/+80
* - Rename TargetInstrDesc, TargetOperandInfo to MCInstrDesc and MCOperandInfo andEvan Cheng2011-06-281-2/+2
* SimplifyRafael Espindola2011-06-241-14/+6
* Now that bb with phis are not considered simple, duplicate them even ifRafael Espindola2011-06-241-12/+18
* Simplify now that blocks with phis are not considered simple.Rafael Espindola2011-06-241-15/+0
* Move more logic to shouldTailDuplicate and only duplicate regular bb beforeRafael Espindola2011-06-231-21/+45
* Reenable tail duplication of bb with just an unconditional jump, butRafael Espindola2011-06-221-4/+4
* Revert r133607. This is causing failures in the Clang gccTestSuite.Chad Rosier2011-06-221-3/+3
* Reenable the optimization added in 133415, but change the definition of a "si...Rafael Espindola2011-06-221-3/+3
* Disable again.Rafael Espindola2011-06-201-1/+1
* Re enable 133415 with two fixesRafael Espindola2011-06-201-3/+8
* Disable the logic added by rafael in commit 133415 to see if it brings theDuncan Sands2011-06-201-1/+1
* Fix MSVC build. next() function already exists in the MSVC headers. This crea...Francois Pichet2011-06-201-1/+1
* Teach early dup how to duplicate basic blocks with one successor and only phi...Rafael Espindola2011-06-201-2/+142
* Two fixes relating to debug value:Rafael Espindola2011-06-171-0/+10
* Enable early duplication of small blocks. There are still improvements toRafael Espindola2011-06-171-29/+32
* Removed tabs. Also fixed my editor...Rafael Espindola2011-06-101-3/+2
* Remove duplicated test.Rafael Espindola2011-06-101-4/+3
* Make the optional verification step more strict.Rafael Espindola2011-06-091-1/+8
* Avoid a gcc warning about multiline comments.Rafael Espindola2011-06-091-6/+6
* On last fix to the early tail duplication.Rafael Espindola2011-06-091-4/+60
* Also consider phi nodes when deciding if a register is live out.Rafael Espindola2011-06-091-10/+34
* AnalyzeBranch modifies the bb, but we don't want to modify a bb withRafael Espindola2011-06-091-7/+6
* A PHI in this basic block is a use in another basic block.Rafael Espindola2011-06-091-1/+1
* Refactor some checks into shouldTailDuplicate. Update comments.Rafael Espindola2011-06-091-18/+29
* Fix count.Rafael Espindola2011-06-081-1/+1