Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / lldb / source / Plugins / Process / elf-core / RegisterContextPOSIXCore_mips64.h
blob529b00215e3525ab80c071e15424337bd1cd9cfc
1 //===-- RegisterContextPOSIXCore_mips64.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 //===----------------------------------------------------------------------===//
9 #ifndef LLDB_SOURCE_PLUGINS_PROCESS_ELF_CORE_REGISTERCONTEXTPOSIXCORE_MIPS64_H
10 #define LLDB_SOURCE_PLUGINS_PROCESS_ELF_CORE_REGISTERCONTEXTPOSIXCORE_MIPS64_H
12 #include "Plugins/Process/Utility/RegisterContextPOSIX_mips64.h"
13 #include "Plugins/Process/elf-core/RegisterUtilities.h"
14 #include "lldb/Utility/DataBufferHeap.h"
15 #include "lldb/Utility/DataExtractor.h"
17 class RegisterContextCorePOSIX_mips64 : public RegisterContextPOSIX_mips64 {
18 public:
19 RegisterContextCorePOSIX_mips64(
20 lldb_private::Thread &thread,
21 lldb_private::RegisterInfoInterface *register_info,
22 const lldb_private::DataExtractor &gpregset,
23 llvm::ArrayRef<lldb_private::CoreNote> notes);
25 ~RegisterContextCorePOSIX_mips64() override;
27 bool ReadRegister(const lldb_private::RegisterInfo *reg_info,
28 lldb_private::RegisterValue &value) override;
30 bool WriteRegister(const lldb_private::RegisterInfo *reg_info,
31 const lldb_private::RegisterValue &value) override;
33 bool ReadAllRegisterValues(lldb::WritableDataBufferSP &data_sp) override;
35 bool WriteAllRegisterValues(const lldb::DataBufferSP &data_sp) override;
37 bool HardwareSingleStep(bool enable) override;
39 protected:
40 bool ReadGPR() override;
42 bool ReadFPR() override;
44 bool WriteGPR() override;
46 bool WriteFPR() override;
48 private:
49 lldb::DataBufferSP m_gpr_buffer;
50 lldb::DataBufferSP m_fpr_buffer;
51 lldb_private::DataExtractor m_gpr;
52 lldb_private::DataExtractor m_fpr;
55 #endif // LLDB_SOURCE_PLUGINS_PROCESS_ELF_CORE_REGISTERCONTEXTPOSIXCORE_MIPS64_H