HomeSort by: relevance | last modified time | path
    Searched refs:KnownVal (Results 1 - 5 of 5) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/lib/Analysis/
CFG.cpp 2443 // Even though KnownVal is only used in the else branch of the next
2446 TryResult KnownVal = tryEvaluateBool(RHS);
2447 if (!KnownVal.isKnown())
2448 KnownVal = tryEvaluateBool(B);
2456 addSuccessor(RHSBlock, TrueBlock, !KnownVal.isFalse());
2457 addSuccessor(RHSBlock, FalseBlock, !KnownVal.isTrue());
2496 TryResult KnownVal = tryEvaluateBool(LHS);
2500 addSuccessor(LHSBlock, TrueBlock, !KnownVal.isFalse());
2501 addSuccessor(LHSBlock, RHSBlock, !KnownVal.isTrue());
2504 addSuccessor(LHSBlock, RHSBlock, !KnownVal.isFalse())
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/GlobalISel/
CombinerHelper.cpp 3942 Optional<bool> KnownVal;
3947 KnownVal = KnownBits::eq(KnownLHS, KnownRHS);
3950 KnownVal = KnownBits::ne(KnownLHS, KnownRHS);
3953 KnownVal = KnownBits::sge(KnownLHS, KnownRHS);
3956 KnownVal = KnownBits::sgt(KnownLHS, KnownRHS);
3959 KnownVal = KnownBits::sle(KnownLHS, KnownRHS);
3962 KnownVal = KnownBits::slt(KnownLHS, KnownRHS);
3965 KnownVal = KnownBits::uge(KnownLHS, KnownRHS);
3968 KnownVal = KnownBits::ugt(KnownLHS, KnownRHS);
3971 KnownVal = KnownBits::ule(KnownLHS, KnownRHS)
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Analysis/
ValueTracking.cpp 1200 auto KF = [NSW](const KnownBits &KnownVal, const KnownBits &KnownAmt) {
1201 KnownBits Result = KnownBits::shl(KnownVal, KnownAmt);
1205 if (KnownVal.Zero.isSignBitSet())
1207 if (KnownVal.One.isSignBitSet())
1221 auto KF = [](const KnownBits &KnownVal, const KnownBits &KnownAmt) {
1222 return KnownBits::lshr(KnownVal, KnownAmt);
1233 auto KF = [](const KnownBits &KnownVal, const KnownBits &KnownAmt) {
1234 return KnownBits::ashr(KnownVal, KnownAmt);
InstructionSimplify.cpp 1282 KnownBits KnownVal = computeKnownBits(Op0, Q.DL, 0, Q.AC, Q.CxtI, Q.DT);
1283 KnownBits KnownShl = KnownBits::shl(KnownVal, KnownAmt);
1285 if (KnownVal.Zero.isSignBitSet())
1287 if (KnownVal.One.isSignBitSet())
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaExpr.cpp 10668 Expr::EvalResult KnownVal;
10671 (!IExp->EvaluateAsInt(KnownVal, Context) ||
10672 KnownVal.Val.getInt() != 0))) {
10757 Expr::EvalResult KnownVal;
10760 (!RHS.get()->EvaluateAsInt(KnownVal, Context) ||
10761 KnownVal.Val.getInt() != 0))) {

Completed in 80 milliseconds