Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/llvm/lib/Transforms/Scalar/
H A DMemCpyOptimizer.cpp136 unsigned MaxIntSize = DL.getLargestLegalIntTypeSizeInBits() / 8; in isProfitableToUseMemset() local
137 if (MaxIntSize == 0) in isProfitableToUseMemset()
138 MaxIntSize = 1; in isProfitableToUseMemset()
139 unsigned NumPointerStores = Bytes / MaxIntSize; in isProfitableToUseMemset()
142 unsigned NumByteStores = Bytes % MaxIntSize; in isProfitableToUseMemset()
/openbsd-src/gnu/llvm/llvm/lib/Target/X86/
H A DX86ISelLowering.cpp5993 unsigned MaxIntSize = Subtarget.is64Bit() ? 64 : 32; in canMergeStoresTo() local
5994 return (MemVT.getSizeInBits() <= MaxIntSize); in canMergeStoresTo()