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

/external/llvm/lib/CodeGen/SelectionDAG/
H A DTargetLowering.cpp420 APInt LHSZero, LHSOne; local
422 TLO.DAG.computeKnownBits(Op.getOperand(0), LHSZero, LHSOne, Depth);
424 if ((LHSZero & NewMask) == (~RHSC->getAPIntValue() & NewMask))
428 if (TLO.ShrinkDemandedConstant(Op, ~LHSZero & NewMask))
H A DDAGCombiner.cpp1581 APInt LHSZero, LHSOne; local
1583 DAG.computeKnownBits(N0, LHSZero, LHSOne);
1585 if (LHSZero.getBoolValue()) {
1590 if ((RHSZero & ~LHSZero) == ~LHSZero || (LHSZero & ~RHSZero) == ~RHSZero){
1676 APInt LHSZero, LHSOne;
1678 DAG.computeKnownBits(N0, LHSZero, LHSOne);
1680 if (LHSZero.getBoolValue()) {
1685 if ((RHSZero & ~LHSZero)
[all...]

Completed in 1276 milliseconds