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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
| //===-- RegisterContextMinidump_ARM.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_RegisterContextMinidump_ARM_h_
#define liblldb_RegisterContextMinidump_ARM_h_
#include "MinidumpTypes.h"
#include "Plugins/Process/Utility/RegisterInfoInterface.h"
#include "lldb/Target/RegisterContext.h"
#include "llvm/ADT/ArrayRef.h"
#include "llvm/ADT/BitmaskEnum.h"
// C includes
// C++ includes
namespace lldb_private {
namespace minidump {
LLVM_ENABLE_BITMASK_ENUMS_IN_NAMESPACE();
class RegisterContextMinidump_ARM : public lldb_private::RegisterContext {
public:
RegisterContextMinidump_ARM(lldb_private::Thread &thread,
const DataExtractor &data, bool apple);
~RegisterContextMinidump_ARM() override = default;
void InvalidateAllRegisters() override {
// Do nothing... registers are always valid...
}
// Used for unit testing.
static size_t GetRegisterCountStatic();
// Used for unit testing.
static const lldb_private::RegisterInfo *
GetRegisterInfoAtIndexStatic(size_t reg, bool apple);
size_t GetRegisterCount() override;
const lldb_private::RegisterInfo *GetRegisterInfoAtIndex(size_t reg) override;
size_t GetRegisterSetCount() override;
const lldb_private::RegisterSet *GetRegisterSet(size_t set) override;
const char *GetRegisterName(unsigned reg);
bool ReadRegister(const RegisterInfo *reg_info,
RegisterValue ®_value) override;
bool WriteRegister(const RegisterInfo *reg_info,
const RegisterValue ®_value) override;
uint32_t ConvertRegisterKindToRegisterNumber(lldb::RegisterKind kind,
uint32_t num) override;
// Reference: see breakpad/crashpad source
struct QRegValue {
uint64_t lo;
uint64_t hi;
};
struct Context {
uint32_t context_flags;
uint32_t r[16];
uint32_t cpsr;
uint64_t fpscr;
union {
uint64_t d[32];
uint32_t s[32];
QRegValue q[16];
};
uint32_t extra[8];
};
protected:
enum class Flags : uint32_t {
ARM_Flag = 0x40000000,
Integer = ARM_Flag | 0x00000002,
FloatingPoint = ARM_Flag | 0x00000004,
LLVM_MARK_AS_BITMASK_ENUM(/* LargestValue = */ FloatingPoint)
};
Context m_regs;
const bool m_apple; // True if this is an Apple ARM where FP is R7
};
} // end namespace minidump
} // end namespace lldb_private
#endif // liblldb_RegisterContextMinidump_ARM_h_
|