mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2026-04-21 08:17:40 +00:00
cd4bff761f
------------------------------------------------------------------------ r214463 | thomas.stellard | 2014-07-31 20:32:28 -0400 (Thu, 31 Jul 2014) | 7 lines R600/SI: Fix incorrect commute operation in shrink instructions pass We were commuting the instruction by still shrinking it using the original opcode. NOTE: This is a candidate for the 3.5 branch. ------------------------------------------------------------------------ git-svn-id: https://llvm.org/svn/llvm-project/llvm/branches/release_35@214894 91177308-0d34-0410-b5e6-96231b3b80d8
42 lines
1.4 KiB
LLVM
42 lines
1.4 KiB
LLVM
; RUN: llc -march=r600 -mcpu=SI -verify-machineinstrs< %s | FileCheck -check-prefix=SI -check-prefix=FUNC %s
|
|
; XXX: This testis for a bug in the SIShrinkInstruction pass and it will be
|
|
; relevant once we are selecting 64-bit instructions. We are
|
|
; currently selecting mostly 32-bit instruction, so the
|
|
; SIShrinkInstructions pass isn't doing much.
|
|
; XFAIL: *
|
|
|
|
; Test that we correctly commute a sub instruction
|
|
; FUNC-LABEL: @sub_rev
|
|
; SI-NOT: V_SUB_I32_e32 v{{[0-9]+}}, s
|
|
; SI: V_SUBREV_I32_e32 v{{[0-9]+}}, s
|
|
|
|
; ModuleID = 'vop-shrink.ll'
|
|
|
|
define void @sub_rev(i32 addrspace(1)* %out, <4 x i32> %sgpr, i32 %cond) {
|
|
entry:
|
|
%vgpr = call i32 @llvm.r600.read.tidig.x() #1
|
|
%tmp = icmp eq i32 %cond, 0
|
|
br i1 %tmp, label %if, label %else
|
|
|
|
if: ; preds = %entry
|
|
%tmp1 = getelementptr i32 addrspace(1)* %out, i32 1
|
|
%tmp2 = extractelement <4 x i32> %sgpr, i32 1
|
|
store i32 %tmp2, i32 addrspace(1)* %out
|
|
br label %endif
|
|
|
|
else: ; preds = %entry
|
|
%tmp3 = extractelement <4 x i32> %sgpr, i32 2
|
|
%tmp4 = sub i32 %vgpr, %tmp3
|
|
store i32 %tmp4, i32 addrspace(1)* %out
|
|
br label %endif
|
|
|
|
endif: ; preds = %else, %if
|
|
ret void
|
|
}
|
|
|
|
; Function Attrs: nounwind readnone
|
|
declare i32 @llvm.r600.read.tidig.x() #0
|
|
|
|
attributes #0 = { nounwind readnone }
|
|
attributes #1 = { readnone }
|