summaryrefslogtreecommitdiffstats
path: root/llvm/test/CodeGen/AMDGPU/dead-mi-use-same-intr.mir
blob: 7a2bd12be409c31485f4127d4ddb9bc3b8b52b75 (plain)
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
48
49
50
51
52
53
54
55
# RUN: llc -march=amdgcn -mcpu=tonga -verify-machineinstrs -run-pass dead-mi-elimination -o - %s | FileCheck -check-prefix=GCN %s

# GCN-LABEL: name: dead_undef
# GCN:      bb.0:
# GCN-NEXT: S_ENDPGM 0
---
name:            dead_undef
tracksRegLiveness: true
registers:
  - { id: 0, class: vgpr_32 }
  - { id: 1, class: vgpr_32 }
  - { id: 2, class: vgpr_32 }
body: |
  bb.0:
  %0 = IMPLICIT_DEF
  %1 = IMPLICIT_DEF
  dead %2:vgpr_32 = V_MAC_F32_e32 %0:vgpr_32, %1:vgpr_32, undef %2:vgpr_32, implicit $exec
  S_ENDPGM 0

# GCN-LABEL: name: dead_defined
# GCN:      bb.0:
# GCN-NEXT: S_ENDPGM 0
---
name:            dead_defined
tracksRegLiveness: true
registers:
  - { id: 0, class: vgpr_32 }
  - { id: 1, class: vgpr_32 }
  - { id: 2, class: vgpr_32 }
body: |
  bb.0:
  %0 = IMPLICIT_DEF
  %1 = IMPLICIT_DEF
  %2 = IMPLICIT_DEF
  dead %2:vgpr_32 = V_MAC_F32_e32 %0:vgpr_32, %1:vgpr_32, %2:vgpr_32, implicit $exec
  S_ENDPGM 0

# Probably this dead mac can be removed anyway.
# GCN-LABEL: name: dead_def_live_use
# GCN:      dead %2:vgpr_32 = V_MAC_F32_e32 %0, %1, %2, implicit $exec
---
name:            dead_def_live_use
tracksRegLiveness: true
registers:
  - { id: 0, class: vgpr_32 }
  - { id: 1, class: vgpr_32 }
  - { id: 2, class: vgpr_32 }
body: |
  bb.0:
  %0 = IMPLICIT_DEF
  %1 = IMPLICIT_DEF
  %2 = IMPLICIT_DEF
  GLOBAL_STORE_DWORD undef $vgpr0_vgpr1, %2, 0, 0, 0, implicit $exec
  dead %2:vgpr_32 = V_MAC_F32_e32 %0:vgpr_32, %1:vgpr_32, %2:vgpr_32, implicit $exec
  S_ENDPGM 0
OpenPOWER on IntegriCloud