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

  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/GlobalISel/
CombinerHelper.cpp 3940 auto KnownLHS = KB->getKnownBits(MI.getOperand(2).getReg());
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/Transforms/InstCombine/
InstCombineCasts.cpp 1024 KnownBits KnownLHS = computeKnownBits(LHS, 0, &Zext);
1027 if (KnownLHS.Zero == KnownRHS.Zero && KnownLHS.One == KnownRHS.One) {
1028 APInt KnownBits = KnownLHS.Zero | KnownLHS.One;
1036 if (KnownLHS.One.uge(UnknownBit))
  /src/external/apache2/llvm/dist/clang/lib/AST/
ASTContext.cpp 9225 auto KnownLHS = LHSAncestors.find(RHS->getInterface()->getCanonicalDecl());
9226 if (KnownLHS != LHSAncestors.end()) {
9227 LHS = KnownLHS->second;
  /src/external/apache2/llvm/dist/llvm/lib/Target/X86/
X86ISelLowering.cpp     [all...]

Completed in 39 milliseconds