LLDB mainline
RegisterContextLinux_x86.h
Go to the documentation of this file.
1//===-- RegisterContextLinux_i386.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_H
10#define LLDB_SOURCE_PLUGINS_PROCESS_UTILITY_REGISTERCONTEXTLINUX_X86_H
11
13
14namespace lldb_private {
15
17public:
19 RegisterInfo orig_ax_info)
20 : RegisterInfoInterface(target_arch), m_orig_ax_info(orig_ax_info) {}
21
22 const RegisterInfo &GetOrigAxInfo() const { return m_orig_ax_info; }
23
24private:
26};
27
28} // namespace lldb_private
29
30#endif
An architecture specification class.
Definition: ArchSpec.h:31
RegisterContextLinux_x86(const ArchSpec &target_arch, RegisterInfo orig_ax_info)
RegisterInfo interface to patch RegisterInfo structure for archs.
A class that represents a running process on the host machine.
Definition: SBAttachInfo.h:14
Every register is described in detail including its name, alternate name (optional),...