[RISCV] Add shrinkwrap test cases showing gaps in current impl
[llvm-project.git] / llvm / test / CodeGen / X86 / srem-seteq-optsize.ll
blob2b980683cba75688af0ec6f5c7f86616dbec0eda
1 ; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py
2 ; RUN: llc -mtriple=i686-unknown-linux-gnu < %s | FileCheck %s --check-prefix=X86
3 ; RUN: llc -mtriple=x86_64-unknown-linux-gnu < %s | FileCheck %s --check-prefix=X64
5 ; On X86, division in expensive. BuildRemEqFold should therefore run even
6 ; when optimizing for size. Only optimizing for minimum size retains a plain div.
8 define i32 @test_minsize(i32 %X) optsize minsize nounwind readnone {
9 ; X86-LABEL: test_minsize:
10 ; X86:       # %bb.0:
11 ; X86-NEXT:    movl {{[0-9]+}}(%esp), %eax
12 ; X86-NEXT:    pushl $5
13 ; X86-NEXT:    popl %ecx
14 ; X86-NEXT:    cltd
15 ; X86-NEXT:    idivl %ecx
16 ; X86-NEXT:    testl %edx, %edx
17 ; X86-NEXT:    je .LBB0_1
18 ; X86-NEXT:  # %bb.2:
19 ; X86-NEXT:    pushl $-10
20 ; X86-NEXT:    popl %eax
21 ; X86-NEXT:    retl
22 ; X86-NEXT:  .LBB0_1:
23 ; X86-NEXT:    pushl $42
24 ; X86-NEXT:    popl %eax
25 ; X86-NEXT:    retl
27 ; X64-LABEL: test_minsize:
28 ; X64:       # %bb.0:
29 ; X64-NEXT:    movl %edi, %eax
30 ; X64-NEXT:    pushq $5
31 ; X64-NEXT:    popq %rcx
32 ; X64-NEXT:    cltd
33 ; X64-NEXT:    idivl %ecx
34 ; X64-NEXT:    testl %edx, %edx
35 ; X64-NEXT:    pushq $42
36 ; X64-NEXT:    popq %rcx
37 ; X64-NEXT:    pushq $-10
38 ; X64-NEXT:    popq %rax
39 ; X64-NEXT:    cmovel %ecx, %eax
40 ; X64-NEXT:    retq
41   %rem = srem i32 %X, 5
42   %cmp = icmp eq i32 %rem, 0
43   %ret = select i1 %cmp, i32 42, i32 -10
44   ret i32 %ret
47 define i32 @test_optsize(i32 %X) optsize nounwind readnone {
48 ; X86-LABEL: test_optsize:
49 ; X86:       # %bb.0:
50 ; X86-NEXT:    imull $-858993459, {{[0-9]+}}(%esp), %eax # imm = 0xCCCCCCCD
51 ; X86-NEXT:    addl $429496729, %eax # imm = 0x19999999
52 ; X86-NEXT:    cmpl $858993459, %eax # imm = 0x33333333
53 ; X86-NEXT:    movl $42, %eax
54 ; X86-NEXT:    jb .LBB1_2
55 ; X86-NEXT:  # %bb.1:
56 ; X86-NEXT:    movl $-10, %eax
57 ; X86-NEXT:  .LBB1_2:
58 ; X86-NEXT:    retl
60 ; X64-LABEL: test_optsize:
61 ; X64:       # %bb.0:
62 ; X64-NEXT:    imull $-858993459, %edi, %eax # imm = 0xCCCCCCCD
63 ; X64-NEXT:    addl $429496729, %eax # imm = 0x19999999
64 ; X64-NEXT:    cmpl $858993459, %eax # imm = 0x33333333
65 ; X64-NEXT:    movl $42, %ecx
66 ; X64-NEXT:    movl $-10, %eax
67 ; X64-NEXT:    cmovbl %ecx, %eax
68 ; X64-NEXT:    retq
69   %rem = srem i32 %X, 5
70   %cmp = icmp eq i32 %rem, 0
71   %ret = select i1 %cmp, i32 42, i32 -10
72   ret i32 %ret