Skip to content

Commit

Permalink
[AArch64] Regenerate arm64-vselect.ll test checks
Browse files Browse the repository at this point in the history
The ushll -> sshll FIXME had been fixed long ago, but nobody noticed because the test wasn't checking for either.....
  • Loading branch information
RKSimon committed Jul 13, 2022
1 parent 5271fcd commit 9bc77b7
Showing 1 changed file with 8 additions and 14 deletions.
22 changes: 8 additions & 14 deletions llvm/test/CodeGen/AArch64/arm64-vselect.ll
@@ -1,23 +1,17 @@
; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py
; RUN: llc < %s -mtriple=arm64-eabi -aarch64-neon-syntax=apple | FileCheck %s

;CHECK: @func63
;CHECK: cmeq.4h v0, v0, v1

;FIXME: currently, it will generate 3 instructions:
; ushll.4s v0, v0, #0
; shl.4s v0, v0, #31
; sshr.4s v0, v0, #31
;But these instrucitons can be optimized into 1 instruction:
; sshll.4s v0, v0, #0

;CHECK: bsl.16b v0, v2, v3
;CHECK: str q0, [x0]
;CHECK: ret

%T0_63 = type <4 x i16>
%T1_63 = type <4 x i32>
%T2_63 = type <4 x i1>
define void @func63(%T1_63* %out, %T0_63 %v0, %T0_63 %v1, %T1_63 %v2, %T1_63 %v3) {
; CHECK-LABEL: func63:
; CHECK: // %bb.0:
; CHECK-NEXT: cmeq.4h v0, v0, v1
; CHECK-NEXT: sshll.4s v0, v0, #0
; CHECK-NEXT: bsl.16b v0, v2, v3
; CHECK-NEXT: str q0, [x0]
; CHECK-NEXT: ret
%cond = icmp eq %T0_63 %v0, %v1
%r = select %T2_63 %cond, %T1_63 %v2, %T1_63 %v3
store %T1_63 %r, %T1_63* %out
Expand Down

0 comments on commit 9bc77b7

Please sign in to comment.