summaryrefslogtreecommitdiffstats
path: root/llvm/test/CodeGen/X86/2010-06-28-FastAllocTiedOperand.ll
diff options
context:
space:
mode:
authorJakob Stoklund Olesen <stoklund@2pi.dk>2010-06-28 18:34:34 +0000
committerJakob Stoklund Olesen <stoklund@2pi.dk>2010-06-28 18:34:34 +0000
commit0d94d7af7825ad0876aef52ae8ba92f3229613e4 (patch)
treee1c92928193624e3a85128441dcb401d92a0e0bb /llvm/test/CodeGen/X86/2010-06-28-FastAllocTiedOperand.ll
parent7f103a2653d2c851fd935a07e34aca30bfe10682 (diff)
downloadbcm5719-llvm-0d94d7af7825ad0876aef52ae8ba92f3229613e4.tar.gz
bcm5719-llvm-0d94d7af7825ad0876aef52ae8ba92f3229613e4.zip
Add more special treatment for inline asm in RegAllocFast.
When an instruction has tied operands and physreg defines, we must take extra care that the tied operands conflict with neither physreg defs nor uses. The special treatment is given to inline asm and instructions with tied operands / early clobbers and physreg defines. This fixes PR7509. llvm-svn: 107043
Diffstat (limited to 'llvm/test/CodeGen/X86/2010-06-28-FastAllocTiedOperand.ll')
-rw-r--r--llvm/test/CodeGen/X86/2010-06-28-FastAllocTiedOperand.ll21
1 files changed, 21 insertions, 0 deletions
diff --git a/llvm/test/CodeGen/X86/2010-06-28-FastAllocTiedOperand.ll b/llvm/test/CodeGen/X86/2010-06-28-FastAllocTiedOperand.ll
new file mode 100644
index 00000000000..ed7bf1983ba
--- /dev/null
+++ b/llvm/test/CodeGen/X86/2010-06-28-FastAllocTiedOperand.ll
@@ -0,0 +1,21 @@
+; RUN: llc < %s -march=x86 -O0 | FileCheck %s
+; PR7509
+%asmtype = type { i32, i8*, i32, i32 }
+
+; Arguments 1 and 4 must be the same. No other output arguments may be
+; allocated %eax.
+
+; CHECK: InlineAsm Start
+; CHECK: arg1 %[[A1:...]]
+; CHECK-NOT: ax
+; CHECK: arg4 %[[A1]]
+; CHECK: InlineAsm End
+
+define i32 @func(i8* %s) nounwind ssp {
+entry:
+ %0 = tail call %asmtype asm "arg0 $0\0A\09arg1 $1\0A\09arg2 $2\0A\09arg3 $3\0A\09arg4 $4", "={ax},=r,=r,=r,1,~{dirflag},~{fpsr},~{flags}"(i8* %s) nounwind, !srcloc !0 ; <%0> [#uses=1]
+ %asmresult = extractvalue %asmtype %0, 0 ; <i64> [#uses=1]
+ ret i32 %asmresult
+}
+
+!0 = metadata !{i32 108}
OpenPOWER on IntegriCloud