File: load-private-double16-amdgiz.ll

package info (click to toggle)
llvm-toolchain-7 1%3A7.0.1-8
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 733,456 kB
  • sloc: cpp: 3,776,651; ansic: 633,271; asm: 350,301; python: 142,716; objc: 107,612; sh: 22,626; lisp: 11,056; perl: 7,999; pascal: 6,742; ml: 5,537; awk: 3,536; makefile: 2,557; cs: 2,027; xml: 841; ruby: 156
file content (24 lines) | stat: -rw-r--r-- 989 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
; RUN: llc -mtriple=amdgcn-amd-amdhsa-amdgiz -verify-machineinstrs < %s | FileCheck -check-prefix=GCN %s

target datalayout = "e-p:64:64-p1:64:64-p2:64:64-p3:32:32-p4:32:32-p5:32:32-i64:64-v16:16-v24:32-v32:32-v48:64-v96:128-v192:256-v256:256-v512:512-v1024:1024-v2048:2048-n32:64-A5"

; GCN-LABEL: @test_unaligned_load
; GCN: buffer_load_dword
; GCN-NOT: flat_load_dword
define amdgpu_kernel void @test_unaligned_load(<16 x double> addrspace(1)* %results, i32 %i) {
entry:
  %a = inttoptr i32 %i to <16 x double> addrspace(5)*
  %v = load <16 x double>, <16 x double> addrspace(5)* %a, align 8 
  store <16 x double> %v, <16 x double> addrspace(1)* %results, align 128
  ret void
}

; GCN-LABEL: @test_unaligned_store
; GCN: buffer_store_dword
; GCN-NOT: flat_store_dword
define amdgpu_kernel void @test_unaligned_store(<16 x double> %v, i32 %i) {
entry:
  %a = inttoptr i32 %i to <16 x double> addrspace(5)*
  store <16 x double> %v, <16 x double> addrspace(5)* %a, align 8
  ret void
}