Lines Matching refs:VTs
1984 const EVT VTs[] = {MVT::Other, MVT::Glue}; in Select_INLINEASM() local
1985 SDValue New = CurDAG->getNode(ISD::INLINEASM, SDLoc(N), VTs, Ops); in Select_INLINEASM()
3153 SmallVector<EVT, 4> VTs; in SelectCodeCommon() local
3159 VTs.push_back(VT); in SelectCodeCommon()
3163 VTs.push_back(MVT::Other); in SelectCodeCommon()
3165 VTs.push_back(MVT::Glue); in SelectCodeCommon()
3170 if (VTs.size() == 1) in SelectCodeCommon()
3171 VTList = CurDAG->getVTList(VTs[0]); in SelectCodeCommon()
3172 else if (VTs.size() == 2) in SelectCodeCommon()
3173 VTList = CurDAG->getVTList(VTs[0], VTs[1]); in SelectCodeCommon()
3175 VTList = CurDAG->getVTList(VTs); in SelectCodeCommon()
3221 for (unsigned i = 0, e = VTs.size(); i != e; ++i) { in SelectCodeCommon()
3222 if (VTs[i] == MVT::Other || VTs[i] == MVT::Glue) break; in SelectCodeCommon()
3239 InputGlue = SDValue(Res, VTs.size()-1); in SelectCodeCommon()
3241 InputChain = SDValue(Res, VTs.size()-2); in SelectCodeCommon()
3243 InputChain = SDValue(Res, VTs.size()-1); in SelectCodeCommon()