Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / lldb / source / Plugins / Process / Utility / RegisterContextOpenBSD_x86_64.h
blobb399c721546a93f45da4ac337cb1239985de457f
1 //===-- RegisterContextOpenBSD_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 //===----------------------------------------------------------------------===//
9 #ifndef LLDB_SOURCE_PLUGINS_PROCESS_UTILITY_REGISTERCONTEXTOPENBSD_X86_64_H
10 #define LLDB_SOURCE_PLUGINS_PROCESS_UTILITY_REGISTERCONTEXTOPENBSD_X86_64_H
12 #include "RegisterInfoInterface.h"
14 class RegisterContextOpenBSD_x86_64
15 : public lldb_private::RegisterInfoInterface {
16 public:
17 RegisterContextOpenBSD_x86_64(const lldb_private::ArchSpec &target_arch);
19 size_t GetGPRSize() const override;
21 const lldb_private::RegisterInfo *GetRegisterInfo() const override;
23 uint32_t GetRegisterCount() const override;
25 private:
26 const lldb_private::RegisterInfo *m_register_info_p;
27 const uint32_t m_register_count;
30 #endif