mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 11:13:28 +01:00
7ebfc5f86b
This patch corresponds to review: The newly added VSX D-Form (register + offset) memory ops target the upper half of the VSX register set. The existing ones target the lower half. In order to unify these and have the ability to target all the VSX registers using D-Form operations, this patch defines Pseudo-ops for the loads/stores which are expanded post-RA. The expansion then choses the correct opcode based on the register that was allocated for the operation. llvm-svn: 283212
75 lines
2.0 KiB
LLVM
75 lines
2.0 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: lfd [[REG1:[0-9]+]], 0(4)
|
|
; CHECK-P9: lxvx [[REG2:[0-9]+]], 0, 3
|
|
; CHECK-P9: xxspltd [[REG3:[0-9]+]], [[REG1]], 0
|
|
; CHECK-P9: xxpermdi 34, [[REG2]], [[REG3]], 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: lfd [[REG1:[0-9]+]], 0(4)
|
|
; CHECK-P9: lxvx [[REG2:[0-9]+]], 0, 3
|
|
; CHECK-P9: xxspltd [[REG3:[0-9]+]], [[REG1]], 0
|
|
; CHECK-P9: xxmrgld 34, [[REG3]], [[REG2]]
|
|
}
|
|
|
|
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: lfd 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: lfd 1, 8(3)
|
|
}
|