| /freebsd/contrib/llvm-project/lldb/source/Plugins/Process/Utility/ |
| H A D | LinuxProcMaps.cpp | 59 region.SetMapped(MemoryRegionInfo::OptionalBool::eYes); in ParseMemoryRegionInfoFromProcMapsLine() 71 region.SetReadable(MemoryRegionInfo::OptionalBool::eYes); in ParseMemoryRegionInfoFromProcMapsLine() 81 region.SetWritable(MemoryRegionInfo::OptionalBool::eYes); in ParseMemoryRegionInfoFromProcMapsLine() 91 region.SetExecutable(MemoryRegionInfo::OptionalBool::eYes); in ParseMemoryRegionInfoFromProcMapsLine() 101 region.SetShared(MemoryRegionInfo::OptionalBool::eYes); in ParseMemoryRegionInfoFromProcMapsLine() 174 region->SetMemoryTagged(MemoryRegionInfo::eYes); in ParseLinuxSMapRegions() 176 region->SetIsShadowStack(MemoryRegionInfo::eYes); in ParseLinuxSMapRegions()
|
| H A D | MemoryTagManagerAArch64MTE.cpp | 110 region->GetMemoryTagged() != MemoryRegionInfo::eYes) { in MakeTaggedRange()
|
| /freebsd/contrib/llvm-project/lldb/source/API/ |
| H A D | SBMemoryRegionInfo.cpp | 35 m_opaque_up->SetMapped(mapped ? MemoryRegionInfo::eYes in SBMemoryRegionInfo() 37 m_opaque_up->SetIsStackMemory(stack_memory ? MemoryRegionInfo::eYes in SBMemoryRegionInfo() 100 return m_opaque_up->GetReadable() == MemoryRegionInfo::eYes; in IsReadable() 106 return m_opaque_up->GetWritable() == MemoryRegionInfo::eYes; in IsWritable() 112 return m_opaque_up->GetExecutable() == MemoryRegionInfo::eYes; in IsExecutable() 118 return m_opaque_up->GetMapped() == MemoryRegionInfo::eYes; in IsMapped()
|
| /freebsd/contrib/llvm-project/lldb/include/lldb/Target/ |
| H A D | MemoryRegionInfo.h | 25 enum OptionalBool { eDontKnow = -1, eNo = 0, eYes = 1 }; enumerator 88 if (m_read == eYes) in GetLLDBPermissions() 90 if (m_write == eYes) in GetLLDBPermissions() 92 if (m_execute == eYes) in GetLLDBPermissions() 100 m_read = (permissions & lldb::ePermissionsReadable) ? eYes : eNo; in SetLLDBPermissions() 101 m_write = (permissions & lldb::ePermissionsWritable) ? eYes : eNo; in SetLLDBPermissions() 102 m_execute = (permissions & lldb::ePermissionsExecutable) ? eYes : eNo; in SetLLDBPermissions()
|
| /freebsd/contrib/llvm-project/lldb/source/Plugins/Process/minidump/ |
| H A D | MinidumpParser.cpp | 340 if (region.GetExecutable() == MemoryRegionInfo::eYes) in CheckForLinuxExecutable() 516 constexpr auto yes = MemoryRegionInfo::eYes; in CreateRegionsCacheFromMemoryInfoList() 560 region.SetReadable(MemoryRegionInfo::eYes); in CreateRegionsCacheFromMemoryList() 561 region.SetMapped(MemoryRegionInfo::eYes); in CreateRegionsCacheFromMemoryList() 574 region.SetReadable(MemoryRegionInfo::eYes); in CreateRegionsCacheFromMemoryList() 575 region.SetMapped(MemoryRegionInfo::eYes); in CreateRegionsCacheFromMemoryList()
|
| H A D | ProcessMinidump.cpp | 398 if (region.GetMapped() != MemoryRegionInfo::eYes && in BuildMemoryRegions() 404 to_add.back().SetMapped(MemoryRegionInfo::eYes); in BuildMemoryRegions()
|
| /freebsd/contrib/llvm-project/lldb/source/Target/ |
| H A D | MemoryRegionInfo.cpp | 34 case lldb_private::MemoryRegionInfo::eYes: in format()
|
| H A D | Process.cpp | 6236 if (region_info.GetMapped() == MemoryRegionInfo::eYes) { in GetMemoryRegions() 6660 region.GetWritable() == MemoryRegionInfo::eYes) in GetCoreFileSaveRangesDirtyOnly() 6684 region.IsStackMemory() == MemoryRegionInfo::eYes) in GetCoreFileSaveRangesStackOnly()
|
| /freebsd/contrib/llvm-project/lldb/source/Plugins/Process/elf-core/ |
| H A D | ProcessElfCore.cpp | 348 ? MemoryRegionInfo::eYes in DoGetMemoryRegionInfo() 351 ? MemoryRegionInfo::eYes in DoGetMemoryRegionInfo() 354 ? MemoryRegionInfo::eYes in DoGetMemoryRegionInfo() 356 region_info.SetMapped(MemoryRegionInfo::eYes); in DoGetMemoryRegionInfo() 365 region_info.SetMemoryTagged(MemoryRegionInfo::eYes); in DoGetMemoryRegionInfo()
|
| /freebsd/contrib/llvm-project/lldb/source/Plugins/Process/FreeBSD/ |
| H A D | NativeProcessFreeBSD.cpp | 686 info.SetMapped(MemoryRegionInfo::OptionalBool::eYes); in PopulateMemoryRegionCache() 689 info.SetReadable(MemoryRegionInfo::OptionalBool::eYes); in PopulateMemoryRegionCache() 694 info.SetWritable(MemoryRegionInfo::OptionalBool::eYes); in PopulateMemoryRegionCache() 699 info.SetExecutable(MemoryRegionInfo::OptionalBool::eYes); in PopulateMemoryRegionCache()
|
| /freebsd/contrib/llvm-project/lldb/source/Plugins/Process/NetBSD/ |
| H A D | NativeProcessNetBSD.cpp | 702 info.SetMapped(MemoryRegionInfo::OptionalBool::eYes); in PopulateMemoryRegionCache() 705 info.SetReadable(MemoryRegionInfo::OptionalBool::eYes); in PopulateMemoryRegionCache() 710 info.SetWritable(MemoryRegionInfo::OptionalBool::eYes); in PopulateMemoryRegionCache() 715 info.SetExecutable(MemoryRegionInfo::OptionalBool::eYes); in PopulateMemoryRegionCache()
|
| /freebsd/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/ |
| H A D | GDBRemoteCommunicationClient.cpp | 1612 region_info.SetReadable(MemoryRegionInfo::eYes); in GetMemoryRegionInfo() 1617 region_info.SetWritable(MemoryRegionInfo::eYes); in GetMemoryRegionInfo() 1622 region_info.SetExecutable(MemoryRegionInfo::eYes); in GetMemoryRegionInfo() 1626 region_info.SetMapped(MemoryRegionInfo::eYes); in GetMemoryRegionInfo() 1652 region_info.SetMemoryTagged(MemoryRegionInfo::eYes); in GetMemoryRegionInfo() 1654 region_info.SetIsShadowStack(MemoryRegionInfo::eYes); in GetMemoryRegionInfo() 1660 region_info.SetIsStackMemory(MemoryRegionInfo::eYes); in GetMemoryRegionInfo() 1801 region.SetReadable(MemoryRegionInfo::eYes); in LoadQXferMemoryMap() 1804 region.SetReadable(MemoryRegionInfo::eYes); in LoadQXferMemoryMap() 1805 region.SetWritable(MemoryRegionInfo::eYes); in LoadQXferMemoryMap() [all …]
|
| H A D | GDBRemoteCommunicationServerLLGS.cpp | 2807 if (memory_tagged == MemoryRegionInfo::eYes) in Handle_qMemoryRegionInfo() 2809 if (is_shadow_stack == MemoryRegionInfo::eYes) in Handle_qMemoryRegionInfo()
|
| H A D | ProcessGDBRemote.cpp | 2926 region_status.Success() && region.GetFlash() == MemoryRegionInfo::eYes; in DoWriteMemory()
|
| /freebsd/contrib/llvm-project/lldb/source/Commands/ |
| H A D | CommandObjectMemory.cpp | 1692 if (memory_tagged == MemoryRegionInfo::OptionalBool::eYes) in DumpRegion() 1695 if (is_shadow_stack == MemoryRegionInfo::OptionalBool::eYes) in DumpRegion()
|
| /freebsd/contrib/llvm-project/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/ |
| H A D | DynamicLoaderPOSIXDYLD.cpp | 620 if (status.Fail() || info.GetMapped() != MemoryRegionInfo::eYes || in LoadInterpreterModule()
|