LLDB mainline
GDBRemoteRegisterFallback.h
Go to the documentation of this file.
1//===-- GDBRemoteRegisterFallback.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_GDB_REMOTE_GDBREMOTEREGISTERFALLBACK_H
10#define LLDB_SOURCE_PLUGINS_PROCESS_GDB_REMOTE_GDBREMOTEREGISTERFALLBACK_H
11
12#include <vector>
13
16
17namespace lldb_private {
18namespace process_gdb_remote {
19
20std::vector<DynamicRegisterInfo::Register>
21GetFallbackRegisters(const ArchSpec &arch_to_use);
22
23} // namespace process_gdb_remote
24} // namespace lldb_private
25
26#endif // LLDB_SOURCE_PLUGINS_PROCESS_GDB_REMOTE_GDBREMOTEREGISTERFALLBACK_H
std::vector< DynamicRegisterInfo::Register > GetFallbackRegisters(const ArchSpec &arch_to_use)
A class that represents a running process on the host machine.
Definition: SBAttachInfo.h:14