Searched refs:is_store (Results 1 - 3 of 3) sorted by relevance

/freebsd-13-stable/contrib/llvm-project/compiler-rt/lib/hwasan/
H A Dhwasan_report.h25 bool is_store, bool fatal, uptr *registers_frame);
H A Dhwasan_linux.cpp367 bool is_store; member in struct:__hwasan::AccessInfo
387 const bool is_store = code & 0x10; local
406 const bool is_store = code & 0x10;
419 return AccessInfo{addr, size, is_store, !is_store, recover};
440 ReportTagMismatch(stack, ai.addr, ai.size, ai.is_store, fatal,
446 if (!ai.is_store && !ai.is_load)
484 ai.is_store = access_info & 0x10;
485 ai.is_load = !ai.is_store;
H A Dhwasan_report.cpp577 bool is_store, bool fatal, uptr *registers_frame) {
603 is_store ? "WRITE" : "READ", access_size, untagged_addr, ptr_tag,
576 ReportTagMismatch(StackTrace *stack, uptr tagged_addr, uptr access_size, bool is_store, bool fatal, uptr *registers_frame) argument

Completed in 192 milliseconds