Searched refs:UpdateKind (Results 1 – 7 of 7) sorted by relevance
| /openbsd-src/gnu/llvm/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 | 257 using UpdateKind = cfg::UpdateKind; 258 static constexpr UpdateKind Insert = UpdateKind::Insert; 259 static constexpr UpdateKind Delete = UpdateKind::Delete;
|
| H A D | GenericDomTreeConstruction.h | 80 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 D | LoopUnrollAndJam.cpp | 567 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 D | LoopInterchange.cpp | 1443 {DominatorTree::UpdateKind::Insert, BI->getParent(), NewBB}); in updateSuccessor() 1445 {DominatorTree::UpdateKind::Delete, BI->getParent(), OldBB}); in updateSuccessor()
|
| H A D | SimpleLoopUnswitch.cpp | 619 Updates.push_back({cfg::UpdateKind::Insert, OldPH, UnswitchedBB}); in unswitchTrivialBranch()
|