File: coalescer-partial-redundancy-clear-dead-flag-undef-copy.mir

package info (click to toggle)
llvm-toolchain-19 1%3A19.1.7-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,998,520 kB
  • sloc: cpp: 6,951,680; ansic: 1,486,157; asm: 913,598; python: 232,024; f90: 80,126; objc: 75,281; lisp: 37,276; pascal: 16,990; sh: 10,009; ml: 5,058; perl: 4,724; awk: 3,523; makefile: 3,167; javascript: 2,504; xml: 892; fortran: 664; cs: 573
file content (47 lines) | stat: -rw-r--r-- 1,782 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
# NOTE: Assertions have been autogenerated by utils/update_mir_test_checks.py UTC_ARGS: --version 4
# RUN: llc -mtriple=x86_64-pc-linux-gnu -run-pass=register-coalescer -verify-coalescing -o - %s | FileCheck %s

# Check for "Live range continues after dead def flag".

# There are 2 copies of undef, but the registers also appear to be
# live due to block live outs, and thus were not deleted as
# eliminateUndefCopy only considered the live range, and not the undef
# flag.
#
# removePartialRedundancy would move the COPY undef %0 in bb.1 to
# bb.0.  The live range of %1 would then be extended to be live out of
# %bb.1 for the backedge phi. This would then fail the verifier, since
# the dead flag was no longer valid. This was fixed by directly
# considering the undef flag to avoid considering this special case.

---
name: partial_redundancy_coalesce_undef_copy_live_out
tracksRegLiveness: true
body:             |
  ; CHECK-LABEL: name: partial_redundancy_coalesce_undef_copy_live_out
  ; CHECK: bb.0:
  ; CHECK-NEXT:   successors: %bb.1(0x80000000)
  ; CHECK-NEXT:   liveins: $rdi
  ; CHECK-NEXT: {{  $}}
  ; CHECK-NEXT:   [[COPY:%[0-9]+]]:gr32 = COPY $rdi
  ; CHECK-NEXT: {{  $}}
  ; CHECK-NEXT: bb.1:
  ; CHECK-NEXT:   successors: %bb.1(0x80000000)
  ; CHECK-NEXT: {{  $}}
  ; CHECK-NEXT:   dead [[XOR32ri:%[0-9]+]]:gr32 = XOR32ri undef [[XOR32ri]], 1, implicit-def dead $eflags
  ; CHECK-NEXT:   dead [[MOV32rr:%[0-9]+]]:gr32 = MOV32rr [[COPY]]
  ; CHECK-NEXT:   [[COPY:%[0-9]+]]:gr32 = IMPLICIT_DEF
  ; CHECK-NEXT:   JMP_1 %bb.1
  bb.0:
    liveins: $rdi

    %0:gr32 = COPY $rdi

  bb.1:
    %1:gr32 = COPY undef %0
    dead %1:gr32 = XOR32ri %1, 1, implicit-def dead $eflags
    dead %2:gr32 = MOV32rr killed %0
    %0:gr32 = COPY killed undef %1
    JMP_1 %bb.1

...