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

References

lib/Analysis/ConstantFolding.cpp
  215         if (Src && isa<UndefValue>(Src))
  215         if (Src && isa<UndefValue>(Src))
  216           Src = Constant::getNullValue(C->getType()->getVectorElementType());
  218           Src = dyn_cast_or_null<ConstantInt>(Src);
  218           Src = dyn_cast_or_null<ConstantInt>(Src);
  219         if (!Src)  // Reject constantexpr elements.
  223         Src = ConstantExpr::getZExt(Src, Elt->getType());
  223         Src = ConstantExpr::getZExt(Src, Elt->getType());
  226         Src = ConstantExpr::getShl(Src,
  226         Src = ConstantExpr::getShl(Src,
  227                                    ConstantInt::get(Src->getType(), ShiftAmt));
  231         Elt = ConstantExpr::getOr(Elt, Src);