[llvm] r194682 - R600/SI: Add testcase for problem I ran into

Matt Arsenault Matthew.Arsenault at amd.com
Wed Nov 13 23:57:30 PST 2013


Author: arsenm
Date: Thu Nov 14 01:57:29 2013
New Revision: 194682

URL: http://llvm.org/viewvc/llvm-project?rev=194682&view=rev
Log:
R600/SI: Add testcase for problem I ran into
with the older version of the moveToVALU changes.

Added:
    llvm/trunk/test/CodeGen/R600/sgpr-copy-duplicate-operand.ll

Added: llvm/trunk/test/CodeGen/R600/sgpr-copy-duplicate-operand.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/R600/sgpr-copy-duplicate-operand.ll?rev=194682&view=auto
==============================================================================
--- llvm/trunk/test/CodeGen/R600/sgpr-copy-duplicate-operand.ll (added)
+++ llvm/trunk/test/CodeGen/R600/sgpr-copy-duplicate-operand.ll Thu Nov 14 01:57:29 2013
@@ -0,0 +1,18 @@
+; RUN: llc -march=r600 -mcpu=SI < %s | FileCheck -check-prefix=SI %s
+
+; Copy VGPR -> SGPR used twice as an instruction operand, which is then
+; used in an REG_SEQUENCE that also needs to be handled.
+
+; SI-LABEL: @test_dup_operands:
+; SI: V_ADD_I32_e32
+define void @test_dup_operands(<2 x i32> addrspace(1)* noalias %out, <2 x i32> addrspace(1)* noalias %in) {
+  %a = load <2 x i32> addrspace(1)* %in
+  %lo = extractelement <2 x i32> %a, i32 0
+  %hi = extractelement <2 x i32> %a, i32 1
+  %add = add i32 %lo, %lo
+  %vec0 = insertelement <2 x i32> undef, i32 %add, i32 0
+  %vec1 = insertelement <2 x i32> %vec0, i32 %hi, i32 1
+  store <2 x i32> %vec1, <2 x i32> addrspace(1)* %out, align 8
+  ret void
+}
+





More information about the llvm-commits mailing list