[ARM] Adjust how NEON shifts are lowered
[llvm-core.git] / test / CodeGen / X86 / GlobalISel / sub-scalar.ll
blob8bf1b2fdae8c0080645f4433c1fbeec4f2bf2dad
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=X64
4 define i64 @test_sub_i64(i64 %arg1, i64 %arg2) {
5 ; X64-LABEL: test_sub_i64:
6 ; X64:       # %bb.0:
7 ; X64-NEXT:    movq %rdi, %rax
8 ; X64-NEXT:    subq %rsi, %rax
9 ; X64-NEXT:    retq
10   %ret = sub i64 %arg1, %arg2
11   ret i64 %ret
14 define i32 @test_sub_i32(i32 %arg1, i32 %arg2) {
15 ; X64-LABEL: test_sub_i32:
16 ; X64:       # %bb.0:
17 ; X64-NEXT:    movl %edi, %eax
18 ; X64-NEXT:    subl %esi, %eax
19 ; X64-NEXT:    retq
20   %ret = sub i32 %arg1, %arg2
21   ret i32 %ret
24 define i16 @test_sub_i16(i16 %arg1, i16 %arg2) {
25 ; X64-LABEL: test_sub_i16:
26 ; X64:       # %bb.0:
27 ; X64-NEXT:    movl %edi, %eax
28 ; X64-NEXT:    subw %si, %ax
29 ; X64-NEXT:    # kill: def $ax killed $ax killed $eax
30 ; X64-NEXT:    retq
31   %ret = sub i16 %arg1, %arg2
32   ret i16 %ret
35 define i8 @test_sub_i8(i8 %arg1, i8 %arg2) {
36 ; X64-LABEL: test_sub_i8:
37 ; X64:       # %bb.0:
38 ; X64-NEXT:    movl %edi, %eax
39 ; X64-NEXT:    subb %sil, %al
40 ; X64-NEXT:    # kill: def $al killed $al killed $eax
41 ; X64-NEXT:    retq
42   %ret = sub i8 %arg1, %arg2
43   ret i8 %ret
46 define i32 @test_sub_i1(i32 %arg1, i32 %arg2) {
47 ; X64-LABEL: test_sub_i1:
48 ; X64:       # %bb.0:
49 ; X64-NEXT:    subb %sil, %dil
50 ; X64-NEXT:    movzbl %dil, %eax
51 ; X64-NEXT:    andl $1, %eax
52 ; X64-NEXT:    retq
53   %a1 = trunc i32 %arg1 to i1
54   %a2 = trunc i32 %arg2 to i1
55   %x = sub i1 %a1 , %a2
56   %ret = zext i1 %x to i32
57   ret i32 %ret