]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/llvm-project/lldb/source/Plugins/Process/Utility/RegisterContextFreeBSD_mips64.h
Merge ^/head r357855 through r357920.
[FreeBSD/FreeBSD.git] / contrib / llvm-project / lldb / source / Plugins / Process / Utility / RegisterContextFreeBSD_mips64.h
1 //===-- RegisterContextFreeBSD_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 //===----------------------------------------------------------------------===//
8
9 #ifndef liblldb_RegisterContextFreeBSD_mips64_H_
10 #define liblldb_RegisterContextFreeBSD_mips64_H_
11
12 #include "RegisterInfoInterface.h"
13
14 class RegisterContextFreeBSD_mips64
15     : public lldb_private::RegisterInfoInterface {
16 public:
17   RegisterContextFreeBSD_mips64(const lldb_private::ArchSpec &target_arch);
18
19   size_t GetGPRSize() const override;
20
21   const lldb_private::RegisterSet *GetRegisterSet(size_t set) const;
22
23   size_t GetRegisterSetCount() const;
24
25   const lldb_private::RegisterInfo *GetRegisterInfo() const override;
26
27   uint32_t GetRegisterCount() const override;
28 };
29
30 #endif