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

/external/llvm/lib/CodeGen/SelectionDAG/
H A DTargetLowering.cpp1235 APInt LHSZero, LHSOne; local
1237 TLO.DAG.ComputeMaskedBits(Op.getOperand(0), LHSZero, LHSOne, Depth);
1239 if ((LHSZero & NewMask) == (~RHSC->getAPIntValue() & NewMask))
1243 if (TLO.ShrinkDemandedConstant(Op, ~LHSZero & NewMask))
H A DDAGCombiner.cpp1459 APInt LHSZero, LHSOne; local
1461 DAG.ComputeMaskedBits(N0, LHSZero, LHSOne);
1463 if (LHSZero.getBoolValue()) {
1468 if ((RHSZero & ~LHSZero) == ~LHSZero || (LHSZero & ~RHSZero) == ~RHSZero)
1552 APInt LHSZero, LHSOne;
1554 DAG.ComputeMaskedBits(N0, LHSZero, LHSOne);
1556 if (LHSZero.getBoolValue()) {
1561 if ((RHSZero & ~LHSZero)
[all...]

Completed in 65 milliseconds