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

References

lib/Target/PowerPC/PPCExpandISEL.cpp
  268   while (MI != BIL.end()) {
  269     assert(isISEL(**MI) && "Expecting an ISEL instruction");
  270     LLVM_DEBUG(dbgs() << "ISEL: " << **MI << "\n");
  272     MachineOperand &Dest = (*MI)->getOperand(0);
  273     MachineOperand &TrueValue = (*MI)->getOperand(1);
  274     MachineOperand &FalseValue = (*MI)->getOperand(2);
  292       (*MI)->eraseFromParent();
  294       MI = BIL.erase(MI);
  294       MI = BIL.erase(MI);
  311       BuildMI(*MBB, (*MI), dl, TII->get(isISEL8(**MI) ? PPC::OR8 : PPC::OR))
  311       BuildMI(*MBB, (*MI), dl, TII->get(isISEL8(**MI) ? PPC::OR8 : PPC::OR))
  315       (*MI)->eraseFromParent();
  317       MI = BIL.erase(MI);
  317       MI = BIL.erase(MI);
  323     MI++;