mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 03:02:36 +01:00
cd75f620b8
This patch fixes pr32063. Current code in PPCTargetLowering::PerformDAGCombine can transform bswap store into a single PPCISD::STBRX instruction. but it doesn't consider the case that the operand size of bswap may be larger than store size. When it occurs, we need 2 modifications, 1 For the last operand of PPCISD::STBRX, we should not use DAG.getValueType(N->getOperand(1).getValueType()), instead we should use cast<StoreSDNode>(N)->getMemoryVT(). 2 Before PPCISD::STBRX, we need to shift the original operand of bswap to the right side. Differential Revision: https://reviews.llvm.org/D30362 llvm-svn: 296811
17 lines
376 B
LLVM
17 lines
376 B
LLVM
; RUN: llc -O2 < %s | FileCheck %s
|
|
target triple = "powerpc64le-linux-gnu"
|
|
|
|
define void @foo(i32 %v, i16* %p) {
|
|
%1 = and i32 %v, -65536
|
|
%2 = tail call i32 @llvm.bswap.i32(i32 %1)
|
|
%conv = trunc i32 %2 to i16
|
|
store i16 %conv, i16* %p
|
|
ret void
|
|
|
|
; CHECK: srwi
|
|
; CHECK: sthbrx
|
|
; CHECK-NOT: stwbrx
|
|
}
|
|
|
|
declare i32 @llvm.bswap.i32(i32)
|