mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 03:33:20 +01:00
582bb030db
We can't enable the verifier for tests with SI_IF and SI_ELSE, because these instructions are always followed by a COPY which copies their result to the next basic block. This violates the machine verifier's rule that non-terminators can not folow terminators. Reviewed-by: Vincent Lejeune<vljn at ovi.com> llvm-svn: 192366
35 lines
1.1 KiB
LLVM
35 lines
1.1 KiB
LLVM
; RUN: llc < %s -march=r600 -mcpu=redwood | FileCheck %s --check-prefix=R600-CHECK
|
|
; RUN: llc < %s -march=r600 -mcpu=SI -verify-machineinstrs | FileCheck %s --check-prefix=SI-CHECK
|
|
|
|
; R600-CHECK: @build_vector2
|
|
; R600-CHECK: MOV
|
|
; R600-CHECK: MOV
|
|
; R600-CHECK-NOT: MOV
|
|
; SI-CHECK: @build_vector2
|
|
; SI-CHECK-DAG: V_MOV_B32_e32 [[X:VGPR[0-9]]], 5
|
|
; SI-CHECK-DAG: V_MOV_B32_e32 [[Y:VGPR[0-9]]], 6
|
|
; SI-CHECK: BUFFER_STORE_DWORDX2 [[X]]_[[Y]]
|
|
define void @build_vector2 (<2 x i32> addrspace(1)* %out) {
|
|
entry:
|
|
store <2 x i32> <i32 5, i32 6>, <2 x i32> addrspace(1)* %out
|
|
ret void
|
|
}
|
|
|
|
; R600-CHECK: @build_vector4
|
|
; R600-CHECK: MOV
|
|
; R600-CHECK: MOV
|
|
; R600-CHECK: MOV
|
|
; R600-CHECK: MOV
|
|
; R600-CHECK-NOT: MOV
|
|
; SI-CHECK: @build_vector4
|
|
; SI-CHECK-DAG: V_MOV_B32_e32 [[X:VGPR[0-9]]], 5
|
|
; SI-CHECK-DAG: V_MOV_B32_e32 [[Y:VGPR[0-9]]], 6
|
|
; SI-CHECK-DAG: V_MOV_B32_e32 [[Z:VGPR[0-9]]], 7
|
|
; SI-CHECK-DAG: V_MOV_B32_e32 [[W:VGPR[0-9]]], 8
|
|
; SI-CHECK: BUFFER_STORE_DWORDX4 [[X]]_[[Y]]_[[Z]]_[[W]]
|
|
define void @build_vector4 (<4 x i32> addrspace(1)* %out) {
|
|
entry:
|
|
store <4 x i32> <i32 5, i32 6, i32 7, i32 8>, <4 x i32> addrspace(1)* %out
|
|
ret void
|
|
}
|