| Commit message (Expand) | Author | Age | Files | Lines |
* | improve portability to avoid conflicting with std::next in c++'0x. | Chris Lattner | 2009-12-03 | 1 | -4/+4 |
* | Fix PR5300. | Jakob Stoklund Olesen | 2009-11-18 | 1 | -12/+5 |
* | - Change TargetInstrInfo::reMaterialize to pass in TargetRegisterInfo. | Evan Cheng | 2009-11-14 | 1 | -1/+1 |
* | Remove includes of Support/Compiler.h that are no longer needed after the | Nick Lewycky | 2009-10-25 | 1 | -1/+0 |
* | Remove VISIBILITY_HIDDEN from class/struct found inside anonymous namespaces. | Nick Lewycky | 2009-10-25 | 1 | -2/+1 |
* | Factor out LiveIntervalAnalysis' code to determine whether an instruction | Dan Gohman | 2009-10-09 | 1 | -2/+6 |
* | Overhaul the TwoAddressInstructionPass to simplify the logic, especially | Bob Wilson | 2009-09-03 | 1 | -159/+210 |
* | Rearrange code to eliminate redundancy and avoid gotos. | Bob Wilson | 2009-09-02 | 1 | -64/+40 |
* | Avoid calling removeVirtualRegisterKilled which iterates over the operands | Bob Wilson | 2009-09-01 | 1 | -1/+2 |
* | Refactor some code into separate functions. No functional changes. | Bob Wilson | 2009-09-01 | 1 | -52/+82 |
* | Move use of LV inside condition that guards for null LV. | Bob Wilson | 2009-09-01 | 1 | -5/+5 |
* | Fix pr4843: When an instruction has multiple destination registers that are | Bob Wilson | 2009-09-01 | 1 | -11/+55 |
* | Use early exit and reduce indentation. | Bob Wilson | 2009-08-31 | 1 | -157/+157 |
* | If the tied registers are already the same, there is no need to change | Bob Wilson | 2009-08-31 | 1 | -5/+5 |
* | remove some DOUTs | Chris Lattner | 2009-08-23 | 1 | -11/+11 |
* | Code clean up. | Evan Cheng | 2009-08-07 | 1 | -4/+5 |
* | Use setPreservesAll and setPreservesCFG in CodeGen passes. | Dan Gohman | 2009-07-31 | 1 | -0/+1 |
* | More migration to raw_ostream, the water has dried up around the iostream hole. | Daniel Dunbar | 2009-07-25 | 1 | -1/+2 |
* | Use TII->findCommutedOpIndices to find the commute operands (rather than gues... | Evan Cheng | 2009-07-20 | 1 | -4/+8 |
* | Let callers decide the sub-register index on the def operand of rematerialize... | Evan Cheng | 2009-07-16 | 1 | -1/+2 |
* | Two-address pass should use findCommutedOpIndices to determine what registers... | Evan Cheng | 2009-07-11 | 1 | -3/+10 |
* | Eliminate VarInfo::UsedBlocks. | Evan Cheng | 2009-05-26 | 1 | -5/+0 |
* | Fix for PR4124. Make TwoAddressFormPass::FindLastUseInMBB return the real las... | Lang Hames | 2009-05-14 | 1 | -2/+5 |
* | Fix for PR4121. If TwoAddressInstructionPass removes a dead def, and the regB | Lang Hames | 2009-05-13 | 1 | -0/+6 |
* | Avoid warning in release-asserts build. | Mike Stump | 2009-05-08 | 1 | -0/+1 |
* | Fix for PR4051. When 2address pass delete an instruction, update kill info wh... | Evan Cheng | 2009-04-28 | 1 | -8/+79 |
* | Fix PR3934 part 2. findOnlyInterestingUse() was not setting IsCopy and IsDstP... | Evan Cheng | 2009-04-14 | 1 | -9/+13 |
* | PR3934: Fix a bogus two-address pass assertion. | Evan Cheng | 2009-04-13 | 1 | -8/+10 |
* | Add an assertion to verify that a copy was actually emitted. | Dan Gohman | 2009-04-13 | 1 | -1/+2 |
* | Implement support for using modeling implicit-zero-extension on x86-64 | Dan Gohman | 2009-04-08 | 1 | -3/+46 |
* | Turn a 2-address instruction into a 3-address one when it's profitable even i... | Evan Cheng | 2009-03-30 | 1 | -21/+68 |
* | Model inline asm constraint which ties an input to an output register as mach... | Evan Cheng | 2009-03-23 | 1 | -4/+5 |
* | Added MachineInstr::isRegTiedToDefOperand to check for two-addressness. | Evan Cheng | 2009-03-19 | 1 | -6/+6 |
* | Minor optimization: | Evan Cheng | 2009-03-01 | 1 | -29/+237 |
* | If two-address def is dead and the instruction does not define other register... | Evan Cheng | 2009-02-21 | 1 | -0/+30 |
* | Rename getAnalysisToUpdate to getAnalysisIfAvailable. | Duncan Sands | 2009-01-28 | 1 | -1/+1 |
* | Teach 2addr pass to be do more commuting. If both uses of a two-address instr... | Evan Cheng | 2009-01-25 | 1 | -6/+104 |
* | Refactor code. No functionality change. | Evan Cheng | 2009-01-23 | 1 | -20/+38 |
* | Tidy up #includes, deleting a bunch of unnecessary #includes. | Dan Gohman | 2009-01-05 | 1 | -1/+1 |
* | Do the LiveVariables update before printing the instruction in | Dan Gohman | 2008-11-12 | 1 | -1/+2 |
* | Add an option to enable StrongPHIElimination, for ease of testing. | Owen Anderson | 2008-10-07 | 1 | -1/+5 |
* | Switch the MachineOperand accessors back to the short names like | Dan Gohman | 2008-10-03 | 1 | -7/+7 |
* | Tidy up several unbeseeming casts from pointer to intptr_t. | Dan Gohman | 2008-09-04 | 1 | -1/+1 |
* | Move the check whether it's worth remating to caller. | Evan Cheng | 2008-08-27 | 1 | -0/+1 |
* | Refactor isSafeToReMat out of 2addr pass. | Evan Cheng | 2008-08-27 | 1 | -29/+1 |
* | - Remove calls to copyKillDeadInfo which is an N^2 function. Instead, propaga... | Evan Cheng | 2008-07-03 | 1 | -7/+4 |
* | - Add LiveVariables::replaceKillInstruction. This does a subset of instructio... | Evan Cheng | 2008-07-03 | 1 | -3/+2 |
* | Make LiveVariables even more optional, by making it optional in the call to T... | Owen Anderson | 2008-07-02 | 1 | -46/+1 |
* | TwoAddressInstructionPass doesn't really require LiveVariables, it just needs... | Owen Anderson | 2008-07-02 | 1 | -14/+67 |
* | Remove unneeded include. | Evan Cheng | 2008-06-30 | 1 | -1/+0 |