]> CyberLeo.Net >> Repos - FreeBSD/releng/10.2.git/blob - contrib/llvm/tools/lldb/source/Plugins/Process/POSIX/RegisterContextFreeBSD_mips64.h
- Copy stable/10@285827 to releng/10.2 in preparation for 10.2-RC1
[FreeBSD/releng/10.2.git] / contrib / llvm / tools / lldb / source / Plugins / Process / POSIX / 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 "RegisterContextPOSIX.h"
14
15 class RegisterContextFreeBSD_mips64:
16     public RegisterInfoInterface
17 {
18 public:
19     RegisterContextFreeBSD_mips64(const lldb_private::ArchSpec &target_arch);
20     virtual ~RegisterContextFreeBSD_mips64();
21
22     size_t
23     GetGPRSize();
24
25     const lldb_private::RegisterInfo *
26     GetRegisterInfo();
27 };
28
29 #endif