Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/compiler-rt/lib/hwasan/
H A Dhwasan_linux.cpp380 const bool is_store = code & 0x10; in GetAccessInfo() local
399 const bool is_store = code & 0x10; in GetAccessInfo()
441 const bool is_store = code & 0x10; in GetAccessInfo()
453 return AccessInfo{addr, size, is_store, !is_store, recover}; in GetAccessInfo()
458 if (!ai.is_store && !ai.is_load) in HwasanOnSIGTRAP()
H A Dhwasan_report.cpp1021 uptr access_size, bool is_store, bool fatal, in TagMismatchReport() argument
1024 is_store(is_store), in TagMismatchReport()
1029 const bool is_store; member in __hwasan::__anon865875d10511::TagMismatchReport
1052 is_store ? "WRITE" : "READ", access_size, untagged_addr, ptr_tag, in ~TagMismatchReport()
1056 is_store ? "WRITE" : "READ", access_size, untagged_addr, ptr_tag, in ~TagMismatchReport()
1088 bool is_store, bool fatal, uptr *registers_frame) { in ReportTagMismatch() argument
1089 TagMismatchReport R(stack, tagged_addr, access_size, is_store, fatal, in ReportTagMismatch()
H A Dhwasan_report.h25 bool is_store, bool fatal, uptr *registers_frame);
H A Dhwasan_checks.h49 .is_store = AT == AccessType::Store, in SigTrap()
98 .is_store = AT == AccessType::Store, in SigTrap()
H A Dhwasan.h174 bool is_store; member
H A Dhwasan.cpp243 ReportTagMismatch(stack, ai.addr, ai.size, ai.is_store, fatal, in HandleTagMismatch()
250 ai.is_store = access_info & 0x10; in HwasanTagMismatch()
251 ai.is_load = !ai.is_store; in HwasanTagMismatch()
/freebsd/contrib/llvm-project/lldb/source/Plugins/Instruction/RISCV/
H A DEmulateInstructionRISCV.cpp194 constexpr bool is_store = std::is_same_v<T, SB> || std::is_same_v<T, SH> || variable
219 static std::enable_if_t<is_load<I> || is_store<I>, std::optional<uint64_t>>
240 static std::enable_if_t<is_store<I>, bool>