Searched defs:LHSZero (Results 1 - 3 of 3) sorted by relevance

/external/swiftshader/third_party/LLVM/lib/CodeGen/SelectionDAG/
H A DTargetLowering.cpp1254 APInt LHSZero, LHSOne; local
1257 LHSZero, LHSOne, Depth);
1259 if ((LHSZero & NewMask) == (~RHSC->getAPIntValue() & NewMask))
1263 if (TLO.ShrinkDemandedConstant(Op, ~LHSZero & NewMask))
H A DDAGCombiner.cpp1409 APInt LHSZero, LHSOne; local
1412 DAG.ComputeMaskedBits(N0, Mask, LHSZero, LHSOne);
1414 if (LHSZero.getBoolValue()) {
1419 if ((RHSZero & (~LHSZero & Mask)) == (~LHSZero & Mask) ||
1420 (LHSZero & (~RHSZero & Mask)) == (~RHSZero & Mask))
1504 APInt LHSZero, LHSOne;
1507 DAG.ComputeMaskedBits(N0, Mask, LHSZero, LHSOne);
1509 if (LHSZero.getBoolValue()) {
1514 if ((RHSZero & (~LHSZero
[all...]
/external/llvm/lib/CodeGen/SelectionDAG/
H A DTargetLowering.cpp477 APInt LHSZero, LHSOne; local
479 TLO.DAG.computeKnownBits(Op.getOperand(0), LHSZero, LHSOne, Depth);
481 if ((LHSZero & NewMask) == (~RHSC->getAPIntValue() & NewMask))
485 if (TLO.ShrinkDemandedConstant(Op, ~LHSZero & NewMask))

Completed in 113 milliseconds