Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / lldb / source / Plugins / Process / Utility / RegisterContextFreeBSD_i386.h
blob5a3e5b0551d64e4d4ed0a6bab2af0f1cd0c5ae3b
1 //===-- RegisterContextFreeBSD_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 //===----------------------------------------------------------------------===//
9 #ifndef LLDB_SOURCE_PLUGINS_PROCESS_UTILITY_REGISTERCONTEXTFREEBSD_I386_H
10 #define LLDB_SOURCE_PLUGINS_PROCESS_UTILITY_REGISTERCONTEXTFREEBSD_I386_H
12 #include "RegisterInfoInterface.h"
14 class RegisterContextFreeBSD_i386 : public lldb_private::RegisterInfoInterface {
15 public:
16 RegisterContextFreeBSD_i386(const lldb_private::ArchSpec &target_arch);
18 size_t GetGPRSize() const override;
20 const lldb_private::RegisterInfo *GetRegisterInfo() const override;
22 uint32_t GetRegisterCount() const override;
25 #endif