1 //===-- RegisterContextFreeBSD_i386.cpp -----------------------------------===//
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
7 //===---------------------------------------------------------------------===//
9 #include "RegisterContextFreeBSD_i386.h"
10 #include "RegisterContextPOSIX_x86.h"
12 using namespace lldb_private
;
15 // http://svnweb.freebsd.org/base/head/sys/x86/include/reg.h
39 uint32_t dr
[8]; /* debug registers */
40 /* Index 0-3: debug address registers */
41 /* Index 4-5: reserved */
42 /* Index 6: debug status */
43 /* Index 7: debug control */
46 using FPR_i386
= FXSAVE
;
54 #define DR_SIZE sizeof(uint32_t)
55 #define DR_OFFSET(reg_index) \
56 (LLVM_EXTENSION offsetof(UserArea, dbg) + \
57 LLVM_EXTENSION offsetof(DBG, dr[reg_index]))
59 // Include RegisterInfos_i386 to declare our g_register_infos_i386 structure.
60 #define DECLARE_REGISTER_INFOS_I386_STRUCT
61 #include "RegisterInfos_i386.h"
62 #undef DECLARE_REGISTER_INFOS_I386_STRUCT
64 RegisterContextFreeBSD_i386::RegisterContextFreeBSD_i386(
65 const ArchSpec
&target_arch
)
66 : RegisterInfoInterface(target_arch
) {}
68 size_t RegisterContextFreeBSD_i386::GetGPRSize() const { return sizeof(GPR
); }
70 const RegisterInfo
*RegisterContextFreeBSD_i386::GetRegisterInfo() const {
71 switch (GetTargetArchitecture().GetMachine()) {
72 case llvm::Triple::x86
:
73 return g_register_infos_i386
;
75 assert(false && "Unhandled target architecture.");
80 uint32_t RegisterContextFreeBSD_i386::GetRegisterCount() const {
81 return static_cast<uint32_t>(sizeof(g_register_infos_i386
) /
82 sizeof(g_register_infos_i386
[0]));