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

References

lib/Transforms/Vectorize/VPlan.cpp
  380     Value2VPValue[TCMO] = BackedgeTakenCount;
  384   for (auto &Entry : Value2VPValue)
  509   if (!Plan.Value2VPValue.empty() || Plan.BackedgeTakenCount) {
  514     for (auto Entry : Plan.Value2VPValue) {
lib/Transforms/Vectorize/VPlan.h
 1191     for (auto &MapEntry : Value2VPValue)
 1238     assert(!Value2VPValue.count(V) && "Value already exists in VPlan");
 1239     Value2VPValue[V] = new VPValue();
 1244     assert(Value2VPValue.count(V) && "Value does not exist in VPlan");
 1245     return Value2VPValue[V];