Home | History | Annotate | Download | only in SelectionDAG

Lines Matching refs:Best

444       SDNode *Best = 0;
451 if (!Best || (MyMaxNest > BestMaxNest)) {
452 Best = New;
456 assert(Best);
458 return Best;
1465 // Pick the best node to schedule taking all constraints into
1705 std::vector<SUnit *>::iterator Best = Q.begin();
1708 if (Picker(*Best, *I))
1709 Best = I;
1710 SUnit *V = *Best;
1711 if (Best != prior(Q.end()))
1712 std::swap(*Best, Q.back());