File: lo16-hi16-illegal-copy.mir

package info (click to toggle)
llvm-toolchain-20 1%3A20.1.6-1~exp1
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 2,111,304 kB
  • sloc: cpp: 7,438,677; ansic: 1,393,822; asm: 1,012,926; python: 241,650; f90: 86,635; objc: 75,479; lisp: 42,144; pascal: 17,286; sh: 10,027; ml: 5,082; perl: 4,730; awk: 3,523; makefile: 3,349; javascript: 2,251; xml: 892; fortran: 672
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
...