GDB (xrefs)
/tmp/gdb-8.1/gdb/amd64-sol2-tdep.c
Go to the documentation of this file.
1 /* Target-dependent code for AMD64 Solaris.
2 
3  Copyright (C) 2001-2018 Free Software Foundation, Inc.
4 
5  Contributed by Joseph Myers, CodeSourcery, LLC.
6 
7  This file is part of GDB.
8 
9  This program is free software; you can redistribute it and/or modify
10  it under the terms of the GNU General Public License as published by
11  the Free Software Foundation; either version 3 of the License, or
12  (at your option) any later version.
13 
14  This program is distributed in the hope that it will be useful,
15  but WITHOUT ANY WARRANTY; without even the implied warranty of
16  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17  GNU General Public License for more details.
18 
19  You should have received a copy of the GNU General Public License
20  along with this program. If not, see <http://www.gnu.org/licenses/>. */
21 
22 #include "defs.h"
23 #include "frame.h"
24 #include "gdbcore.h"
25 #include "regcache.h"
26 #include "osabi.h"
27 #include "symtab.h"
28 
29 #include "sol2-tdep.h"
30 #include "amd64-tdep.h"
31 #include "x86-xstate.h"
32 #include "solib-svr4.h"
33 
34 /* Mapping between the general-purpose registers in gregset_t format
35  and GDB's register cache layout. */
36 
37 /* From <sys/regset.h>. */
39  14 * 8, /* %rax */
40  11 * 8, /* %rbx */
41  13 * 8, /* %rcx */
42  12 * 8, /* %rdx */
43  9 * 8, /* %rsi */
44  8 * 8, /* %rdi */
45  10 * 8, /* %rbp */
46  20 * 8, /* %rsp */
47  7 * 8, /* %r8 ... */
48  6 * 8,
49  5 * 8,
50  4 * 8,
51  3 * 8,
52  2 * 8,
53  1 * 8,
54  0 * 8, /* ... %r15 */
55  17 * 8, /* %rip */
56  19 * 8, /* %eflags */
57  18 * 8, /* %cs */
58  21 * 8, /* %ss */
59  25 * 8, /* %ds */
60  24 * 8, /* %es */
61  22 * 8, /* %fs */
62  23 * 8 /* %gs */
63 };
64 
65 
66 /* Return whether THIS_FRAME corresponds to a Solaris sigtramp
67  routine. */
68 
69 static int
70 amd64_sol2_sigtramp_p (struct frame_info *this_frame)
71 {
72  CORE_ADDR pc = get_frame_pc (this_frame);
73  const char *name;
74 
75  find_pc_partial_function (pc, &name, NULL, NULL);
76  return (name && (strcmp ("sigacthandler", name) == 0
77  || strcmp (name, "ucbsigvechandler") == 0));
78 }
79 
80 /* Solaris doesn't have a 'struct sigcontext', but it does have a
81  'mcontext_t' that contains the saved set of machine registers. */
82 
83 static CORE_ADDR
85 {
86  CORE_ADDR sp, ucontext_addr;
87 
89  ucontext_addr = get_frame_memory_unsigned (this_frame, sp + 8, 8);
90 
91  return ucontext_addr + 72;
92 }
93 
94 static void
96 {
97  struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
98 
100  tdep->gregset_num_regs = ARRAY_SIZE (amd64_sol2_gregset_reg_offset);
101  tdep->sizeof_gregset = 28 * 8;
102 
103  amd64_init_abi (info, gdbarch,
105 
108  tdep->sc_reg_offset = tdep->gregset_reg_offset;
109  tdep->sc_num_regs = tdep->gregset_num_regs;
110 
111  /* Solaris uses SVR4-style shared libraries. */
115 
116  /* How to print LWP PTIDs from core files. */
118 }
119 
120 void
122 {
123  gdbarch_register_osabi (bfd_arch_i386, bfd_mach_x86_64,
125 }
static CORE_ADDR amd64_sol2_mcontext_addr(struct frame_info *this_frame)
CORE_ADDR sol2_skip_solib_resolver(struct gdbarch *gdbarch, CORE_ADDR pc)
Definition: sol2-tdep.c:29
void _initialize_amd64_sol2_tdep(void)
void set_gdbarch_core_pid_to_str(struct gdbarch *gdbarch, gdbarch_core_pid_to_str_ftype core_pid_to_str)
Definition: gdbarch.c:3767
CORE_ADDR get_frame_pc(struct frame_info *frame)
Definition: frame.c:2376
#define X86_XSTATE_SSE_MASK
Definition: x86-xstate.h:42
bfd_vma CORE_ADDR
Definition: common-types.h:41
struct link_map_offsets * svr4_lp64_fetch_link_map_offsets(void)
Definition: solib-svr4.c:3214
int sc_num_regs
Definition: i386-tdep.h:227
void amd64_init_abi(struct gdbarch_info info, struct gdbarch *gdbarch, const target_desc *default_tdesc)
Definition: amd64-tdep.c:3037
struct m32c_reg * pc
Definition: m32c-tdep.c:116
const char * sol2_core_pid_to_str(struct gdbarch *gdbarch, ptid_t ptid)
Definition: sol2-tdep.c:44
CORE_ADDR(* sigcontext_addr)(struct frame_info *)
Definition: alpha-tdep.h:82
ULONGEST get_frame_memory_unsigned(struct frame_info *this_frame, CORE_ADDR addr, int len)
Definition: frame.c:2671
struct gdbarch_tdep * gdbarch_tdep(struct gdbarch *gdbarch)
Definition: gdbarch.c:1491
const char *const name
Definition: aarch64-tdep.c:76
static void amd64_sol2_init_abi(struct gdbarch_info info, struct gdbarch *gdbarch)
static int amd64_sol2_gregset_reg_offset[]
void set_solib_svr4_fetch_link_map_offsets(struct gdbarch *gdbarch, struct link_map_offsets *(*flmo)(void))
Definition: solib-svr4.c:3137
int find_pc_partial_function(CORE_ADDR pc, const char **name, CORE_ADDR *address, CORE_ADDR *endaddr)
Definition: blockframe.c:320
static int amd64_sol2_sigtramp_p(struct frame_info *this_frame)
ULONGEST get_frame_register_unsigned(struct frame_info *frame, int regnum)
Definition: frame.c:1308
void gdbarch_register_osabi(enum bfd_architecture arch, unsigned long machine, enum gdb_osabi osabi, void(*init_osabi)(struct gdbarch_info, struct gdbarch *))
Definition: osabi.c:143
int * gregset_reg_offset
Definition: i386-tdep.h:61
int(* sigtramp_p)(struct frame_info *)
Definition: i386-tdep.h:220
size_t sizeof_gregset
Definition: i386-tdep.h:63
struct m32c_reg * sp
Definition: m32c-tdep.c:119
int * sc_reg_offset
Definition: i386-tdep.h:226
void set_gdbarch_skip_solib_resolver(struct gdbarch *gdbarch, gdbarch_skip_solib_resolver_ftype skip_solib_resolver)
Definition: gdbarch.c:3333
int gregset_num_regs
Definition: i386-tdep.h:62
const struct target_desc * amd64_target_description(uint64_t xcr0)
Definition: amd64-tdep.c:3246