reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

lib/Transforms/Instrumentation/ControlHeightReduction.cpp
 1458     if (I == HoistPoint)
 1460     if (HoistStops.count(I))
 1462     if (auto *PN = dyn_cast<PHINode>(I))
 1469     if (HoistedSet.count(I))
 1472     assert(isHoistableInstructionType(I) && "Unhoistable instruction type");
 1473     assert(DT.getNode(I->getParent()) && "DT must contain I's block");
 1476     if (DT.dominates(I, HoistPoint))
 1486     for (Value *Op : I->operands()) {
 1489     I->moveBefore(HoistPoint);
 1490     HoistedSet.insert(I);
 1491     CHR_DEBUG(dbgs() << "hoistValue " << *I << "\n");