diff options
author | Matt Arsenault <Matthew.Arsenault@amd.com> | 2017-10-05 17:38:30 +0000 |
---|---|---|
committer | Matt Arsenault <Matthew.Arsenault@amd.com> | 2017-10-05 17:38:30 +0000 |
commit | 2d3f8f333d676e7d051680a1ca9254df185797af (patch) | |
tree | 2bc7a8fb5b3a8ea3a7f22d859ae5e41f39332081 /llvm/test/CodeGen/AMDGPU/anyext.ll | |
parent | 1b51cbddf42c2a7a069bf36710fcefe2c1fd6f7b (diff) | |
download | bcm5719-llvm-2d3f8f333d676e7d051680a1ca9254df185797af.tar.gz bcm5719-llvm-2d3f8f333d676e7d051680a1ca9254df185797af.zip |
AMDGPU: Set v2i32 any_extend to expand
llvm-svn: 314993
Diffstat (limited to 'llvm/test/CodeGen/AMDGPU/anyext.ll')
-rw-r--r-- | llvm/test/CodeGen/AMDGPU/anyext.ll | 41 |
1 files changed, 33 insertions, 8 deletions
diff --git a/llvm/test/CodeGen/AMDGPU/anyext.ll b/llvm/test/CodeGen/AMDGPU/anyext.ll index 3f220c40841..cabf0578aaf 100644 --- a/llvm/test/CodeGen/AMDGPU/anyext.ll +++ b/llvm/test/CodeGen/AMDGPU/anyext.ll @@ -1,12 +1,13 @@ -; RUN: llc -march=amdgcn -mcpu=verde -verify-machineinstrs < %s | FileCheck -check-prefix=GCN -check-prefix=SI %s -; RUN: llc -march=amdgcn -mcpu=tonga -mattr=-flat-for-global -verify-machineinstrs < %s | FileCheck -check-prefix=GCN -check-prefix=VI %s +; RUN: llc -march=amdgcn -mcpu=verde -verify-machineinstrs < %s | FileCheck -check-prefixes=GCN,SI %s +; RUN: llc -march=amdgcn -mcpu=tonga -mattr=-flat-for-global -verify-machineinstrs < %s | FileCheck -check-prefixes=GCN,VI,GFX89 %s +; RUN: llc -march=amdgcn -mcpu=gfx900 -mattr=-flat-for-global -verify-machineinstrs < %s | FileCheck -check-prefixes=GCN,GFX9,GFX89 %s declare i32 @llvm.amdgcn.workitem.id.x() nounwind readnone declare i32 @llvm.amdgcn.workitem.id.y() nounwind readnone ; GCN-LABEL: {{^}}anyext_i1_i32: ; GCN: v_cndmask_b32_e64 -define amdgpu_kernel void @anyext_i1_i32(i32 addrspace(1)* %out, i32 %cond) { +define amdgpu_kernel void @anyext_i1_i32(i32 addrspace(1)* %out, i32 %cond) #0 { entry: %tmp = icmp eq i32 %cond, 0 %tmp1 = zext i1 %tmp to i8 @@ -18,11 +19,11 @@ entry: } ; GCN-LABEL: {{^}}s_anyext_i16_i32: -; VI: v_add_u16_e32 [[ADD:v[0-9]+]], -; VI: v_xor_b32_e32 [[XOR:v[0-9]+]], -1, [[ADD]] -; VI: v_and_b32_e32 [[AND:v[0-9]+]], 1, [[XOR]] -; VI: buffer_store_dword [[AND]] -define amdgpu_kernel void @s_anyext_i16_i32(i32 addrspace(1)* %out, i16 addrspace(1)* %a, i16 addrspace(1)* %b) { +; GFX89: v_add_u16_e32 [[ADD:v[0-9]+]], +; GFX89: v_xor_b32_e32 [[XOR:v[0-9]+]], -1, [[ADD]] +; GFX89: v_and_b32_e32 [[AND:v[0-9]+]], 1, [[XOR]] +; GFX89: buffer_store_dword [[AND]] +define amdgpu_kernel void @s_anyext_i16_i32(i32 addrspace(1)* %out, i16 addrspace(1)* %a, i16 addrspace(1)* %b) #0 { entry: %tid.x = call i32 @llvm.amdgcn.workitem.id.x() %tid.y = call i32 @llvm.amdgcn.workitem.id.y() @@ -38,3 +39,27 @@ entry: store i32 %tmp4, i32 addrspace(1)* %out ret void } + +; GCN-LABEL: {{^}}anyext_v2i16_to_v2i32: +; GFX9: global_load_short_d16_hi +; GFX9: v_and_b32_e32 v{{[0-9]+}}, 0x80008000 +; GFX9: v_bfi_b32 v{{[0-9]+}}, v{{[0-9]+}}, 0, v{{[0-9]+}} +; GFX9: v_cmp_eq_f32_e32 +; GFX9: v_cndmask_b32_e64 v{{[0-9]+}}, 0, 1, vcc +define amdgpu_kernel void @anyext_v2i16_to_v2i32() #0 { +bb: + %tmp = load i16, i16 addrspace(1)* undef, align 2 + %tmp2 = insertelement <2 x i16> undef, i16 %tmp, i32 1 + %tmp4 = and <2 x i16> %tmp2, <i16 -32768, i16 -32768> + %tmp5 = zext <2 x i16> %tmp4 to <2 x i32> + %tmp6 = shl nuw <2 x i32> %tmp5, <i32 16, i32 16> + %tmp7 = or <2 x i32> zeroinitializer, %tmp6 + %tmp8 = bitcast <2 x i32> %tmp7 to <2 x float> + %tmp10 = fcmp oeq <2 x float> %tmp8, zeroinitializer + %tmp11 = zext <2 x i1> %tmp10 to <2 x i8> + %tmp12 = extractelement <2 x i8> %tmp11, i32 1 + store i8 %tmp12, i8 addrspace(1)* undef, align 1 + ret void +} + +attributes #0 = { nounwind } |