[llvm] r192212 - Add some xfaild R600 tests.

NAKAMURA Takumi geek4civic at gmail.com
Thu Dec 19 04:27:50 PST 2013


Matt, please don't forget to remove also my changes added in r197669,
when you will remove XFAIL:*, thanks!

2013/10/9 Matt Arsenault <Matthew.Arsenault at amd.com>:
> Author: arsenm
> Date: Tue Oct  8 13:06:36 2013
> New Revision: 192212
>
> URL: http://llvm.org/viewvc/llvm-project?rev=192212&view=rev
> Log:
> Add some xfaild R600 tests.
>
> These are bugs to fix later.
>
> Added:
>     llvm/trunk/test/CodeGen/R600/insert_vector_elt.ll
>     llvm/trunk/test/CodeGen/R600/si-annotate-cf-assertion.ll
>     llvm/trunk/test/CodeGen/R600/store-vector-ptrs.ll
>
> Added: llvm/trunk/test/CodeGen/R600/insert_vector_elt.ll
> URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/R600/insert_vector_elt.ll?rev=192212&view=auto
> ==============================================================================
> --- llvm/trunk/test/CodeGen/R600/insert_vector_elt.ll (added)
> +++ llvm/trunk/test/CodeGen/R600/insert_vector_elt.ll Tue Oct  8 13:06:36 2013
> @@ -0,0 +1,16 @@
> +; XFAIL: *
> +; RUN: llc < %s -march=r600 -mcpu=redwood -o %t
> +
> +define void @var_insert(<4 x i32> addrspace(1)* %out, <4 x i32> %x, i32 %val, i32 %idx) nounwind  {
> +entry:
> +  %tmp3 = insertelement <4 x i32> %x, i32 %val, i32 %idx               ; <<4 x i32>> [#uses=1]
> +  store <4 x i32> %tmp3, <4 x i32> addrspace(1)* %out
> +  ret void
> +}
> +
> +define void @var_extract(i32 addrspace(1)* %out, <4 x i32> %x, i32 %idx) nounwind  {
> +entry:
> +  %tmp3 = extractelement <4 x i32> %x, i32 %idx                ; <<i32>> [#uses=1]
> +  store i32 %tmp3, i32 addrspace(1)* %out
> +  ret void
> +}
>
> Added: llvm/trunk/test/CodeGen/R600/si-annotate-cf-assertion.ll
> URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/R600/si-annotate-cf-assertion.ll?rev=192212&view=auto
> ==============================================================================
> --- llvm/trunk/test/CodeGen/R600/si-annotate-cf-assertion.ll (added)
> +++ llvm/trunk/test/CodeGen/R600/si-annotate-cf-assertion.ll Tue Oct  8 13:06:36 2013
> @@ -0,0 +1,23 @@
> +; XFAIL: *
> +; RUN: llc -march=r600 -mcpu=SI -asm-verbose=false < %s | FileCheck %s
> +
> +
> +define void @test(i32 addrspace(1)* %g, i8 addrspace(3)* %l, i32 %x) nounwind {
> +; CHECK-LABEL: @test:
> +
> +entry:
> +  switch i32 %x, label %sw.default [
> +    i32 0, label %sw.bb
> +    i32 60, label %sw.bb
> +  ]
> +
> +sw.bb:
> +  unreachable
> +
> +sw.default:
> +  unreachable
> +
> +sw.epilog:
> +  ret void
> +}
> +
>
> Added: llvm/trunk/test/CodeGen/R600/store-vector-ptrs.ll
> URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/R600/store-vector-ptrs.ll?rev=192212&view=auto
> ==============================================================================
> --- llvm/trunk/test/CodeGen/R600/store-vector-ptrs.ll (added)
> +++ llvm/trunk/test/CodeGen/R600/store-vector-ptrs.ll Tue Oct  8 13:06:36 2013
> @@ -0,0 +1,8 @@
> +; XFAIL: *
> +; RUN: llc -march=r600 -mcpu=SI < %s
> +
> +define void @store_vector_ptrs(<4 x i32*>* %out, <4 x [1024 x i32]*> %array) nounwind {
> +  %p = getelementptr <4 x [1024 x i32]*> %array, <4 x i16> zeroinitializer, <4 x i16> <i16 16, i16 16, i16 16, i16 16>
> +  store <4 x i32*> %p, <4 x i32*>* %out
> +  ret void
> +}
> \ No newline at end of file
>
>
> _______________________________________________
> llvm-commits mailing list
> llvm-commits at cs.uiuc.edu
> http://lists.cs.uiuc.edu/mailman/listinfo/llvm-commits



More information about the llvm-commits mailing list