Searched refs:OVT (Results 1 – 7 of 7) sorted by relevance
/external/mesa3d/src/gallium/drivers/radeon/ |
D | AMDILISelLowering.cpp | 319 EVT OVT = Op.getValueType(); in LowerSDIV() local 321 if (OVT.getScalarType() == MVT::i64) { in LowerSDIV() 323 } else if (OVT.getScalarType() == MVT::i32) { in LowerSDIV() 325 } else if (OVT.getScalarType() == MVT::i16 in LowerSDIV() 326 || OVT.getScalarType() == MVT::i8) { in LowerSDIV() 337 EVT OVT = Op.getValueType(); in LowerSREM() local 339 if (OVT.getScalarType() == MVT::i64) { in LowerSREM() 341 } else if (OVT.getScalarType() == MVT::i32) { in LowerSREM() 343 } else if (OVT.getScalarType() == MVT::i16) { in LowerSREM() 345 } else if (OVT.getScalarType() == MVT::i8) { in LowerSREM() [all …]
|
/external/llvm/lib/CodeGen/SelectionDAG/ |
D | LegalizeTypesGeneric.cpp | 301 EVT OVT = N->getValueType(0); in ExpandRes_VAARG() local 302 EVT NVT = TLI.getTypeToTransformTo(*DAG.getContext(), OVT); in ExpandRes_VAARG() 312 if (TLI.hasBigEndianPartOrdering(OVT, DAG.getDataLayout())) in ExpandRes_VAARG() 357 EVT OVT = N->getOperand(0).getValueType(); in ExpandOp_BITCAST() local 359 TLI.getTypeToTransformTo(*DAG.getContext(), OVT), in ExpandOp_BITCAST()
|
D | LegalizeDAG.cpp | 3996 MVT OVT = Node->getSimpleValueType(0); in PromoteNode() local 4002 OVT = Node->getOperand(0).getSimpleValueType(); in PromoteNode() 4005 OVT = Node->getOperand(2).getSimpleValueType(); in PromoteNode() 4006 MVT NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT); in PromoteNode() 4022 OVT.getSizeInBits()); in PromoteNode() 4034 OVT.getSizeInBits(), dl, NVT)); in PromoteNode() 4036 Results.push_back(DAG.getNode(ISD::TRUNCATE, dl, OVT, Tmp1)); in PromoteNode() 4039 unsigned DiffBits = NVT.getSizeInBits() - OVT.getSizeInBits(); in PromoteNode() 4066 if (OVT.isVector()) { in PromoteNode() 4069 assert(OVT.isInteger() in PromoteNode() [all …]
|
D | LegalizeIntegerTypes.cpp | 314 EVT OVT = N->getValueType(0); in PromoteIntRes_BSWAP() local 318 unsigned DiffBits = NVT.getScalarSizeInBits() - OVT.getScalarSizeInBits(); in PromoteIntRes_BSWAP() 327 EVT OVT = N->getValueType(0); in PromoteIntRes_BITREVERSE() local 331 unsigned DiffBits = NVT.getScalarSizeInBits() - OVT.getScalarSizeInBits(); in PromoteIntRes_BITREVERSE() 377 EVT OVT = N->getValueType(0); in PromoteIntRes_CTLZ() local 383 DAG.getConstant(NVT.getScalarSizeInBits() - OVT.getScalarSizeInBits(), dl, in PromoteIntRes_CTLZ() 395 EVT OVT = N->getValueType(0); in PromoteIntRes_CTTZ() local 403 OVT.getScalarSizeInBits()); in PromoteIntRes_CTTZ() 546 EVT OVT = N->getOperand(0).getValueType(); in PromoteIntRes_SADDSUBO() local 557 DAG.getValueType(OVT)); in PromoteIntRes_SADDSUBO() [all …]
|
/external/swiftshader/third_party/LLVM/lib/CodeGen/SelectionDAG/ |
D | LegalizeTypesGeneric.cpp | 245 EVT OVT = N->getValueType(0); in ExpandRes_VAARG() local 246 EVT NVT = TLI.getTypeToTransformTo(*DAG.getContext(), OVT); in ExpandRes_VAARG() 277 EVT OVT = N->getOperand(0).getValueType(); in ExpandOp_BITCAST() local 279 TLI.getTypeToTransformTo(*DAG.getContext(), OVT), in ExpandOp_BITCAST()
|
D | LegalizeIntegerTypes.cpp | 265 EVT OVT = N->getValueType(0); in PromoteIntRes_BSWAP() local 269 unsigned DiffBits = NVT.getSizeInBits() - OVT.getSizeInBits(); in PromoteIntRes_BSWAP() 313 EVT OVT = N->getValueType(0); in PromoteIntRes_CTLZ() local 319 OVT.getSizeInBits(), NVT)); in PromoteIntRes_CTLZ() 330 EVT OVT = N->getValueType(0); in PromoteIntRes_CTTZ() local 337 TopBit.setBit(OVT.getSizeInBits()); in PromoteIntRes_CTTZ() 452 EVT OVT = N->getOperand(0).getValueType(); in PromoteIntRes_SADDSUBO() local 463 DAG.getValueType(OVT)); in PromoteIntRes_SADDSUBO() 615 EVT OVT = N->getOperand(0).getValueType(); in PromoteIntRes_UADDSUBO() local 625 SDValue Ofl = DAG.getZeroExtendInReg(Res, dl, OVT); in PromoteIntRes_UADDSUBO() [all …]
|
D | LegalizeDAG.cpp | 3827 EVT OVT = Node->getValueType(0); in PromoteNode() local 3831 OVT = Node->getOperand(0).getValueType(); in PromoteNode() 3833 EVT NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT); in PromoteNode() 3850 DAG.getConstant(OVT.getSizeInBits(), NVT), Tmp1); in PromoteNode() 3855 OVT.getSizeInBits(), NVT)); in PromoteNode() 3857 Results.push_back(DAG.getNode(ISD::TRUNCATE, dl, OVT, Tmp1)); in PromoteNode() 3860 unsigned DiffBits = NVT.getSizeInBits() - OVT.getSizeInBits(); in PromoteNode() 3884 if (OVT.isVector()) { in PromoteNode() 3888 assert(OVT.isInteger() && "Cannot promote logic operation"); in PromoteNode() 3897 Results.push_back(DAG.getNode(TruncOp, dl, OVT, Tmp1)); in PromoteNode() [all …]
|