mirror of
https://github.com/RPCSX/llvm.git
synced 2025-01-10 22:46:20 +00:00
31333a7c12
"insert_subreg, subreg_to_reg, and reg_sequence" instructions' after adjusting some unittest checks. This is to solve PR28852. The restriction was added at 2010 to make better register coalescing. We assumed that it was not necessary any more. Testing results on x86 supported the assumption. We will look closely to any performance impact it will bring and will be prepared to help analyzing performance problem found on other architectures. Differential Revision: https://reviews.llvm.org/D23210 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@278466 91177308-0d34-0410-b5e6-96231b3b80d8
18 lines
418 B
LLVM
18 lines
418 B
LLVM
; RUN: llc < %s -mtriple=thumbv7-apple-ios | FileCheck %s
|
|
; rdar://12201387
|
|
|
|
;CHECK-LABEL: select_s_v_v:
|
|
;CHECK: itee ne
|
|
;CHECK-NEXT: vmovne.i32
|
|
;CHECK-NEXT: vmoveq
|
|
;CHECK-NEXT: vmoveq
|
|
;CHECK: bx
|
|
define <16 x i8> @select_s_v_v(<16 x i8> %vec, i32 %avail) {
|
|
entry:
|
|
%and = and i32 %avail, 1
|
|
%tobool = icmp eq i32 %and, 0
|
|
%ret = select i1 %tobool, <16 x i8> %vec, <16 x i8> zeroinitializer
|
|
ret <16 x i8> %ret
|
|
}
|
|
|