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

References

lib/Transforms/InstCombine/InstructionCombining.cpp
 1210   for (;; Op = Parent.first->getOperand(Parent.second)) { // Drill down
 1210   for (;; Op = Parent.first->getOperand(Parent.second)) { // Drill down
 1250           Parent = std::make_pair(BO, 1);
 1259         Parent = std::make_pair(BO, 0);
 1286         Parent = std::make_pair(BO, 1);
 1313         Parent = std::make_pair(Cast, 0);
 1330         Parent = std::make_pair(Cast, 0);
 1354   if (!Parent.first)
 1359   assert(Parent.first->hasOneUse() && "Drilled down when more than one use!");
 1360   assert(Op != Parent.first->getOperand(Parent.second) &&
 1360   assert(Op != Parent.first->getOperand(Parent.second) &&
 1362   Parent.first->setOperand(Parent.second, Op);
 1362   Parent.first->setOperand(Parent.second, Op);
 1363   Worklist.Add(Parent.first);
 1371   Instruction *Ancestor = Parent.first;