brintos

brintos / llvm-project-archived public Read only

0
0
Text · 913 B · 82e03c6 Raw
27 lines · c
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-exception6//7//===----------------------------------------------------------------------===//8 9#ifndef LLDB_SOURCE_PLUGINS_PROCESS_GDB_REMOTE_GDBREMOTEREGISTERFALLBACK_H10#define LLDB_SOURCE_PLUGINS_PROCESS_GDB_REMOTE_GDBREMOTEREGISTERFALLBACK_H11 12#include <vector>13 14#include "lldb/Target/DynamicRegisterInfo.h"15#include "lldb/Utility/ArchSpec.h"16 17namespace lldb_private {18namespace process_gdb_remote {19 20std::vector<DynamicRegisterInfo::Register>21GetFallbackRegisters(const ArchSpec &arch_to_use);22 23} // namespace process_gdb_remote24} // namespace lldb_private25 26#endif // LLDB_SOURCE_PLUGINS_PROCESS_GDB_REMOTE_GDBREMOTEREGISTERFALLBACK_H27