Home | History | Annotate | Download | only in CodeGen

Lines Matching defs:Candidates

267                                        BitVector &Candidates,
270 int Survivor = Candidates.find_first();
271 assert(Survivor > 0 && "No candidates for scavenging");
286 // Remove any candidates touched by instruction.
298 Candidates.reset(MO.getReg());
300 Candidates.reset(*R);
311 if (Candidates.test(Survivor))
314 // All candidates gone?
315 if (Candidates.none())
318 Survivor = Candidates.find_first();
325 // We ran out of candidates, so stop the search.
334 BitVector Candidates =
342 Candidates.reset(MO.getReg());
351 if ((Candidates & Available).any())
352 Candidates &= Available;
356 unsigned SReg = findSurvivorReg(I, Candidates, 25, UseMI);