summaryrefslogtreecommitdiffstats
path: root/llvm/test/CodeGen/X86/inline-asm-2addr.ll
Commit message (Collapse)AuthorAgeFilesLines
* Specify triple so 'make check' passes on darwin x86-64Sanjay Patel2015-12-281-1/+1
| | | | | | | | | | | | | | | | | | The check lines were added with: http://reviews.llvm.org/rL256458 http://reviews.llvm.org/rL256460 but on a darwin target, the output looks like: ## InlineAsm Start rorq %rdi ## InlineAsm End ## InlineAsm Start rorq %rsi ## InlineAsm End leaq (%rsi,%rdi), %rax retq llvm-svn: 256507
* Make the test properly constrainedDavid Majnemer2015-12-271-1/+1
| | | | llvm-svn: 256460
* Try to passify buildbotDavid Majnemer2015-12-271-1/+10
| | | | llvm-svn: 256458
* Eliminate more uses of llvm-as and llvm-dis.Dan Gohman2009-09-081-1/+1
| | | | llvm-svn: 81290
* Turn a 2-address instruction into a 3-address one when it's profitable even ↵Evan Cheng2009-03-301-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 Cheng2009-03-231-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
OpenPOWER on IntegriCloud