Home
last modified time | relevance | path

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

/external/llvm-project/compiler-rt/lib/hwasan/
Dhwasan_report.cpp181 tag_t addr_tag, uptr untagged_addr) { in PrintStackAllocations() argument
208 (untagged_addr - fp - local.frame_offset) & (kRecordFPModulus - 1); in PrintStackAllocations()
304 uptr untagged_addr = UntagAddr(tagged_addr); in PrintAddressDescription() local
307 HwasanChunkView chunk = FindHeapChunkByAddress(untagged_addr); in PrintAddressDescription()
316 size, untagged_addr - beg, in PrintAddressDescription()
325 tag_t *tag_ptr = reinterpret_cast<tag_t*>(MemToShadow(untagged_addr)); in PrintAddressDescription()
346 untagged_addr, in PrintAddressDescription()
347 candidate == left ? untagged_addr - chunk.End() in PrintAddressDescription()
348 : chunk.Beg() - untagged_addr, in PrintAddressDescription()
369 untagged_addr, in PrintAddressDescription()
[all …]
Dhwasan_mapping.h51 inline uptr MemToShadow(uptr untagged_addr) { in MemToShadow() argument
52 return (untagged_addr >> kShadowScale) + in MemToShadow()