diff options
| author | Hal Finkel <hfinkel@anl.gov> | 2013-06-28 20:00:07 +0000 |
|---|---|---|
| committer | Hal Finkel <hfinkel@anl.gov> | 2013-06-28 20:00:07 +0000 |
| commit | 4ca70100de1c55bddd1ff9a2fb0347e2cb5a0520 (patch) | |
| tree | 76559690166a2a8f8b2b2d4b40ae6355cb65fb38 /llvm | |
| parent | 95609be563f6581b8ca508983a3330ac017eb0c3 (diff) | |
| download | bcm5719-llvm-4ca70100de1c55bddd1ff9a2fb0347e2cb5a0520.tar.gz bcm5719-llvm-4ca70100de1c55bddd1ff9a2fb0347e2cb5a0520.zip | |
Fix a PPC rlwimi instruction-selection bug
Under certain (evidently rare) circumstances, this code used to convert OR(a,
AND(x, y)) into OR(a, x). This was incorrect.
While there, I've added a comment to the code immediately above.
llvm-svn: 185201
Diffstat (limited to 'llvm')
| -rw-r--r-- | llvm/lib/Target/PowerPC/PPCISelDAGToDAG.cpp | 4 | ||||
| -rw-r--r-- | llvm/test/CodeGen/PowerPC/rlwimi-and.ll | 44 |
2 files changed, 46 insertions, 2 deletions
diff --git a/llvm/lib/Target/PowerPC/PPCISelDAGToDAG.cpp b/llvm/lib/Target/PowerPC/PPCISelDAGToDAG.cpp index 35f4b7c8d21..f8d990cee62 100644 --- a/llvm/lib/Target/PowerPC/PPCISelDAGToDAG.cpp +++ b/llvm/lib/Target/PowerPC/PPCISelDAGToDAG.cpp @@ -447,10 +447,10 @@ SDNode *PPCDAGToDAGISel::SelectBitfieldInsert(SDNode *N) { unsigned SHOpc = Op1.getOperand(0).getOpcode(); if ((SHOpc == ISD::SHL || SHOpc == ISD::SRL) && isInt32Immediate(Op1.getOperand(0).getOperand(1), Value)) { + // Note that Value must be in range here (less than 32) because + // otherwise there would not be any bits set in InsertMask. Op1 = Op1.getOperand(0).getOperand(0); SH = (SHOpc == ISD::SHL) ? Value : 32 - Value; - } else { - Op1 = Op1.getOperand(0); } } diff --git a/llvm/test/CodeGen/PowerPC/rlwimi-and.ll b/llvm/test/CodeGen/PowerPC/rlwimi-and.ll new file mode 100644 index 00000000000..e20a13fec0f --- /dev/null +++ b/llvm/test/CodeGen/PowerPC/rlwimi-and.ll @@ -0,0 +1,44 @@ +; RUN: llc -mcpu=pwr7 < %s | FileCheck %s +target datalayout = "E-p:64:64:64-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:64:64-f32:32:32-f64:64:64-f128:128:128-v128:128:128-n32:64" +target triple = "powerpc64-bgq-linux" + +define void @test() align 2 { +entry: + br i1 undef, label %codeRepl1, label %codeRepl31 + +codeRepl1: ; preds = %entry + br i1 undef, label %codeRepl4, label %codeRepl29 + +codeRepl4: ; preds = %codeRepl1 + br i1 undef, label %codeRepl12, label %codeRepl17 + +codeRepl12: ; preds = %codeRepl4 + unreachable + +codeRepl17: ; preds = %codeRepl4 + %0 = load i8* undef, align 2 + %1 = and i8 %0, 1 + %not.tobool.i.i.i = icmp eq i8 %1, 0 + %2 = select i1 %not.tobool.i.i.i, i16 0, i16 256 + %3 = load i8* undef, align 1 + %4 = and i8 %3, 1 + %not.tobool.i.1.i.i = icmp eq i8 %4, 0 + %rvml38.sroa.1.1.insert.ext = select i1 %not.tobool.i.1.i.i, i16 0, i16 1 + %rvml38.sroa.0.0.insert.insert = or i16 %rvml38.sroa.1.1.insert.ext, %2 + store i16 %rvml38.sroa.0.0.insert.insert, i16* undef, align 2 + unreachable + +; CHECK: @test +; CHECK-DAG: slwi [[R1:[0-9]+]], +; CHECK-DAG: rlwinm [[R2:[0-9]+]], +; CHECK-DAG: srawi [[R3:[0-9]+]], [[R1]] +; CHECK-DAG: rlwinm [[R4:[0-9]+]], [[R3]], 0, 23, 23 +; CHECK: rlwimi [[R4]], [[R2]], 0, + +codeRepl29: ; preds = %codeRepl1 + unreachable + +codeRepl31: ; preds = %entry + ret void +} + |

