HomeSort by relevance Sort by last modified time
    Searched refs:IKnownOne (Results 1 - 2 of 2) sorted by null

  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/InstCombine/
InstCombineSimplifyDemanded.cpp 178 APInt IKnownOne = RHSKnown.One & LHSKnown.One;
182 if (DemandedMask.isSubsetOf(IKnownZero|IKnownOne))
183 return Constant::getIntegerValue(VTy, IKnownOne);
197 Known.One = std::move(IKnownOne);
212 APInt IKnownOne = RHSKnown.One | LHSKnown.One;
216 if (DemandedMask.isSubsetOf(IKnownZero|IKnownOne))
217 return Constant::getIntegerValue(VTy, IKnownOne);
231 Known.One = std::move(IKnownOne);
245 APInt IKnownOne = (RHSKnown.Zero & LHSKnown.One) |
250 if (DemandedMask.isSubsetOf(IKnownZero|IKnownOne))
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineSimplifyDemanded.cpp 334 APInt IKnownOne = (RHSKnownZero & LHSKnownOne) |
339 if ((DemandedMask & (IKnownZero|IKnownOne)) == DemandedMask)
340 return Constant::getIntegerValue(VTy, IKnownOne);
    [all...]

Completed in 300 milliseconds