Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
H A DMemCpyOptimizer.cpp140 unsigned MaxIntSize = DL.getLargestLegalIntTypeSizeInBits() / 8; in isProfitableToUseMemset() local
141 if (MaxIntSize == 0) in isProfitableToUseMemset()
142 MaxIntSize = 1; in isProfitableToUseMemset()
143 unsigned NumPointerStores = Bytes / MaxIntSize; in isProfitableToUseMemset()
146 unsigned NumByteStores = Bytes % MaxIntSize; in isProfitableToUseMemset()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/X86/
H A DX86ISelLowering.cpp5406 unsigned MaxIntSize = Subtarget.is64Bit() ? 64 : 32; in canMergeStoresTo() local
5407 return (MemVT.getSizeInBits() <= MaxIntSize); in canMergeStoresTo()