Home | History | Annotate | Download | only in PowerPC

Lines Matching refs:FSEL

182   // PowerPC wants to turn select_cc of FP into fsel when possible.
541 case PPCISD::FSEL: return "PPCISD::FSEL";
4567 /// LowerSELECT_CC - Lower floating point select_cc's into fsel instruction when
4570 // Not FP? Not a fsel.
4590 default: break; // SETUO etc aren't handled by fsel.
4593 std::swap(TV, FV); // fsel is natively setge, swap operands for setlt
4598 return DAG.getNode(PPCISD::FSEL, dl, ResVT, LHS, TV, FV);
4601 std::swap(TV, FV); // fsel is natively setge, swap operands for setlt
4606 return DAG.getNode(PPCISD::FSEL, dl, ResVT,
4612 default: break; // SETUO etc aren't handled by fsel.
4618 return DAG.getNode(PPCISD::FSEL, dl, ResVT, Cmp, FV, TV);
4624 return DAG.getNode(PPCISD::FSEL, dl, ResVT, Cmp, TV, FV);
4630 return DAG.getNode(PPCISD::FSEL, dl, ResVT, Cmp, FV, TV);
4636 return DAG.getNode(PPCISD::FSEL, dl, ResVT, Cmp, TV, FV);