[llvm] r194433 - R600/SI: Add test that fails due to requiring i64 mul for pointers

Matt Arsenault Matthew.Arsenault at amd.com
Mon Nov 11 15:31:02 PST 2013


Author: arsenm
Date: Mon Nov 11 17:31:02 2013
New Revision: 194433

URL: http://llvm.org/viewvc/llvm-project?rev=194433&view=rev
Log:
R600/SI: Add test that fails due to requiring i64 mul for pointers

Added:
    llvm/trunk/test/CodeGen/R600/array-ptr-calc-i64.ll

Added: llvm/trunk/test/CodeGen/R600/array-ptr-calc-i64.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/R600/array-ptr-calc-i64.ll?rev=194433&view=auto
==============================================================================
--- llvm/trunk/test/CodeGen/R600/array-ptr-calc-i64.ll (added)
+++ llvm/trunk/test/CodeGen/R600/array-ptr-calc-i64.ll Mon Nov 11 17:31:02 2013
@@ -0,0 +1,18 @@
+; XFAIL: *
+; RUN: llc < %s -march=r600 -mcpu=SI | FileCheck --check-prefix=SI %s
+
+declare i32 @llvm.SI.tid() readnone
+
+
+; SI-LABEL: @test_array_ptr_calc(
+define void @test_array_ptr_calc(i32 addrspace(1)* noalias %out, [16 x i32] addrspace(1)* noalias %inA, i32 addrspace(1)* noalias %inB) {
+  %tid = call i32 @llvm.SI.tid() readnone
+  %a_ptr = getelementptr [16 x i32] addrspace(1)* %inA, i32 1, i32 %tid
+  %b_ptr = getelementptr i32 addrspace(1)* %inB, i32 %tid
+  %a = load i32 addrspace(1)* %a_ptr
+  %b = load i32 addrspace(1)* %b_ptr
+  %result = add i32 %a, %b
+  store i32 %result, i32 addrspace(1)* %out
+  ret void
+}
+





More information about the llvm-commits mailing list