]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextFreeBSD_mips64.h
MFV r329710: 8966 Source file zfs_acl.c, function zfs_aclset_common contains a use...
[FreeBSD/FreeBSD.git] / contrib / llvm / tools / lldb / source / Plugins / Process / Utility / RegisterContextFreeBSD_mips64.h
1 //===-- RegisterContextFreeBSD_mips64.h -------------------------*- C++ -*-===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9
10 #ifndef liblldb_RegisterContextFreeBSD_mips64_H_
11 #define liblldb_RegisterContextFreeBSD_mips64_H_
12
13 #include "RegisterInfoInterface.h"
14
15 class RegisterContextFreeBSD_mips64
16     : public lldb_private::RegisterInfoInterface {
17 public:
18   RegisterContextFreeBSD_mips64(const lldb_private::ArchSpec &target_arch);
19
20   size_t GetGPRSize() const override;
21
22   const lldb_private::RegisterSet *GetRegisterSet(size_t set) const;
23
24   size_t GetRegisterSetCount() const;
25
26   const lldb_private::RegisterInfo *GetRegisterInfo() const override;
27
28   uint32_t GetRegisterCount() const override;
29 };
30
31 #endif