Searched refs:DeadInst (Results 1 - 3 of 3) sorted by relevance

/freebsd-13-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DRegAllocBase.cpp167 for (auto DeadInst : DeadRemats) {
168 LIS->RemoveMachineInstrFromMaps(*DeadInst);
169 DeadInst->eraseFromParent();
H A DRegAllocPBQP.cpp775 for (auto DeadInst : DeadRemats) {
776 LIS.RemoveMachineInstrFromMaps(*DeadInst);
777 DeadInst->eraseFromParent();
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DDeadStoreElimination.cpp151 Instruction *DeadInst = NowDeadInsts.pop_back_val(); local
152 // Mark the DeadInst as dead in the list of throwable instructions.
153 auto It = ThrowableInst.find(DeadInst);
159 salvageDebugInfo(*DeadInst);
160 salvageKnowledge(DeadInst);
165 MD.removeInstruction(DeadInst);
167 for (unsigned op = 0, e = DeadInst->getNumOperands(); op != e; ++op) {
168 Value *Op = DeadInst->getOperand(op);
169 DeadInst->setOperand(op, nullptr);
179 if (ValueSet) ValueSet->remove(DeadInst);
1955 Instruction *DeadInst = NowDeadInsts.pop_back_val(); local
[all...]

Completed in 130 milliseconds