Lines Matching defs:KnownLHS
4371 auto KnownLHS = KB->getKnownBits(MI.getOperand(2).getReg());
4376 KnownVal = KnownBits::eq(KnownLHS, KnownRHS);
4379 KnownVal = KnownBits::ne(KnownLHS, KnownRHS);
4382 KnownVal = KnownBits::sge(KnownLHS, KnownRHS);
4385 KnownVal = KnownBits::sgt(KnownLHS, KnownRHS);
4388 KnownVal = KnownBits::sle(KnownLHS, KnownRHS);
4391 KnownVal = KnownBits::slt(KnownLHS, KnownRHS);
4394 KnownVal = KnownBits::uge(KnownLHS, KnownRHS);
4397 KnownVal = KnownBits::ugt(KnownLHS, KnownRHS);
4400 KnownVal = KnownBits::ule(KnownLHS, KnownRHS);
4403 KnownVal = KnownBits::ult(KnownLHS, KnownRHS);
4446 auto KnownLHS = KB->getKnownBits(LHS);
4447 if (KnownLHS.getMinValue() != 0 || KnownLHS.getMaxValue() != 1)