Searched refs:LHSZero (Results 1 - 2 of 2) sorted by relevance

/freebsd-10.0-release/contrib/llvm/lib/CodeGen/SelectionDAG/
H A DTargetLowering.cpp397 APInt LHSZero, LHSOne; local
399 TLO.DAG.ComputeMaskedBits(Op.getOperand(0), LHSZero, LHSOne, Depth);
401 if ((LHSZero & NewMask) == (~RHSC->getAPIntValue() & NewMask))
405 if (TLO.ShrinkDemandedConstant(Op, ~LHSZero & NewMask))
H A DDAGCombiner.cpp1474 APInt LHSZero, LHSOne; local
1476 DAG.ComputeMaskedBits(N0, LHSZero, LHSOne);
1478 if (LHSZero.getBoolValue()) {
1483 if ((RHSZero & ~LHSZero) == ~LHSZero || (LHSZero & ~RHSZero) == ~RHSZero)
1567 APInt LHSZero, LHSOne;
1569 DAG.ComputeMaskedBits(N0, LHSZero, LHSOne);
1571 if (LHSZero.getBoolValue()) {
1576 if ((RHSZero & ~LHSZero)
[all...]

Completed in 184 milliseconds