LLDB mainline
RegisterContextLinux_s390x.h
Go to the documentation of this file.
1//===-- RegisterContextLinux_s390x.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_REGISTERCONTEXTLINUX_S390X_H
10#define LLDB_SOURCE_PLUGINS_PROCESS_UTILITY_REGISTERCONTEXTLINUX_S390X_H
11
13
15public:
17
18 size_t GetGPRSize() const override;
19
20 const lldb_private::RegisterInfo *GetRegisterInfo() const override;
21
22 uint32_t GetRegisterCount() const override;
23
24 uint32_t GetUserRegisterCount() const override;
25
26 const std::vector<lldb_private::RegisterInfo> *
27 GetDynamicRegisterInfoP() const override;
28
29private:
30 const lldb_private::RegisterInfo *m_register_info_p;
33 std::vector<lldb_private::RegisterInfo> d_register_infos;
34};
35
36#endif
const lldb_private::RegisterInfo * GetRegisterInfo() const override
const lldb_private::RegisterInfo * m_register_info_p
uint32_t GetRegisterCount() const override
std::vector< lldb_private::RegisterInfo > d_register_infos
uint32_t GetUserRegisterCount() const override
const std::vector< lldb_private::RegisterInfo > * GetDynamicRegisterInfoP() const override
An architecture specification class.
Definition: ArchSpec.h:32
RegisterInfo interface to patch RegisterInfo structure for archs.