Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/compiler-rt/lib/hwasan/
H A Dhwasan_linux.cpp383 const unsigned size_log = code & 0xf; in GetAccessInfo() local
384 if (size_log > 4 && size_log != 0xf) in GetAccessInfo()
386 const uptr size = size_log == 0xf ? uc->uc_mcontext.regs[1] : 1U << size_log; in GetAccessInfo()
402 const unsigned size_log = code & 0xf; in GetAccessInfo()
403 if (size_log > 4 && size_log != 0xf) in GetAccessInfo()
406 size_log == 0xf ? uc->uc_mcontext.gregs[REG_RSI] : 1U << size_log; in GetAccessInfo()
443 const unsigned size_log = code & 0xf; in GetAccessInfo()
444 if (size_log > 4 && size_log != 0xf) in GetAccessInfo()
447 size_log == 0xf ? uc->uc_mcontext.__gregs[11] : 1U << size_log; in GetAccessInfo()
/freebsd/contrib/llvm-project/compiler-rt/lib/tsan/rtl/
H A Dtsan_trace.h57 u64 size_log : 2; member
88 u64 size_log : 2; member
H A Dtsan_rtl_access.cpp27 u64 size_log = size == 1 ? 0 : size == 2 ? 1 : size == 4 ? 2 : 3; in TryTraceMemoryAccess() local
34 ev->size_log = size_log; in TryTraceMemoryAccess()
47 evex->size_log = size_log; in TryTraceMemoryAccess()
H A Dtsan_rtl_report.cpp503 uptr ev_size = 1 << ev->size_log; in RestoreStack()
534 uptr ev_size = 1 << ev->size_log; in RestoreStack()
/freebsd/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_allocator_secondary.h115 uptr size_log = MostSignificantSetBitIndex(map_size); in Allocate() local
116 CHECK_LT(size_log, ARRAY_SIZE(stats.by_size_log)); in Allocate()
127 stats.by_size_log[size_log]++; in Allocate()