Re-land [openmp] Fix warnings when building on Windows with latest MSVC or Clang...
[llvm-project.git] / llvm / test / CodeGen / X86 / late-remat-update-2.mir
blob3ffcb2fdf9e4061b8486832e71496ba08f6b6afb
1 # RUN: llc -mtriple=x86_64-- -run-pass=register-coalescer -run-pass=regallocbasic -run-pass=virtregrewriter -late-remat-update-threshold=0 %s -o - | FileCheck %s
3 # PR40061: %t2 = %t1 is rematerialized and %t1 is added into toBeUpdated set
4 # to postpone its live interval update. After the rematerialization, the live
5 # interval of %t1 is larger than necessary. Then %t1 is merged into %t3 and %t1
6 # gets removed. After the merge, %t3 contains live interval larger than
7 # necessary. Because %t3 is not in toBeUpdated set so its live interval is not
8 # updated after register coalescing, and it will break some assumption in
9 # regalloc. This test wants to check the live interval is up-to-date after
10 # register coalescing.
12 # To prevent the test from taking effect only in assert enabled mode, we want
13 # to achieve the test goal without dumping regalloc trace. We add strong hint
14 # to allocate both %t1 and %t2 to $rax register. If the %t1's live interval is
15 # not shrinked properly after register coalescing, %t1 and %t2 will not be
16 # both allocated to $rax because of inference, and we utilize the fact to
17 # achieve the test goal. But note that the assumption only holds when we use
18 # regallocbasic instead of greedy because greedy can update the live interval
19 # in the process of splitting.
21 # CHECK-LABEL: name: foo
22 # CHECK: bb.0.entry:
23 # CHECK: $rax = MOV64ri32 -11
24 # CHECK: bb.1:
25 # CHECK: $rax = MOV64ri32 -11
26 # CHECK: $rax = ADD64ri8 killed renamable $rax, 5
27 # CHECK: CMP64ri8 renamable $rax
28 # CHECK: RET 0, $rax
29 # CHECK: bb.2:
30 # CHECK: $rax = ADD64ri8 killed renamable $rax, 10
31 # CHECK: bb.3:
32 # CHECK: RET 0, $rax
33 ---
34 name:            foo
35 body:             |
36   bb.0.entry:
37     successors: %bb.1(0x15555555), %bb.2(0x6aaaaaab)
39     %t1:gr64 = MOV64ri32 -11
40     CMP64ri8 %t1, 1, implicit-def $eflags
41     JCC_1 %bb.2, 4, implicit killed $eflags
42     JMP_1 %bb.1
44   bb.1:
45     successors: %bb.1(0x80000000)
47     %t2:gr64 = COPY %t1
48     %t2:gr64 = ADD64ri8 %t2, 5, implicit-def $eflags
49     $rax = COPY %t2
50     CMP64ri8 %t2, 1, implicit-def $eflags
51     JCC_1 %bb.1, 4, implicit killed $eflags
52     RET 0, $rax
54   bb.2:
55     successors: %bb.3(0x80000000)
56     %t3:gr64 = COPY %t1
57     %t3:gr64 = ADD64ri8 %t3, 10, implicit-def $eflags
59   bb.3:
60     $rax = COPY %t3
61     RET 0, $rax
63 ...