[ARM] Adjust how NEON shifts are lowered
[llvm-core.git] / test / CodeGen / X86 / GlobalISel / or-scalar.ll
blob1edb72ca9b6cfcdde7241266fc0eacecb9709d27
1 ; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py
2 ; RUN: llc -mtriple=x86_64-linux-gnu -global-isel -verify-machineinstrs < %s -o - | FileCheck %s --check-prefix=ALL
4 define i32 @test_or_i1(i32 %arg1, i32 %arg2) {
5 ; ALL-LABEL: test_or_i1:
6 ; ALL:       # %bb.0:
7 ; ALL-NEXT:    cmpl %esi, %edi
8 ; ALL-NEXT:    sete %al
9 ; ALL-NEXT:    orb %al, %al
10 ; ALL-NEXT:    movzbl %al, %eax
11 ; ALL-NEXT:    andl $1, %eax
12 ; ALL-NEXT:    retq
13   %c = icmp eq i32 %arg1, %arg2
14   %x = or i1 %c , %c
15   %ret = zext i1 %x to i32
16   ret i32 %ret
19 define i8 @test_or_i8(i8 %arg1, i8 %arg2) {
20 ; ALL-LABEL: test_or_i8:
21 ; ALL:       # %bb.0:
22 ; ALL-NEXT:    movl %esi, %eax
23 ; ALL-NEXT:    orb %dil, %al
24 ; ALL-NEXT:    # kill: def $al killed $al killed $eax
25 ; ALL-NEXT:    retq
26   %ret = or i8 %arg1, %arg2
27   ret i8 %ret
30 define i16 @test_or_i16(i16 %arg1, i16 %arg2) {
31 ; ALL-LABEL: test_or_i16:
32 ; ALL:       # %bb.0:
33 ; ALL-NEXT:    movl %esi, %eax
34 ; ALL-NEXT:    orw %di, %ax
35 ; ALL-NEXT:    # kill: def $ax killed $ax killed $eax
36 ; ALL-NEXT:    retq
37   %ret = or i16 %arg1, %arg2
38   ret i16 %ret
41 define i32 @test_or_i32(i32 %arg1, i32 %arg2) {
42 ; ALL-LABEL: test_or_i32:
43 ; ALL:       # %bb.0:
44 ; ALL-NEXT:    movl %esi, %eax
45 ; ALL-NEXT:    orl %edi, %eax
46 ; ALL-NEXT:    retq
47   %ret = or i32 %arg1, %arg2
48   ret i32 %ret
51 define i64 @test_or_i64(i64 %arg1, i64 %arg2) {
52 ; ALL-LABEL: test_or_i64:
53 ; ALL:       # %bb.0:
54 ; ALL-NEXT:    movq %rsi, %rax
55 ; ALL-NEXT:    orq %rdi, %rax
56 ; ALL-NEXT:    retq
57   %ret = or i64 %arg1, %arg2
58   ret i64 %ret