Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/compiler-rt/lib/hwasan/
H A Dhwasan_report.cpp242 uptr local_beg = in PrintStackAllocations() local
246 if (local_beg > untagged_addr) in PrintStackAllocations()
247 local_beg -= kRecordFPModulus; in PrintStackAllocations()
255 for (uptr i = 0; i < 2; ++i, local_beg += kRecordFPModulus) { in PrintStackAllocations()
256 uptr local_end = local_beg + local.size; in PrintStackAllocations()
257 if (local_beg > local_end) in PrintStackAllocations()
259 if (local_beg <= untagged_addr && untagged_addr < local_end) { in PrintStackAllocations()
260 offset = untagged_addr - local_beg; in PrintStackAllocations()
263 best_beg = local_beg; in PrintStackAllocations()
273 best_beg = local_beg; in PrintStackAllocations()
[all …]