Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/compiler-rt/lib/asan/
H A Dasan_flags.cpp168 CHECK_GE(f->max_redzone, f->redzone); in ProcessFlags()
169 CHECK_LE(f->max_redzone, 2048); in ProcessFlags()
171 CHECK(IsPowerOfTwo(f->max_redzone)); in ProcessFlags()
H A Dasan_allocator.cpp335 max_redzone = f->max_redzone; in SetFrom()
345 f->max_redzone = max_redzone; in CopyTo()
365 atomic_uint16_t max_redzone; member
375 CHECK_GE(options.max_redzone, options.min_redzone); in CheckOptions()
376 CHECK_LE(options.max_redzone, 2048); in CheckOptions()
378 CHECK(IsPowerOfTwo(options.max_redzone)); in CheckOptions()
388 atomic_store(&max_redzone, options.max_redzone, memory_order_release); in SharedInitCode()
454 options->max_redzone = atomic_load(&max_redzone, memory_order_acquire); in GetOptions()
473 u32 max_log = RZSize2Log(atomic_load(&max_redzone, memory_order_acquire)); in ComputeRZLog()
H A Dasan_activation.cpp87 allocator_options.max_redzone, poison_heap, malloc_context_size, in Print()
116 disabled.max_redzone = disabled.min_redzone; in AsanDeactivate()
H A Dasan_activation_flags.inc24 ASAN_ACTIVATION_FLAG(int, max_redzone)
H A Dasan_allocator.h38 u16 max_redzone; member
H A Dasan_rtl.cpp376 Printf("max_redzone=%zu\n", (uptr)flags()->max_redzone); in PrintAddressSpaceLayout()
H A Dasan_flags.inc34 ASAN_FLAG(int, max_redzone, 2048,