diff options
author | Tom Stellard <thomas.stellard@amd.com> | 2016-11-04 13:06:34 +0000 |
---|---|---|
committer | Tom Stellard <thomas.stellard@amd.com> | 2016-11-04 13:06:34 +0000 |
commit | 2d2d33f1dc4c976ab41ab5fc814f2aca7fdd99d1 (patch) | |
tree | b1336f93f40986897fd9aa4af80101e2bef34751 /llvm/test/CodeGen/AMDGPU/zero_extend.ll | |
parent | 050f958519c8c3d825c27777c0bd6c6df58798d9 (diff) | |
download | bcm5719-llvm-2d2d33f1dc4c976ab41ab5fc814f2aca7fdd99d1.tar.gz bcm5719-llvm-2d2d33f1dc4c976ab41ab5fc814f2aca7fdd99d1.zip |
Revert "AMDGPU: Add VI i16 support"
This reverts commit r285939 and r285948. These broke some conformance tests.
llvm-svn: 285995
Diffstat (limited to 'llvm/test/CodeGen/AMDGPU/zero_extend.ll')
-rw-r--r-- | llvm/test/CodeGen/AMDGPU/zero_extend.ll | 47 |
1 files changed, 14 insertions, 33 deletions
diff --git a/llvm/test/CodeGen/AMDGPU/zero_extend.ll b/llvm/test/CodeGen/AMDGPU/zero_extend.ll index b30cb73f6da..53539921479 100644 --- a/llvm/test/CodeGen/AMDGPU/zero_extend.ll +++ b/llvm/test/CodeGen/AMDGPU/zero_extend.ll @@ -2,58 +2,39 @@ ; RUN: llc < %s -march=amdgcn -mcpu=tonga -verify-machineinstrs | FileCheck %s --check-prefix=SI ; RUN: llc < %s -march=r600 -mcpu=redwood | FileCheck %s --check-prefix=R600 -; R600: {{^}}s_mad_zext_i32_to_i64: +; R600: {{^}}test: ; R600: MEM_RAT_CACHELESS STORE_RAW ; R600: MEM_RAT_CACHELESS STORE_RAW -; SI: {{^}}s_mad_zext_i32_to_i64: +; SI: {{^}}test: ; SI: v_mov_b32_e32 v[[V_ZERO:[0-9]]], 0{{$}} ; SI: buffer_store_dwordx2 v[0:[[V_ZERO]]{{\]}} -define void @s_mad_zext_i32_to_i64(i64 addrspace(1)* %out, i32 %a, i32 %b, i32 %c) #0 { +define void @test(i64 addrspace(1)* %out, i32 %a, i32 %b, i32 %c) { entry: - %tmp0 = mul i32 %a, %b - %tmp1 = add i32 %tmp0, %c - %tmp2 = zext i32 %tmp1 to i64 - store i64 %tmp2, i64 addrspace(1)* %out + %0 = mul i32 %a, %b + %1 = add i32 %0, %c + %2 = zext i32 %1 to i64 + store i64 %2, i64 addrspace(1)* %out ret void } -; SI-LABEL: {{^}}s_cmp_zext_i1_to_i32 +; SI-LABEL: {{^}}testi1toi32: ; SI: v_cndmask_b32 -define void @s_cmp_zext_i1_to_i32(i32 addrspace(1)* %out, i32 %a, i32 %b) #0 { +define void @testi1toi32(i32 addrspace(1)* %out, i32 %a, i32 %b) { entry: - %tmp0 = icmp eq i32 %a, %b - %tmp1 = zext i1 %tmp0 to i32 - store i32 %tmp1, i32 addrspace(1)* %out + %0 = icmp eq i32 %a, %b + %1 = zext i1 %0 to i32 + store i32 %1, i32 addrspace(1)* %out ret void } -; SI-LABEL: {{^}}s_arg_zext_i1_to_i64: -define void @s_arg_zext_i1_to_i64(i64 addrspace(1)* %out, i1 zeroext %arg) #0 { - %ext = zext i1 %arg to i64 - store i64 %ext, i64 addrspace(1)* %out, align 8 - ret void -} - -; SI-LABEL: {{^}}s_cmp_zext_i1_to_i64: +; SI-LABEL: {{^}}zext_i1_to_i64: ; SI: s_mov_b32 s{{[0-9]+}}, 0 ; SI: v_cmp_eq_u32 ; SI: v_cndmask_b32 -define void @s_cmp_zext_i1_to_i64(i64 addrspace(1)* %out, i32 %a, i32 %b) #0 { +define void @zext_i1_to_i64(i64 addrspace(1)* %out, i32 %a, i32 %b) nounwind { %cmp = icmp eq i32 %a, %b %ext = zext i1 %cmp to i64 store i64 %ext, i64 addrspace(1)* %out, align 8 ret void } - -; SI-LABEL: {{^}}s_cmp_zext_i1_to_i16 -; SI: v_cndmask_b32_e64 [[RESULT:v[0-9]+]], 0, 1, vcc -; SI: buffer_store_short [[RESULT]] -define void @s_cmp_zext_i1_to_i16(i16 addrspace(1)* %out, i16 zeroext %a, i16 zeroext %b) #0 { - %tmp0 = icmp eq i16 %a, %b - %tmp1 = zext i1 %tmp0 to i16 - store i16 %tmp1, i16 addrspace(1)* %out - ret void -} - -attributes #0 = { nounwind } |