Searched refs:getFrom (Results 1 – 5 of 5) sorted by relevance
| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm/Support/ |
| H A D | CFGUpdate.h | 38 NodePtr getFrom() const { return From; } in getFrom() function 46 getFrom()->printAsOperand(OS, false); in print() 75 NodePtr From = U.getFrom(); 102 Operations[{U.getFrom(), U.getTo()}] = int(i); 104 Operations[{U.getTo(), U.getFrom()}] = int(i); 108 const auto &OpA = Operations[{A.getFrom(), A.getTo()}]; 109 const auto &OpB = Operations[{B.getFrom(), B.getTo()}];
|
| H A D | CFGDiff.h | 101 Succ[U.getFrom()].DI[IsInsert].push_back(U.getTo()); 102 Pred[U.getTo()].DI[IsInsert].push_back(U.getFrom()); 118 auto &SuccDIList = Succ[U.getFrom()]; in popUpdateForIncrementalUpdates() 123 Succ.erase(U.getFrom()); in popUpdateForIncrementalUpdates() 127 assert(PredList.back() == U.getFrom()); in popUpdateForIncrementalUpdates()
|
| H A D | GenericDomTreeConstruction.h | 1160 InsertEdge(DT, /*BUI=*/nullptr, Update.getFrom(), Update.getTo()); in ApplyUpdates() 1162 DeleteEdge(DT, /*BUI=*/nullptr, Update.getFrom(), Update.getTo()); in ApplyUpdates() 1166 InsertEdge(DT, &BUI, Update.getFrom(), Update.getTo()); in ApplyUpdates() 1168 DeleteEdge(DT, &BUI, Update.getFrom(), Update.getTo()); in ApplyUpdates() 1207 InsertEdge(DT, &BUI, CurrentUpdate.getFrom(), CurrentUpdate.getTo()); in ApplyNextUpdate() 1209 DeleteEdge(DT, &BUI, CurrentUpdate.getFrom(), CurrentUpdate.getTo()); in ApplyNextUpdate()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Analysis/ |
| H A D | DomTreeUpdater.cpp | 28 const auto *From = Update.getFrom(); in isUpdateValid() 55 return Update.getFrom() == Update.getTo(); in isSelfDominance() 257 auto Edge = std::make_pair(U.getFrom(), U.getTo()); in applyUpdatesPermissive() 375 BasicBlock *From = U.getFrom(); in dump()
|
| H A D | MemorySSAUpdater.cpp | 791 InsertUpdates.push_back({DT.Insert, Update.getFrom(), Update.getTo()}); in applyUpdates() 793 DeleteUpdates.push_back({DT.Delete, Update.getFrom(), Update.getTo()}); in applyUpdates() 794 RevDeleteUpdates.push_back({DT.Insert, Update.getFrom(), Update.getTo()}); in applyUpdates() 832 removeEdge(Update.getFrom(), Update.getTo()); in applyUpdates() 939 AddedBlockSet.insert(Edge.getFrom()); in applyInsertUpdates()
|