Home
last modified time | relevance | path

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

/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/
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); in LegalizeUpdates()
90 const UpdateKind UK = in LegalizeUpdates()
91 NumInsertions > 0 ? UpdateKind::Insert : UpdateKind::Delete; in LegalizeUpdates()
DGenericDomTree.h232 using UpdateKind = cfg::UpdateKind;
233 static constexpr UpdateKind Insert = UpdateKind::Insert;
234 static constexpr UpdateKind Delete = UpdateKind::Delete;
DGenericDomTreeConstruction.h76 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()
/external/llvm-project/llvm/include/llvm/Support/
DCFGUpdate.h25 enum class UpdateKind : unsigned char { Insert, Delete }; enum
28 using NodeKindPair = PointerIntPair<NodePtr, 1, UpdateKind>;
33 Update(UpdateKind Kind, NodePtr From, NodePtr To) in Update()
36 UpdateKind getKind() const { return ToAndKind.getInt(); } in getKind()
44 OS << (getKind() == UpdateKind::Insert ? "Insert " : "Delete "); in print()
79 Operations[{From, To}] += (U.getKind() == UpdateKind::Insert ? 1 : -1);
89 const UpdateKind UK =
90 NumInsertions > 0 ? UpdateKind::Insert : UpdateKind::Delete;
DCFGDiff.h100 (U.getKind() == cfg::UpdateKind::Insert) == !ReverseApplyUpdates;
117 (U.getKind() == cfg::UpdateKind::Insert) == !UpdatedAreReverseApplied; in popUpdateForIncrementalUpdates()
DGenericDomTree.h241 using UpdateKind = cfg::UpdateKind;
242 static constexpr UpdateKind Insert = UpdateKind::Insert;
243 static constexpr UpdateKind Delete = UpdateKind::Delete;
DGenericDomTreeConstruction.h79 using UpdateKind = typename DomTreeT::UpdateKind; member
1164 if (Update.getKind() == UpdateKind::Insert) in ApplyUpdates()
1170 if (Update.getKind() == UpdateKind::Insert) in ApplyUpdates()
1211 if (CurrentUpdate.getKind() == UpdateKind::Insert) in ApplyNextUpdate()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Utils/
DLoopUnrollAndJam.cpp526 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()
/external/llvm-project/llvm/lib/Transforms/Utils/
DLoopUnrollAndJam.cpp571 DTUpdates.emplace_back(DominatorTree::UpdateKind::Delete, ForeBlocksLast[0], in UnrollAndJamLoop()
573 DTUpdates.emplace_back(DominatorTree::UpdateKind::Delete, in UnrollAndJamLoop()
576 DTUpdates.emplace_back(DominatorTree::UpdateKind::Insert, in UnrollAndJamLoop()
578 DTUpdates.emplace_back(DominatorTree::UpdateKind::Insert, in UnrollAndJamLoop()
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/
DCFGDiff.h108 if (U.getKind() == cfg::UpdateKind::Insert) { in GraphDiff()
/external/llvm-project/llvm/lib/Transforms/Scalar/
DLoopInterchange.cpp1377 {DominatorTree::UpdateKind::Insert, BI->getParent(), NewBB}); in updateSuccessor()
1379 {DominatorTree::UpdateKind::Delete, BI->getParent(), OldBB}); in updateSuccessor()
DSimpleLoopUnswitch.cpp518 Updates.push_back({cfg::UpdateKind::Insert, OldPH, UnswitchedBB}); in unswitchTrivialBranch()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Scalar/
DLoopInterchange.cpp1343 {DominatorTree::UpdateKind::Insert, BI->getParent(), NewBB}); in updateSuccessor()
1345 {DominatorTree::UpdateKind::Delete, BI->getParent(), OldBB}); in updateSuccessor()
DSimpleLoopUnswitch.cpp511 Updates.push_back({cfg::UpdateKind::Insert, OldPH, UnswitchedBB}); in unswitchTrivialBranch()
/external/llvm-project/llvm/unittests/Analysis/
DMemorySSATest.cpp1462 Updates.push_back({cfg::UpdateKind::Insert, Entry, Exit}); in TEST_F()
1524 Updates.push_back({cfg::UpdateKind::Insert, Entry, Exit}); in TEST_F()
1593 Updates.push_back({cfg::UpdateKind::Insert, FBlock, CBlock}); in TEST_F()