Path: blob/main/contrib/llvm-project/lldb/source/Plugins/Process/Utility/RegisterContextFreeBSD_mips64.h
96381 views
//===-- RegisterContextFreeBSD_mips64.h -------------------------*- C++ -*-===//1//2// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.3// See https://llvm.org/LICENSE.txt for license information.4// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception5//6//===----------------------------------------------------------------------===//78#ifndef LLDB_SOURCE_PLUGINS_PROCESS_UTILITY_REGISTERCONTEXTFREEBSD_MIPS64_H9#define LLDB_SOURCE_PLUGINS_PROCESS_UTILITY_REGISTERCONTEXTFREEBSD_MIPS64_H1011#include "RegisterInfoInterface.h"1213class RegisterContextFreeBSD_mips6414: public lldb_private::RegisterInfoInterface {15public:16RegisterContextFreeBSD_mips64(const lldb_private::ArchSpec &target_arch);1718size_t GetGPRSize() const override;1920const lldb_private::RegisterSet *GetRegisterSet(size_t set) const;2122size_t GetRegisterSetCount() const;2324const lldb_private::RegisterInfo *GetRegisterInfo() const override;2526uint32_t GetRegisterCount() const override;27};2829#endif303132