We are going to remove the old 'perfect shuffle' optimization since it brings performance penalty in hot loop around vectors. For example, in following loop sharing the same mask: %v.1 = shufflevector ... <0,1,2,3,8,9,10,11,16,17,18,19,24,25,26,27> %v.2 = shufflevector ... <0,1,2,3,8,9,10,11,16,17,18,19,24,25,26,27> The generated instructions will be `vmrglw-vmrghw-vmrglw-vmrghw` instead of `vperm-vperm`. In some large loop cases, this causes 20%+ performance penalty. The original attempt to resolve this is to pre-record masks of every shufflevector operation in DAG, but that is somewhat complex and brings unnecessary computation (to scan all nodes) in optimization. Here we disable it by default. There're indeed some cases becoming worse after this, which will be fixed in a more careful way in future patches. Reviewed By: jsji Differential Revision: https://reviews.llvm.org/D121082
105 lines
3.8 KiB
LLVM
105 lines
3.8 KiB
LLVM
; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py
|
|
; RUN: llc -mtriple powerpc64-ibm-aix-xcoff -mcpu=pwr7 \
|
|
; RUN: -verify-machineinstrs -O2 -mattr=vsx < %s | \
|
|
; RUN: FileCheck %s --check-prefix=CHECK-AIX
|
|
; RUN: llc -mtriple powerpc64le-unknown-linux-gnu -mcpu=pwr8 \
|
|
; RUN: -verify-machineinstrs -O2 -mattr=vsx < %s | \
|
|
; RUN: FileCheck %s
|
|
|
|
define void @test_aix_splatimm(i32 %arg, i32 %arg1, i32 %arg2) {
|
|
; CHECK-AIX-LABEL: test_aix_splatimm:
|
|
; CHECK-AIX: # %bb.0: # %bb
|
|
; CHECK-AIX-NEXT: bclr 12, 20, 0
|
|
; CHECK-AIX-NEXT: # %bb.1: # %bb3
|
|
; CHECK-AIX-NEXT: srwi 4, 4, 16
|
|
; CHECK-AIX-NEXT: srwi 5, 5, 16
|
|
; CHECK-AIX-NEXT: mullw 4, 5, 4
|
|
; CHECK-AIX-NEXT: lwz 5, 0(3)
|
|
; CHECK-AIX-NEXT: slwi 3, 3, 8
|
|
; CHECK-AIX-NEXT: neg 3, 3
|
|
; CHECK-AIX-NEXT: srwi 5, 5, 1
|
|
; CHECK-AIX-NEXT: sth 3, -32(1)
|
|
; CHECK-AIX-NEXT: addi 3, 1, -32
|
|
; CHECK-AIX-NEXT: mullw 4, 4, 5
|
|
; CHECK-AIX-NEXT: li 5, 0
|
|
; CHECK-AIX-NEXT: sth 5, -48(1)
|
|
; CHECK-AIX-NEXT: neg 4, 4
|
|
; CHECK-AIX-NEXT: sth 4, -16(1)
|
|
; CHECK-AIX-NEXT: addi 4, 1, -48
|
|
; CHECK-AIX-NEXT: lxvw4x 34, 0, 4
|
|
; CHECK-AIX-NEXT: lxvw4x 35, 0, 3
|
|
; CHECK-AIX-NEXT: addi 3, 1, -16
|
|
; CHECK-AIX-NEXT: lxvw4x 36, 0, 3
|
|
; CHECK-AIX-NEXT: ld 3, L..C0(2) # %const.0
|
|
; CHECK-AIX-NEXT: vmrghh 3, 2, 3
|
|
; CHECK-AIX-NEXT: vmrghh 4, 4, 2
|
|
; CHECK-AIX-NEXT: vsplth 2, 2, 0
|
|
; CHECK-AIX-NEXT: xxmrghw 34, 35, 34
|
|
; CHECK-AIX-NEXT: lxvw4x 35, 0, 3
|
|
; CHECK-AIX-NEXT: vperm 2, 2, 4, 3
|
|
; CHECK-AIX-NEXT: vsplth 3, 2, 1
|
|
; CHECK-AIX-NEXT: vsplth 2, 2, 4
|
|
; CHECK-AIX-NEXT: stxvw4x 35, 0, 5
|
|
; CHECK-AIX-NEXT: stxvw4x 34, 0, 3
|
|
;
|
|
; CHECK-LABEL: test_aix_splatimm:
|
|
; CHECK: # %bb.0: # %bb
|
|
; CHECK-NEXT: bclr 12, 20, 0
|
|
; CHECK-NEXT: # %bb.1: # %bb3
|
|
; CHECK-NEXT: srwi 4, 4, 16
|
|
; CHECK-NEXT: srwi 5, 5, 16
|
|
; CHECK-NEXT: mullw 4, 5, 4
|
|
; CHECK-NEXT: lwz 5, 0(3)
|
|
; CHECK-NEXT: slwi 3, 3, 8
|
|
; CHECK-NEXT: neg 3, 3
|
|
; CHECK-NEXT: srwi 5, 5, 1
|
|
; CHECK-NEXT: mtvsrd 35, 3
|
|
; CHECK-NEXT: mullw 4, 4, 5
|
|
; CHECK-NEXT: li 5, 0
|
|
; CHECK-NEXT: mtvsrd 34, 5
|
|
; CHECK-NEXT: vmrghh 3, 3, 2
|
|
; CHECK-NEXT: neg 3, 4
|
|
; CHECK-NEXT: mtvsrd 36, 3
|
|
; CHECK-NEXT: addis 3, 2, .LCPI0_0@toc@ha
|
|
; CHECK-NEXT: addi 3, 3, .LCPI0_0@toc@l
|
|
; CHECK-NEXT: vmrghh 4, 2, 4
|
|
; CHECK-NEXT: vsplth 2, 2, 3
|
|
; CHECK-NEXT: xxmrglw 34, 34, 35
|
|
; CHECK-NEXT: lvx 3, 0, 3
|
|
; CHECK-NEXT: li 3, 0
|
|
; CHECK-NEXT: vperm 2, 4, 2, 3
|
|
; CHECK-NEXT: vsplth 3, 2, 6
|
|
; CHECK-NEXT: vsplth 2, 2, 3
|
|
; CHECK-NEXT: stvx 3, 0, 3
|
|
; CHECK-NEXT: stvx 2, 0, 3
|
|
bb:
|
|
br i1 undef, label %bb22, label %bb3
|
|
|
|
bb3: ; preds = %bb
|
|
%i = insertelement <8 x i16> undef, i16 0, i32 0
|
|
%i4 = trunc i32 %arg to i16
|
|
%i5 = mul i16 %i4, -256
|
|
%i6 = insertelement <8 x i16> %i, i16 %i5, i32 1
|
|
%i7 = ashr i32 %arg1, 16
|
|
%i8 = ashr i32 %arg2, 16
|
|
%i9 = mul nsw i32 %i8, %i7
|
|
%i10 = insertelement <8 x i16> %i6, i16 0, i32 2
|
|
%i11 = insertelement <8 x i16> %i10, i16 0, i32 3
|
|
%i12 = load i32, i32* undef, align 4
|
|
%i13 = ashr i32 %i12, 1
|
|
%i14 = mul i32 %i9, %i13
|
|
%i15 = trunc i32 %i14 to i16
|
|
%i16 = sub i16 0, %i15
|
|
%i17 = insertelement <8 x i16> %i11, i16 %i16, i32 4
|
|
%i18 = insertelement <8 x i16> %i17, i16 0, i32 5
|
|
%i19 = bitcast <8 x i16> %i18 to <16 x i8>
|
|
%i20 = shufflevector <16 x i8> %i19, <16 x i8> undef, <16 x i32> <i32 2, i32 3, i32 2, i32 3, i32 2, i32 3, i32 2, i32 3, i32 2, i32 3, i32 2, i32 3, i32 2, i32 3, i32 2, i32 3>
|
|
store <16 x i8> %i20, <16 x i8>* null, align 16
|
|
%i21 = shufflevector <16 x i8> %i19, <16 x i8> undef, <16 x i32> <i32 8, i32 9, i32 8, i32 9, i32 8, i32 9, i32 8, i32 9, i32 8, i32 9, i32 8, i32 9, i32 8, i32 9, i32 8, i32 9>
|
|
store <16 x i8> %i21, <16 x i8>* undef, align 16
|
|
unreachable
|
|
|
|
bb22: ; preds = %bb
|
|
ret void
|
|
}
|