| Commit message (Expand) | Author | Age | Files | Lines |
* | When simplifying a call to a bitcast function, tighten up | Duncan Sands | 2008-06-01 | 1 | -18/+15 |
* | Fixed flag issue that was generating infinite loop while in list scheduling. | Bruno Cardoso Lopes | 2008-06-01 | 1 | -5/+7 |
* | AsmWriter support for insertvalue/extractvalue. These instructions can | Dan Gohman | 2008-05-31 | 1 | -0/+15 |
* | Improved bitcode support for insertvalue/extractvalue. | Dan Gohman | 2008-05-31 | 2 | -8/+15 |
* | Fix some bugs with the handling of indices in insertvalue/extractvalue. | Dan Gohman | 2008-05-31 | 1 | -3/+3 |
* | Peer through sext/zext when looking for not(cmp). | Nick Lewycky | 2008-05-31 | 2 | -26/+20 |
* | Yay us! Every one of these examples turns into icmp/zext/ret. | Nick Lewycky | 2008-05-31 | 1 | -5/+0 |
* | Add more i1 optimizations. add, sub, mul, s/udiv on i1 are now simplified away. | Nick Lewycky | 2008-05-31 | 1 | -5/+15 |
* | Adding i1 is always Xor. | Nick Lewycky | 2008-05-31 | 1 | -0/+3 |
* | Fix the CBE's handling of instructions whose result is an i1. Previously, | Chris Lattner | 2008-05-31 | 1 | -20/+46 |
* | Factor several methods, including getInversePredicate and | Dan Gohman | 2008-05-31 | 1 | -43/+31 |
* | Teach the DAGISelEmitter to not compute the variable_ops operand | Dan Gohman | 2008-05-31 | 3 | -10/+3 |
* | Remove an unused variable. | Dan Gohman | 2008-05-31 | 1 | -1/+0 |
* | IR, bitcode reader, bitcode writer, and asmparser changes to | Dan Gohman | 2008-05-31 | 9 | -1212/+1252 |
* | Fix indentation. | Evan Cheng | 2008-05-30 | 1 | -1/+1 |
* | Fix indentation. | Evan Cheng | 2008-05-30 | 1 | -6/+6 |
* | The coalescer doesn't need LiveVariables now that we have register use iterat... | Owen Anderson | 2008-05-30 | 2 | -15/+6 |
* | rewrite operand loops to use iterators | Gabor Greif | 2008-05-30 | 1 | -24/+26 |
* | Preserve the register coallescer, and update live intervals more correctly by... | Owen Anderson | 2008-05-30 | 1 | -1/+4 |
* | Since LCSSA switched over to DenseMap, we have to be more careful to avoid it... | Owen Anderson | 2008-05-30 | 1 | -4/+5 |
* | Give a proper error message when a command line option is defined more than | Matthijs Kooijman | 2008-05-30 | 1 | -1/+1 |
* | Use eraseFromParent() instead of doing that manually in two places. | Matthijs Kooijman | 2008-05-30 | 1 | -2/+2 |
* | Let Instruction::getOpcodeName() return something useful for the new | Matthijs Kooijman | 2008-05-30 | 1 | -0/+2 |
* | Add the "AsCheapAsAMove" flag to some 64-bit xor instructions. | Bill Wendling | 2008-05-30 | 1 | -2/+3 |
* | Remove an unused variable. | Dan Gohman | 2008-05-30 | 1 | -1/+0 |
* | Fix a typo in a comment. | Dan Gohman | 2008-05-30 | 1 | -1/+1 |
* | Fix a copy+paste error in a comment. | Dan Gohman | 2008-05-30 | 1 | -1/+1 |
* | Make the renumbering correct in the face of deleted instructions that have be... | Owen Anderson | 2008-05-29 | 1 | -7/+73 |
* | Unbreak build. | Bill Wendling | 2008-05-29 | 1 | -3/+3 |
* | Add patterns for CALL32m and CALL64m. They aren't matched in most | Dan Gohman | 2008-05-29 | 2 | -2/+2 |
* | Remove more iostream header includes. Needed to implement a "FlushStream" | Bill Wendling | 2008-05-29 | 5 | -8/+15 |
* | Remove <iostream>. | Bill Wendling | 2008-05-29 | 1 | -2/+0 |
* | Add newline at end of file. | Owen Anderson | 2008-05-29 | 1 | -1/+1 |
* | Fix a tblgen problem handling variable_ops in tblgen instruction | Dan Gohman | 2008-05-29 | 4 | -32/+10 |
* | const-ify getOpcode. | Dan Gohman | 2008-05-29 | 1 | -3/+3 |
* | Expand small memmovs using inline code. Set the X86 threshold for expanding | Dan Gohman | 2008-05-29 | 2 | -6/+74 |
* | Revert part of my last patch that I didn't intend to commit yet. | Owen Anderson | 2008-05-29 | 1 | -0/+2 |
* | Renumbering needs to account for instruction slot offsets when performing loo... | Owen Anderson | 2008-05-29 | 1 | -7/+20 |
* | Force postdom to be linked into opt and bugpoint, even though it is no longer... | Owen Anderson | 2008-05-29 | 1 | -0/+8 |
* | Add a newline at the end of this file. | Duncan Sands | 2008-05-29 | 1 | -1/+1 |
* | Replace the old ADCE implementation with a new one that more simply solves | Owen Anderson | 2008-05-29 | 1 | -457/+62 |
* | Implement vector shift up / down and insert zero with ps{rl}lq / ps{rl}ldq. | Evan Cheng | 2008-05-29 | 5 | -5/+140 |
* | Remove debugging code. | Owen Anderson | 2008-05-29 | 1 | -5/+1 |
* | XOR?RI instructions aren't as cheap as moves. | Bill Wendling | 2008-05-29 | 1 | -23/+21 |
* | convert more operand loops to iterator formulation | Gabor Greif | 2008-05-29 | 2 | -23/+29 |
* | Implement "AsCheapAsAMove" for some obviously cheap instructions: xor and the | Bill Wendling | 2008-05-29 | 2 | -42/+50 |
* | convert another operand loop to iterator formulation | Gabor Greif | 2008-05-29 | 1 | -3/+3 |
* | Add a flag to indicate that an instruction is as cheap (or cheaper) than a move | Bill Wendling | 2008-05-28 | 2 | -4/+7 |
* | Check the "isSafeToMove" predicate, which has a series of tests to make sure | Bill Wendling | 2008-05-28 | 1 | -1/+3 |
* | Remap VNInfo data as well when doing renumbering. | Owen Anderson | 2008-05-28 | 1 | -0/+6 |