Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/llvm/lib/Target/X86/
H A DX86TargetTransformInfo.cpp1568 MVT LegalVT = LT.second; in getShuffleCost() local
1569 if (LegalVT.isVector() && in getShuffleCost()
1570 LegalVT.getVectorElementType().getSizeInBits() == in getShuffleCost()
1572 LegalVT.getVectorNumElements() < in getShuffleCost()
1576 unsigned LegalVTSize = LegalVT.getStoreSize(); in getShuffleCost()
1583 LegalVT.getVectorNumElements()); in getShuffleCost()
1601 LegalVT.getVectorNumElements() * std::max(NumOfSrcs, E); in getShuffleCost()
1602 unsigned NumOfSrcRegs = NormalizedVF / LegalVT.getVectorNumElements(); in getShuffleCost()
1603 unsigned NumOfDestRegs = NormalizedVF / LegalVT.getVectorNumElements(); in getShuffleCost()
6192 MVT LegalVT = getTypeLegalizationCost(VecTy).second; in getInterleavedMemoryOpCostAVX512() local
[all …]
H A DX86ISelLowering.cpp2611 EVT LegalVT = VT; in getSetCCResultType() local
2612 while (getTypeAction(Context, LegalVT) != TypeLegal) in getSetCCResultType()
2613 LegalVT = getTypeToTransformTo(Context, LegalVT); in getSetCCResultType()
2616 if (LegalVT.getSimpleVT().is512BitVector()) in getSetCCResultType()
2619 if (LegalVT.getSimpleVT().isVector() && Subtarget.hasVLX()) { in getSetCCResultType()
2623 MVT EltVT = LegalVT.getSimpleVT().getVectorElementType(); in getSetCCResultType()
/openbsd-src/gnu/llvm/llvm/lib/Target/AMDGPU/
H A DAMDGPUISelLowering.cpp3597 EVT LegalVT = getTypeToTransformTo(*DAG.getContext(), VT); in getFFBX_U32() local
3598 if (LegalVT != MVT::i32 && (Subtarget->has16BitInsts() && in getFFBX_U32()
3599 LegalVT != MVT::i16)) in getFFBX_U32()
/openbsd-src/gnu/llvm/llvm/lib/CodeGen/SelectionDAG/
H A DDAGCombiner.cpp12716 EVT LegalVT = TLI.getTypeToTransformTo(*DAG.getContext(), AbsVT); in widenAbs() local
12719 DAG.getNode(ISD::SIGN_EXTEND, SDLoc(Abs), LegalVT, Abs.getOperand(0)); in widenAbs()
12720 SDValue NewAbs = DAG.getNode(ISD::ABS, SDLoc(Abs), LegalVT, SExt); in widenAbs()