File: lo16-hi16-illegal-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 (55 lines) | stat: -rw-r--r-- 2,240 bytes parent folder | download | duplicates (9)
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: not llc -mtriple=amdgcn -mcpu=gfx802 -start-before postrapseudos -asm-verbose=0 -verify-machineinstrs %s -o - 2>&1 | FileCheck -check-prefixes=ERR,GFX8-ERR %s
# RUN: not llc -mtriple=amdgcn -mcpu=gfx802 -start-before postrapseudos -asm-verbose=0 -verify-machineinstrs %s -o - 2>&1 | FileCheck -check-prefix=GCN %s
# RUN: not llc -mtriple=amdgcn -mcpu=gfx900 -start-before postrapseudos -asm-verbose=0 -verify-machineinstrs %s -o - 2>&1 | FileCheck -check-prefix=ERR %s
# RUN: not llc -mtriple=amdgcn -mcpu=gfx900 -start-before postrapseudos -asm-verbose=0 -verify-machineinstrs %s -o - 2>&1 | FileCheck -check-prefixes=GCN,GFX9 %s

# Note: GFX8 did not allow SDWA SGPR sources. Therefor no HI16 subregs can be used there.

# GCN-LABEL: {{^}}lo_to_lo_illegal_vgpr_to_sgpr:
# GCN: ; illegal copy v0.l to s1.l
# ERR: error: <unknown>:0:0: in function lo_to_lo_illegal_vgpr_to_sgpr void (): illegal VGPR to SGPR copy
name: lo_to_lo_illegal_vgpr_to_sgpr
tracksRegLiveness: true
body:             |
  bb.0:
    $vgpr0 = IMPLICIT_DEF
    $sgpr1_lo16 = COPY $vgpr0_lo16
    S_ENDPGM 0
...

# GCN-LABEL: {{^}}lo_to_hi_sgpr_to_vgpr:
# GFX8: ; illegal copy s0.l to v1.h
# GFX9: v_mov_b32_sdwa v1, s0 dst_sel:WORD_1 dst_unused:UNUSED_PRESERVE src0_sel:WORD_0
# GFX8-ERR: error: <unknown>:0:0: in function lo_to_hi_sgpr_to_vgpr void (): Cannot use hi16 subreg on VI!
name: lo_to_hi_sgpr_to_vgpr
tracksRegLiveness: true
body:             |
  bb.0:
    $sgpr0 = IMPLICIT_DEF
    $vgpr1_hi16 = COPY killed $sgpr0_lo16
    S_ENDPGM 0
...

# GCN-LABEL: {{^}}lo_to_lo_illegal_agpr_to_sgpr:
# GCN: ; illegal copy a0.l to s1.l
# ERR: error: <unknown>:0:0: in function lo_to_lo_illegal_agpr_to_sgpr void (): illegal VGPR to SGPR copy
name: lo_to_lo_illegal_agpr_to_sgpr
tracksRegLiveness: true
body:             |
  bb.0:
    $agpr0 = IMPLICIT_DEF
    $sgpr1_lo16 = COPY $agpr0_lo16
    S_ENDPGM 0
...

# GCN-LABEL: {{^}}lo_to_hi_vgpr_to_agpr:
# GCN: ; illegal copy v0.h to a1.l
# ERR: error: <unknown>:0:0: in function lo_to_hi_vgpr_to_agpr void (): Cannot use hi16 subreg with an AGPR!
name: lo_to_hi_vgpr_to_agpr
tracksRegLiveness: true
body:             |
  bb.0:
    $vgpr0 = IMPLICIT_DEF
    $agpr1_lo16 = COPY killed $vgpr0_hi16
    S_ENDPGM 0
...