]> CyberLeo.Net >> Repos - FreeBSD/stable/10.git/blob - contrib/llvm/tools/lldb/source/Plugins/Process/POSIX/RegisterContextFreeBSD_x86_64.cpp
MFC r258054: Update LLDB to upstream r194122 snapshot
[FreeBSD/stable/10.git] / contrib / llvm / tools / lldb / source / Plugins / Process / POSIX / RegisterContextFreeBSD_x86_64.cpp
1 //===-- RegisterContextFreeBSD_x86_64.cpp ----------------------*- C++ -*-===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===---------------------------------------------------------------------===//
9
10 #include <vector>
11 #include "RegisterContextPOSIX_x86.h"
12 #include "RegisterContextFreeBSD_i386.h"
13 #include "RegisterContextFreeBSD_x86_64.h"
14
15 using namespace lldb_private;
16 using namespace lldb;
17
18 // http://svnweb.freebsd.org/base/head/sys/x86/include/reg.h
19 typedef struct _GPR
20 {
21     uint64_t r15;
22     uint64_t r14;
23     uint64_t r13;
24     uint64_t r12;
25     uint64_t r11;
26     uint64_t r10;
27     uint64_t r9;
28     uint64_t r8;
29     uint64_t rdi;
30     uint64_t rsi;
31     uint64_t rbp;
32     uint64_t rbx;
33     uint64_t rdx;
34     uint64_t rcx;
35     uint64_t rax;
36     uint32_t trapno;
37     uint16_t fs;
38     uint16_t gs;
39     uint32_t err;
40     uint16_t es;
41     uint16_t ds;
42     uint64_t rip;
43     uint64_t cs;
44     uint64_t rflags;
45     uint64_t rsp;
46     uint64_t ss;
47 } GPR;
48
49 #define DR_SIZE 0
50 #define DR_OFFSET(reg_index) 0
51
52 //---------------------------------------------------------------------------
53 // Include RegisterInfos_x86_64 to declare our g_register_infos_x86_64 structure.
54 //---------------------------------------------------------------------------
55 #define DECLARE_REGISTER_INFOS_X86_64_STRUCT
56 #include "RegisterInfos_x86_64.h"
57 #undef DECLARE_REGISTER_INFOS_X86_64_STRUCT
58
59 static const RegisterInfo *
60 GetRegisterInfo_i386(const lldb_private::ArchSpec& arch)
61 {
62     static std::vector<lldb_private::RegisterInfo> g_register_infos;
63
64     // Allocate RegisterInfo only once
65     if (g_register_infos.empty())
66     {
67         // Copy the register information from base class
68         std::unique_ptr<RegisterContextFreeBSD_i386> reg_interface(new RegisterContextFreeBSD_i386 (arch));
69         const RegisterInfo *base_info = reg_interface->GetRegisterInfo();
70         g_register_infos.insert(g_register_infos.end(), &base_info[0], &base_info[k_num_registers_i386]);
71
72         //---------------------------------------------------------------------------
73         // Include RegisterInfos_x86_64 to update the g_register_infos structure
74         //  with x86_64 offsets.
75         //---------------------------------------------------------------------------
76         #define UPDATE_REGISTER_INFOS_I386_STRUCT_WITH_X86_64_OFFSETS
77         #include "RegisterInfos_x86_64.h"
78         #undef UPDATE_REGISTER_INFOS_I386_STRUCT_WITH_X86_64_OFFSETS
79     }
80
81     return &g_register_infos[0];
82 }
83
84 RegisterContextFreeBSD_x86_64::RegisterContextFreeBSD_x86_64(const ArchSpec &target_arch) :
85     RegisterInfoInterface(target_arch)
86 {
87 }
88
89 RegisterContextFreeBSD_x86_64::~RegisterContextFreeBSD_x86_64()
90 {
91 }
92
93 size_t
94 RegisterContextFreeBSD_x86_64::GetGPRSize()
95 {
96     return sizeof(GPR);
97 }
98
99 const RegisterInfo *
100 RegisterContextFreeBSD_x86_64::GetRegisterInfo()
101 {
102     switch (m_target_arch.GetCore())
103     {
104         case ArchSpec::eCore_x86_32_i386:
105         case ArchSpec::eCore_x86_32_i486:
106         case ArchSpec::eCore_x86_32_i486sx:
107             return GetRegisterInfo_i386 (m_target_arch);
108         case ArchSpec::eCore_x86_64_x86_64:
109             return g_register_infos_x86_64;
110         default:
111             assert(false && "Unhandled target architecture.");
112             return NULL;
113     }
114 }
115