Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DAMDGPUAsanInstrumentation.cpp18 static uint64_t getRedzoneSizeForScale(int AsanScale) { in getRedzoneSizeForScale() argument
21 return std::max(32U, 1U << AsanScale); in getRedzoneSizeForScale()
24 static uint64_t getMinRedzoneSizeForGlobal(int AsanScale) { in getMinRedzoneSizeForGlobal() argument
25 return getRedzoneSizeForScale(AsanScale); in getMinRedzoneSizeForGlobal()
28 uint64_t getRedzoneSizeForGlobal(int AsanScale, uint64_t SizeInBytes) { in getRedzoneSizeForGlobal() argument
30 const uint64_t MinRZ = getMinRedzoneSizeForGlobal(AsanScale); in getRedzoneSizeForGlobal()
81 uint32_t TypeStoreSize, int AsanScale) { in createSlowPathCmp() argument
82 uint64_t Granularity = static_cast<uint64_t>(1) << AsanScale; in createSlowPathCmp()
140 Value *Shadow, int AsanScale, uint32_t AsanOffset) { in memToShadow() argument
142 Shadow = IRB.CreateLShr(Shadow, AsanScale); in memToShadow()
[all …]
H A DAMDGPUSwLowerLDS.cpp423 int AsanScale = AsanInfo.Scale; in populateSwMetadataGlobal() local
438 AMDGPU::getRedzoneSizeForGlobal(AsanScale, SizeInBytes); in populateSwMetadataGlobal()