Home
last modified time | relevance | path

Searched refs:UpdateKind (Results 1 – 7 of 7) sorted by relevance

/openbsd-src/gnu/llvm/llvm/include/llvm/Support/
H A DCFGUpdate.h26 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 DCFGDiff.h100 (U.getKind() == cfg::UpdateKind::Insert) == !ReverseApplyUpdates;
117 (U.getKind() == cfg::UpdateKind::Insert) == !UpdatedAreReverseApplied; in popUpdateForIncrementalUpdates()
H A DGenericDomTree.h257 using UpdateKind = cfg::UpdateKind;
258 static constexpr UpdateKind Insert = UpdateKind::Insert;
259 static constexpr UpdateKind Delete = UpdateKind::Delete;
H A DGenericDomTreeConstruction.h80 using UpdateKind = typename DomTreeT::UpdateKind; member
1163 if (Update.getKind() == UpdateKind::Insert) in ApplyUpdates()
1169 if (Update.getKind() == UpdateKind::Insert) in ApplyUpdates()
1210 if (CurrentUpdate.getKind() == UpdateKind::Insert) in ApplyNextUpdate()
/openbsd-src/gnu/llvm/llvm/lib/Transforms/Utils/
H A DLoopUnrollAndJam.cpp567 DTUpdates.emplace_back(DominatorTree::UpdateKind::Delete, ForeBlocksLast[0], in UnrollAndJamLoop()
569 DTUpdates.emplace_back(DominatorTree::UpdateKind::Delete, in UnrollAndJamLoop()
572 DTUpdates.emplace_back(DominatorTree::UpdateKind::Insert, in UnrollAndJamLoop()
574 DTUpdates.emplace_back(DominatorTree::UpdateKind::Insert, in UnrollAndJamLoop()
/openbsd-src/gnu/llvm/llvm/lib/Transforms/Scalar/
H A DLoopInterchange.cpp1443 {DominatorTree::UpdateKind::Insert, BI->getParent(), NewBB}); in updateSuccessor()
1445 {DominatorTree::UpdateKind::Delete, BI->getParent(), OldBB}); in updateSuccessor()
H A DSimpleLoopUnswitch.cpp619 Updates.push_back({cfg::UpdateKind::Insert, OldPH, UnswitchedBB}); in unswitchTrivialBranch()