2005-09-02 07:24:04 +08:00
|
|
|
//===-- DAGCombiner.cpp - Implement a DAG node combiner -------------------===//
|
2005-09-01 08:19:25 +08:00
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file was developed by Nate Begeman and is distributed under the
|
|
|
|
// University of Illinois Open Source License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This pass combines dag nodes to form fewer, simpler DAG nodes. It can be run
|
|
|
|
// both before and after the DAG is legalized.
|
|
|
|
//
|
|
|
|
// FIXME: Missing folds
|
|
|
|
// sdiv, udiv, srem, urem (X, const) where X is an integer can be expanded into
|
|
|
|
// a sequence of multiplies, shifts, and adds. This should be controlled by
|
|
|
|
// some kind of hint from the target that int div is expensive.
|
|
|
|
// various folds of mulh[s,u] by constants such as -1, powers of 2, etc.
|
|
|
|
//
|
|
|
|
// FIXME: Should add a corresponding version of fold AND with
|
|
|
|
// ZERO_EXTEND/SIGN_EXTEND by converting them to an ANY_EXTEND node which
|
|
|
|
// we don't have yet.
|
|
|
|
//
|
|
|
|
// FIXME: mul (x, const) -> shifts + adds
|
|
|
|
// FIXME: undef values
|
|
|
|
// FIXME: zero extend when top bits are 0 -> drop it ?
|
2005-09-02 07:24:04 +08:00
|
|
|
// FIXME: make truncate see through SIGN_EXTEND and AND
|
|
|
|
// FIXME: sext_in_reg(setcc) on targets that return zero or one, and where
|
|
|
|
// EVT != MVT::i1 can drop the sext.
|
|
|
|
// FIXME: (or x, c) -> c iff maskedValueIsZero(x, ~c)
|
|
|
|
// FIXME: MaskedValueIsZero can see through SRL, so it should be sufficient to:
|
2005-09-03 05:18:40 +08:00
|
|
|
//if (N1C && MaskedValueIsZero(SDOperand(N, 0), ~0ULL >> (64-OpSizeInBits),TLI))
|
2005-09-02 07:24:04 +08:00
|
|
|
// return DAG.getConstant(0, VT).Val;
|
|
|
|
// FIXME: (sra (sra x, c1), c2) -> (sra x, c1+c2)
|
2005-09-03 05:18:40 +08:00
|
|
|
// FIXME: verify that getNode can't return extends with an operand whose type
|
|
|
|
// is >= to that of the extend.
|
|
|
|
// FIXME: divide by zero is currently left unfolded. do we want to turn this
|
|
|
|
// into an undef?
|
2005-09-01 08:19:25 +08:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#define DEBUG_TYPE "dagcombine"
|
|
|
|
#include "llvm/ADT/Statistic.h"
|
|
|
|
#include "llvm/CodeGen/SelectionDAG.h"
|
|
|
|
#include "llvm/Support/MathExtras.h"
|
|
|
|
#include "llvm/Target/TargetLowering.h"
|
|
|
|
#include <cmath>
|
|
|
|
using namespace llvm;
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
Statistic<> NodesCombined ("dagcombiner", "Number of dag nodes combined");
|
|
|
|
|
|
|
|
class DAGCombiner {
|
|
|
|
SelectionDAG &DAG;
|
|
|
|
TargetLowering &TLI;
|
2005-09-02 07:24:04 +08:00
|
|
|
bool AfterLegalize;
|
2005-09-01 08:19:25 +08:00
|
|
|
|
|
|
|
// Worklist of all of the nodes that need to be simplified.
|
|
|
|
std::vector<SDNode*> WorkList;
|
|
|
|
|
|
|
|
/// AddUsersToWorkList - When an instruction is simplified, add all users of
|
|
|
|
/// the instruction to the work lists because they might get more simplified
|
|
|
|
/// now.
|
|
|
|
///
|
|
|
|
void AddUsersToWorkList(SDNode *N) {
|
|
|
|
for (SDNode::use_iterator UI = N->use_begin(), UE = N->use_end();
|
2005-09-02 07:24:04 +08:00
|
|
|
UI != UE; ++UI)
|
|
|
|
WorkList.push_back(*UI);
|
2005-09-01 08:19:25 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/// removeFromWorkList - remove all instances of N from the worklist.
|
|
|
|
void removeFromWorkList(SDNode *N) {
|
|
|
|
WorkList.erase(std::remove(WorkList.begin(), WorkList.end(), N),
|
|
|
|
WorkList.end());
|
|
|
|
}
|
|
|
|
|
|
|
|
/// visit - call the node-specific routine that knows how to fold each
|
|
|
|
/// particular type of node.
|
|
|
|
SDNode *visit(SDNode *N);
|
|
|
|
|
|
|
|
// Visitation implementation - Implement dag node combining for different
|
|
|
|
// node types. The semantics are as follows:
|
|
|
|
// Return Value:
|
|
|
|
// null - No change was made
|
|
|
|
// otherwise - Node N should be replaced by the returned node.
|
|
|
|
//
|
|
|
|
SDNode *visitTokenFactor(SDNode *N);
|
2005-09-03 05:18:40 +08:00
|
|
|
SDNode *visitADD(SDNode *N);
|
|
|
|
SDNode *visitSUB(SDNode *N);
|
|
|
|
SDNode *visitMUL(SDNode *N);
|
|
|
|
SDNode *visitSDIV(SDNode *N);
|
|
|
|
SDNode *visitUDIV(SDNode *N);
|
|
|
|
SDNode *visitSREM(SDNode *N);
|
|
|
|
SDNode *visitUREM(SDNode *N);
|
|
|
|
SDNode *visitMULHU(SDNode *N);
|
|
|
|
SDNode *visitMULHS(SDNode *N);
|
|
|
|
SDNode *visitAND(SDNode *N);
|
|
|
|
SDNode *visitOR(SDNode *N);
|
|
|
|
SDNode *visitXOR(SDNode *N);
|
|
|
|
SDNode *visitSHL(SDNode *N);
|
|
|
|
SDNode *visitSRA(SDNode *N);
|
|
|
|
SDNode *visitSRL(SDNode *N);
|
|
|
|
SDNode *visitCTLZ(SDNode *N);
|
|
|
|
SDNode *visitCTTZ(SDNode *N);
|
|
|
|
SDNode *visitCTPOP(SDNode *N);
|
2005-09-01 08:19:25 +08:00
|
|
|
// select
|
|
|
|
// select_cc
|
|
|
|
// setcc
|
2005-09-03 05:18:40 +08:00
|
|
|
SDNode *visitSIGN_EXTEND(SDNode *N);
|
|
|
|
SDNode *visitZERO_EXTEND(SDNode *N);
|
|
|
|
SDNode *visitSIGN_EXTEND_INREG(SDNode *N);
|
|
|
|
SDNode *visitTRUNCATE(SDNode *N);
|
|
|
|
SDNode *visitSINT_TO_FP(SDNode *N);
|
|
|
|
SDNode *visitUINT_TO_FP(SDNode *N);
|
|
|
|
SDNode *visitFP_TO_SINT(SDNode *N);
|
|
|
|
SDNode *visitFP_TO_UINT(SDNode *N);
|
|
|
|
SDNode *visitFP_ROUND(SDNode *N);
|
|
|
|
SDNode *visitFP_ROUND_INREG(SDNode *N);
|
|
|
|
SDNode *visitFP_EXTEND(SDNode *N);
|
|
|
|
SDNode *visitFNEG(SDNode *N);
|
|
|
|
SDNode *visitFABS(SDNode *N);
|
2005-09-01 08:19:25 +08:00
|
|
|
// brcond
|
|
|
|
// brcondtwoway
|
|
|
|
// br_cc
|
|
|
|
// brtwoway_cc
|
|
|
|
public:
|
|
|
|
DAGCombiner(SelectionDAG &D)
|
2005-09-03 05:18:40 +08:00
|
|
|
: DAG(D), TLI(D.getTargetLoweringInfo()), AfterLegalize(false) {}
|
2005-09-01 08:19:25 +08:00
|
|
|
|
|
|
|
/// Run - runs the dag combiner on all nodes in the work list
|
2005-09-02 07:24:04 +08:00
|
|
|
void Run(bool RunningAfterLegalize);
|
2005-09-01 08:19:25 +08:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
/// MaskedValueIsZero - Return true if 'V & Mask' is known to be zero. We use
|
|
|
|
/// this predicate to simplify operations downstream. V and Mask are known to
|
|
|
|
/// be the same type.
|
|
|
|
static bool MaskedValueIsZero(const SDOperand &Op, uint64_t Mask,
|
|
|
|
const TargetLowering &TLI) {
|
|
|
|
unsigned SrcBits;
|
|
|
|
if (Mask == 0) return true;
|
|
|
|
|
|
|
|
// If we know the result of a setcc has the top bits zero, use this info.
|
|
|
|
switch (Op.getOpcode()) {
|
2005-09-02 07:24:04 +08:00
|
|
|
case ISD::Constant:
|
|
|
|
return (cast<ConstantSDNode>(Op)->getValue() & Mask) == 0;
|
|
|
|
case ISD::SETCC:
|
2005-09-03 05:18:40 +08:00
|
|
|
// FIXME: teach this about non ZeroOrOne values, such as 0 or -1
|
2005-09-02 07:24:04 +08:00
|
|
|
return ((Mask & 1) == 0) &&
|
|
|
|
TLI.getSetCCResultContents() == TargetLowering::ZeroOrOneSetCCResult;
|
|
|
|
case ISD::ZEXTLOAD:
|
|
|
|
SrcBits = MVT::getSizeInBits(cast<VTSDNode>(Op.getOperand(3))->getVT());
|
|
|
|
return (Mask & ((1ULL << SrcBits)-1)) == 0; // Returning only the zext bits.
|
|
|
|
case ISD::ZERO_EXTEND:
|
|
|
|
SrcBits = MVT::getSizeInBits(Op.getOperand(0).getValueType());
|
|
|
|
return MaskedValueIsZero(Op.getOperand(0),Mask & ((1ULL << SrcBits)-1),TLI);
|
|
|
|
case ISD::AssertZext:
|
|
|
|
SrcBits = MVT::getSizeInBits(cast<VTSDNode>(Op.getOperand(1))->getVT());
|
|
|
|
return (Mask & ((1ULL << SrcBits)-1)) == 0; // Returning only the zext bits.
|
|
|
|
case ISD::AND:
|
|
|
|
// (X & C1) & C2 == 0 iff C1 & C2 == 0.
|
|
|
|
if (ConstantSDNode *AndRHS = dyn_cast<ConstantSDNode>(Op.getOperand(1)))
|
|
|
|
return MaskedValueIsZero(Op.getOperand(0),AndRHS->getValue() & Mask, TLI);
|
|
|
|
// FALL THROUGH
|
|
|
|
case ISD::OR:
|
|
|
|
case ISD::XOR:
|
|
|
|
return MaskedValueIsZero(Op.getOperand(0), Mask, TLI) &&
|
|
|
|
MaskedValueIsZero(Op.getOperand(1), Mask, TLI);
|
|
|
|
case ISD::SELECT:
|
|
|
|
return MaskedValueIsZero(Op.getOperand(1), Mask, TLI) &&
|
|
|
|
MaskedValueIsZero(Op.getOperand(2), Mask, TLI);
|
|
|
|
case ISD::SELECT_CC:
|
|
|
|
return MaskedValueIsZero(Op.getOperand(2), Mask, TLI) &&
|
|
|
|
MaskedValueIsZero(Op.getOperand(3), Mask, TLI);
|
|
|
|
case ISD::SRL:
|
|
|
|
// (ushr X, C1) & C2 == 0 iff X & (C2 << C1) == 0
|
|
|
|
if (ConstantSDNode *ShAmt = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
|
|
|
|
uint64_t NewVal = Mask << ShAmt->getValue();
|
|
|
|
SrcBits = MVT::getSizeInBits(Op.getValueType());
|
|
|
|
if (SrcBits != 64) NewVal &= (1ULL << SrcBits)-1;
|
|
|
|
return MaskedValueIsZero(Op.getOperand(0), NewVal, TLI);
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
case ISD::SHL:
|
|
|
|
// (ushl X, C1) & C2 == 0 iff X & (C2 >> C1) == 0
|
|
|
|
if (ConstantSDNode *ShAmt = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
|
|
|
|
uint64_t NewVal = Mask >> ShAmt->getValue();
|
|
|
|
return MaskedValueIsZero(Op.getOperand(0), NewVal, TLI);
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
case ISD::CTTZ:
|
|
|
|
case ISD::CTLZ:
|
|
|
|
case ISD::CTPOP:
|
|
|
|
// Bit counting instructions can not set the high bits of the result
|
|
|
|
// register. The max number of bits sets depends on the input.
|
|
|
|
return (Mask & (MVT::getSizeInBits(Op.getValueType())*2-1)) == 0;
|
|
|
|
|
|
|
|
// TODO we could handle some SRA cases here.
|
|
|
|
default: break;
|
2005-09-01 08:19:25 +08:00
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2005-09-02 07:24:04 +08:00
|
|
|
// isSetCCEquivalent - Return true if this node is a setcc, or is a select_cc
|
|
|
|
// that selects between the values 1 and 0, making it equivalent to a setcc.
|
2005-09-03 05:18:40 +08:00
|
|
|
// Also, set the incoming LHS, RHS, and CC references to the appropriate
|
|
|
|
// nodes based on the type of node we are checking. This simplifies life a
|
|
|
|
// bit for the callers.
|
|
|
|
static bool isSetCCEquivalent(SDOperand N, SDOperand &LHS, SDOperand &RHS,
|
|
|
|
SDOperand &CC) {
|
|
|
|
if (N.getOpcode() == ISD::SETCC) {
|
|
|
|
LHS = N.getOperand(0);
|
|
|
|
RHS = N.getOperand(1);
|
|
|
|
CC = N.getOperand(2);
|
2005-09-02 07:24:04 +08:00
|
|
|
return true;
|
2005-09-03 05:18:40 +08:00
|
|
|
}
|
2005-09-01 08:19:25 +08:00
|
|
|
if (N.getOpcode() == ISD::SELECT_CC &&
|
|
|
|
N.getOperand(2).getOpcode() == ISD::Constant &&
|
|
|
|
N.getOperand(3).getOpcode() == ISD::Constant &&
|
|
|
|
cast<ConstantSDNode>(N.getOperand(2))->getValue() == 1 &&
|
2005-09-03 05:18:40 +08:00
|
|
|
cast<ConstantSDNode>(N.getOperand(3))->isNullValue()) {
|
|
|
|
LHS = N.getOperand(0);
|
|
|
|
RHS = N.getOperand(1);
|
|
|
|
CC = N.getOperand(4);
|
2005-09-01 08:19:25 +08:00
|
|
|
return true;
|
2005-09-03 05:18:40 +08:00
|
|
|
}
|
2005-09-01 08:19:25 +08:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2005-09-02 07:24:04 +08:00
|
|
|
// isInvertibleForFree - Return true if there is no cost to emitting the logical
|
|
|
|
// inverse of this node.
|
|
|
|
static bool isInvertibleForFree(SDOperand N) {
|
2005-09-03 05:18:40 +08:00
|
|
|
SDOperand N0, N1, N2;
|
2005-09-02 07:24:04 +08:00
|
|
|
if (isa<ConstantSDNode>(N.Val)) return true;
|
2005-09-03 05:18:40 +08:00
|
|
|
if (isSetCCEquivalent(N, N0, N1, N2) && N.Val->hasOneUse())
|
2005-09-02 07:24:04 +08:00
|
|
|
return true;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
void DAGCombiner::Run(bool RunningAfterLegalize) {
|
|
|
|
// set the instance variable, so that the various visit routines may use it.
|
|
|
|
AfterLegalize = RunningAfterLegalize;
|
|
|
|
|
2005-09-03 05:18:40 +08:00
|
|
|
// Add all the dag nodes to the worklist.
|
|
|
|
WorkList.insert(WorkList.end(), DAG.allnodes_begin(), DAG.allnodes_end());
|
|
|
|
|
2005-09-01 08:19:25 +08:00
|
|
|
// while the worklist isn't empty, inspect the node on the end of it and
|
|
|
|
// try and combine it.
|
|
|
|
while (!WorkList.empty()) {
|
|
|
|
SDNode *N = WorkList.back();
|
|
|
|
WorkList.pop_back();
|
|
|
|
|
|
|
|
// If N has no uses, it is dead. Make sure to revisit all N's operands once
|
|
|
|
// N is deleted from the DAG, since they too may now be dead.
|
|
|
|
if (N->use_empty()) {
|
|
|
|
for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
|
|
|
|
WorkList.push_back(N->getOperand(i).Val);
|
|
|
|
|
|
|
|
DAG.DeleteNode(N);
|
|
|
|
removeFromWorkList(N);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (SDNode *Result = visit(N)) {
|
|
|
|
++NodesCombined;
|
2005-09-03 05:18:40 +08:00
|
|
|
// If we get back the same node we passed in, rather than a new node or
|
|
|
|
// zero, we know that the node must have defined multiple values and
|
|
|
|
// CombineTo was used. Since CombineTo takes care of the worklist
|
|
|
|
// mechanics for us, we have no work to do in this case.
|
|
|
|
if (Result != N) {
|
|
|
|
DAG.ReplaceAllUsesWith(N, Result);
|
|
|
|
|
|
|
|
// Push the new node and any users onto the worklist
|
|
|
|
WorkList.push_back(Result);
|
|
|
|
AddUsersToWorkList(Result);
|
|
|
|
|
|
|
|
// Nodes can end up on the worklist more than once. Make sure we do
|
|
|
|
// not process a node that has been replaced.
|
|
|
|
removeFromWorkList(N);
|
|
|
|
}
|
2005-09-01 08:19:25 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
SDNode *DAGCombiner::visit(SDNode *N) {
|
|
|
|
switch(N->getOpcode()) {
|
|
|
|
default: break;
|
2005-09-01 08:33:32 +08:00
|
|
|
case ISD::TokenFactor: return visitTokenFactor(N);
|
2005-09-03 05:18:40 +08:00
|
|
|
case ISD::ADD: return visitADD(N);
|
|
|
|
case ISD::SUB: return visitSUB(N);
|
|
|
|
case ISD::MUL: return visitMUL(N);
|
|
|
|
case ISD::SDIV: return visitSDIV(N);
|
|
|
|
case ISD::UDIV: return visitUDIV(N);
|
|
|
|
case ISD::SREM: return visitSREM(N);
|
|
|
|
case ISD::UREM: return visitUREM(N);
|
|
|
|
case ISD::MULHU: return visitMULHU(N);
|
|
|
|
case ISD::MULHS: return visitMULHS(N);
|
|
|
|
case ISD::AND: return visitAND(N);
|
|
|
|
case ISD::OR: return visitOR(N);
|
|
|
|
case ISD::XOR: return visitXOR(N);
|
|
|
|
case ISD::SHL: return visitSHL(N);
|
|
|
|
case ISD::SRA: return visitSRA(N);
|
|
|
|
case ISD::SRL: return visitSRL(N);
|
|
|
|
case ISD::CTLZ: return visitCTLZ(N);
|
|
|
|
case ISD::CTTZ: return visitCTTZ(N);
|
|
|
|
case ISD::CTPOP: return visitCTPOP(N);
|
|
|
|
case ISD::SIGN_EXTEND: return visitSIGN_EXTEND(N);
|
|
|
|
case ISD::ZERO_EXTEND: return visitZERO_EXTEND(N);
|
|
|
|
case ISD::SIGN_EXTEND_INREG: return visitSIGN_EXTEND_INREG(N);
|
|
|
|
case ISD::TRUNCATE: return visitTRUNCATE(N);
|
|
|
|
case ISD::SINT_TO_FP: return visitSINT_TO_FP(N);
|
|
|
|
case ISD::UINT_TO_FP: return visitUINT_TO_FP(N);
|
|
|
|
case ISD::FP_TO_SINT: return visitFP_TO_SINT(N);
|
|
|
|
case ISD::FP_TO_UINT: return visitFP_TO_UINT(N);
|
|
|
|
case ISD::FP_ROUND: return visitFP_ROUND(N);
|
|
|
|
case ISD::FP_ROUND_INREG: return visitFP_ROUND_INREG(N);
|
|
|
|
case ISD::FP_EXTEND: return visitFP_EXTEND(N);
|
|
|
|
case ISD::FNEG: return visitFNEG(N);
|
|
|
|
case ISD::FABS: return visitFABS(N);
|
2005-09-01 08:19:25 +08:00
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
SDNode *DAGCombiner::visitTokenFactor(SDNode *N) {
|
|
|
|
// If the token factor only has one operand, fold TF(x) -> x
|
|
|
|
if (N->getNumOperands() == 1)
|
|
|
|
return N->getOperand(0).Val;
|
|
|
|
|
|
|
|
// If the token factor has two operands and one is the entry token, replace
|
|
|
|
// the token factor with the other operand.
|
|
|
|
if (N->getNumOperands() == 2) {
|
|
|
|
if (N->getOperand(0).getOpcode() == ISD::EntryToken)
|
|
|
|
return N->getOperand(1).Val;
|
|
|
|
if (N->getOperand(1).getOpcode() == ISD::EntryToken)
|
|
|
|
return N->getOperand(0).Val;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2005-09-03 05:18:40 +08:00
|
|
|
SDNode *DAGCombiner::visitADD(SDNode *N) {
|
2005-09-01 08:19:25 +08:00
|
|
|
SDOperand N0 = N->getOperand(0);
|
|
|
|
SDOperand N1 = N->getOperand(1);
|
2005-09-03 05:18:40 +08:00
|
|
|
ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
|
|
|
|
ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
|
|
|
|
ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
|
|
|
|
ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1);
|
2005-09-01 08:19:25 +08:00
|
|
|
|
|
|
|
// fold (add c1, c2) -> c1+c2
|
2005-09-03 05:18:40 +08:00
|
|
|
if (N0C && N1C)
|
|
|
|
return DAG.getConstant(N0C->getValue() + N1C->getValue(),
|
2005-09-01 08:19:25 +08:00
|
|
|
N->getValueType(0)).Val;
|
|
|
|
// fold (add x, 0) -> x
|
2005-09-03 05:18:40 +08:00
|
|
|
if (N1C && N1C->isNullValue())
|
2005-09-01 08:19:25 +08:00
|
|
|
return N0.Val;
|
|
|
|
// fold floating point (add c1, c2) -> c1+c2
|
2005-09-03 05:18:40 +08:00
|
|
|
if (N0CFP && N1CFP)
|
|
|
|
return DAG.getConstantFP(N0CFP->getValue() + N1CFP->getValue(),
|
2005-09-01 08:19:25 +08:00
|
|
|
N->getValueType(0)).Val;
|
|
|
|
// fold (A + (-B)) -> A-B
|
|
|
|
if (N1.getOpcode() == ISD::FNEG)
|
|
|
|
return DAG.getNode(ISD::SUB, N->getValueType(0), N0, N1.getOperand(0)).Val;
|
|
|
|
// fold ((-A) + B) -> B-A
|
|
|
|
if (N0.getOpcode() == ISD::FNEG)
|
|
|
|
return DAG.getNode(ISD::SUB, N->getValueType(0), N1, N0.getOperand(0)).Val;
|
|
|
|
// fold ((0-A) + B) -> B-A
|
|
|
|
if (N0.getOpcode() == ISD::SUB && isa<ConstantSDNode>(N0.getOperand(0)) &&
|
|
|
|
cast<ConstantSDNode>(N0.getOperand(0))->isNullValue())
|
|
|
|
return DAG.getNode(ISD::SUB, N->getValueType(0), N1, N0.getOperand(1)).Val;
|
|
|
|
// fold (A + (0-B)) -> A-B
|
|
|
|
if (N1.getOpcode() == ISD::SUB && isa<ConstantSDNode>(N1.getOperand(0)) &&
|
|
|
|
cast<ConstantSDNode>(N1.getOperand(0))->isNullValue())
|
|
|
|
return DAG.getNode(ISD::SUB, N->getValueType(0), N0, N1.getOperand(1)).Val;
|
|
|
|
// fold (A+(B-A)) -> B for non-fp types
|
|
|
|
if (N1.getOpcode() == ISD::SUB && N0 == N1.getOperand(1) &&
|
|
|
|
!MVT::isFloatingPoint(N1.getValueType()))
|
|
|
|
return N1.getOperand(0).Val;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2005-09-03 05:18:40 +08:00
|
|
|
SDNode *DAGCombiner::visitSUB(SDNode *N) {
|
2005-09-01 08:19:25 +08:00
|
|
|
SDOperand N0 = N->getOperand(0);
|
|
|
|
SDOperand N1 = N->getOperand(1);
|
2005-09-03 05:18:40 +08:00
|
|
|
ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0.Val);
|
|
|
|
ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.Val);
|
|
|
|
ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0.Val);
|
|
|
|
ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1.Val);
|
2005-09-01 08:19:25 +08:00
|
|
|
|
|
|
|
// fold (sub c1, c2) -> c1-c2
|
2005-09-03 05:18:40 +08:00
|
|
|
if (N0C && N1C)
|
|
|
|
return DAG.getConstant(N0C->getValue() - N1C->getValue(),
|
2005-09-01 08:19:25 +08:00
|
|
|
N->getValueType(0)).Val;
|
|
|
|
// fold (sub x, 0) -> x
|
2005-09-03 05:18:40 +08:00
|
|
|
if (N1C && N1C->isNullValue())
|
2005-09-01 08:19:25 +08:00
|
|
|
return N0.Val;
|
|
|
|
// fold floating point (sub c1, c2) -> c1-c2
|
2005-09-03 05:18:40 +08:00
|
|
|
if (N0CFP && N1CFP)
|
|
|
|
return DAG.getConstantFP(N0CFP->getValue() - N1CFP->getValue(),
|
2005-09-01 08:19:25 +08:00
|
|
|
N->getValueType(0)).Val;
|
|
|
|
// fold (A+B)-A -> B
|
|
|
|
if (N0.getOpcode() == ISD::ADD && N0.getOperand(0) == N1 &&
|
|
|
|
!MVT::isFloatingPoint(N1.getValueType()))
|
|
|
|
return N0.getOperand(1).Val;
|
|
|
|
// fold (A+B)-B -> A
|
|
|
|
if (N0.getOpcode() == ISD::ADD && N0.getOperand(1) == N1 &&
|
|
|
|
!MVT::isFloatingPoint(N1.getValueType()))
|
|
|
|
return N0.getOperand(0).Val;
|
|
|
|
// fold (A-(-B)) -> A+B
|
|
|
|
if (N1.getOpcode() == ISD::FNEG)
|
|
|
|
return DAG.getNode(ISD::ADD, N0.getValueType(), N0, N1.getOperand(0)).Val;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2005-09-03 05:18:40 +08:00
|
|
|
SDNode *DAGCombiner::visitMUL(SDNode *N) {
|
2005-09-01 08:19:25 +08:00
|
|
|
SDOperand N0 = N->getOperand(0);
|
|
|
|
SDOperand N1 = N->getOperand(1);
|
2005-09-03 05:18:40 +08:00
|
|
|
ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
|
|
|
|
ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
|
|
|
|
ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
|
|
|
|
ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1);
|
2005-09-01 08:19:25 +08:00
|
|
|
|
|
|
|
// fold (mul c1, c2) -> c1*c2
|
2005-09-03 05:18:40 +08:00
|
|
|
if (N0C && N1C)
|
|
|
|
return DAG.getConstant(N0C->getValue() * N1C->getValue(),
|
2005-09-01 08:19:25 +08:00
|
|
|
N->getValueType(0)).Val;
|
|
|
|
// fold (mul x, 0) -> 0
|
2005-09-03 05:18:40 +08:00
|
|
|
if (N1C && N1C->isNullValue())
|
2005-09-01 08:19:25 +08:00
|
|
|
return N1.Val;
|
|
|
|
// fold (mul x, -1) -> 0-x
|
2005-09-03 05:18:40 +08:00
|
|
|
if (N1C && N1C->isAllOnesValue())
|
2005-09-01 08:19:25 +08:00
|
|
|
return DAG.getNode(ISD::SUB, N->getValueType(0),
|
|
|
|
DAG.getConstant(0, N->getValueType(0)), N0).Val;
|
|
|
|
// fold (mul x, (1 << c)) -> x << c
|
2005-09-03 05:18:40 +08:00
|
|
|
if (N1C && isPowerOf2_64(N1C->getValue()))
|
2005-09-01 08:19:25 +08:00
|
|
|
return DAG.getNode(ISD::SHL, N->getValueType(0), N0,
|
2005-09-03 05:18:40 +08:00
|
|
|
DAG.getConstant(Log2_64(N1C->getValue()),
|
2005-09-01 08:19:25 +08:00
|
|
|
TLI.getShiftAmountTy())).Val;
|
|
|
|
// fold floating point (mul c1, c2) -> c1*c2
|
2005-09-03 05:18:40 +08:00
|
|
|
if (N0CFP && N1CFP)
|
|
|
|
return DAG.getConstantFP(N0CFP->getValue() * N1CFP->getValue(),
|
2005-09-01 08:19:25 +08:00
|
|
|
N->getValueType(0)).Val;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2005-09-03 05:18:40 +08:00
|
|
|
SDNode *DAGCombiner::visitSDIV(SDNode *N) {
|
2005-09-01 08:19:25 +08:00
|
|
|
SDOperand N0 = N->getOperand(0);
|
|
|
|
SDOperand N1 = N->getOperand(1);
|
2005-09-03 05:18:40 +08:00
|
|
|
ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0.Val);
|
|
|
|
ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.Val);
|
|
|
|
ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0.Val);
|
|
|
|
ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1.Val);
|
2005-09-01 08:19:25 +08:00
|
|
|
|
|
|
|
// fold (sdiv c1, c2) -> c1/c2
|
2005-09-03 05:18:40 +08:00
|
|
|
if (N0C && N1C && !N1C->isNullValue())
|
|
|
|
return DAG.getConstant(N0C->getSignExtended() / N1C->getSignExtended(),
|
2005-09-01 08:19:25 +08:00
|
|
|
N->getValueType(0)).Val;
|
|
|
|
// fold floating point (sdiv c1, c2) -> c1/c2
|
2005-09-03 05:18:40 +08:00
|
|
|
if (N0CFP && N1CFP)
|
|
|
|
return DAG.getConstantFP(N0CFP->getValue() / N1CFP->getValue(),
|
2005-09-01 08:19:25 +08:00
|
|
|
N->getValueType(0)).Val;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2005-09-03 05:18:40 +08:00
|
|
|
SDNode *DAGCombiner::visitUDIV(SDNode *N) {
|
2005-09-01 08:19:25 +08:00
|
|
|
SDOperand N0 = N->getOperand(0);
|
|
|
|
SDOperand N1 = N->getOperand(1);
|
2005-09-03 05:18:40 +08:00
|
|
|
ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0.Val);
|
|
|
|
ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.Val);
|
2005-09-01 08:19:25 +08:00
|
|
|
|
|
|
|
// fold (udiv c1, c2) -> c1/c2
|
2005-09-03 05:18:40 +08:00
|
|
|
if (N0C && N1C && !N1C->isNullValue())
|
|
|
|
return DAG.getConstant(N0C->getValue() / N1C->getValue(),
|
2005-09-01 08:19:25 +08:00
|
|
|
N->getValueType(0)).Val;
|
|
|
|
// fold (udiv x, (1 << c)) -> x >>u c
|
2005-09-03 05:18:40 +08:00
|
|
|
if (N1C && isPowerOf2_64(N1C->getValue()))
|
2005-09-01 08:19:25 +08:00
|
|
|
return DAG.getNode(ISD::SRL, N->getValueType(0), N0,
|
2005-09-03 05:18:40 +08:00
|
|
|
DAG.getConstant(Log2_64(N1C->getValue()),
|
2005-09-01 08:19:25 +08:00
|
|
|
TLI.getShiftAmountTy())).Val;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2005-09-03 05:18:40 +08:00
|
|
|
SDNode *DAGCombiner::visitSREM(SDNode *N) {
|
2005-09-01 08:19:25 +08:00
|
|
|
SDOperand N0 = N->getOperand(0);
|
|
|
|
SDOperand N1 = N->getOperand(1);
|
2005-09-03 05:18:40 +08:00
|
|
|
ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
|
|
|
|
ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
|
|
|
|
ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
|
|
|
|
ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1);
|
2005-09-01 08:19:25 +08:00
|
|
|
|
|
|
|
// fold (srem c1, c2) -> c1%c2
|
2005-09-03 05:18:40 +08:00
|
|
|
if (N0C && N1C && !N1C->isNullValue())
|
|
|
|
return DAG.getConstant(N0C->getSignExtended() % N1C->getSignExtended(),
|
2005-09-01 08:19:25 +08:00
|
|
|
N->getValueType(0)).Val;
|
|
|
|
// fold floating point (srem c1, c2) -> fmod(c1, c2)
|
2005-09-03 05:18:40 +08:00
|
|
|
if (N0CFP && N1CFP)
|
|
|
|
return DAG.getConstantFP(fmod(N0CFP->getValue(),N1CFP->getValue()),
|
2005-09-01 08:19:25 +08:00
|
|
|
N->getValueType(0)).Val;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2005-09-03 05:18:40 +08:00
|
|
|
SDNode *DAGCombiner::visitUREM(SDNode *N) {
|
2005-09-01 08:19:25 +08:00
|
|
|
SDOperand N0 = N->getOperand(0);
|
|
|
|
SDOperand N1 = N->getOperand(1);
|
2005-09-03 05:18:40 +08:00
|
|
|
ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
|
|
|
|
ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
|
2005-09-01 08:19:25 +08:00
|
|
|
|
|
|
|
// fold (urem c1, c2) -> c1%c2
|
2005-09-03 05:18:40 +08:00
|
|
|
if (N0C && N1C && !N1C->isNullValue())
|
|
|
|
return DAG.getConstant(N0C->getValue() % N1C->getValue(),
|
2005-09-01 08:19:25 +08:00
|
|
|
N->getValueType(0)).Val;
|
2005-09-03 05:18:40 +08:00
|
|
|
// FIXME: c2 power of 2 -> mask?
|
2005-09-01 08:19:25 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2005-09-03 05:18:40 +08:00
|
|
|
SDNode *DAGCombiner::visitMULHS(SDNode *N) {
|
2005-09-01 08:19:25 +08:00
|
|
|
SDOperand N0 = N->getOperand(0);
|
|
|
|
SDOperand N1 = N->getOperand(1);
|
2005-09-03 05:18:40 +08:00
|
|
|
ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
|
2005-09-01 08:19:25 +08:00
|
|
|
|
|
|
|
// fold (mulhs x, 0) -> 0
|
2005-09-03 05:18:40 +08:00
|
|
|
if (N1C && N1C->isNullValue())
|
2005-09-01 08:19:25 +08:00
|
|
|
return N1.Val;
|
|
|
|
|
|
|
|
// fold (mulhs x, 1) -> (sra x, size(x)-1)
|
2005-09-03 05:18:40 +08:00
|
|
|
if (N1C && N1C->getValue() == 1)
|
2005-09-01 08:19:25 +08:00
|
|
|
return DAG.getNode(ISD::SRA, N0.getValueType(), N0,
|
|
|
|
DAG.getConstant(MVT::getSizeInBits(N0.getValueType())-1,
|
|
|
|
TLI.getShiftAmountTy())).Val;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2005-09-03 05:18:40 +08:00
|
|
|
SDNode *DAGCombiner::visitMULHU(SDNode *N) {
|
2005-09-01 08:19:25 +08:00
|
|
|
SDOperand N0 = N->getOperand(0);
|
|
|
|
SDOperand N1 = N->getOperand(1);
|
2005-09-03 05:18:40 +08:00
|
|
|
ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
|
2005-09-01 08:19:25 +08:00
|
|
|
|
|
|
|
// fold (mulhu x, 0) -> 0
|
2005-09-03 05:18:40 +08:00
|
|
|
if (N1C && N1C->isNullValue())
|
2005-09-01 08:19:25 +08:00
|
|
|
return N1.Val;
|
|
|
|
|
|
|
|
// fold (mulhu x, 1) -> 0
|
2005-09-03 05:18:40 +08:00
|
|
|
if (N1C && N1C->getValue() == 1)
|
2005-09-01 08:19:25 +08:00
|
|
|
return DAG.getConstant(0, N0.getValueType()).Val;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2005-09-03 05:18:40 +08:00
|
|
|
SDNode *DAGCombiner::visitAND(SDNode *N) {
|
2005-09-01 08:19:25 +08:00
|
|
|
SDOperand N0 = N->getOperand(0);
|
|
|
|
SDOperand N1 = N->getOperand(1);
|
2005-09-03 05:18:40 +08:00
|
|
|
ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
|
|
|
|
ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
|
2005-09-01 08:19:25 +08:00
|
|
|
MVT::ValueType VT = N1.getValueType();
|
|
|
|
|
|
|
|
// fold (and c1, c2) -> c1&c2
|
2005-09-03 05:18:40 +08:00
|
|
|
if (N0C && N1C)
|
|
|
|
return DAG.getConstant(N0C->getValue() & N1C->getValue(), VT).Val;
|
2005-09-01 08:19:25 +08:00
|
|
|
// fold (and x, -1) -> x
|
2005-09-03 05:18:40 +08:00
|
|
|
if (N1C && N1C->isAllOnesValue())
|
2005-09-01 08:19:25 +08:00
|
|
|
return N0.Val;
|
|
|
|
// fold (and x, 0) -> 0
|
2005-09-03 05:18:40 +08:00
|
|
|
if (N1C && MaskedValueIsZero(N0, N1C->getValue(), TLI))
|
2005-09-01 08:19:25 +08:00
|
|
|
return DAG.getConstant(0, VT).Val;
|
|
|
|
// fold (and x, mask containing x) -> x
|
2005-09-03 05:18:40 +08:00
|
|
|
if (N1C) {
|
|
|
|
uint64_t NotC2 = ~N1C->getValue();
|
2005-09-02 07:24:04 +08:00
|
|
|
NotC2 &= ~0ULL >> (64-MVT::getSizeInBits(VT));
|
|
|
|
if (MaskedValueIsZero(N0, NotC2, TLI))
|
|
|
|
return N0.Val;
|
|
|
|
}
|
2005-09-01 08:19:25 +08:00
|
|
|
// fold (and (sign_extend_inreg x, i16 to i32), 1) -> (and x, 1)
|
|
|
|
if (N0.getOpcode() == ISD::SIGN_EXTEND_INREG) {
|
|
|
|
unsigned ExtendBits =
|
|
|
|
MVT::getSizeInBits(cast<VTSDNode>(N0.getOperand(1))->getVT());
|
2005-09-03 05:18:40 +08:00
|
|
|
if ((N1C->getValue() & (~0ULL << ExtendBits)) == 0)
|
2005-09-01 08:19:25 +08:00
|
|
|
return DAG.getNode(ISD::AND, VT, N0.getOperand(0), N1).Val;
|
|
|
|
}
|
|
|
|
// fold (and (or x, 0xFFFF), 0xFF) -> 0xFF
|
|
|
|
if (N0.getOpcode() == ISD::OR)
|
|
|
|
if (ConstantSDNode *ORI = dyn_cast<ConstantSDNode>(N0.getOperand(1)))
|
2005-09-03 05:18:40 +08:00
|
|
|
if ((ORI->getValue() & N1C->getValue()) == N1C->getValue())
|
2005-09-01 08:19:25 +08:00
|
|
|
return N1.Val;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2005-09-03 05:18:40 +08:00
|
|
|
SDNode *DAGCombiner::visitOR(SDNode *N) {
|
2005-09-01 08:19:25 +08:00
|
|
|
SDOperand N0 = N->getOperand(0);
|
|
|
|
SDOperand N1 = N->getOperand(1);
|
2005-09-03 05:18:40 +08:00
|
|
|
ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
|
|
|
|
ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
|
2005-09-01 08:19:25 +08:00
|
|
|
|
|
|
|
// fold (or c1, c2) -> c1|c2
|
2005-09-03 05:18:40 +08:00
|
|
|
if (N0C && N1C)
|
|
|
|
return DAG.getConstant(N0C->getValue() | N1C->getValue(),
|
2005-09-01 08:19:25 +08:00
|
|
|
N->getValueType(0)).Val;
|
|
|
|
// fold (or x, 0) -> x
|
2005-09-03 05:18:40 +08:00
|
|
|
if (N1C && N1C->isNullValue())
|
2005-09-01 08:19:25 +08:00
|
|
|
return N0.Val;
|
|
|
|
// fold (or x, -1) -> -1
|
2005-09-03 05:18:40 +08:00
|
|
|
if (N1C && N1C->isAllOnesValue())
|
2005-09-01 08:19:25 +08:00
|
|
|
return N1.Val;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2005-09-03 05:18:40 +08:00
|
|
|
SDNode *DAGCombiner::visitXOR(SDNode *N) {
|
2005-09-01 08:19:25 +08:00
|
|
|
SDOperand N0 = N->getOperand(0);
|
|
|
|
SDOperand N1 = N->getOperand(1);
|
2005-09-03 05:18:40 +08:00
|
|
|
SDOperand LHS, RHS, CC;
|
|
|
|
ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
|
|
|
|
ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
|
2005-09-01 08:19:25 +08:00
|
|
|
MVT::ValueType VT = N0.getValueType();
|
|
|
|
|
|
|
|
// fold (xor c1, c2) -> c1^c2
|
2005-09-03 05:18:40 +08:00
|
|
|
if (N0C && N1C)
|
|
|
|
return DAG.getConstant(N0C->getValue() ^ N1C->getValue(), VT).Val;
|
2005-09-01 08:19:25 +08:00
|
|
|
// fold (xor x, 0) -> x
|
2005-09-03 05:18:40 +08:00
|
|
|
if (N1C && N1C->isNullValue())
|
2005-09-01 08:19:25 +08:00
|
|
|
return N0.Val;
|
|
|
|
// fold !(x cc y) -> (x !cc y)
|
2005-09-03 05:18:40 +08:00
|
|
|
if (N1C && N1C->getValue() == 1 && isSetCCEquivalent(N0, LHS, RHS, CC)) {
|
|
|
|
bool isInt = MVT::isInteger(LHS.getValueType());
|
|
|
|
ISD::CondCode NotCC = ISD::getSetCCInverse(cast<CondCodeSDNode>(CC)->get(),
|
|
|
|
isInt);
|
|
|
|
if (N0.getOpcode() == ISD::SETCC)
|
|
|
|
return DAG.getSetCC(VT, LHS, RHS, NotCC).Val;
|
|
|
|
if (N0.getOpcode() == ISD::SELECT_CC)
|
|
|
|
return DAG.getSelectCC(LHS, RHS, N0.getOperand(2), N0.getOperand(3),
|
|
|
|
NotCC).Val;
|
|
|
|
assert(0 && "Unhandled SetCC Equivalent!");
|
|
|
|
abort();
|
2005-09-01 08:19:25 +08:00
|
|
|
}
|
|
|
|
// fold !(x or y) -> (!x and !y) iff x or y are freely invertible
|
2005-09-03 05:18:40 +08:00
|
|
|
if (N1C && N1C->isAllOnesValue() && N0.getOpcode() == ISD::OR) {
|
2005-09-01 08:19:25 +08:00
|
|
|
SDOperand LHS = N0.getOperand(0), RHS = N0.getOperand(1);
|
|
|
|
if (isInvertibleForFree(RHS) || isInvertibleForFree(LHS)) {
|
|
|
|
LHS = DAG.getNode(ISD::XOR, VT, LHS, N1); // RHS = ~LHS
|
|
|
|
RHS = DAG.getNode(ISD::XOR, VT, RHS, N1); // RHS = ~RHS
|
|
|
|
return DAG.getNode(ISD::AND, VT, LHS, RHS).Val;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// fold !(x and y) -> (!x or !y) iff x or y are freely invertible
|
2005-09-03 05:18:40 +08:00
|
|
|
if (N1C && N1C->isAllOnesValue() && N0.getOpcode() == ISD::AND) {
|
2005-09-01 08:19:25 +08:00
|
|
|
SDOperand LHS = N0.getOperand(0), RHS = N0.getOperand(1);
|
|
|
|
if (isInvertibleForFree(RHS) || isInvertibleForFree(LHS)) {
|
|
|
|
LHS = DAG.getNode(ISD::XOR, VT, LHS, N1); // RHS = ~LHS
|
|
|
|
RHS = DAG.getNode(ISD::XOR, VT, RHS, N1); // RHS = ~RHS
|
|
|
|
return DAG.getNode(ISD::OR, VT, LHS, RHS).Val;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2005-09-03 05:18:40 +08:00
|
|
|
SDNode *DAGCombiner::visitSHL(SDNode *N) {
|
2005-09-01 08:19:25 +08:00
|
|
|
SDOperand N0 = N->getOperand(0);
|
|
|
|
SDOperand N1 = N->getOperand(1);
|
2005-09-03 05:18:40 +08:00
|
|
|
ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
|
|
|
|
ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
|
2005-09-01 08:19:25 +08:00
|
|
|
MVT::ValueType VT = N0.getValueType();
|
|
|
|
unsigned OpSizeInBits = MVT::getSizeInBits(VT);
|
|
|
|
|
|
|
|
// fold (shl c1, c2) -> c1<<c2
|
2005-09-03 05:18:40 +08:00
|
|
|
if (N0C && N1C)
|
|
|
|
return DAG.getConstant(N0C->getValue() << N1C->getValue(), VT).Val;
|
2005-09-01 08:19:25 +08:00
|
|
|
// fold (shl 0, x) -> 0
|
2005-09-03 05:18:40 +08:00
|
|
|
if (N0C && N0C->isNullValue())
|
2005-09-01 08:19:25 +08:00
|
|
|
return N0.Val;
|
|
|
|
// fold (shl x, c >= size(x)) -> undef
|
2005-09-03 05:18:40 +08:00
|
|
|
if (N1C && N1C->getValue() >= OpSizeInBits)
|
2005-09-01 08:19:25 +08:00
|
|
|
return DAG.getNode(ISD::UNDEF, VT).Val;
|
|
|
|
// fold (shl x, 0) -> x
|
2005-09-03 05:18:40 +08:00
|
|
|
if (N1C && N1C->isNullValue())
|
2005-09-01 08:19:25 +08:00
|
|
|
return N0.Val;
|
|
|
|
// if (shl x, c) is known to be zero, return 0
|
2005-09-03 05:18:40 +08:00
|
|
|
if (N1C && MaskedValueIsZero(N0,(~0ULL >> (64-OpSizeInBits))>>N1C->getValue(),
|
2005-09-01 08:19:25 +08:00
|
|
|
TLI))
|
|
|
|
return DAG.getConstant(0, VT).Val;
|
|
|
|
// fold (shl (shl x, c1), c2) -> 0 or (shl x, c1+c2)
|
2005-09-03 05:18:40 +08:00
|
|
|
if (N1C && N0.getOpcode() == ISD::SHL &&
|
2005-09-01 08:19:25 +08:00
|
|
|
N0.getOperand(1).getOpcode() == ISD::Constant) {
|
|
|
|
uint64_t c1 = cast<ConstantSDNode>(N0.getOperand(1))->getValue();
|
2005-09-03 05:18:40 +08:00
|
|
|
uint64_t c2 = N1C->getValue();
|
2005-09-01 08:19:25 +08:00
|
|
|
if (c1 + c2 > OpSizeInBits)
|
|
|
|
return DAG.getConstant(0, VT).Val;
|
|
|
|
return DAG.getNode(ISD::SHL, VT, N0.getOperand(0),
|
|
|
|
DAG.getConstant(c1 + c2, N1.getValueType())).Val;
|
|
|
|
}
|
|
|
|
// fold (shl (srl x, c1), c2) -> (shl (and x, -1 << c1), c2-c1) or
|
|
|
|
// (srl (and x, -1 << c1), c1-c2)
|
2005-09-03 05:18:40 +08:00
|
|
|
if (N1C && N0.getOpcode() == ISD::SRL &&
|
2005-09-01 08:19:25 +08:00
|
|
|
N0.getOperand(1).getOpcode() == ISD::Constant) {
|
|
|
|
uint64_t c1 = cast<ConstantSDNode>(N0.getOperand(1))->getValue();
|
2005-09-03 05:18:40 +08:00
|
|
|
uint64_t c2 = N1C->getValue();
|
2005-09-01 08:19:25 +08:00
|
|
|
SDOperand Mask = DAG.getNode(ISD::AND, VT, N0.getOperand(0),
|
|
|
|
DAG.getConstant(~0ULL << c1, VT));
|
|
|
|
if (c2 > c1)
|
|
|
|
return DAG.getNode(ISD::SHL, VT, Mask,
|
|
|
|
DAG.getConstant(c2-c1, N1.getValueType())).Val;
|
|
|
|
else
|
|
|
|
return DAG.getNode(ISD::SRL, VT, Mask,
|
|
|
|
DAG.getConstant(c1-c2, N1.getValueType())).Val;
|
|
|
|
}
|
|
|
|
// fold (shl (sra x, c1), c1) -> (and x, -1 << c1)
|
2005-09-03 05:18:40 +08:00
|
|
|
if (N1C && N0.getOpcode() == ISD::SRA && N1 == N0.getOperand(1))
|
2005-09-02 07:24:04 +08:00
|
|
|
return DAG.getNode(ISD::AND, VT, N0.getOperand(0),
|
2005-09-03 05:18:40 +08:00
|
|
|
DAG.getConstant(~0ULL << N1C->getValue(), VT)).Val;
|
2005-09-01 08:19:25 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2005-09-03 05:18:40 +08:00
|
|
|
SDNode *DAGCombiner::visitSRA(SDNode *N) {
|
2005-09-01 08:19:25 +08:00
|
|
|
SDOperand N0 = N->getOperand(0);
|
|
|
|
SDOperand N1 = N->getOperand(1);
|
2005-09-03 05:18:40 +08:00
|
|
|
ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
|
|
|
|
ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
|
2005-09-01 08:19:25 +08:00
|
|
|
MVT::ValueType VT = N0.getValueType();
|
|
|
|
unsigned OpSizeInBits = MVT::getSizeInBits(VT);
|
|
|
|
|
|
|
|
// fold (sra c1, c2) -> c1>>c2
|
2005-09-03 05:18:40 +08:00
|
|
|
if (N0C && N1C)
|
|
|
|
return DAG.getConstant(N0C->getSignExtended() >> N1C->getValue(), VT).Val;
|
2005-09-01 08:19:25 +08:00
|
|
|
// fold (sra 0, x) -> 0
|
2005-09-03 05:18:40 +08:00
|
|
|
if (N0C && N0C->isNullValue())
|
2005-09-01 08:19:25 +08:00
|
|
|
return N0.Val;
|
|
|
|
// fold (sra -1, x) -> -1
|
2005-09-03 05:18:40 +08:00
|
|
|
if (N0C && N0C->isAllOnesValue())
|
2005-09-01 08:19:25 +08:00
|
|
|
return N0.Val;
|
|
|
|
// fold (sra x, c >= size(x)) -> undef
|
2005-09-03 05:18:40 +08:00
|
|
|
if (N1C && N1C->getValue() >= OpSizeInBits)
|
2005-09-01 08:19:25 +08:00
|
|
|
return DAG.getNode(ISD::UNDEF, VT).Val;
|
|
|
|
// fold (sra x, 0) -> x
|
2005-09-03 05:18:40 +08:00
|
|
|
if (N1C && N1C->isNullValue())
|
2005-09-01 08:19:25 +08:00
|
|
|
return N0.Val;
|
|
|
|
// If the sign bit is known to be zero, switch this to a SRL.
|
2005-09-03 05:18:40 +08:00
|
|
|
if (N1C && MaskedValueIsZero(N0, (1ULL << (OpSizeInBits-1)), TLI))
|
2005-09-01 08:19:25 +08:00
|
|
|
return DAG.getNode(ISD::SRL, VT, N0, N1).Val;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2005-09-03 05:18:40 +08:00
|
|
|
SDNode *DAGCombiner::visitSRL(SDNode *N) {
|
2005-09-01 08:19:25 +08:00
|
|
|
SDOperand N0 = N->getOperand(0);
|
|
|
|
SDOperand N1 = N->getOperand(1);
|
2005-09-03 05:18:40 +08:00
|
|
|
ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
|
|
|
|
ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
|
2005-09-01 08:19:25 +08:00
|
|
|
MVT::ValueType VT = N0.getValueType();
|
|
|
|
unsigned OpSizeInBits = MVT::getSizeInBits(VT);
|
|
|
|
|
|
|
|
// fold (srl c1, c2) -> c1 >>u c2
|
2005-09-03 05:18:40 +08:00
|
|
|
if (N0C && N1C)
|
|
|
|
return DAG.getConstant(N0C->getValue() >> N1C->getValue(), VT).Val;
|
2005-09-01 08:19:25 +08:00
|
|
|
// fold (srl 0, x) -> 0
|
2005-09-03 05:18:40 +08:00
|
|
|
if (N0C && N0C->isNullValue())
|
2005-09-01 08:19:25 +08:00
|
|
|
return N0.Val;
|
|
|
|
// fold (srl x, c >= size(x)) -> undef
|
2005-09-03 05:18:40 +08:00
|
|
|
if (N1C && N1C->getValue() >= OpSizeInBits)
|
2005-09-01 08:19:25 +08:00
|
|
|
return DAG.getNode(ISD::UNDEF, VT).Val;
|
|
|
|
// fold (srl x, 0) -> x
|
2005-09-03 05:18:40 +08:00
|
|
|
if (N1C && N1C->isNullValue())
|
2005-09-01 08:19:25 +08:00
|
|
|
return N0.Val;
|
|
|
|
// if (srl x, c) is known to be zero, return 0
|
2005-09-03 05:18:40 +08:00
|
|
|
if (N1C && MaskedValueIsZero(N0,(~0ULL >> (64-OpSizeInBits))<<N1C->getValue(),
|
2005-09-01 08:19:25 +08:00
|
|
|
TLI))
|
|
|
|
return DAG.getConstant(0, VT).Val;
|
|
|
|
// fold (srl (srl x, c1), c2) -> 0 or (srl x, c1+c2)
|
2005-09-03 05:18:40 +08:00
|
|
|
if (N1C && N0.getOpcode() == ISD::SRL &&
|
2005-09-01 08:19:25 +08:00
|
|
|
N0.getOperand(1).getOpcode() == ISD::Constant) {
|
|
|
|
uint64_t c1 = cast<ConstantSDNode>(N0.getOperand(1))->getValue();
|
2005-09-03 05:18:40 +08:00
|
|
|
uint64_t c2 = N1C->getValue();
|
2005-09-01 08:19:25 +08:00
|
|
|
if (c1 + c2 > OpSizeInBits)
|
|
|
|
return DAG.getConstant(0, VT).Val;
|
|
|
|
return DAG.getNode(ISD::SRL, VT, N0.getOperand(0),
|
|
|
|
DAG.getConstant(c1 + c2, N1.getValueType())).Val;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2005-09-03 05:18:40 +08:00
|
|
|
SDNode *DAGCombiner::visitCTLZ(SDNode *N) {
|
2005-09-01 08:19:25 +08:00
|
|
|
SDOperand N0 = N->getOperand(0);
|
2005-09-03 05:18:40 +08:00
|
|
|
ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
|
2005-09-01 08:19:25 +08:00
|
|
|
|
|
|
|
// fold (ctlz c1) -> c2
|
2005-09-03 05:18:40 +08:00
|
|
|
if (N0C)
|
|
|
|
return DAG.getConstant(CountLeadingZeros_64(N0C->getValue()),
|
2005-09-01 08:19:25 +08:00
|
|
|
N0.getValueType()).Val;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2005-09-03 05:18:40 +08:00
|
|
|
SDNode *DAGCombiner::visitCTTZ(SDNode *N) {
|
2005-09-01 08:19:25 +08:00
|
|
|
SDOperand N0 = N->getOperand(0);
|
2005-09-03 05:18:40 +08:00
|
|
|
ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
|
2005-09-01 08:19:25 +08:00
|
|
|
|
|
|
|
// fold (cttz c1) -> c2
|
2005-09-03 05:18:40 +08:00
|
|
|
if (N0C)
|
|
|
|
return DAG.getConstant(CountTrailingZeros_64(N0C->getValue()),
|
2005-09-01 08:19:25 +08:00
|
|
|
N0.getValueType()).Val;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2005-09-03 05:18:40 +08:00
|
|
|
SDNode *DAGCombiner::visitCTPOP(SDNode *N) {
|
2005-09-01 08:19:25 +08:00
|
|
|
SDOperand N0 = N->getOperand(0);
|
2005-09-03 05:18:40 +08:00
|
|
|
ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
|
2005-09-01 08:19:25 +08:00
|
|
|
|
|
|
|
// fold (ctpop c1) -> c2
|
2005-09-03 05:18:40 +08:00
|
|
|
if (N0C)
|
|
|
|
return DAG.getConstant(CountPopulation_64(N0C->getValue()),
|
2005-09-01 08:19:25 +08:00
|
|
|
N0.getValueType()).Val;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2005-09-03 05:18:40 +08:00
|
|
|
SDNode *DAGCombiner::visitSIGN_EXTEND(SDNode *N) {
|
2005-09-01 08:19:25 +08:00
|
|
|
SDOperand N0 = N->getOperand(0);
|
2005-09-03 05:18:40 +08:00
|
|
|
ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
|
2005-09-01 08:19:25 +08:00
|
|
|
MVT::ValueType VT = N->getValueType(0);
|
|
|
|
|
|
|
|
// fold (sext c1) -> c1
|
2005-09-03 05:18:40 +08:00
|
|
|
if (N0C)
|
|
|
|
return DAG.getConstant(N0C->getSignExtended(), VT).Val;
|
2005-09-01 08:19:25 +08:00
|
|
|
// fold (sext (sext x)) -> (sext x)
|
|
|
|
if (N0.getOpcode() == ISD::SIGN_EXTEND)
|
|
|
|
return DAG.getNode(ISD::SIGN_EXTEND, VT, N0.getOperand(0)).Val;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2005-09-03 05:18:40 +08:00
|
|
|
SDNode *DAGCombiner::visitZERO_EXTEND(SDNode *N) {
|
2005-09-01 08:19:25 +08:00
|
|
|
SDOperand N0 = N->getOperand(0);
|
2005-09-03 05:18:40 +08:00
|
|
|
ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
|
2005-09-01 08:19:25 +08:00
|
|
|
MVT::ValueType VT = N->getValueType(0);
|
|
|
|
|
|
|
|
// fold (zext c1) -> c1
|
2005-09-03 05:18:40 +08:00
|
|
|
if (N0C)
|
|
|
|
return DAG.getConstant(N0C->getValue(), VT).Val;
|
2005-09-01 08:19:25 +08:00
|
|
|
// fold (zext (zext x)) -> (zext x)
|
|
|
|
if (N0.getOpcode() == ISD::ZERO_EXTEND)
|
|
|
|
return DAG.getNode(ISD::ZERO_EXTEND, VT, N0.getOperand(0)).Val;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2005-09-03 05:18:40 +08:00
|
|
|
SDNode *DAGCombiner::visitSIGN_EXTEND_INREG(SDNode *N) {
|
2005-09-01 08:19:25 +08:00
|
|
|
SDOperand N0 = N->getOperand(0);
|
2005-09-03 05:18:40 +08:00
|
|
|
SDOperand N1 = N->getOperand(1);
|
|
|
|
SDOperand LHS, RHS, CC;
|
|
|
|
ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
|
2005-09-01 08:19:25 +08:00
|
|
|
MVT::ValueType VT = N->getValueType(0);
|
2005-09-03 05:18:40 +08:00
|
|
|
MVT::ValueType EVT = cast<VTSDNode>(N1)->getVT();
|
2005-09-01 08:19:25 +08:00
|
|
|
|
|
|
|
// fold (sext_in_reg c1) -> c1
|
2005-09-03 05:18:40 +08:00
|
|
|
if (N0C) {
|
|
|
|
SDOperand Truncate = DAG.getConstant(N0C->getValue(), EVT);
|
2005-09-01 08:19:25 +08:00
|
|
|
return DAG.getNode(ISD::SIGN_EXTEND, VT, Truncate).Val;
|
|
|
|
}
|
2005-09-03 05:18:40 +08:00
|
|
|
// fold (sext_in_reg (sext_in_reg x, VT2), VT1) -> (sext_in_reg x, minVT) pt1
|
2005-09-01 08:19:25 +08:00
|
|
|
if (N0.getOpcode() == ISD::SIGN_EXTEND_INREG &&
|
2005-09-03 05:18:40 +08:00
|
|
|
cast<VTSDNode>(N0.getOperand(1))->getVT() < EVT) {
|
2005-09-01 08:19:25 +08:00
|
|
|
return N0.Val;
|
|
|
|
}
|
2005-09-03 05:18:40 +08:00
|
|
|
// fold (sext_in_reg (sext_in_reg x, VT2), VT1) -> (sext_in_reg x, minVT) pt2
|
|
|
|
if (N0.getOpcode() == ISD::SIGN_EXTEND_INREG &&
|
|
|
|
EVT < cast<VTSDNode>(N0.getOperand(1))->getVT()) {
|
|
|
|
return DAG.getNode(ISD::SIGN_EXTEND_INREG, VT, N0.getOperand(0), N1).Val;
|
|
|
|
}
|
2005-09-01 08:19:25 +08:00
|
|
|
// fold (sext_in_reg (assert_sext x)) -> (assert_sext x)
|
|
|
|
if (N0.getOpcode() == ISD::AssertSext &&
|
|
|
|
cast<VTSDNode>(N0.getOperand(1))->getVT() <= EVT) {
|
|
|
|
return N0.Val;
|
|
|
|
}
|
|
|
|
// fold (sext_in_reg (sextload x)) -> (sextload x)
|
|
|
|
if (N0.getOpcode() == ISD::SEXTLOAD &&
|
|
|
|
cast<VTSDNode>(N0.getOperand(3))->getVT() <= EVT) {
|
|
|
|
return N0.Val;
|
|
|
|
}
|
2005-09-02 07:24:04 +08:00
|
|
|
// fold (sext_in_reg (setcc x)) -> setcc x iff (setcc x) == 0 or -1
|
2005-09-03 05:18:40 +08:00
|
|
|
// FIXME: teach isSetCCEquivalent about 0, -1 and then use it here
|
2005-09-01 08:19:25 +08:00
|
|
|
if (N0.getOpcode() == ISD::SETCC &&
|
|
|
|
TLI.getSetCCResultContents() ==
|
|
|
|
TargetLowering::ZeroOrNegativeOneSetCCResult)
|
|
|
|
return N0.Val;
|
|
|
|
// FIXME: this code is currently just ported over from SelectionDAG.cpp
|
|
|
|
// we probably actually want to handle this in two pieces. Rather than
|
|
|
|
// checking all the top bits for zero, just check the sign bit here and turn
|
|
|
|
// it into a zero extend inreg (AND with constant).
|
|
|
|
// then, let the code for AND figure out if the mask is superfluous rather
|
|
|
|
// than doing so here.
|
|
|
|
if (N0.getOpcode() == ISD::AND &&
|
|
|
|
N0.getOperand(1).getOpcode() == ISD::Constant) {
|
|
|
|
uint64_t Mask = cast<ConstantSDNode>(N0.getOperand(1))->getValue();
|
|
|
|
unsigned NumBits = MVT::getSizeInBits(EVT);
|
|
|
|
if ((Mask & (~0ULL << (NumBits-1))) == 0)
|
|
|
|
return N0.Val;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2005-09-03 05:18:40 +08:00
|
|
|
SDNode *DAGCombiner::visitTRUNCATE(SDNode *N) {
|
2005-09-01 08:19:25 +08:00
|
|
|
SDOperand N0 = N->getOperand(0);
|
2005-09-03 05:18:40 +08:00
|
|
|
ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
|
2005-09-01 08:19:25 +08:00
|
|
|
MVT::ValueType VT = N->getValueType(0);
|
|
|
|
|
|
|
|
// noop truncate
|
|
|
|
if (N0.getValueType() == N->getValueType(0))
|
|
|
|
return N0.Val;
|
|
|
|
// fold (truncate c1) -> c1
|
2005-09-03 05:18:40 +08:00
|
|
|
if (N0C)
|
|
|
|
return DAG.getConstant(N0C->getValue(), VT).Val;
|
2005-09-01 08:19:25 +08:00
|
|
|
// fold (truncate (truncate x)) -> (truncate x)
|
|
|
|
if (N0.getOpcode() == ISD::TRUNCATE)
|
|
|
|
return DAG.getNode(ISD::TRUNCATE, VT, N0.getOperand(0)).Val;
|
|
|
|
// fold (truncate (ext x)) -> (ext x) or (truncate x) or x
|
|
|
|
if (N0.getOpcode() == ISD::ZERO_EXTEND || N0.getOpcode() == ISD::SIGN_EXTEND){
|
|
|
|
if (N0.getValueType() < VT)
|
|
|
|
// if the source is smaller than the dest, we still need an extend
|
|
|
|
return DAG.getNode(N0.getOpcode(), VT, N0.getOperand(0)).Val;
|
|
|
|
else if (N0.getValueType() > VT)
|
|
|
|
// if the source is larger than the dest, than we just need the truncate
|
|
|
|
return DAG.getNode(ISD::TRUNCATE, VT, N0.getOperand(0)).Val;
|
|
|
|
else
|
|
|
|
// if the source and dest are the same type, we can drop both the extend
|
|
|
|
// and the truncate
|
|
|
|
return N0.getOperand(0).Val;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2005-09-03 05:18:40 +08:00
|
|
|
SDNode *DAGCombiner::visitSINT_TO_FP(SDNode *N) {
|
2005-09-01 08:19:25 +08:00
|
|
|
SDOperand N0 = N->getOperand(0);
|
2005-09-03 05:18:40 +08:00
|
|
|
ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
|
2005-09-01 08:19:25 +08:00
|
|
|
MVT::ValueType VT = N->getValueType(0);
|
|
|
|
|
|
|
|
// fold (sint_to_fp c1) -> c1fp
|
2005-09-03 05:18:40 +08:00
|
|
|
if (N0C)
|
|
|
|
return DAG.getConstantFP(N0C->getSignExtended(), VT).Val;
|
2005-09-01 08:19:25 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2005-09-03 05:18:40 +08:00
|
|
|
SDNode *DAGCombiner::visitUINT_TO_FP(SDNode *N) {
|
2005-09-01 08:19:25 +08:00
|
|
|
SDOperand N0 = N->getOperand(0);
|
2005-09-03 05:18:40 +08:00
|
|
|
ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
|
2005-09-01 08:19:25 +08:00
|
|
|
MVT::ValueType VT = N->getValueType(0);
|
|
|
|
|
|
|
|
// fold (uint_to_fp c1) -> c1fp
|
2005-09-03 05:18:40 +08:00
|
|
|
if (N0C)
|
|
|
|
return DAG.getConstantFP(N0C->getValue(), VT).Val;
|
2005-09-01 08:19:25 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2005-09-03 05:18:40 +08:00
|
|
|
SDNode *DAGCombiner::visitFP_TO_SINT(SDNode *N) {
|
|
|
|
ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N->getOperand(0));
|
2005-09-01 08:19:25 +08:00
|
|
|
|
|
|
|
// fold (fp_to_sint c1fp) -> c1
|
2005-09-03 05:18:40 +08:00
|
|
|
if (N0CFP)
|
|
|
|
return DAG.getConstant((int64_t)N0CFP->getValue(), N->getValueType(0)).Val;
|
2005-09-01 08:19:25 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2005-09-03 05:18:40 +08:00
|
|
|
SDNode *DAGCombiner::visitFP_TO_UINT(SDNode *N) {
|
|
|
|
ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N->getOperand(0));
|
2005-09-01 08:19:25 +08:00
|
|
|
|
|
|
|
// fold (fp_to_uint c1fp) -> c1
|
2005-09-03 05:18:40 +08:00
|
|
|
if (N0CFP)
|
|
|
|
return DAG.getConstant((uint64_t)N0CFP->getValue(), N->getValueType(0)).Val;
|
2005-09-01 08:19:25 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2005-09-03 05:18:40 +08:00
|
|
|
SDNode *DAGCombiner::visitFP_ROUND(SDNode *N) {
|
|
|
|
ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N->getOperand(0));
|
2005-09-01 08:19:25 +08:00
|
|
|
|
|
|
|
// fold (fp_round c1fp) -> c1fp
|
2005-09-03 05:18:40 +08:00
|
|
|
if (N0CFP)
|
|
|
|
return DAG.getConstantFP(N0CFP->getValue(), N->getValueType(0)).Val;
|
2005-09-01 08:19:25 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2005-09-03 05:18:40 +08:00
|
|
|
SDNode *DAGCombiner::visitFP_ROUND_INREG(SDNode *N) {
|
2005-09-01 08:19:25 +08:00
|
|
|
SDOperand N0 = N->getOperand(0);
|
|
|
|
MVT::ValueType VT = N->getValueType(0);
|
|
|
|
MVT::ValueType EVT = cast<VTSDNode>(N->getOperand(1))->getVT();
|
2005-09-03 05:18:40 +08:00
|
|
|
ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
|
2005-09-01 08:19:25 +08:00
|
|
|
|
|
|
|
// noop fp_round_inreg
|
|
|
|
if (EVT == VT)
|
|
|
|
return N0.Val;
|
|
|
|
// fold (fp_round_inreg c1fp) -> c1fp
|
2005-09-03 05:18:40 +08:00
|
|
|
if (N0CFP) {
|
|
|
|
SDOperand Round = DAG.getConstantFP(N0CFP->getValue(), EVT);
|
2005-09-01 08:19:25 +08:00
|
|
|
return DAG.getNode(ISD::FP_EXTEND, VT, Round).Val;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2005-09-03 05:18:40 +08:00
|
|
|
SDNode *DAGCombiner::visitFP_EXTEND(SDNode *N) {
|
|
|
|
ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N->getOperand(0));
|
2005-09-01 08:19:25 +08:00
|
|
|
|
|
|
|
// fold (fp_extend c1fp) -> c1fp
|
2005-09-03 05:18:40 +08:00
|
|
|
if (N0CFP)
|
|
|
|
return DAG.getConstantFP(N0CFP->getValue(), N->getValueType(0)).Val;
|
2005-09-01 08:19:25 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2005-09-03 05:18:40 +08:00
|
|
|
SDNode *DAGCombiner::visitFNEG(SDNode *N) {
|
|
|
|
ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N->getOperand(0));
|
2005-09-01 08:19:25 +08:00
|
|
|
// fold (neg c1) -> -c1
|
2005-09-03 05:18:40 +08:00
|
|
|
if (N0CFP)
|
|
|
|
return DAG.getConstantFP(-N0CFP->getValue(), N->getValueType(0)).Val;
|
2005-09-01 08:19:25 +08:00
|
|
|
// fold (neg (sub x, y)) -> (sub y, x)
|
|
|
|
if (N->getOperand(0).getOpcode() == ISD::SUB)
|
|
|
|
return DAG.getNode(ISD::SUB, N->getValueType(0), N->getOperand(1),
|
|
|
|
N->getOperand(0)).Val;
|
|
|
|
// fold (neg (neg x)) -> x
|
|
|
|
if (N->getOperand(0).getOpcode() == ISD::FNEG)
|
|
|
|
return N->getOperand(0).getOperand(0).Val;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2005-09-03 05:18:40 +08:00
|
|
|
SDNode *DAGCombiner::visitFABS(SDNode *N) {
|
|
|
|
ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N->getOperand(0));
|
2005-09-01 08:19:25 +08:00
|
|
|
// fold (fabs c1) -> fabs(c1)
|
2005-09-03 05:18:40 +08:00
|
|
|
if (N0CFP)
|
|
|
|
return DAG.getConstantFP(fabs(N0CFP->getValue()), N->getValueType(0)).Val;
|
2005-09-01 08:19:25 +08:00
|
|
|
// fold (fabs (fabs x)) -> (fabs x)
|
|
|
|
if (N->getOperand(0).getOpcode() == ISD::FABS)
|
|
|
|
return N->getOperand(0).Val;
|
|
|
|
// fold (fabs (fneg x)) -> (fabs x)
|
|
|
|
if (N->getOperand(0).getOpcode() == ISD::FNEG)
|
|
|
|
return DAG.getNode(ISD::FABS, N->getValueType(0),
|
|
|
|
N->getOperand(0).getOperand(0)).Val;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
// SelectionDAG::Combine - This is the entry point for the file.
|
|
|
|
//
|
2005-09-02 07:24:04 +08:00
|
|
|
void SelectionDAG::Combine(bool RunningAfterLegalize) {
|
2005-09-01 08:19:25 +08:00
|
|
|
/// run - This is the main entry point to this class.
|
|
|
|
///
|
2005-09-02 07:24:04 +08:00
|
|
|
DAGCombiner(*this).Run(RunningAfterLegalize);
|
2005-09-01 08:19:25 +08:00
|
|
|
}
|