summaryrefslogtreecommitdiff
path: root/lib/CodeGen/TailDuplication.cpp
AgeCommit message (Expand)AuthorFilesLines
2014-04-30Convert more loops to range-based equivalentsAlexey Samsonov1-3/+1
2014-04-22[Modules] Remove potential ODR violations by sinking the DEBUG_TYPEChandler Carruth1-1/+2
2014-04-14[C++11] More 'nullptr' conversion. In some cases just using a boolean check i...Craig Topper1-11/+11
2014-03-31Disable each MachineFunctionPass for 'optnone' functions, unless thatPaul Robinson1-0/+3
2014-03-17Switch a number of loops in lib/CodeGen over to range-based for-loops, now thatOwen Anderson1-5/+3
2014-03-13Phase 2 of the great MachineRegisterInfo cleanup. This time, we're changingOwen Anderson1-4/+4
2014-03-07[C++11] Add 'override' keyword to virtual methods that override their base cl...Craig Topper1-2/+2
2014-03-06Replace OwningPtr<T> with std::unique_ptr<T>.Ahmed Charles1-2/+1
2014-03-02[C++11] Replace llvm::next and llvm::prior with std::next and std::prev.Benjamin Kramer1-3/+3
2014-02-12Pass edges weights to MachineBasicBlock::addSuccessor in TailDuplicatePass toAkira Hatanaka1-2/+14
2013-10-01Remove several unused variables.Rafael Espindola1-2/+0
2013-07-14Fix build by replacing '>>' with '> >'Tobias Grosser1-7/+5
2013-07-14Use SmallVectorImpl& instead of SmallVector to avoid repeating small vector s...Craig Topper1-13/+13
2013-01-02Move all of the header files which are involved in modelling the LLVM IRChandler Carruth1-1/+1
2012-12-30Remove the Function::getFnAttributes method in favor of using the AttributeSetBill Wendling1-2/+2
2012-12-20Use MachineInstrBuilder in a few CodeGen passes.Jakob Stoklund Olesen1-4/+3
2012-12-19Rename the 'Attributes' class to 'Attribute'. It's going to represent a singl...Bill Wendling1-1/+1
2012-12-03Use the new script to sort the includes of every file under lib.Chandler Carruth1-9/+9
2012-10-09Create enums for the different attributes.Bill Wendling1-1/+2
2012-09-26Remove the `hasFnAttr' method from Function.Bill Wendling1-1/+1
2012-06-06Stop leaking RegScavengers from TailDuplication.Benjamin Kramer1-3/+4
2012-05-30Teach taildup to update livein set. rdar://11538365Evan Cheng1-0/+25
2012-05-20Constrain register classes in TailDup.Jakob Stoklund Olesen1-3/+5
2012-02-20Make post-ra tail duplication bundle safe. No test case as recent codegenEvan Cheng1-3/+6
2012-02-08Codegen pass definition cleanup. No functionality.Andrew Trick1-4/+4
2012-02-08Move pass configuration out of pass constructors: TailDuplicate::PreRegAllocAndrew Trick1-6/+7
2011-12-07Add bundle aware API for querying instruction properties and switch the codeEvan Cheng1-5/+5
2011-12-06First chunk of MachineInstr bundle support.Evan Cheng1-2/+1
2011-08-09Trim an unneeded header.Jakob Stoklund Olesen1-0/+1
2011-07-04Move most of the pre BB code to TailDuplicateAndUpdate. Change theRafael Espindola1-112/+125
2011-07-04Reduce indentation and fix the count of how many PHIs we have inserted.Rafael Espindola1-75/+80
2011-06-28- Rename TargetInstrDesc, TargetOperandInfo to MCInstrDesc and MCOperandInfo andEvan Cheng1-2/+2
2011-06-24SimplifyRafael Espindola1-14/+6
2011-06-24Now that bb with phis are not considered simple, duplicate them even ifRafael Espindola1-12/+18
2011-06-24Simplify now that blocks with phis are not considered simple.Rafael Espindola1-15/+0
2011-06-23Move more logic to shouldTailDuplicate and only duplicate regular bb beforeRafael Espindola1-21/+45
2011-06-22Reenable tail duplication of bb with just an unconditional jump, butRafael Espindola1-4/+4
2011-06-22Revert r133607. This is causing failures in the Clang gccTestSuite.Chad Rosier1-3/+3
2011-06-22Reenable the optimization added in 133415, but change the definition of a "si...Rafael Espindola1-3/+3
2011-06-20Disable again.Rafael Espindola1-1/+1
2011-06-20Re enable 133415 with two fixesRafael Espindola1-3/+8
2011-06-20Disable the logic added by rafael in commit 133415 to see if it brings theDuncan Sands1-1/+1
2011-06-20Fix MSVC build. next() function already exists in the MSVC headers. This crea...Francois Pichet1-1/+1
2011-06-20Teach early dup how to duplicate basic blocks with one successor and only phi...Rafael Espindola1-2/+142
2011-06-17Two fixes relating to debug value:Rafael Espindola1-0/+10
2011-06-17Enable early duplication of small blocks. There are still improvements toRafael Espindola1-29/+32
2011-06-10Removed tabs. Also fixed my editor...Rafael Espindola1-3/+2
2011-06-10Remove duplicated test.Rafael Espindola1-4/+3
2011-06-09Make the optional verification step more strict.Rafael Espindola1-1/+8
2011-06-09Avoid a gcc warning about multiline comments.Rafael Espindola1-6/+6