| 1 | //===-- RegisterContextLinuxCore_x86_64.h -----------------------*- C++ -*-===// |
| 2 | // |
| 3 | // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. |
| 4 | // See https://llvm.org/LICENSE.txt for license information. |
| 5 | // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception |
| 6 | // |
| 7 | //===----------------------------------------------------------------------===// |
| 8 | |
| 9 | #ifndef LLDB_SOURCE_PLUGINS_PROCESS_ELF_CORE_REGISTERCONTEXTLINUXCORE_X86_64_H |
| 10 | #define LLDB_SOURCE_PLUGINS_PROCESS_ELF_CORE_REGISTERCONTEXTLINUXCORE_X86_64_H |
| 11 | |
| 12 | #include "Plugins/Process/elf-core/RegisterUtilities.h" |
| 13 | #include "RegisterContextPOSIXCore_x86_64.h" |
| 14 | |
| 15 | class RegisterContextLinuxCore_x86_64 : public RegisterContextCorePOSIX_x86_64 { |
| 16 | public: |
| 17 | ( |
| 18 | lldb_private::Thread &thread, |
| 19 | lldb_private::RegisterInfoInterface *register_info, |
| 20 | const lldb_private::DataExtractor &gpregset, |
| 21 | llvm::ArrayRef<lldb_private::CoreNote> notes); |
| 22 | |
| 23 | const lldb_private::RegisterSet *GetRegisterSet(size_t set) override; |
| 24 | |
| 25 | lldb_private::RegInfo &GetRegInfo() override; |
| 26 | }; |
| 27 | |
| 28 | #endif // LLDB_SOURCE_PLUGINS_PROCESS_ELF_CORE_REGISTERCONTEXTLINUXCORE_X86_64_H |
| 29 | |