Lines Matching refs:VTs
1642 std::vector<EVT> VTs; in Select_INLINEASM() local
1643 VTs.push_back(MVT::Other); in Select_INLINEASM()
1644 VTs.push_back(MVT::Glue); in Select_INLINEASM()
1646 VTs, &Ops[0], Ops.size()); in Select_INLINEASM()
2689 SmallVector<EVT, 4> VTs; in SelectCodeCommon() local
2694 VTs.push_back(VT); in SelectCodeCommon()
2698 VTs.push_back(MVT::Other); in SelectCodeCommon()
2700 VTs.push_back(MVT::Glue); in SelectCodeCommon()
2705 if (VTs.size() == 1) in SelectCodeCommon()
2706 VTList = CurDAG->getVTList(VTs[0]); in SelectCodeCommon()
2707 else if (VTs.size() == 2) in SelectCodeCommon()
2708 VTList = CurDAG->getVTList(VTs[0], VTs[1]); in SelectCodeCommon()
2710 VTList = CurDAG->getVTList(VTs.data(), VTs.size()); in SelectCodeCommon()
2756 for (unsigned i = 0, e = VTs.size(); i != e; ++i) { in SelectCodeCommon()
2757 if (VTs[i] == MVT::Other || VTs[i] == MVT::Glue) break; in SelectCodeCommon()
2770 InputGlue = SDValue(Res, VTs.size()-1); in SelectCodeCommon()
2772 InputChain = SDValue(Res, VTs.size()-2); in SelectCodeCommon()
2774 InputChain = SDValue(Res, VTs.size()-1); in SelectCodeCommon()