HomeSort by relevance Sort by last modified time
    Searched defs:RHSKnown (Results 1 - 5 of 5) sorted by null

  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/InstCombine/
InstCombineAddSub.cpp     [all...]
  /external/llvm/lib/Analysis/
ValueTracking.cpp 288 APInt RHSKnown = KnownZero2 | KnownOne2;
290 APInt Known = LHSKnown & RHSKnown & CarryKnown;
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Analysis/
InstructionSimplify.cpp     [all...]
ValueTracking.cpp 203 KnownBits RHSKnown(IT->getBitWidth());
205 computeKnownBits(RHS, RHSKnown, DL, 0, AC, CxtI, DT);
206 return (LHSKnown.Zero | RHSKnown.Zero).isAllOnesValue();
621 KnownBits RHSKnown(BitWidth);
622 computeKnownBits(A, RHSKnown, Depth+1, Query(Q, I));
623 Known.Zero |= RHSKnown.Zero;
624 Known.One |= RHSKnown.One;
630 KnownBits RHSKnown(BitWidth);
631 computeKnownBits(A, RHSKnown, Depth+1, Query(Q, I));
637 Known.Zero |= RHSKnown.Zero & MaskKnown.One
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/AMDGPU/
AMDGPUISelLowering.cpp     [all...]

Completed in 93 milliseconds