File: bug-sdag-scheduler-cycle.ll

package info (click to toggle)
llvm-toolchain-13 1%3A13.0.1-6~deb11u1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 1,418,812 kB
  • sloc: cpp: 5,290,827; ansic: 996,570; asm: 544,593; python: 188,212; objc: 72,027; lisp: 30,291; f90: 25,395; sh: 24,900; javascript: 9,780; pascal: 9,398; perl: 7,484; ml: 5,432; awk: 3,523; makefile: 2,892; xml: 953; cs: 573; fortran: 539
file content (27 lines) | stat: -rw-r--r-- 1,051 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
; RUN: llc < %s -mtriple=amdgcn--amdpal -mcpu=gfx1010 -verify-machineinstrs | FileCheck %s --check-prefixes=CHECK

; This used to cause a circular chain dependency during
; SelectionDAG instruction scheduling.

; CHECK-LABEL: {{^}}_amdgpu_gs_main:
; CHECK: ds_read_b32
; CHECK: ds_read_b32
; CHECK: ds_read_b32
; CHECK: ds_read_b32
define amdgpu_gs float @_amdgpu_gs_main(i8 addrspace(3)* %arg0, i8 addrspace(3)* %arg1, i8 addrspace(3)* %arg2) #0 {
  %tmp0 = bitcast i8 addrspace(3)* %arg0 to i32 addrspace(3)* addrspace(3)*
  %tmp = load volatile i32 addrspace(3)*, i32 addrspace(3)* addrspace(3)* %tmp0, align 4

  %tmp3 = load volatile i32, i32 addrspace(3)* %tmp, align 4

  %tmp4a = bitcast i8 addrspace(3)* %arg1 to i32 addrspace(3)*
  %tmp4 = load volatile i32, i32 addrspace(3)* %tmp4a, align 4

  %tmp7a = getelementptr i32, i32 addrspace(3)* %tmp, i32 8
  %tmp8 = load volatile i32, i32 addrspace(3)* %tmp7a, align 4

  %tmp9 = add i32 %tmp3, %tmp8
  %tmp10 = add i32 %tmp9, %tmp4
  %tmp14 = bitcast i32 %tmp10 to float
  ret float %tmp14
}