Searched refs:max_redzone (Results 1 – 7 of 7) sorted by relevance
| /freebsd/contrib/llvm-project/compiler-rt/lib/asan/ |
| H A D | asan_flags.cpp | 168 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 D | asan_allocator.cpp | 335 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 D | asan_activation.cpp | 87 allocator_options.max_redzone, poison_heap, malloc_context_size, in Print() 116 disabled.max_redzone = disabled.min_redzone; in AsanDeactivate()
|
| H A D | asan_activation_flags.inc | 24 ASAN_ACTIVATION_FLAG(int, max_redzone)
|
| H A D | asan_allocator.h | 38 u16 max_redzone; member
|
| H A D | asan_rtl.cpp | 376 Printf("max_redzone=%zu\n", (uptr)flags()->max_redzone); in PrintAddressSpaceLayout()
|
| H A D | asan_flags.inc | 34 ASAN_FLAG(int, max_redzone, 2048,
|