Home
last modified time | relevance | path

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

/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Scalar/
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()
/external/llvm/lib/Transforms/Scalar/
DMemCpyOptimizer.cpp181 unsigned MaxIntSize = DL.getLargestLegalIntTypeSizeInBits() / 8; in isProfitableToUseMemset() local
182 if (MaxIntSize == 0) in isProfitableToUseMemset()
183 MaxIntSize = 1; in isProfitableToUseMemset()
184 unsigned NumPointerStores = Bytes / MaxIntSize; in isProfitableToUseMemset()
187 unsigned NumByteStores = Bytes % MaxIntSize; in isProfitableToUseMemset()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/X86/
DX86ISelLowering.cpp4738 unsigned MaxIntSize = Subtarget.is64Bit() ? 64 : 32; in canMergeStoresTo() local
4739 return (MemVT.getSizeInBits() <= MaxIntSize); in canMergeStoresTo()