File: lo16-hi16-illegal-copy.mir

package info (click to toggle)
llvm-toolchain-11 1%3A11.0.1-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 995,808 kB
  • sloc: cpp: 4,767,656; ansic: 760,916; asm: 477,436; python: 170,940; objc: 69,804; lisp: 29,914; sh: 23,855; f90: 18,173; pascal: 7,551; perl: 7,471; ml: 5,603; awk: 3,489; makefile: 2,573; xml: 915; cs: 573; fortran: 503; javascript: 452
file content (55 lines) | stat: -rw-r--r-- 2,364 bytes parent folder | download | duplicates (11)
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 -march=amdgcn -mcpu=gfx802 -start-before postrapseudos -asm-verbose=0 -amdgpu-keep-16-bit-reg-suffixes -verify-machineinstrs %s -o - 2>&1 | FileCheck -check-prefixes=ERR,GFX8-ERR %s
# RUN: not llc -march=amdgcn -mcpu=gfx802 -start-before postrapseudos -asm-verbose=0 -amdgpu-keep-16-bit-reg-suffixes -verify-machineinstrs %s -o - 2>&1 | FileCheck -check-prefix=GCN %s
# RUN: not llc -march=amdgcn -mcpu=gfx900 -start-before postrapseudos -asm-verbose=0 -amdgpu-keep-16-bit-reg-suffixes -verify-machineinstrs %s -o - 2>&1 | FileCheck -check-prefix=ERR %s
# RUN: not llc -march=amdgcn -mcpu=gfx900 -start-before postrapseudos -asm-verbose=0 -amdgpu-keep-16-bit-reg-suffixes -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 SGPR to VGPR 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 SGPR to VGPR 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
...