Home | History | Annotate | Download | only in AMDGPU

Lines Matching refs:VData

4564   SDValue VData;
4570 VData = Op.getOperand(2);
4572 bool Is64Bit = VData.getValueType() == MVT::i64;
4575 VData = DAG.getBuildVector(Is64Bit ? MVT::v2i64 : MVT::v2i32, DL,
4576 {VData, VData2});
4578 VData = DAG.getBitcast(MVT::v4i32, VData);
4593 VData = Op.getOperand(2);
4595 MVT StoreVT = VData.getSimpleValueType();
4602 VData = handleD16VData(VData, DAG);
4605 NumVDataDwords = (VData.getValueType().getSizeInBits() + 31) / 32;
4695 Ops.push_back(VData); // vdata
5188 Op.getOperand(2), // vdata
5264 SDValue SITargetLowering::handleD16VData(SDValue VData,
5266 EVT StoreVT = VData.getValueType();
5270 return VData;
5272 SDLoc DL(VData);
5278 SDValue IntVData = DAG.getNode(ISD::BITCAST, DL, IntStoreVT, VData);
5287 return VData;
5407 Op.getOperand(3), // vdata
5432 SDValue VData = Op.getOperand(2);
5433 bool IsD16 = (VData.getValueType().getScalarType() == MVT::f16);
5435 VData = handleD16VData(VData, DAG);
5438 VData, // vdata
5458 SDValue VData = Op.getOperand(2);
5459 bool IsD16 = (VData.getValueType().getScalarType() == MVT::f16);
5461 VData = handleD16VData(VData, DAG);
5464 VData, // vdata
7936 // Subtract 1 because the vdata output is not a MachineSDNode operand.