Revert " [LoongArch][ISel] Check the number of sign bits in `PatGprGpr_32` (#107432)"
[llvm-project.git] / llvm / test / CodeGen / AArch64 / GlobalISel / legalize-divrem.mir
blob72ecb295f857f9c9f5e3fcbdad27d1ed4a1feb4f
1 # NOTE: Assertions have been autogenerated by utils/update_mir_test_checks.py
2 # RUN: llc -mtriple=aarch64-- -verify-machineinstrs -run-pass=legalizer %s -o - | FileCheck %s
3 ---
4 name:            test_udivrem_64
5 body:             |
6   bb.0.entry:
7     ; CHECK-LABEL: name: test_udivrem_64
8     ; CHECK: [[COPY:%[0-9]+]]:_(s64) = COPY $x0
9     ; CHECK: [[COPY1:%[0-9]+]]:_(s64) = COPY $x1
10     ; CHECK: [[UDIV:%[0-9]+]]:_(s64) = G_UDIV [[COPY]], [[COPY1]]
11     ; CHECK: [[MUL:%[0-9]+]]:_(s64) = G_MUL [[UDIV]], [[COPY1]]
12     ; CHECK: [[SUB:%[0-9]+]]:_(s64) = G_SUB [[COPY]], [[MUL]]
13     ; CHECK: $x0 = COPY [[UDIV]](s64)
14     ; CHECK: $x1 = COPY [[SUB]](s64)
15     %0:_(s64) = COPY $x0
16     %1:_(s64) = COPY $x1
17     %2:_(s64), %3:_(s64) = G_UDIVREM %0, %1
18     $x0 = COPY %2(s64)
19     $x1 = COPY %3(s64)
21 ...
22 ---
23 name:            test_sdivrem_32
24 body:             |
25   bb.0.entry:
26     ; CHECK-LABEL: name: test_sdivrem_32
27     ; CHECK: [[COPY:%[0-9]+]]:_(s64) = COPY $x0
28     ; CHECK: [[COPY1:%[0-9]+]]:_(s64) = COPY $x1
29     ; CHECK: [[TRUNC:%[0-9]+]]:_(s32) = G_TRUNC [[COPY]](s64)
30     ; CHECK: [[TRUNC1:%[0-9]+]]:_(s32) = G_TRUNC [[COPY1]](s64)
31     ; CHECK: [[SDIV:%[0-9]+]]:_(s32) = G_SDIV [[TRUNC]], [[TRUNC1]]
32     ; CHECK: [[MUL:%[0-9]+]]:_(s32) = G_MUL [[SDIV]], [[TRUNC1]]
33     ; CHECK: [[SUB:%[0-9]+]]:_(s32) = G_SUB [[TRUNC]], [[MUL]]
34     ; CHECK: $w0 = COPY [[SDIV]](s32)
35     ; CHECK: $w1 = COPY [[SUB]](s32)
36     %0:_(s64) = COPY $x0
37     %1:_(s64) = COPY $x1
38     %2:_(s32) = G_TRUNC %0(s64)
39     %3:_(s32) = G_TRUNC %1(s64)
40     %4:_(s32), %5:_(s32) = G_SDIVREM %2, %3
41     $w0 = COPY %4(s32)
42     $w1 = COPY %5(s32)
44 ...
45 ---
46 name:            test_sdivrem_8
47 body:             |
48   bb.0.entry:
49     ; CHECK-LABEL: name: test_sdivrem_8
50     ; CHECK: [[COPY:%[0-9]+]]:_(s64) = COPY $x0
51     ; CHECK: [[COPY1:%[0-9]+]]:_(s64) = COPY $x1
52     ; CHECK: [[TRUNC:%[0-9]+]]:_(s32) = G_TRUNC [[COPY]](s64)
53     ; CHECK: [[SEXT_INREG:%[0-9]+]]:_(s32) = G_SEXT_INREG [[TRUNC]], 8
54     ; CHECK: [[TRUNC1:%[0-9]+]]:_(s32) = G_TRUNC [[COPY1]](s64)
55     ; CHECK: [[SEXT_INREG1:%[0-9]+]]:_(s32) = G_SEXT_INREG [[TRUNC1]], 8
56     ; CHECK: [[SDIV:%[0-9]+]]:_(s32) = G_SDIV [[SEXT_INREG]], [[SEXT_INREG1]]
57     ; CHECK: [[COPY2:%[0-9]+]]:_(s32) = COPY [[TRUNC1]](s32)
58     ; CHECK: [[MUL:%[0-9]+]]:_(s32) = G_MUL [[SDIV]], [[COPY2]]
59     ; CHECK: [[COPY3:%[0-9]+]]:_(s32) = COPY [[TRUNC]](s32)
60     ; CHECK: [[SUB:%[0-9]+]]:_(s32) = G_SUB [[COPY3]], [[MUL]]
61     ; CHECK: $w0 = COPY [[SDIV]](s32)
62     ; CHECK: $w1 = COPY [[SUB]](s32)
63     %0:_(s64) = COPY $x0
64     %1:_(s64) = COPY $x1
65     %2:_(s8) = G_TRUNC %0(s64)
66     %3:_(s8) = G_TRUNC %1(s64)
67     %4:_(s8), %5:_(s8) = G_SDIVREM %2, %3
68     %6:_(s32) = G_ANYEXT %4(s8)
69     %7:_(s32) = G_ANYEXT %5(s8)
70     $w0 = COPY %6(s32)
71     $w1 = COPY %7(s32)
73 ...