Lines Matching defs:VT
40 bool isOperationLegal(unsigned Op, EVT VT) const {
41 return TLI.isOperationLegal(Op, VT);
44 bool isOperationLegalOrCustom(unsigned Op, EVT VT,
46 return TLI.isOperationLegalOrCustom(Op, VT, LegalOnly);
110 // SDValue getNode(unsigned Opcode, const SDLoc &DL, EVT VT) { return
111 // DAG.getNode(Opcode, DL, VT); }
112 SDValue getNode(unsigned Opcode, const SDLoc &DL, EVT VT, SDValue Operand) {
116 return DAG.getNode(VPOpcode, DL, VT,
120 SDValue getNode(unsigned Opcode, const SDLoc &DL, EVT VT, SDValue N1,
125 return DAG.getNode(VPOpcode, DL, VT, {N1, N2, RootMaskOp, RootVectorLenOp});
128 SDValue getNode(unsigned Opcode, const SDLoc &DL, EVT VT, SDValue N1,
133 return DAG.getNode(VPOpcode, DL, VT,
137 SDValue getNode(unsigned Opcode, const SDLoc &DL, EVT VT, SDValue Operand,
142 return DAG.getNode(VPOpcode, DL, VT, {Operand, RootMaskOp, RootVectorLenOp},
146 SDValue getNode(unsigned Opcode, const SDLoc &DL, EVT VT, SDValue N1,
151 return DAG.getNode(VPOpcode, DL, VT, {N1, N2, RootMaskOp, RootVectorLenOp},
155 SDValue getNode(unsigned Opcode, const SDLoc &DL, EVT VT, SDValue N1,
160 return DAG.getNode(VPOpcode, DL, VT,
164 bool isOperationLegal(unsigned Op, EVT VT) const {
166 return TLI.isOperationLegal(VPOp, VT);
169 bool isOperationLegalOrCustom(unsigned Op, EVT VT,
172 return TLI.isOperationLegalOrCustom(VPOp, VT, LegalOnly);