Home
last modified time | relevance | path

Searched refs:PartVT (Results 1 – 10 of 10) sorted by relevance

/freebsd-13.1/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGBuilder.cpp233 } else if (PartVT.isFloatingPoint()) { in getCopyFromParts()
490 unsigned PartBits = PartVT.getSizeInBits(); in getCopyToParts()
499 EVT PartEVT = PartVT; in getCopyToParts()
518 assert((PartVT.isInteger() || PartVT == MVT::x86mmx) && in getCopyToParts()
523 if (PartVT == MVT::x86mmx) in getCopyToParts()
532 assert((PartVT.isInteger() || PartVT == MVT::x86mmx) && in getCopyToParts()
537 if (PartVT == MVT::x86mmx) in getCopyToParts()
612 if (!PartVT.isVector()) in widenVectorToPartType()
630 return DAG.getNode(ISD::INSERT_SUBVECTOR, DL, PartVT, DAG.getUNDEF(PartVT), in widenVectorToPartType()
657 EVT PartEVT = PartVT; in getCopyToPartsVector()
[all …]
/freebsd-13.1/contrib/llvm-project/llvm/lib/CodeGen/
H A DTargetLoweringBase.cpp1561 EVT PartVT = VT; in getVectorTypeBreakdown() local
1564 LK = getTypeConversion(Context, PartVT); in getVectorTypeBreakdown()
1565 PartVT = LK.second; in getVectorTypeBreakdown()
1569 PartVT.getVectorElementCount().getKnownMinValue(); in getVectorTypeBreakdown()
1575 assert((PartVT.getVectorElementCount() * NumIntermediates) == in getVectorTypeBreakdown()
1578 IntermediateVT = PartVT; in getVectorTypeBreakdown()
1677 MVT PartVT = in GetReturnInfo() local
1692 Outs.push_back(ISD::OutputArg(Flags, PartVT, VT, /*isfixed=*/true, 0, 0)); in GetReturnInfo()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/RISCV/
H A DRISCVISelLowering.h481 unsigned NumParts, MVT PartVT,
487 MVT PartVT, EVT ValueVT,
H A DRISCVISelLowering.cpp8005 EVT PartVT = PartValue.getValueType(); in LowerCall() local
8006 if (PartVT.isScalableVector()) in LowerCall()
8008 StoredSize += PartVT.getStoreSize(); in LowerCall()
8983 if (IsABIRegCopy && ValueVT == MVT::f16 && PartVT == MVT::f32) { in splitValueIntoRegisterParts()
8995 if (ValueVT.isScalableVector() && PartVT.isScalableVector()) { in splitValueIntoRegisterParts()
8998 EVT PartEltVT = PartVT.getVectorElementType(); in splitValueIntoRegisterParts()
9011 Val = DAG.getNode(ISD::INSERT_SUBVECTOR, DL, PartVT, DAG.getUNDEF(PartVT), in splitValueIntoRegisterParts()
9022 MVT PartVT, EVT ValueVT, Optional<CallingConv::ID> CC) const { in joinRegisterPartsIntoValue() argument
9024 if (IsABIRegCopy && ValueVT == MVT::f16 && PartVT == MVT::f32) { in joinRegisterPartsIntoValue()
9034 if (ValueVT.isScalableVector() && PartVT.isScalableVector()) { in joinRegisterPartsIntoValue()
[all …]
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/SystemZ/
H A DSystemZISelLowering.h543 unsigned NumParts, MVT PartVT,
548 MVT PartVT, EVT ValueVT,
H A DSystemZISelLowering.cpp1393 unsigned NumParts, MVT PartVT, Optional<CallingConv::ID> CC) const { in splitValueIntoRegisterParts() argument
1396 ((NumParts == 1 && PartVT == MVT::Untyped) || in splitValueIntoRegisterParts()
1397 (NumParts == 2 && PartVT == MVT::i64))) && in splitValueIntoRegisterParts()
1409 MVT PartVT, EVT ValueVT, Optional<CallingConv::ID> CC) const { in joinRegisterPartsIntoValue() argument
1411 ((NumParts == 1 && PartVT == MVT::Untyped) || in joinRegisterPartsIntoValue()
1412 (NumParts == 2 && PartVT == MVT::i64))) && in joinRegisterPartsIntoValue()
1643 MVT PartVT = getRegisterTypeForCallingConv(Ctx, CLI.CallConv, OrigArgVT); in LowerCall() local
1645 SlotVT = EVT::getIntegerVT(Ctx, PartVT.getSizeInBits() * N); in LowerCall()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/ARM/
H A DARMISelLowering.h882 SDValue *Parts, unsigned NumParts, MVT PartVT,
888 MVT PartVT, EVT ValueVT,
H A DARMISelLowering.cpp4331 unsigned NumParts, MVT PartVT, Optional<CallingConv::ID> CC) const { in splitValueIntoRegisterParts() argument
4335 PartVT == MVT::f32) { in splitValueIntoRegisterParts()
4337 unsigned PartBits = PartVT.getSizeInBits(); in splitValueIntoRegisterParts()
4340 Val = DAG.getNode(ISD::BITCAST, DL, PartVT, Val); in splitValueIntoRegisterParts()
4349 MVT PartVT, EVT ValueVT, Optional<CallingConv::ID> CC) const { in joinRegisterPartsIntoValue() argument
4352 PartVT == MVT::f32) { in joinRegisterPartsIntoValue()
4354 unsigned PartBits = PartVT.getSizeInBits(); in joinRegisterPartsIntoValue()
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DTargetLowering.h3699 unsigned NumParts, MVT PartVT, in splitValueIntoRegisterParts() argument
3708 MVT PartVT, EVT ValueVT, in joinRegisterPartsIntoValue() argument
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonISelLoweringHVX.cpp502 MVT PartVT = MVT::getVectorVT(VecTy.getVectorElementType(), OpsPerWord); in buildHvxVectorReg() local
504 SDValue W = buildVector32(Values.slice(i, OpsPerWord), dl, PartVT, DAG); in buildHvxVectorReg()