LLDB mainline
RegisterInfoPOSIX_riscv64.h
Go to the documentation of this file.
1//===-- RegisterInfoPOSIX_riscv64.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//===----------------------------------------------------------------------===//
8
9#ifndef LLDB_SOURCE_PLUGINS_PROCESS_UTILITY_REGISTERINFOPOSIX_RISCV64_H
10#define LLDB_SOURCE_PLUGINS_PROCESS_UTILITY_REGISTERINFOPOSIX_RISCV64_H
11
14#include "lldb/lldb-private.h"
15#include <map>
16
19public:
20 static const lldb_private::RegisterInfo *
22 static uint32_t
24
25public:
26 enum { GPRegSet = 0, FPRegSet };
27
28 struct GPR {
29 // note: gpr[0] is pc, not x0
30 uint64_t gpr[32];
31 };
32
33 struct FPR {
34 uint64_t fpr[32];
35 uint32_t fcsr;
36 };
37
38 struct VPR {
39 // The size should be VLEN*32 in bits, but we don't have VLEN here.
40 void *vpr;
41 };
42
45
46 size_t GetGPRSize() const override;
47
48 size_t GetFPRSize() const override;
49
50 const lldb_private::RegisterInfo *GetRegisterInfo() const override;
51
52 uint32_t GetRegisterCount() const override;
53
55 GetRegisterSet(size_t reg_set) const override;
56
57 size_t GetRegisterSetCount() const override;
58
59 size_t GetRegisterSetFromRegisterIndex(uint32_t reg_index) const override;
60
61private:
64};
65
66#endif
size_t GetRegisterSetCount() const override
const lldb_private::RegisterInfo * m_register_info_p
size_t GetRegisterSetFromRegisterIndex(uint32_t reg_index) const override
static const lldb_private::RegisterInfo * GetRegisterInfoPtr(const lldb_private::ArchSpec &target_arch)
uint32_t GetRegisterCount() const override
const lldb_private::RegisterSet * GetRegisterSet(size_t reg_set) const override
static uint32_t GetRegisterInfoCount(const lldb_private::ArchSpec &target_arch)
const lldb_private::RegisterInfo * GetRegisterInfo() const override
An architecture specification class.
Definition: ArchSpec.h:31
A class to manage flags.
Definition: Flags.h:22
Every register is described in detail including its name, alternate name (optional),...
Registers are grouped into register sets.