Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/lib/Transforms/Scalar/
H A DMemCpyOptimizer.cpp217 unsigned MaxIntSize = DL.getLargestLegalIntTypeSizeInBits() / 8; in isProfitableToUseMemset() local
218 if (MaxIntSize == 0) in isProfitableToUseMemset()
219 MaxIntSize = 1; in isProfitableToUseMemset()
220 unsigned NumPointerStores = Bytes / MaxIntSize; in isProfitableToUseMemset()
223 unsigned NumByteStores = Bytes % MaxIntSize; in isProfitableToUseMemset()
/freebsd-12.1/contrib/llvm/lib/Target/X86/
H A DX86ISelLowering.cpp4953 unsigned MaxIntSize = Subtarget.is64Bit() ? 64 : 32; in canMergeStoresTo() local
4954 return (MemVT.getSizeInBits() <= MaxIntSize); in canMergeStoresTo()