Files
clang-p2996/llvm/test/CodeGen/PowerPC/vsx_insert_extract_le.ll
Nemanja Ivanovic 6e7879c5e6 [Power9] Add exploitation of non-permuting memory ops
This patch corresponds to review:
https://reviews.llvm.org/D19825

The new lxvx/stxvx instructions do not require the swaps to line the elements
up correctly. In order to select them over the lxvd2x/lxvw4x instructions which
require swaps, the patterns for the old instruction have a predicate that
ensures they won't be selected on Power9 and newer CPUs.

llvm-svn: 282143
2016-09-22 09:52:19 +00:00

76 lines
1.9 KiB
LLVM

; RUN: llc -verify-machineinstrs -mcpu=pwr8 -mattr=+vsx \
; RUN: -mtriple=powerpc64le-unknown-linux-gnu < %s | FileCheck %s
; RUN: llc -verify-machineinstrs -mcpu=pwr9 -mattr=-power9-vector \
; RUN: -mtriple=powerpc64le-unknown-linux-gnu < %s | FileCheck %s
; RUN: llc -verify-machineinstrs -mcpu=pwr9 \
; RUN: -mtriple=powerpc64le-unknown-linux-gnu < %s | FileCheck %s \
; RUN: --check-prefix=CHECK-P9 --implicit-check-not xxswapd
define <2 x double> @testi0(<2 x double>* %p1, double* %p2) {
%v = load <2 x double>, <2 x double>* %p1
%s = load double, double* %p2
%r = insertelement <2 x double> %v, double %s, i32 0
ret <2 x double> %r
; CHECK-LABEL: testi0
; CHECK: lxvd2x 0, 0, 3
; CHECK: lxsdx 1, 0, 4
; CHECK: xxswapd 0, 0
; CHECK: xxspltd 1, 1, 0
; CHECK: xxpermdi 34, 0, 1, 1
; CHECK-P9-LABEL: testi0
; CHECK-P9: lxsdx 0, 0, 4
; CHECK-P9: lxvx 1, 0, 3
; CHECK-P9: xxspltd 0, 0, 0
; CHECK-P9: xxpermdi 34, 1, 0, 1
}
define <2 x double> @testi1(<2 x double>* %p1, double* %p2) {
%v = load <2 x double>, <2 x double>* %p1
%s = load double, double* %p2
%r = insertelement <2 x double> %v, double %s, i32 1
ret <2 x double> %r
; CHECK-LABEL: testi1
; CHECK: lxvd2x 0, 0, 3
; CHECK: lxsdx 1, 0, 4
; CHECK: xxswapd 0, 0
; CHECK: xxspltd 1, 1, 0
; CHECK: xxmrgld 34, 1, 0
; CHECK-P9-LABEL: testi1
; CHECK-P9: lxsdx 0, 0, 4
; CHECK-P9: lxvx 1, 0, 3
; CHECK-P9: xxspltd 0, 0, 0
; CHECK-P9: xxmrgld 34, 0, 1
}
define double @teste0(<2 x double>* %p1) {
%v = load <2 x double>, <2 x double>* %p1
%r = extractelement <2 x double> %v, i32 0
ret double %r
; CHECK-LABEL: teste0
; CHECK: lxvd2x 1, 0, 3
; CHECK-P9-LABEL: teste0
; CHECK-P9: lxsdx 1, 0, 3
}
define double @teste1(<2 x double>* %p1) {
%v = load <2 x double>, <2 x double>* %p1
%r = extractelement <2 x double> %v, i32 1
ret double %r
; CHECK-LABEL: teste1
; CHECK: lxvd2x 0, 0, 3
; CHECK: xxswapd 1, 0
; CHECK-P9-LABEL: teste1
; CHECK-P9: li 4, 8
; CHECK-P9: lxsdx 1, 3, 4
}