Home
last modified time | relevance | path

Searched refs:SVEState (Results 1 – 3 of 3) sorted by relevance

/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/Process/elf-core/
H A DRegisterContextPOSIXCore_arm64.cpp108 m_sve_state = SVEState::Streaming; in RegisterContextCorePOSIX_arm64()
163 m_sve_state = SVEState::FPSIMD; in ConfigureRegisterContext()
166 m_sve_state = SVEState::Full; in ConfigureRegisterContext()
170 m_sve_state = SVEState::Disabled; in ConfigureRegisterContext()
174 m_sve_state = SVEState::Disabled; in ConfigureRegisterContext()
249 if (m_sve_state == SVEState::Full || m_sve_state == SVEState::Streaming) in ReadRegister()
255 if (m_sve_state == SVEState::Full || m_sve_state == SVEState::Streaming) in ReadRegister()
280 case SVEState::FPSIMD: { in ReadRegister()
296 case SVEState::Full: in ReadRegister()
297 case SVEState::Streaming: in ReadRegister()
[all …]
H A DRegisterContextPOSIXCore_arm64.h66 SVEState m_sve_state = SVEState::Unknown;
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/Process/Utility/
H A DRegisterInfoPOSIX_arm64.h18 enum class SVEState : uint8_t { Unknown, Disabled, FPSIMD, Full, Streaming }; enum