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

References

include/llvm/IR/CFGDiff.h
  108       if (U.getKind() == cfg::UpdateKind::Insert) {
include/llvm/Support/CFGUpdate.h
   45     OS << (getKind() == UpdateKind::Insert ? "Insert " : "Delete ");
   80     Operations[{From, To}] += (U.getKind() == UpdateKind::Insert ? 1 : -1);
   91         NumInsertions > 0 ? UpdateKind::Insert : UpdateKind::Delete;
include/llvm/Support/GenericDomTree.h
  233   static constexpr UpdateKind Insert = UpdateKind::Insert;
include/llvm/Support/GenericDomTreeConstruction.h
  146         if (UK == UpdateKind::Insert) {
 1164       if (Update.getKind() == UpdateKind::Insert)
 1249     if (CurrentUpdate.getKind() == UpdateKind::Insert)
lib/Transforms/Scalar/LoopInterchange.cpp
 1331           {DominatorTree::UpdateKind::Insert, BI->getParent(), NewBB});
lib/Transforms/Scalar/SimpleLoopUnswitch.cpp
  494     Updates.push_back({cfg::UpdateKind::Insert, OldPH, UnswitchedBB});
lib/Transforms/Utils/LoopUnrollAndJam.cpp
  530     DTUpdates.emplace_back(DominatorTree::UpdateKind::Insert,
  532     DTUpdates.emplace_back(DominatorTree::UpdateKind::Insert,
unittests/Analysis/MemorySSATest.cpp
 1444   Updates.push_back({cfg::UpdateKind::Insert, Entry, Exit});
 1506   Updates.push_back({cfg::UpdateKind::Insert, Entry, Exit});
 1575   Updates.push_back({cfg::UpdateKind::Insert, FBlock, CBlock});