summaryrefslogtreecommitdiff
path: root/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
commitd843b3925fdc275b262ddc2ff8fabc8c98f9a5a0 (patch)
treef86128b00a0bca4fa5dd6c7c645c37ed7c3a32b4 /test/CodeGen/X86/2010-06-28-FastAllocTiedOperand.ll
parent7d59a9766c1a48ea359e8014f9e7e7d01a57b593 (diff)
downloadllvm-d843b3925fdc275b262ddc2ff8fabc8c98f9a5a0.tar.gz
llvm-d843b3925fdc275b262ddc2ff8fabc8c98f9a5a0.tar.bz2
llvm-d843b3925fdc275b262ddc2ff8fabc8c98f9a5a0.tar.xz
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. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@107043 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/X86/2010-06-28-FastAllocTiedOperand.ll')
-rw-r--r--test/CodeGen/X86/2010-06-28-FastAllocTiedOperand.ll21
1 files changed, 21 insertions, 0 deletions
diff --git a/test/CodeGen/X86/2010-06-28-FastAllocTiedOperand.ll b/test/CodeGen/X86/2010-06-28-FastAllocTiedOperand.ll
new file mode 100644
index 0000000000..ed7bf1983b
--- /dev/null
+++ b/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}