Re-land [openmp] Fix warnings when building on Windows with latest MSVC or Clang...
[llvm-project.git] / llvm / test / CodeGen / AMDGPU / trunc-store-i1.ll
blobb42af2fdd7c8ca263796b6f2725d9bfd0ac2a606
1 ; RUN: llc -mtriple=amdgcn -verify-machineinstrs < %s | FileCheck -enable-var-scope --check-prefix=GCN %s
2 ; RUN: llc -mtriple=amdgcn -mcpu=tonga -mattr=-flat-for-global -verify-machineinstrs< %s | FileCheck -enable-var-scope --check-prefix=GCN %s
5 ; GCN-LABEL: {{^}}global_truncstore_i32_to_i1:
6 ; GCN: s_load_dword [[LOAD:s[0-9]+]],
7 ; GCN: s_and_b32 [[SREG:s[0-9]+]], [[LOAD]], 1
8 ; GCN: v_mov_b32_e32 [[VREG:v[0-9]+]], [[SREG]]
9 ; GCN: buffer_store_byte [[VREG]],
10 define amdgpu_kernel void @global_truncstore_i32_to_i1(ptr addrspace(1) %out, i32 %val) nounwind {
11   %trunc = trunc i32 %val to i1
12   store i1 %trunc, ptr addrspace(1) %out, align 1
13   ret void
16 ; GCN-LABEL: {{^}}global_truncstore_i64_to_i1:
17 ; GCN: buffer_store_byte
18 define amdgpu_kernel void @global_truncstore_i64_to_i1(ptr addrspace(1) %out, i64 %val) nounwind {
19   %trunc = trunc i64 %val to i1
20   store i1 %trunc, ptr addrspace(1) %out, align 1
21   ret void
24 ; FIXME: VGPR on VI
25 ; GCN-LABEL: {{^}}s_arg_global_truncstore_i16_to_i1:
26 ; GCN: s_load_dword [[LOAD:s[0-9]+]],
27 ; GCN: s_and_b32 [[SREG:s[0-9]+]], [[LOAD]], 1
28 ; GCN: v_mov_b32_e32 [[VREG:v[0-9]+]], [[SREG]]
29 ; GCN: buffer_store_byte [[VREG]],
30 define amdgpu_kernel void @s_arg_global_truncstore_i16_to_i1(ptr addrspace(1) %out, i16 %val) nounwind {
31   %trunc = trunc i16 %val to i1
32   store i1 %trunc, ptr addrspace(1) %out, align 1
33   ret void
35 ; GCN-LABEL: {{^}}global_truncstore_i16_to_i1:
36 define amdgpu_kernel void @global_truncstore_i16_to_i1(ptr addrspace(1) %out, i16 %val0, i16 %val1) nounwind {
37   %add = add i16 %val0, %val1
38   %trunc = trunc i16 %add to i1
39   store i1 %trunc, ptr addrspace(1) %out, align 1
40   ret void