[ORC] Fail materialization in tasks that are destroyed before running.
[llvm-project.git] / lldb / source / Plugins / Process / FreeBSDKernel / RegisterContextFreeBSDKernel_arm64.h
blob155dda6e748f5609eb6fd2b30131d9ce0b7c663c
1 //===-- RegisterContextFreeBSDKernel_arm64.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 //===----------------------------------------------------------------------===//
9 #ifndef LLDB_SOURCE_PLUGINS_PROCESS_FREEBSDKERNEL_REGISTERCONTEXTFREEBSDKERNEL_ARM64_H
10 #define LLDB_SOURCE_PLUGINS_PROCESS_FREEBSDKERNEL_REGISTERCONTEXTFREEBSDKERNEL_ARM64_H
12 #include "Plugins/Process/Utility/RegisterContextPOSIX_arm64.h"
13 #include "Plugins/Process/elf-core/RegisterUtilities.h"
15 class RegisterContextFreeBSDKernel_arm64 : public RegisterContextPOSIX_arm64 {
16 public:
17 RegisterContextFreeBSDKernel_arm64(
18 lldb_private::Thread &thread,
19 std::unique_ptr<RegisterInfoPOSIX_arm64> register_info_up,
20 lldb::addr_t pcb_addr);
22 bool ReadRegister(const lldb_private::RegisterInfo *reg_info,
23 lldb_private::RegisterValue &value) override;
25 bool WriteRegister(const lldb_private::RegisterInfo *reg_info,
26 const lldb_private::RegisterValue &value) override;
28 protected:
29 bool ReadGPR() override;
31 bool ReadFPR() override;
33 bool WriteGPR() override;
35 bool WriteFPR() override;
37 private:
38 lldb::addr_t m_pcb_addr;
41 #endif // LLDB_SOURCE_PLUGINS_PROCESS_FREEBSDKERNEL_REGISTERCONTEXTFREEBSDKERNEL_ARM64_H