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

References

lib/Analysis/DemandedBits.cpp
  313   AliveBits.clear();
  330       if (AliveBits.try_emplace(&I, T->getScalarSizeInBits(), 0).second)
  341           AliveBits[J] = APInt::getAllOnesValue(T->getScalarSizeInBits());
  361       AOut = AliveBits[UserI];
  406           auto Res = AliveBits.try_emplace(I);
  422   auto Found = AliveBits.find(I);
  423   if (Found != AliveBits.end())
  434   return !Visited.count(I) && AliveBits.find(I) == AliveBits.end() &&
  434   return !Visited.count(I) && AliveBits.find(I) == AliveBits.end() &&
  455     auto Found = AliveBits.find(UserI);
  456     if (Found != AliveBits.end() && Found->second.isNullValue())
  465   for (auto &KV : AliveBits) {