Searched refs:DelBB (Results 1 - 2 of 2) sorted by relevance

/openbsd-current/gnu/llvm/llvm/lib/Analysis/
H A DDomTreeUpdater.cpp106 // validateDeleteBB() removes all instructions of DelBB and adds an
110 "DelBB has been modified while awaiting deletion.");
166 bool DomTreeUpdater::isBBPendingDeletion(llvm::BasicBlock *DelBB) const {
169 return DeletedBBs.contains(DelBB);
177 void DomTreeUpdater::deleteBB(BasicBlock *DelBB) { argument
178 validateDeleteBB(DelBB);
180 DeletedBBs.insert(DelBB);
184 DelBB->removeFromParent();
185 eraseDelBBNode(DelBB);
186 delete DelBB;
189 callbackDeleteBB( BasicBlock *DelBB, std::function<void(BasicBlock *)> Callback) argument
204 eraseDelBBNode(BasicBlock *DelBB) argument
214 validateDeleteBB(BasicBlock *DelBB) argument
[all...]
/openbsd-current/gnu/llvm/llvm/include/llvm/Analysis/
H A DDomTreeUpdater.h68 /// Returns true if DelBB is awaiting deletion.
70 bool isBBPendingDeletion(BasicBlock *DelBB) const;
153 /// Delete DelBB. DelBB will be removed from its Parent and
155 /// Under Eager UpdateStrategy, DelBB will be processed immediately.
156 /// Under Lazy UpdateStrategy, DelBB will be queued until a flush event and
157 /// all available trees are up-to-date. Assert if any instruction of DelBB is
158 /// modified while awaiting deletion. When both DT and PDT are nullptrs, DelBB
160 void deleteBB(BasicBlock *DelBB);
162 /// Delete DelBB
210 BasicBlock *DelBB = nullptr; member in class:llvm::DomTreeUpdater::UpdateStrategy::final
214 Callback_(DelBB); variable
[all...]

Completed in 139 milliseconds