summaryrefslogtreecommitdiff
path: root/lib/CodeGen/TwoAddressInstructionPass.cpp
Commit message (Expand)AuthorAge
* 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
* TwoAddressInstructionPass enhancement. After it converts a two address instru...Evan Cheng2008-03-13
* Refactor code. Remove duplicated functions that basically do the same thing asEvan Cheng2008-03-05
* Rename MRegisterInfo to TargetRegisterInfo.Dan Gohman2008-02-10
* Remove DefInst from LiveVariables::VarInfo. Use the facilities on MachineReg...Owen Anderson2008-01-15
* rename TargetInstrDescriptor -> TargetInstrDesc.Chris Lattner2008-01-07
* Rename all the M_* flags to be namespace qualified enums, and switch Chris Lattner2008-01-07
* add more and significantly better comments to the rest of the machineinstrChris Lattner2008-01-07
* Move a bunch more accessors from TargetInstrInfo to TargetInstrDescriptorChris Lattner2008-01-07
* Rename MachineInstr::getInstrDescriptor -> getDesc(), which reflectsChris Lattner2008-01-07
* Don't recalculate the loop info and loop dominators analyses if they'reBill Wendling2008-01-04
* Move copyRegToReg from MRegisterInfo to TargetInstrInfo. This is part of theOwen Anderson2007-12-31
* Rename SSARegMap -> MachineRegisterInfo in keeping with the idea Chris Lattner2007-12-31
* Remove attribution from file headers, per discussion on llvmdev.Chris Lattner2007-12-29
* As Chris and Evan pointed out, BreakCriticalMachineEdges doesn't really needOwen Anderson2007-11-12
* This preserves critical edge breaking.Owen Anderson2007-11-08
* Bring UsedBlocks back. StrongPHIElimination needs this information.Owen Anderson2007-11-08
* It's possible to commute instrctions with more than 3 operands.Evan Cheng2007-10-23
* Added missing curly braces which renders the if clause useless in debug build.Evan Cheng2007-10-20
* Allow copyRegToReg to emit cross register classes copies.Evan Cheng2007-09-26
* Fix typo in comment.Nick Lewycky2007-05-06
* Drop 'const'Devang Patel2007-05-03
* Use 'static const char' instead of 'static const int'.Devang Patel2007-05-02
* Do not use typeinfo to identify pass in pass manager.Devang Patel2007-05-01
* VarInfo::UsedBlocks is no longer used. Remove.Evan Cheng2007-04-18
* Keep UsedBlocks info accurate.Evan Cheng2007-03-18
* Eliminate static ctors from StatisticsChris Lattner2006-12-19
* Removed more <iostream> includesBill Wendling2006-12-07