Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86TargetTransformInfo.cpp5294 for (int CurrOpSizeBytes = MaxLegalOpSizeBytes, SubVecEltsLeft = 0; in getMemoryOpCost() local
5295 NumEltRemaining > 0; CurrOpSizeBytes /= 2) { in getMemoryOpCost()
5297 if ((8 * CurrOpSizeBytes) % EltTyBits != 0) in getMemoryOpCost()
5301 int CurrNumEltPerOp = (8 * CurrOpSizeBytes) / EltTyBits; in getMemoryOpCost()
5303 assert(CurrOpSizeBytes > 0 && CurrNumEltPerOp > 0 && "How'd we get here?"); in getMemoryOpCost()
5304 assert((((NumEltRemaining * EltTyBits) < (2 * 8 * CurrOpSizeBytes)) || in getMemoryOpCost()
5305 (CurrOpSizeBytes == MaxLegalOpSizeBytes)) && in getMemoryOpCost()
5333 (!IsLoad || Alignment < CurrOpSizeBytes) && CurrOpSizeBytes != 1) in getMemoryOpCost()
5341 if (CurrOpSizeBytes == 32 && ST->isUnalignedMem32Slow()) in getMemoryOpCost()
5343 else if (CurrOpSizeBytes < 4) in getMemoryOpCost()
[all …]