Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86ISelLoweringCall.cpp212 EVT LegalVT = VT; in getSetCCResultType() local
213 while (getTypeAction(Context, LegalVT) != TypeLegal) in getSetCCResultType()
214 LegalVT = getTypeToTransformTo(Context, LegalVT); in getSetCCResultType()
217 if (LegalVT.getSimpleVT().is512BitVector()) in getSetCCResultType()
220 if (LegalVT.getSimpleVT().isVector() && Subtarget.hasVLX()) { in getSetCCResultType()
224 MVT EltVT = LegalVT.getSimpleVT().getVectorElementType(); in getSetCCResultType()
H A DX86TargetTransformInfo.cpp1677 MVT LegalVT = LT.second; in getShuffleCost() local
1678 if (LegalVT.isVector() && in getShuffleCost()
1679 LegalVT.getVectorElementType().getSizeInBits() == in getShuffleCost()
1681 LegalVT.getVectorNumElements() < in getShuffleCost()
1684 unsigned LegalVTSize = LegalVT.getStoreSize(); in getShuffleCost()
1691 LegalVT.getVectorNumElements()); in getShuffleCost()
1713 LegalVT.getVectorNumElements() * std::max(NumOfSrcs, E); in getShuffleCost()
1714 unsigned NumOfSrcRegs = NormalizedVF / LegalVT.getVectorNumElements(); in getShuffleCost()
1715 unsigned NumOfDestRegs = NormalizedVF / LegalVT.getVectorNumElements(); in getShuffleCost()
6266 MVT LegalVT = getTypeLegalizationCost(VecTy).second; in getInterleavedMemoryOpCostAVX512() local
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DAMDGPUISelLowering.cpp4464 EVT LegalVT = getTypeToTransformTo(*DAG.getContext(), VT); in getFFBX_U32() local
4465 if (LegalVT != MVT::i32 && (Subtarget->has16BitInsts() && in getFFBX_U32()
4466 LegalVT != MVT::i16)) in getFFBX_U32()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DDAGCombiner.cpp13831 EVT LegalVT = TLI.getTypeToTransformTo(*DAG.getContext(), AbsVT); in widenAbs() local
13834 DAG.getNode(ISD::SIGN_EXTEND, SDLoc(Abs), LegalVT, Abs.getOperand(0)); in widenAbs()
13835 SDValue NewAbs = DAG.getNode(ISD::ABS, SDLoc(Abs), LegalVT, SExt); in widenAbs()