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

References

lib/Transforms/InstCombine/InstCombineVectorOps.cpp
  261   APInt UsedElts(APInt::getAllOnesValue(VWidth));
  268     if (EEIIndexC && EEIIndexC->getValue().ult(VWidth)) {
  269       UsedElts = APInt::getOneBitSet(VWidth, EEIIndexC->getZExtValue());
  277     UsedElts = APInt(VWidth, 0);
  280       if (MaskVal == -1u || MaskVal >= 2 * VWidth)
  282       if (Shuffle->getOperand(0) == V && (MaskVal < VWidth))
  285           ((MaskVal >= VWidth) && (MaskVal < 2 * VWidth)))
  285           ((MaskVal >= VWidth) && (MaskVal < 2 * VWidth)))
  286         UsedElts.setBit(MaskVal - VWidth);