LLDB mainline
RegisterInfoPOSIX_arm.h
Go to the documentation of this file.
1//===-- RegisterInfoPOSIX_arm.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_ARM_H
10#define LLDB_SOURCE_PLUGINS_PROCESS_UTILITY_REGISTERINFOPOSIX_ARM_H
11
14#include "lldb/lldb-private.h"
15
17public:
18 enum { GPRegSet = 0, FPRegSet};
19
20 struct GPR {
21 uint32_t r[16]; // R0-R15
22 uint32_t cpsr; // CPSR
23 };
24
25 struct QReg {
26 uint8_t bytes[16];
27 };
28
29 struct FPU {
30 union {
31 uint32_t s[32];
32 uint64_t d[32];
33 QReg q[16]; // the 128-bit NEON registers
35 uint32_t fpscr;
36 };
37 struct EXC {
38 uint32_t exception;
39 uint32_t fsr; /* Fault status */
40 uint32_t far; /* Virtual Fault Address */
41 };
42
43 struct DBG {
44 uint32_t bvr[16];
45 uint32_t bcr[16];
46 uint32_t wvr[16];
47 uint32_t wcr[16];
48 };
49
51
52 size_t GetGPRSize() const override;
53
54 size_t GetFPRSize() const override;
55
56 const lldb_private::RegisterInfo *GetRegisterInfo() const override;
57
58 uint32_t GetRegisterCount() const override;
59
61 GetRegisterSet(size_t reg_set) const override;
62
63 size_t GetRegisterSetCount() const override;
64
65 size_t GetRegisterSetFromRegisterIndex(uint32_t reg_index) const override;
66
67private:
70};
71
72#endif // LLDB_SOURCE_PLUGINS_PROCESS_UTILITY_REGISTERINFOPOSIX_ARM_H
size_t GetRegisterSetCount() const override
size_t GetRegisterSetFromRegisterIndex(uint32_t reg_index) const override
size_t GetFPRSize() const override
uint32_t GetRegisterCount() const override
const lldb_private::RegisterSet * GetRegisterSet(size_t reg_set) const override
size_t GetGPRSize() const override
const lldb_private::RegisterInfo * GetRegisterInfo() const override
const lldb_private::RegisterInfo * m_register_info_p
An architecture specification class.
Definition: ArchSpec.h:31
union RegisterInfoPOSIX_arm::FPU::@145 floats
Every register is described in detail including its name, alternate name (optional),...
Registers are grouped into register sets.