Home | History | Annotate | Download | only in CodeGen

Lines Matching defs:Ins

702     unsigned Ins = 0;
707 BC.Entry = SpillPlacement::MustSpill, ++Ins;
709 BC.Entry = SpillPlacement::PrefSpill, ++Ins;
711 ++Ins;
717 BC.Exit = SpillPlacement::MustSpill, ++Ins;
719 BC.Exit = SpillPlacement::PrefSpill, ++Ins;
721 ++Ins;
725 if (Ins)
726 StaticCost += Ins * SpillPlacer->getBlockFrequency(BC.Number);
913 unsigned Ins = 0;
916 Ins += RegIn != (BC.Entry == SpillPlacement::PrefReg);
918 Ins += RegOut != (BC.Exit == SpillPlacement::PrefReg);
919 if (Ins)
920 GlobalCost += Ins * SpillPlacer->getBlockFrequency(BC.Number);