LLDB mainline
RegisterContextLinux_x86_64.h
Go to the documentation of this file.
1//===-- RegisterContextLinux_x86_64.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_X86_64_H
10#define LLDB_SOURCE_PLUGINS_PROCESS_UTILITY_REGISTERCONTEXTLINUX_X86_64_H
11
13
16public:
18
19 static size_t GetGPRSizeStatic();
20 size_t GetGPRSize() const override { return GetGPRSizeStatic(); }
21
22 const lldb_private::RegisterInfo *GetRegisterInfo() const override;
23
24 uint32_t GetRegisterCount() const override;
25
26 uint32_t GetUserRegisterCount() const override;
27
28private:
32};
33
34#endif
const lldb_private::RegisterInfo * m_register_info_p
uint32_t GetUserRegisterCount() const override
const lldb_private::RegisterInfo * GetRegisterInfo() const override
uint32_t GetRegisterCount() const override
An architecture specification class.
Definition: ArchSpec.h:31
Every register is described in detail including its name, alternate name (optional),...