aboutsummaryrefslogtreecommitdiffstats
path: root/lib/CodeGen/BranchFolding.cpp
Commit message (Expand)AuthorAgeFilesLines
* Update aosp/master llvm for rebase to r233350Pirama Arumuga Nainar2015-04-091-1/+60
* 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-14/+78
* Update LLVM for rebase to r212749.Stephen Hines2014-07-211-4/+11
* Update LLVM for 3.5 rebase (r209712).Stephen Hines2014-05-291-36/+38
* Update to LLVM 3.5a.Stephen Hines2014-04-241-21/+28
* Fix tail merging to assign the (more) correct BasicBlock when splitting.Andrew Trick2013-06-241-4/+11
* Simplify logic now that r182490 is in place. No functional change intended.Chad Rosier2013-05-221-2/+2
* 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
* 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
* Remove unneeded #include.Jakub Staszak2012-11-271-1/+0
* Create enums for the different attributes.Bill Wendling2012-10-091-1/+2
* Fix indentation. Remove 'else' after return. No functional change.Craig Topper2012-10-071-11/+8
* Remove the `hasFnAttr' method from Function.Bill Wendling2012-09-261-1/+1
* Reduce duplicated hash map lookups.Benjamin Kramer2012-08-221-2/+1
* Fix typos found by http://github.com/lyda/misspell-checkBenjamin Kramer2012-06-021-1/+1
* Switch all register list clients to the new MC*Iterator interface.Jakob Stoklund Olesen2012-06-011-9/+8
* Switch some getAliasSet clients to MCRegAliasIterator.Jakob Stoklund Olesen2012-06-011-9/+6
* Forgot to reverse conditional.Bill Wendling2012-05-231-1/+1
* Reduce indentation by early detection of 'continue'. No functionality change.Bill Wendling2012-05-231-79/+87
* This patch fixes a problem which arose when using the Post-RA schedulerPreston Gurd2012-04-231-1/+1
* Branch folding may invalidate liveness.Jakob Stoklund Olesen2012-03-271-2/+9
* Where the BranchFolding pass removes a branch then adds another better branch,Bill Wendling2012-03-071-4/+27
* Convert more GenRegisterInfo tables from unsigned to uint16_t to reduce stati...Craig Topper2012-03-051-2/+2
* Use uint16_t to store register overlaps to reduce static data.Craig Topper2012-03-041-5/+5
* Remove extra semi-colons.Chad Rosier2012-02-221-2/+2
* Handle register masks in branch folding.Jakob Stoklund Olesen2012-02-151-0/+8
* Move pass configuration out of pass constructors: BranchFolderPassAndrew Trick2012-02-081-12/+16
* whitespaceAndrew Trick2012-02-081-2/+2
* More dead code removal (using -Wunreachable-code)David Blaikie2012-01-201-1/+2
* When hoisting common code, watch out for uses which are marked "kill". If theEvan Cheng2012-01-121-0/+5
* Revert part of r147716. Looks like x87 instructions kill markers are all messedEvan Cheng2012-01-071-9/+11
* Added a late machine instruction copy propagation pass. This catchesEvan Cheng2012-01-071-11/+9
* - Add MachineInstrBundle.h and MachineInstrBundle.cpp. This includes a functionEvan Cheng2011-12-141-2/+3
* Add bundle aware API for querying instruction properties and switch the codeEvan Cheng2011-12-071-8/+7
* Reapply r142920 with fix:Bill Wendling2011-10-261-0/+3
* Revert commit 142891. Takumi bisected the tablegen miscompilesDuncan Sands2011-10-251-2/+1
* An MBB which branches to an EH landing pad shouldn't be considered for tail m...Bill Wendling2011-10-251-1/+2
* Fix liveness computations in BranchFolding.Jakob Stoklund Olesen2011-08-051-13/+16
* When tail-merging multiple blocks, make sure to correctly update the live-in ...Eli Friedman2011-07-061-10/+21
* - Rename TargetInstrDesc, TargetOperandInfo to MCInstrDesc and MCOperandInfo andEvan Cheng2011-06-281-3/+3
* Add 132986 back, but avoid non-determinism if a bb address gets reused.Rafael Espindola2011-06-141-5/+24
* revert 132986 to see if the bots go green.Rafael Espindola2011-06-141-21/+5
* Make the threshold used by branch folding softer. Before we would get aRafael Espindola2011-06-141-5/+21
* Add comment.Devang Patel2011-05-261-0/+3
* During branch folding avoid inserting redundant DBG_VALUE machine instructions.Devang Patel2011-05-261-0/+13
* Update comment.Evan Cheng2011-05-121-2/+0
* Re-enable branchfolding common code hoisting optimization. Fixed a liveness t...Evan Cheng2011-05-121-13/+38