Searched refs:UpdateKind (Results 1 – 7 of 7) sorted by relevance
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/ |
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); in LegalizeUpdates() 90 const UpdateKind UK = in LegalizeUpdates() 91 NumInsertions > 0 ? UpdateKind::Insert : UpdateKind::Delete; in LegalizeUpdates()
|
D | GenericDomTree.h | 232 using UpdateKind = cfg::UpdateKind; 233 static constexpr UpdateKind Insert = UpdateKind::Insert; 234 static constexpr UpdateKind Delete = UpdateKind::Delete;
|
D | GenericDomTreeConstruction.h | 76 using UpdateKind = typename DomTreeT::UpdateKind; member 79 using NodePtrAndKind = PointerIntPair<NodePtr, 1, UpdateKind>; 143 const UpdateKind UK = ChildAndKind.getInt(); in Get() 146 if (UK == UpdateKind::Insert) { in Get() 1164 if (Update.getKind() == UpdateKind::Insert) in ApplyUpdates() 1249 if (CurrentUpdate.getKind() == UpdateKind::Insert) in ApplyNextUpdate()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Utils/ |
D | LoopUnrollAndJam.cpp | 526 DTUpdates.emplace_back(DominatorTree::UpdateKind::Delete, ForeBlocksLast[0], in UnrollAndJamLoop() 528 DTUpdates.emplace_back(DominatorTree::UpdateKind::Delete, in UnrollAndJamLoop() 531 DTUpdates.emplace_back(DominatorTree::UpdateKind::Insert, in UnrollAndJamLoop() 533 DTUpdates.emplace_back(DominatorTree::UpdateKind::Insert, in UnrollAndJamLoop()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/ |
D | CFGDiff.h | 108 if (U.getKind() == cfg::UpdateKind::Insert) { in GraphDiff()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Scalar/ |
D | LoopInterchange.cpp | 1343 {DominatorTree::UpdateKind::Insert, BI->getParent(), NewBB}); in updateSuccessor() 1345 {DominatorTree::UpdateKind::Delete, BI->getParent(), OldBB}); in updateSuccessor()
|
D | SimpleLoopUnswitch.cpp | 511 Updates.push_back({cfg::UpdateKind::Insert, OldPH, UnswitchedBB}); in unswitchTrivialBranch()
|