mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-15 20:29:48 +00:00
40e455d992
SI_IF and SI_ELSE are terminators which also produce a value. For these instructions ISel always inserts a COPY to move their value to another basic block. This COPY ends up between SI_(IF|ELSE) and the S_BRANCH* instruction at the end of the block. This breaks MachineBasicBlock::getFirstTerminator() and also the machine verifier which assumes that terminators are grouped together at the end of blocks. To solve this we coalesce the copy away right after ISel to make sure there are no instructions in between terminators at the end of blocks. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@207591 91177308-0d34-0410-b5e6-96231b3b80d8
30 lines
1.1 KiB
LLVM
30 lines
1.1 KiB
LLVM
; RUN: llc -march=r600 -mcpu=SI -verify-machineinstrs< %s | FileCheck -check-prefix=SI -check-prefix=FUNC %s
|
|
|
|
; FUNC-LABEL: @extract_vector_elt_v2i16
|
|
; SI: BUFFER_LOAD_USHORT
|
|
; SI: BUFFER_STORE_SHORT
|
|
; SI: BUFFER_LOAD_USHORT
|
|
; 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 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_STORE_SHORT
|
|
; SI: BUFFER_LOAD_USHORT
|
|
; 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 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
|
|
}
|