Searched refs:UpdateKind (Results 1 – 7 of 7) sorted by relevance
/freebsd/contrib/llvm-project/llvm/include/llvm/Support/ |
H A D | CFGUpdate.h | 26 enum class UpdateKind : unsigned char { Insert, Delete }; enum 29 using NodeKindPair = PointerIntPair<NodePtr, 1, UpdateKind>; 34 Update(UpdateKind Kind, NodePtr From, NodePtr To) in Update() 37 UpdateKind getKind() const { return ToAndKind.getInt(); } in getKind() 45 OS << (getKind() == UpdateKind::Insert ? "Insert " : "Delete "); in print() 80 Operations[{From, To}] += (U.getKind() == UpdateKind::Insert ? 1 : -1); 90 const UpdateKind UK = 91 NumInsertions > 0 ? UpdateKind::Insert : UpdateKind::Delete;
|
H A D | CFGDiff.h | 100 (U.getKind() == cfg::UpdateKind::Insert) == !ReverseApplyUpdates; 117 (U.getKind() == cfg::UpdateKind::Insert) == !UpdatedAreReverseApplied; in popUpdateForIncrementalUpdates()
|
H A D | GenericDomTree.h | 255 using UpdateKind = cfg::UpdateKind; 256 static constexpr UpdateKind Insert = UpdateKind::Insert; 257 static constexpr UpdateKind Delete = UpdateKind::Delete;
|
H A D | GenericDomTreeConstruction.h | 79 using UpdateKind = typename DomTreeT::UpdateKind; member 1145 if (Update.getKind() == UpdateKind::Insert) in ApplyUpdates() 1151 if (Update.getKind() == UpdateKind::Insert) in ApplyUpdates() 1192 if (CurrentUpdate.getKind() == UpdateKind::Insert) in ApplyNextUpdate()
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/ |
H A D | LoopUnrollAndJam.cpp | 566 DTUpdates.emplace_back(DominatorTree::UpdateKind::Delete, ForeBlocksLast[0], in UnrollAndJamLoop() 568 DTUpdates.emplace_back(DominatorTree::UpdateKind::Delete, in UnrollAndJamLoop() 571 DTUpdates.emplace_back(DominatorTree::UpdateKind::Insert, in UnrollAndJamLoop() 573 DTUpdates.emplace_back(DominatorTree::UpdateKind::Insert, in UnrollAndJamLoop()
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/ |
H A D | LoopInterchange.cpp | 1436 {DominatorTree::UpdateKind::Insert, BI->getParent(), NewBB}); in updateSuccessor() 1438 {DominatorTree::UpdateKind::Delete, BI->getParent(), OldBB}); in updateSuccessor()
|
H A D | SimpleLoopUnswitch.cpp | 663 Updates.push_back({cfg::UpdateKind::Insert, OldPH, UnswitchedBB}); in unswitchTrivialBranch()
|