Bump version to 19.1.0-rc3
[llvm-project.git] / llvm / test / CodeGen / AMDGPU / nor.ll
blob530a6e0145e822bdff5bf1f3c712d3510961ac70
1 ; RUN: llc -mtriple=amdgcn -mcpu=gfx600 -verify-machineinstrs < %s | FileCheck --check-prefix=GCN %s
2 ; RUN: llc -mtriple=amdgcn -mcpu=gfx700 -verify-machineinstrs < %s | FileCheck --check-prefix=GCN %s
3 ; RUN: llc -mtriple=amdgcn -mcpu=gfx801 -verify-machineinstrs < %s | FileCheck --check-prefix=GCN %s
4 ; RUN: llc -mtriple=amdgcn -mcpu=gfx900 -verify-machineinstrs < %s | FileCheck --check-prefix=GCN %s
6 ; GCN-LABEL: {{^}}scalar_nor_i32_one_use
7 ; GCN: s_nor_b32
8 define amdgpu_kernel void @scalar_nor_i32_one_use(
9     ptr addrspace(1) %r0, i32 %a, i32 %b) {
10 entry:
11   %or = or i32 %a, %b
12   %r0.val = xor i32 %or, -1
13   store i32 %r0.val, ptr addrspace(1) %r0
14   ret void
17 ; GCN-LABEL: {{^}}scalar_nor_i32_mul_use
18 ; GCN-NOT: s_nor_b32
19 ; GCN: s_or_b32
20 ; GCN: s_not_b32
21 ; GCN: s_add_i32
22 define amdgpu_kernel void @scalar_nor_i32_mul_use(
23     ptr addrspace(1) %r0, ptr addrspace(1) %r1, i32 %a, i32 %b) {
24 entry:
25   %or = or i32 %a, %b
26   %r0.val = xor i32 %or, -1
27   %r1.val = add i32 %or, %a
28   store i32 %r0.val, ptr addrspace(1) %r0
29   store i32 %r1.val, ptr addrspace(1) %r1
30   ret void
33 ; GCN-LABEL: {{^}}scalar_nor_i64_one_use
34 ; GCN: s_nor_b64
35 define amdgpu_kernel void @scalar_nor_i64_one_use(
36     ptr addrspace(1) %r0, i64 %a, i64 %b) {
37 entry:
38   %or = or i64 %a, %b
39   %r0.val = xor i64 %or, -1
40   store i64 %r0.val, ptr addrspace(1) %r0
41   ret void
44 ; GCN-LABEL: {{^}}scalar_nor_i64_mul_use
45 ; GCN-NOT: s_nor_b64
46 ; GCN: s_or_b64
47 ; GCN: s_not_b64
48 ; GCN: s_add_u32
49 ; GCN: s_addc_u32
50 define amdgpu_kernel void @scalar_nor_i64_mul_use(
51     ptr addrspace(1) %r0, ptr addrspace(1) %r1, i64 %a, i64 %b) {
52 entry:
53   %or = or i64 %a, %b
54   %r0.val = xor i64 %or, -1
55   %r1.val = add i64 %or, %a
56   store i64 %r0.val, ptr addrspace(1) %r0
57   store i64 %r1.val, ptr addrspace(1) %r1
58   ret void
61 ; GCN-LABEL: {{^}}vector_nor_i32_one_use
62 ; GCN-NOT: s_nor_b32
63 ; GCN: v_or_b32
64 ; GCN: v_not_b32
65 define i32 @vector_nor_i32_one_use(i32 %a, i32 %b) {
66 entry:
67   %or = or i32 %a, %b
68   %r = xor i32 %or, -1
69   ret i32 %r
72 ; GCN-LABEL: {{^}}vector_nor_i64_one_use
73 ; GCN-NOT: s_nor_b64
74 ; GCN: v_or_b32
75 ; GCN: v_or_b32
76 ; GCN: v_not_b32
77 ; GCN: v_not_b32
78 define i64 @vector_nor_i64_one_use(i64 %a, i64 %b) {
79 entry:
80   %or = or i64 %a, %b
81   %r = xor i64 %or, -1
82   ret i64 %r