[clang][modules] Don't prevent translation of FW_Private includes when explicitly...
[llvm-project.git] / llvm / test / CodeGen / X86 / GlobalISel / select-blsi.mir
blobe532f5c72e27e613f562acc762940aec6198d0f9
1 # NOTE: Assertions have been autogenerated by utils/update_mir_test_checks.py
2 # RUN: llc -mtriple=x86_64-linux-gnu -mattr=+bmi -run-pass=instruction-select -verify-machineinstrs %s -o - | FileCheck %s
4 # Test that rules where multiple operands must be the same operand successfully
5 # match. Also test that the rules do not match when they're not the same
6 # operand.
8 # This test covers the case when OtherInsnID and OtherOpIdx are different in a
9 # GIM_CheckIsSameOperand.
11 ---
12 name:            test_blsi32rr
13 alignment:       16
14 legalized:       true
15 regBankSelected: true
16 registers:
17   - { id: 0, class: gpr }
18   - { id: 1, class: gpr }
19   - { id: 2, class: gpr }
20   - { id: 3, class: gpr }
21 # G_SUB and G_AND both use %0 so we should match this.
22 body:             |
23   bb.1:
24     liveins: $edi
26     ; CHECK-LABEL: name: test_blsi32rr
27     ; CHECK: liveins: $edi
28     ; CHECK-NEXT: {{  $}}
29     ; CHECK-NEXT: [[COPY:%[0-9]+]]:gr32 = COPY $edi
30     ; CHECK-NEXT: [[MOV32r0_:%[0-9]+]]:gr32 = MOV32r0 implicit-def dead $eflags
31     ; CHECK-NEXT: [[SUB32rr:%[0-9]+]]:gr32 = SUB32rr [[MOV32r0_]], [[COPY]], implicit-def dead $eflags
32     ; CHECK-NEXT: [[AND32rr:%[0-9]+]]:gr32 = AND32rr [[SUB32rr]], [[COPY]], implicit-def dead $eflags
33     ; CHECK-NEXT: $edi = COPY [[AND32rr]]
34     %0(s32) = COPY $edi
35     %1(s32) = G_CONSTANT i32 0
36     %2(s32) = G_SUB %1, %0
37     %3(s32) = G_AND %2, %0
38     $edi = COPY %3
40 ...
41 ---
42 name:            test_blsi32rr_nomatch
43 alignment:       16
44 legalized:       true
45 regBankSelected: true
46 registers:
47   - { id: 0, class: gpr }
48   - { id: 1, class: gpr }
49   - { id: 2, class: gpr }
50   - { id: 3, class: gpr }
51 # G_SUB and G_AND use different operands so we shouldn't match this.
52 body:             |
53   bb.1:
54     liveins: $edi
56     ; CHECK-LABEL: name: test_blsi32rr_nomatch
57     ; CHECK: liveins: $edi
58     ; CHECK-NEXT: {{  $}}
59     ; CHECK-NEXT: [[COPY:%[0-9]+]]:gr32 = COPY $edi
60     ; CHECK-NEXT: [[MOV32r0_:%[0-9]+]]:gr32 = MOV32r0 implicit-def dead $eflags
61     ; CHECK-NEXT: [[SUB32ri:%[0-9]+]]:gr32 = SUB32ri [[MOV32r0_]], 0, implicit-def dead $eflags
62     ; CHECK-NEXT: [[AND32rr:%[0-9]+]]:gr32 = AND32rr [[SUB32ri]], [[COPY]], implicit-def dead $eflags
63     ; CHECK-NEXT: $edi = COPY [[AND32rr]]
64     %0(s32) = COPY $edi
65     %1(s32) = G_CONSTANT i32 0
66     %2(s32) = G_SUB %1, %1
67     %3(s32) = G_AND %2, %0
68     $edi = COPY %3
69 ...