Home
last modified time | relevance | path

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

/llvm-project-15.0.7/lldb/source/Plugins/Process/Linux/
H A DNativeRegisterContextLinux_x86_64.cpp320 m_reg_info.first_mpxc = lldb_bndcfgu_i386; in NativeRegisterContextLinux_x86_64()
345 m_reg_info.first_mpxc = lldb_bndcfgu_x86_64; in NativeRegisterContextLinux_x86_64()
496 if (reg >= m_reg_info.first_mpxc && reg <= m_reg_info.last_mpxc) { in ReadRegister()
498 reg_value.SetBytes(m_mpx_set.mpxc[reg - m_reg_info.first_mpxc].bytes, in ReadRegister()
624 if (reg_index >= m_reg_info.first_mpxc && in WriteRegister()
626 ::memcpy(m_mpx_set.mpxc[reg_index - m_reg_info.first_mpxc].bytes, in WriteRegister()
1009 ::memcpy(m_mpx_set.mpxc[reg - m_reg_info.first_mpxc].bytes, in CopyXSTATEtoMPX()
1010 m_xstate->xsave.mpxc[reg - m_reg_info.first_mpxc].bytes, in CopyXSTATEtoMPX()
1024 ::memcpy(m_xstate->xsave.mpxc[reg - m_reg_info.first_mpxc].bytes, in CopyMPXtoXSTATE()
1025 m_mpx_set.mpxc[reg - m_reg_info.first_mpxc].bytes, sizeof(MPXCsr)); in CopyMPXtoXSTATE()
H A DNativeRegisterContextLinux_x86_64.h90 uint32_t first_mpxc; member