diff options
author | Chris Lattner <sabre@nondot.org> | 2005-04-25 21:03:25 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2005-04-25 21:03:25 +0000 |
commit | d373ff64aa876fa937a7fee5c68687f8fa885c0d (patch) | |
tree | 6ba5b4c71e01e1ba3aa7c0126e4085d0fef562d0 /llvm/lib/CodeGen | |
parent | e093c6f565d2b6e0582686d8fc0e32084224826c (diff) | |
download | bcm5719-llvm-d373ff64aa876fa937a7fee5c68687f8fa885c0d.tar.gz bcm5719-llvm-d373ff64aa876fa937a7fee5c68687f8fa885c0d.zip |
Codegen x < 0 | y < 0 as (x|y) < 0. This allows us to compile this to:
_foo:
or r2, r4, r3
srwi r3, r2, 31
blr
instead of:
_foo:
srwi r2, r4, 31
srwi r3, r3, 31
or r3, r2, r3
blr
llvm-svn: 21544
Diffstat (limited to 'llvm/lib/CodeGen')
-rw-r--r-- | llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp b/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp index 2eccb6b0fc6..10b6b76da4d 100644 --- a/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp +++ b/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp @@ -809,6 +809,7 @@ static bool MaskedValueIsZero(const SDOperand &Op, uint64_t Mask, return MaskedValueIsZero(Op.getOperand(0), NewVal, TLI); } return false; + // TODO we could handle some SRA cases here. default: break; } @@ -1061,11 +1062,13 @@ SDOperand SelectionDAG::getNode(unsigned Opcode, MVT::ValueType VT, // (X != 0) | (Y != 0) -> (X|Y != 0) // (X == 0) & (Y == 0) -> (X|Y == 0) + // (X < 0) | (Y < 0) -> (X|Y < 0) if (LR == RR && isa<ConstantSDNode>(LR) && cast<ConstantSDNode>(LR)->getValue() == 0 && Op2 == LHS->getCondition() && MVT::isInteger(LL.getValueType())) { if ((Op2 == ISD::SETEQ && Opcode == ISD::AND) || - (Op2 == ISD::SETNE && Opcode == ISD::OR)) + (Op2 == ISD::SETNE && Opcode == ISD::OR) || + (Op2 == ISD::SETLT && Opcode == ISD::OR)) return getSetCC(Op2, VT, getNode(ISD::OR, LR.getValueType(), LL, RL), LR); } |