mirror of
https://github.com/RPCSX/llvm.git
synced 2024-11-24 12:19:53 +00:00
953c681473
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@239657 91177308-0d34-0410-b5e6-96231b3b80d8
31 lines
1.2 KiB
LLVM
31 lines
1.2 KiB
LLVM
; RUN: llc -march=amdgcn -mcpu=SI -verify-machineinstrs< %s | FileCheck -check-prefix=SI -check-prefix=FUNC %s
|
|
; RUN: llc -march=amdgcn -mcpu=tonga -verify-machineinstrs< %s | FileCheck -check-prefix=SI -check-prefix=FUNC %s
|
|
|
|
; FUNC-LABEL: {{^}}extract_vector_elt_v2i16:
|
|
; SI: buffer_load_ushort
|
|
; SI: buffer_load_ushort
|
|
; SI: buffer_store_short
|
|
; SI: buffer_store_short
|
|
define void @extract_vector_elt_v2i16(i16 addrspace(1)* %out, <2 x i16> %foo) nounwind {
|
|
%p0 = extractelement <2 x i16> %foo, i32 0
|
|
%p1 = extractelement <2 x i16> %foo, i32 1
|
|
%out1 = getelementptr i16, i16 addrspace(1)* %out, i32 1
|
|
store i16 %p1, i16 addrspace(1)* %out, align 2
|
|
store i16 %p0, i16 addrspace(1)* %out1, align 2
|
|
ret void
|
|
}
|
|
|
|
; FUNC-LABEL: {{^}}extract_vector_elt_v4i16:
|
|
; SI: buffer_load_ushort
|
|
; SI: buffer_load_ushort
|
|
; SI: buffer_store_short
|
|
; SI: buffer_store_short
|
|
define void @extract_vector_elt_v4i16(i16 addrspace(1)* %out, <4 x i16> %foo) nounwind {
|
|
%p0 = extractelement <4 x i16> %foo, i32 0
|
|
%p1 = extractelement <4 x i16> %foo, i32 2
|
|
%out1 = getelementptr i16, i16 addrspace(1)* %out, i32 1
|
|
store i16 %p1, i16 addrspace(1)* %out, align 2
|
|
store i16 %p0, i16 addrspace(1)* %out1, align 2
|
|
ret void
|
|
}
|