File: flat-scratch-init.gfx.ll

package info (click to toggle)
llvm-toolchain-16 1%3A16.0.6-15~deb12u1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 1,634,792 kB
  • sloc: cpp: 6,179,261; ansic: 1,216,205; asm: 741,319; python: 196,614; objc: 75,325; f90: 49,640; lisp: 32,396; pascal: 12,286; sh: 9,394; perl: 7,442; ml: 5,494; awk: 3,523; makefile: 2,723; javascript: 1,206; xml: 886; fortran: 581; cs: 573
file content (43 lines) | stat: -rw-r--r-- 1,713 bytes parent folder | download | duplicates (5)
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
; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py
; RUN: llc -global-isel -mattr=+enable-flat-scratch -mtriple=amdgcn-mesa-mesa3d -mcpu=gfx900 < %s | FileCheck -check-prefix=MESA %s
; RUN: llc -global-isel -mattr=+enable-flat-scratch -mtriple=amdgcn-amd-amdpal -mcpu=gfx900 < %s | FileCheck -check-prefix=PAL %s

; Test that the initialization for flat_scratch doesn't crash.  PAL
; doesn't add a user SGPR for initializing flat_scratch, mesa does
; (although this probably isn't actually defined).

define amdgpu_ps void @amdgpu_ps() {
; MESA-LABEL: amdgpu_ps:
; MESA:       ; %bb.0:
; MESA-NEXT:    s_add_u32 flat_scratch_lo, s2, s4
; MESA-NEXT:    s_mov_b64 s[0:1], src_private_base
; MESA-NEXT:    s_addc_u32 flat_scratch_hi, s3, 0
; MESA-NEXT:    v_mov_b32_e32 v0, 4
; MESA-NEXT:    v_mov_b32_e32 v1, s1
; MESA-NEXT:    v_mov_b32_e32 v2, 0
; MESA-NEXT:    flat_store_dword v[0:1], v2
; MESA-NEXT:    s_waitcnt vmcnt(0)
; MESA-NEXT:    s_endpgm
;
; PAL-LABEL: amdgpu_ps:
; PAL:       ; %bb.0:
; PAL-NEXT:    s_getpc_b64 s[2:3]
; PAL-NEXT:    s_mov_b32 s2, s0
; PAL-NEXT:    s_load_dwordx2 s[2:3], s[2:3], 0x0
; PAL-NEXT:    v_mov_b32_e32 v0, 4
; PAL-NEXT:    v_mov_b32_e32 v2, 0
; PAL-NEXT:    s_waitcnt lgkmcnt(0)
; PAL-NEXT:    s_and_b32 s3, s3, 0xffff
; PAL-NEXT:    s_add_u32 flat_scratch_lo, s2, s0
; PAL-NEXT:    s_mov_b64 s[0:1], src_private_base
; PAL-NEXT:    s_addc_u32 flat_scratch_hi, s3, 0
; PAL-NEXT:    v_mov_b32_e32 v1, s1
; PAL-NEXT:    flat_store_dword v[0:1], v2
; PAL-NEXT:    s_waitcnt vmcnt(0)
; PAL-NEXT:    s_endpgm
  %alloca = alloca i32, addrspace(5)
  %cast = addrspacecast ptr addrspace(5) %alloca to ptr
  store volatile i32 0, ptr %cast
  ret void
}