summaryrefslogtreecommitdiffstats
path: root/lldb/source/Plugins/Process/Windows/Common/arm64/RegisterContextWindows_arm64.h
blob: 92380ee2ec5a25f11ca20152985ba6feb7ce9c15 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
//===-- RegisterContextWindows_arm64.h --------------------------*- C++ -*-===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//

#ifndef liblldb_RegisterContextWindows_arm64_H_
#define liblldb_RegisterContextWindows_arm64_H_

#if defined(__aarch64__) || defined(_M_ARM64)

#include "RegisterContextWindows.h"
#include "lldb/lldb-forward.h"

namespace lldb_private {

class Thread;

class RegisterContextWindows_arm64 : public RegisterContextWindows {
public:
  // Constructors and Destructors
  RegisterContextWindows_arm64(Thread &thread, uint32_t concrete_frame_idx);

  virtual ~RegisterContextWindows_arm64();

  // Subclasses must override these functions
  size_t GetRegisterCount() override;

  const RegisterInfo *GetRegisterInfoAtIndex(size_t reg) override;

  size_t GetRegisterSetCount() override;

  const RegisterSet *GetRegisterSet(size_t reg_set) override;

  bool ReadRegister(const RegisterInfo *reg_info,
                    RegisterValue &reg_value) override;

  bool WriteRegister(const RegisterInfo *reg_info,
                     const RegisterValue &reg_value) override;
};
} // namespace lldb_private

#endif // defined(__aarch64__) || defined(_M_ARM64)

#endif // #ifndef liblldb_RegisterContextWindows_arm64_H_
OpenPOWER on IntegriCloud