Home
last modified time | relevance | path

Searched refs:LegalVT (Results 1 – 4 of 4) sorted by relevance

/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86ISelLoweringCall.cpp211 EVT LegalVT = VT; in getSetCCResultType() local
212 while (getTypeAction(Context, LegalVT) != TypeLegal) in getSetCCResultType()
213 LegalVT = getTypeToTransformTo(Context, LegalVT); in getSetCCResultType()
216 if (LegalVT.getSimpleVT().is512BitVector()) in getSetCCResultType()
219 if (LegalVT.getSimpleVT().isVector() && Subtarget.hasVLX()) { in getSetCCResultType()
223 MVT EltVT = LegalVT.getSimpleVT().getVectorElementType(); in getSetCCResultType()
H A DX86TargetTransformInfo.cpp1606 MVT LegalVT = LT.second; in getShuffleCost() local
1607 if (LegalVT.isVector() && in getShuffleCost()
1608 LegalVT.getVectorElementType().getSizeInBits() == in getShuffleCost()
1610 LegalVT.getVectorNumElements() < in getShuffleCost()
1613 unsigned LegalVTSize = LegalVT.getStoreSize(); in getShuffleCost()
1620 LegalVT.getVectorNumElements()); in getShuffleCost()
1642 LegalVT.getVectorNumElements() * std::max(NumOfSrcs, E); in getShuffleCost()
6194 MVT LegalVT = getTypeLegalizationCost(VecTy).second; in getInterleavedMemoryOpCostAVX512() local
6196 unsigned LegalVTSize = LegalVT.getStoreSize(); in getInterleavedMemoryOpCostAVX512()
6373 MVT LegalVT = getTypeLegalizationCost(VecTy).second; in getInterleavedMemoryOpCost() local
[all …]
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DAMDGPUISelLowering.cpp4410 EVT LegalVT = getTypeToTransformTo(*DAG.getContext(), VT); in getFFBX_U32() local
4411 if (LegalVT != MVT::i32 && (Subtarget->has16BitInsts() && in getFFBX_U32()
4412 LegalVT != MVT::i16)) in getFFBX_U32()
/freebsd-14.2/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DDAGCombiner.cpp13632 EVT LegalVT = TLI.getTypeToTransformTo(*DAG.getContext(), AbsVT); in widenAbs() local
13635 DAG.getNode(ISD::SIGN_EXTEND, SDLoc(Abs), LegalVT, Abs.getOperand(0)); in widenAbs()
13636 SDValue NewAbs = DAG.getNode(ISD::ABS, SDLoc(Abs), LegalVT, SExt); in widenAbs()