summaryrefslogtreecommitdiff
path: root/lib/CodeGen/TwoAddressInstructionPass.cpp
Commit message (Expand)AuthorAge
* Code clean up.Evan Cheng2009-08-07
* Use setPreservesAll and setPreservesCFG in CodeGen passes.Dan Gohman2009-07-31
* More migration to raw_ostream, the water has dried up around the iostream hole.Daniel Dunbar2009-07-25
* Use TII->findCommutedOpIndices to find the commute operands (rather than gues...Evan Cheng2009-07-20
* Let callers decide the sub-register index on the def operand of rematerialize...Evan Cheng2009-07-16
* Two-address pass should use findCommutedOpIndices to determine what registers...Evan Cheng2009-07-11
* Eliminate VarInfo::UsedBlocks.Evan Cheng2009-05-26
* Fix for PR4124. Make TwoAddressFormPass::FindLastUseInMBB return the real las...Lang Hames2009-05-14
* Fix for PR4121. If TwoAddressInstructionPass removes a dead def, and the regBLang Hames2009-05-13
* Avoid warning in release-asserts build.Mike Stump2009-05-08
* Fix for PR4051. When 2address pass delete an instruction, update kill info wh...Evan Cheng2009-04-28
* Fix PR3934 part 2. findOnlyInterestingUse() was not setting IsCopy and IsDstP...Evan Cheng2009-04-14
* PR3934: Fix a bogus two-address pass assertion.Evan Cheng2009-04-13
* Add an assertion to verify that a copy was actually emitted.Dan Gohman2009-04-13
* Implement support for using modeling implicit-zero-extension on x86-64Dan Gohman2009-04-08
* Turn a 2-address instruction into a 3-address one when it's profitable even i...Evan Cheng2009-03-30
* Model inline asm constraint which ties an input to an output register as mach...Evan Cheng2009-03-23
* Added MachineInstr::isRegTiedToDefOperand to check for two-addressness.Evan Cheng2009-03-19
* Minor optimization:Evan Cheng2009-03-01
* If two-address def is dead and the instruction does not define other register...Evan Cheng2009-02-21
* Rename getAnalysisToUpdate to getAnalysisIfAvailable.Duncan Sands2009-01-28
* Teach 2addr pass to be do more commuting. If both uses of a two-address instr...Evan Cheng2009-01-25
* Refactor code. No functionality change.Evan Cheng2009-01-23
* Tidy up #includes, deleting a bunch of unnecessary #includes.Dan Gohman2009-01-05
* Do the LiveVariables update before printing the instruction inDan Gohman2008-11-12
* Add an option to enable StrongPHIElimination, for ease of testing.Owen Anderson2008-10-07
* Switch the MachineOperand accessors back to the short names likeDan Gohman2008-10-03
* Tidy up several unbeseeming casts from pointer to intptr_t.Dan Gohman2008-09-04
* Move the check whether it's worth remating to caller.Evan Cheng2008-08-27
* Refactor isSafeToReMat out of 2addr pass.Evan Cheng2008-08-27
* - Remove calls to copyKillDeadInfo which is an N^2 function. Instead, propaga...Evan Cheng2008-07-03
* - Add LiveVariables::replaceKillInstruction. This does a subset of instructio...Evan Cheng2008-07-03
* Make LiveVariables even more optional, by making it optional in the call to T...Owen Anderson2008-07-02
* TwoAddressInstructionPass doesn't really require LiveVariables, it just needs...Owen Anderson2008-07-02
* Remove unneeded include.Evan Cheng2008-06-30
* Enable two-address remat by default.Evan Cheng2008-06-25
* Missed a check.Evan Cheng2008-06-19
* Complete support for two-address pass rematerialization. Now *almost* always ...Evan Cheng2008-06-18
* Implement "AsCheapAsAMove" for some obviously cheap instructions: xor and theBill Wendling2008-05-29
* Check the "isSafeToMove" predicate, which has a series of tests to make sureBill Wendling2008-05-28
* Incorporated feedback: Check that the implicitly defined operands aren't usedBill Wendling2008-05-27
* The enabling of remat in 2-address conversion breaks this test:Bill Wendling2008-05-26
* A problem that's exposed when machine LICM is enabled. Consider this code:Bill Wendling2008-05-26
* Change class' public PassInfo variables to by initialized with theDan Gohman2008-05-13
* Clean up the use of static and anonymous namespaces. This turned upDan Gohman2008-05-13
* Cosmetic changes:Bill Wendling2008-05-10
* Fix a memory bug: increment an iterator of a deleted machine instr.Evan Cheng2008-03-27
* Typo.Evan Cheng2008-03-13
* Don't try to sink 3-address instruction if convertToThreeAddress created more...Evan Cheng2008-03-13
* Remove an unused command line option.Evan Cheng2008-03-13