GDB (xrefs)
/tmp/gdb-8.1/gdb/ppc-ravenscar-thread.c
Go to the documentation of this file.
1 /* Ravenscar PowerPC target support.
2 
3  Copyright (C) 2011-2018 Free Software Foundation, Inc.
4 
5  This file is part of GDB.
6 
7  This program is free software; you can redistribute it and/or modify
8  it under the terms of the GNU General Public License as published by
9  the Free Software Foundation; either version 3 of the License, or
10  (at your option) any later version.
11 
12  This program is distributed in the hope that it will be useful,
13  but WITHOUT ANY WARRANTY; without even the implied warranty of
14  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15  GNU General Public License for more details.
16 
17  You should have received a copy of the GNU General Public License
18  along with this program. If not, see <http://www.gnu.org/licenses/>. */
19 
20 #include "defs.h"
21 #include "gdbcore.h"
22 #include "regcache.h"
23 #include "ppc-tdep.h"
24 #include "inferior.h"
25 #include "ravenscar-thread.h"
26 #include "ppc-ravenscar-thread.h"
27 
28 #define NO_OFFSET -1
29 
30 /* See ppc-tdep.h for register numbers. */
31 
32 static const int powerpc_context_offsets[] =
33 {
34  /* R0 - R32 */
35  NO_OFFSET, 0, 4, NO_OFFSET,
38  NO_OFFSET, 8, 12, 16,
39  20, 24, 28, 32,
40  36, 40, 44, 48,
41  52, 56, 60, 64,
42  68, 72, 76, 80,
43 
44  /* F0 - F31 */
48  NO_OFFSET, NO_OFFSET, 96, 104,
49  112, 120, 128, 136,
50  144, 152, 160, 168,
51  176, 184, 192, 200,
52  208, 216, 224, 232,
53 
54  /* PC, MSR, CR, LR */
55  88, NO_OFFSET, 84, NO_OFFSET,
56 
57  /* CTR, XER, FPSCR */
58  NO_OFFSET, NO_OFFSET, 240
59 };
60 
61 static const int e500_context_offsets[] =
62 {
63  /* R0 - R32 */
64  NO_OFFSET, 4, 12, NO_OFFSET,
67  NO_OFFSET, 20, 28, 36,
68  44, 52, 60, 68,
69  76, 84, 92, 100,
70  108, 116, 124, 132,
71  140, 148, 156, 164,
72 
73  /* F0 - F31 */
82 
83  /* PC, MSR, CR, LR */
84  172, NO_OFFSET, 168, NO_OFFSET,
85 
86  /* CTR, XER, FPSCR, MQ */
88 
89  /* Upper R0-R32. */
90  NO_OFFSET, 0, 8, NO_OFFSET,
93  NO_OFFSET, 16, 24, 32,
94  40, 48, 56, 64,
95  72, 80, 88, 96,
96  104, 112, 120, 128,
97  136, 144, 152, 160,
98 
99  /* ACC, FSCR */
100  NO_OFFSET, 176
101 };
102 
103 /* The register layout info. */
104 
106 {
107  /* A table providing the offset relative to the context structure
108  where each register is saved. */
109  const int *context_offsets;
110 
111  /* The number of elements in the context_offsets table above. */
113 };
114 
115 /* supply register REGNUM, which has been saved on REGISTER_ADDR, to the
116  regcache. */
117 
118 static void
120  CORE_ADDR register_addr)
121 {
122  struct gdbarch *gdbarch = regcache->arch ();
123  int buf_size = register_size (gdbarch, regnum);
124  gdb_byte *buf;
125 
126  buf = (gdb_byte *) alloca (buf_size);
127  read_memory (register_addr, buf, buf_size);
129 }
130 
131 /* Return true if, for a non-running thread, REGNUM has been saved on the
132  Thread_Descriptor. */
133 
134 static int
136  int regnum)
137 {
138  return (regnum < reg_info->context_offsets_size
139  && reg_info->context_offsets[regnum] != NO_OFFSET);
140 }
141 
142 /* to_fetch_registers when inferior_ptid is different from the running
143  thread. */
144 
145 static void
147  (const struct ravenscar_reg_info *reg_info,
148  struct regcache *regcache, int regnum)
149 {
150  struct gdbarch *gdbarch = regcache->arch ();
151  const int num_regs = gdbarch_num_regs (gdbarch);
152  int current_regnum;
153  CORE_ADDR current_address;
154  CORE_ADDR thread_descriptor_address;
155 
156  /* The tid is the thread_id field, which is a pointer to the thread. */
157  thread_descriptor_address = (CORE_ADDR) ptid_get_tid (inferior_ptid);
158 
159  /* Read registers. */
160  for (current_regnum = 0; current_regnum < num_regs; current_regnum++)
161  {
162  if (register_in_thread_descriptor_p (reg_info, current_regnum))
163  {
164  current_address = thread_descriptor_address
165  + reg_info->context_offsets[current_regnum];
166  supply_register_at_address (regcache, current_regnum,
167  current_address);
168  }
169  }
170 }
171 
172 /* to_prepare_to_store when inferior_ptid is different from the running
173  thread. */
174 
175 static void
177 {
178  /* Nothing to do. */
179 }
180 
181 /* to_store_registers when inferior_ptid is different from the running
182  thread. */
183 
184 static void
186  (const struct ravenscar_reg_info *reg_info,
187  struct regcache *regcache, int regnum)
188 {
189  struct gdbarch *gdbarch = regcache->arch ();
190  int buf_size = register_size (gdbarch, regnum);
191  gdb_byte buf[buf_size];
192  ULONGEST register_address;
193 
194  if (register_in_thread_descriptor_p (reg_info, regnum))
195  register_address
197  else
198  return;
199 
201  write_memory (register_address,
202  buf,
203  buf_size);
204 }
205 
206 /* The ravenscar_reg_info for most PowerPC targets. */
207 
208 static const struct ravenscar_reg_info ppc_reg_info =
209 {
211  ARRAY_SIZE (powerpc_context_offsets),
212 };
213 
214 /* Implement the to_fetch_registers ravenscar_arch_ops method
215  for most PowerPC targets. */
216 
217 static void
219 {
221 }
222 
223 /* Implement the to_store_registers ravenscar_arch_ops method
224  for most PowerPC targets. */
225 
226 static void
228 {
230 }
231 
232 /* The ravenscar_arch_ops vector for most PowerPC targets. */
233 
235 {
239 };
240 
241 /* Register ppc_ravenscar_powerpc_ops in GDBARCH. */
242 
243 void
245 {
247 }
248 
249 /* The ravenscar_reg_info for E500 targets. */
250 
251 static const struct ravenscar_reg_info e500_reg_info =
252 {
254  ARRAY_SIZE (e500_context_offsets),
255 };
256 
257 /* Implement the to_fetch_registers ravenscar_arch_ops method
258  for E500 targets. */
259 
260 static void
262 {
264 }
265 
266 /* Implement the to_store_registers ravenscar_arch_ops method
267  for E500 targets. */
268 
269 static void
271 {
273 }
274 
275 /* The ravenscar_arch_ops vector for E500 targets. */
276 
278 {
282 };
283 
284 /* Register ppc_ravenscar_e500_ops in GDBARCH. */
285 
286 void
288 {
290 }
int num_regs
Definition: gdbarch.c:200
static void ppc_ravenscar_e500_fetch_registers(struct regcache *regcache, int regnum)
bfd_vma CORE_ADDR
Definition: common-types.h:41
static void ppc_ravenscar_generic_fetch_registers(const struct ravenscar_reg_info *reg_info, struct regcache *regcache, int regnum)
static struct ravenscar_arch_ops ppc_ravenscar_powerpc_ops
static void ppc_ravenscar_generic_store_registers(const struct ravenscar_reg_info *reg_info, struct regcache *regcache, int regnum)
static void ppc_ravenscar_generic_prepare_to_store(struct regcache *regcache)
void set_gdbarch_ravenscar_ops(struct gdbarch *gdbarch, struct ravenscar_arch_ops *ravenscar_ops)
Definition: gdbarch.c:4846
static void supply_register_at_address(struct regcache *regcache, int regnum, CORE_ADDR register_addr)
int gdbarch_num_regs(struct gdbarch *gdbarch)
Definition: gdbarch.c:2039
static void ppc_ravenscar_e500_store_registers(struct regcache *regcache, int regnum)
static void ppc_ravenscar_powerpc_store_registers(struct regcache *regcache, int regnum)
#define NO_OFFSET
void register_e500_ravenscar_ops(struct gdbarch *gdbarch)
long ptid_get_tid(const ptid_t &ptid)
Definition: ptid.c:63
int regnum
Definition: aarch64-tdep.c:77
void read_memory(CORE_ADDR memaddr, gdb_byte *myaddr, ssize_t len)
Definition: corefile.c:258
bfd_byte gdb_byte
Definition: common-types.h:38
static struct ravenscar_arch_ops ppc_ravenscar_e500_ops
static int register_in_thread_descriptor_p(const struct ravenscar_reg_info *reg_info, int regnum)
ptid_t inferior_ptid
Definition: infcmd.c:94
static const int e500_context_offsets[]
gdbarch * arch() const
Definition: regcache.c:221
void regcache_raw_supply(struct regcache *regcache, int regnum, const void *buf)
Definition: regcache.c:1004
unsigned long long ULONGEST
Definition: common-types.h:53
int register_size(struct gdbarch *gdbarch, int regnum)
Definition: regcache.c:164
void register_ppc_ravenscar_ops(struct gdbarch *gdbarch)
void regcache_raw_collect(const struct regcache *regcache, int regnum, void *buf)
Definition: regcache.c:1085
void write_memory(CORE_ADDR memaddr, const bfd_byte *myaddr, ssize_t len)
Definition: corefile.c:394
static void ppc_ravenscar_powerpc_fetch_registers(struct regcache *regcache, int regnum)
static const struct ravenscar_reg_info ppc_reg_info
static const struct ravenscar_reg_info e500_reg_info
static const int powerpc_context_offsets[]