Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86TargetTransformInfo.cpp4970 int CurrNumEltPerOp = (8 * CurrOpSizeBytes) / EltTyBits; in getMemoryOpCost() local
4972 assert(CurrOpSizeBytes > 0 && CurrNumEltPerOp > 0 && "How'd we get here?"); in getMemoryOpCost()
4978 auto *CurrVecTy = CurrNumEltPerOp > NumEltPerXMM in getMemoryOpCost()
4979 ? FixedVectorType::get(EltTy, CurrNumEltPerOp) in getMemoryOpCost()
4982 assert(CurrVecTy->getNumElements() % CurrNumEltPerOp == 0 && in getMemoryOpCost()
4986 CurrNumEltPerOp == 1 in getMemoryOpCost()
4990 EltTyBits * CurrNumEltPerOp), in getMemoryOpCost()
4991 CurrVecTy->getNumElements() / CurrNumEltPerOp); in getMemoryOpCost()
5001 if (NumEltRemaining < CurrNumEltPerOp && in getMemoryOpCost()
5025 assert(NumEltDoneInCurrXMM % CurrNumEltPerOp == 0 && ""); in getMemoryOpCost()
[all …]