Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/
H A DAddressSanitizer.cpp2696 const uint64_t MinRZ = getMinRedzoneSizeForGlobal(); in getRedzoneSizeForGlobal() local
2699 if (SizeInBytes <= MinRZ / 2) { in getRedzoneSizeForGlobal()
2703 RZ = MinRZ - SizeInBytes; in getRedzoneSizeForGlobal()
2706 RZ = std::clamp((SizeInBytes / MinRZ / 4) * MinRZ, MinRZ, kMaxRZ); in getRedzoneSizeForGlobal()
2709 if (SizeInBytes % MinRZ) in getRedzoneSizeForGlobal()
2710 RZ += MinRZ - (SizeInBytes % MinRZ); in getRedzoneSizeForGlobal()
2713 assert((RZ + SizeInBytes) % MinRZ == 0); in getRedzoneSizeForGlobal()