1 //===-- RegisterContextMach_x86_64.h ------------------------------*- C++
2 //-*-===//
3 //
4 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
5 // See https://llvm.org/LICENSE.txt for license information.
6 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //
8 //===----------------------------------------------------------------------===//
9 
10 #ifndef liblldb_RegisterContextMach_x86_64_h_
11 #define liblldb_RegisterContextMach_x86_64_h_
12 
13 #include "RegisterContextDarwin_x86_64.h"
14 
15 class RegisterContextMach_x86_64 : public RegisterContextDarwin_x86_64 {
16 public:
17   RegisterContextMach_x86_64(lldb_private::Thread &thread,
18                              uint32_t concrete_frame_idx);
19 
20   virtual ~RegisterContextMach_x86_64();
21 
22 protected:
23   virtual int DoReadGPR(lldb::tid_t tid, int flavor, GPR &gpr);
24 
25   int DoReadFPU(lldb::tid_t tid, int flavor, FPU &fpu);
26 
27   int DoReadEXC(lldb::tid_t tid, int flavor, EXC &exc);
28 
29   int DoWriteGPR(lldb::tid_t tid, int flavor, const GPR &gpr);
30 
31   int DoWriteFPU(lldb::tid_t tid, int flavor, const FPU &fpu);
32 
33   int DoWriteEXC(lldb::tid_t tid, int flavor, const EXC &exc);
34 };
35 
36 #endif // liblldb_RegisterContextMach_x86_64_h_
37