HomeSort by: relevance | last modified time | path
    Searched defs:KnownRHS (Results 1 - 2 of 2) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/GlobalISel/
GISelKnownBits.cpp 315 KnownBits KnownRHS;
318 computeKnownBitsImpl(MI.getOperand(2).getReg(), KnownRHS, DemandedElts,
320 Known = KnownBits::smin(Known, KnownRHS);
325 KnownBits KnownRHS;
328 computeKnownBitsImpl(MI.getOperand(2).getReg(), KnownRHS, DemandedElts,
330 Known = KnownBits::smax(Known, KnownRHS);
334 KnownBits KnownRHS;
337 computeKnownBitsImpl(MI.getOperand(2).getReg(), KnownRHS,
339 Known = KnownBits::umin(Known, KnownRHS);
343 KnownBits KnownRHS;
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/InstCombine/
InstCombineCasts.cpp 1025 KnownBits KnownRHS = computeKnownBits(RHS, 0, &Zext);
1027 if (KnownLHS.Zero == KnownRHS.Zero && KnownLHS.One == KnownRHS.One) {

Completed in 30 milliseconds