Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
freebsd
GitHub Repository: freebsd/freebsd-src
Path: blob/main/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/GDBRemoteRegisterFallback.h
96380 views
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
14
#include "lldb/Target/DynamicRegisterInfo.h"
15
#include "lldb/Utility/ArchSpec.h"
16
17
namespace lldb_private {
18
namespace process_gdb_remote {
19
20
std::vector<DynamicRegisterInfo::Register>
21
GetFallbackRegisters(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
27
28