summaryrefslogtreecommitdiffstats
path: root/llvm/test/CodeGen/AMDGPU/merge-store-usedef.ll
blob: 958692e0c92b1cb50d2df3fcfae5a71bb4e5b495 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
; RUN: llc -march=amdgcn -mcpu=verde -verify-machineinstrs < %s | FileCheck %s
; RUN: llc -march=amdgcn -mcpu=tonga -mattr=-flat-for-global -verify-machineinstrs < %s | FileCheck %s

; CHECK-LABEL: {{^}}test1:
; CHECK: ds_write_b32
; CHECK: ds_read_b32
; CHECK: ds_write_b32
define amdgpu_vs void @test1(i32 %v) #0 {
  %p0 = getelementptr i32, i32 addrspace(3)* null, i32 0
  %p1 = getelementptr i32, i32 addrspace(3)* null, i32 1

  store i32 %v, i32 addrspace(3)* %p0

  call void @llvm.amdgcn.tbuffer.store.i32(i32 %v, <4 x i32> undef, i32 0, i32 0, i32 0, i32 0, i32 4, i32 4, i1 1, i1 0)

  %w = load i32, i32 addrspace(3)* %p0
  store i32 %w, i32 addrspace(3)* %p1
  ret void
}

declare void @llvm.amdgcn.tbuffer.store.i32(i32, <4 x i32>, i32, i32, i32, i32, i32, i32, i1, i1) #0

attributes #0 = { nounwind }
OpenPOWER on IntegriCloud