reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

lib/Transforms/InstCombine/InstCombineSimplifyDemanded.cpp
  932     BitMask2 <<= (ShlAmt - ShrAmt);
  934     BitMask2 = isLshr ? BitMask2.lshr(ShrAmt - ShlAmt):
  934     BitMask2 = isLshr ? BitMask2.lshr(ShrAmt - ShlAmt):
  935                         BitMask2.ashr(ShrAmt - ShlAmt);
  939   if ((BitMask1 & DemandedMask) == (BitMask2 & DemandedMask)) {