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

References

lib/Analysis/ScalarEvolution.cpp
 6135   if (!isSCEVable(V->getType()))
 6136     return getUnknown(V);
 6138   if (Instruction *I = dyn_cast<Instruction>(V)) {
 6144       return getUnknown(UndefValue::get(V->getType()));
 6145   } else if (ConstantInt *CI = dyn_cast<ConstantInt>(V))
 6147   else if (isa<ConstantPointerNull>(V))
 6148     return getZero(V->getType());
 6149   else if (GlobalAlias *GA = dyn_cast<GlobalAlias>(V))
 6150     return GA->isInterposable() ? getUnknown(V) : getSCEV(GA->getAliasee());
 6151   else if (!isa<ConstantExpr>(V))
 6152     return getUnknown(V);
 6154   Operator *U = cast<Operator>(V);
 6505   return getUnknown(V);