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

References

lib/Analysis/SyncDependenceAnalysis.cpp
  159     bool WasAdded = DefMap.emplace(&Block, &DefBlock).second;
  167       auto It = DefMap.find(Block);
  169       if (It == DefMap.end()) {
  186       DefMap.emplace(&SuccBlock, &DefBlock);
  192     auto ItLastDef = DefMap.find(&SuccBlock);
  193     if (ItLastDef == DefMap.end()) {
  228       DefMap.emplace(SuccBlock, SuccBlock);
  268       auto ItDef = DefMap.find(Block);
  313       auto ItHeaderDef = DefMap.find(ParentLoopHeader);
  314       const auto *HeaderDefBlock = (ItHeaderDef == DefMap.end()) ? nullptr : ItHeaderDef->second;
  320         auto ItExitDef = DefMap.find(ExitBlock);
  321         assert((ItExitDef != DefMap.end()) &&