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 48 49 50 51 52
|
//===-- RegisterContextFreeBSD_powerpc.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 LLDB_SOURCE_PLUGINS_PROCESS_UTILITY_REGISTERCONTEXTFREEBSD_POWERPC_H
#define LLDB_SOURCE_PLUGINS_PROCESS_UTILITY_REGISTERCONTEXTFREEBSD_POWERPC_H
#include "RegisterInfoInterface.h"
class RegisterContextFreeBSD_powerpc
: public lldb_private::RegisterInfoInterface {
public:
RegisterContextFreeBSD_powerpc(const lldb_private::ArchSpec &target_arch);
~RegisterContextFreeBSD_powerpc() override;
size_t GetGPRSize() const override;
const lldb_private::RegisterInfo *GetRegisterInfo() const override;
uint32_t GetRegisterCount() const override;
};
class RegisterContextFreeBSD_powerpc32 : public RegisterContextFreeBSD_powerpc {
public:
RegisterContextFreeBSD_powerpc32(const lldb_private::ArchSpec &target_arch);
~RegisterContextFreeBSD_powerpc32() override;
size_t GetGPRSize() const override;
const lldb_private::RegisterInfo *GetRegisterInfo() const override;
uint32_t GetRegisterCount() const override;
};
class RegisterContextFreeBSD_powerpc64 : public RegisterContextFreeBSD_powerpc {
public:
RegisterContextFreeBSD_powerpc64(const lldb_private::ArchSpec &target_arch);
~RegisterContextFreeBSD_powerpc64() override;
size_t GetGPRSize() const override;
const lldb_private::RegisterInfo *GetRegisterInfo() const override;
uint32_t GetRegisterCount() const override;
};
#endif // LLDB_SOURCE_PLUGINS_PROCESS_UTILITY_REGISTERCONTEXTFREEBSD_POWERPC_H
|