Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/elf-core/
H A DRegisterContextPOSIXCore_arm64.cpp129 m_sve_state = SVEState::Streaming; in RegisterContextCorePOSIX_arm64()
132 if (m_sve_state != SVEState::Streaming && m_register_info_up->IsSVEPresent()) in RegisterContextCorePOSIX_arm64()
184 if (m_sve_state != SVEState::Streaming) { in ConfigureRegisterContext()
190 m_sve_state = SVEState::FPSIMD; in ConfigureRegisterContext()
193 m_sve_state = SVEState::Full; in ConfigureRegisterContext()
197 m_sve_state = SVEState::Disabled; in ConfigureRegisterContext()
201 m_sve_state = SVEState::Disabled; in ConfigureRegisterContext()
203 if (m_sve_state != SVEState::Disabled) in ConfigureRegisterContext()
207 if (m_sve_state == SVEState::Streaming) in ConfigureRegisterContext()
229 if (m_sve_state == SVEState::FPSIMD) { in CalculateSVEOffset()
[all …]
H A DRegisterContextPOSIXCore_arm64.h68 SVEState m_sve_state = SVEState::Unknown;
/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/Utility/
H A DRegisterInfoPOSIX_arm64.h18 enum class SVEState : uint8_t { Unknown, Disabled, FPSIMD, Full, Streaming }; enum