Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Eliminate more uses of llvm-as and llvm-dis. | Dan Gohman | 2009-09-08 | 1 | -1/+1 |
| | | | | llvm-svn: 81290 | ||||
* | Turn a 2-address instruction into a 3-address one when it's profitable even ↵ | Evan Cheng | 2009-03-30 | 1 | -1/+1 |
| | | | | | | | | | | | | | if the two-address operand is killed. e.g. %reg1024<def> = MOV r1 %reg1025<def> = ADD %reg1024, %reg1026 r0 = MOV %reg1025 If it's not possible / profitable to commute ADD, then turning ADD into a LEA saves a copy. llvm-svn: 68065 | ||||
* | Model inline asm constraint which ties an input to an output register as ↵ | Evan Cheng | 2009-03-23 | 1 | -0/+9 |
machine operand TIED_TO constraint. This eliminated the need to pre-allocate registers for these. This also allows register allocator can eliminate the unneeded copies. llvm-svn: 67512 |