Remove features/i386/i386-*linux.c
[deliverable/binutils-gdb.git] / gdb / gdbserver / regcache.c
CommitLineData
0a30fbc4 1/* Register support routines for the remote server for GDB.
61baf725 2 Copyright (C) 2001-2017 Free Software Foundation, Inc.
0a30fbc4
DJ
3
4 This file is part of GDB.
5
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
a9762ec7 8 the Free Software Foundation; either version 3 of the License, or
0a30fbc4
DJ
9 (at your option) any later version.
10
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
a9762ec7 17 along with this program. If not, see <http://www.gnu.org/licenses/>. */
0a30fbc4
DJ
18
19#include "server.h"
20#include "regdef.h"
623b6bdf 21#include "gdbthread.h"
3aee8918 22#include "tdesc.h"
9c3d6531 23#include "rsp-low.h"
fa593d66
PA
24#ifndef IN_PROCESS_AGENT
25
442ea881
PA
26struct regcache *
27get_thread_regcache (struct thread_info *thread, int fetch)
c04a1aa8 28{
442ea881 29 struct regcache *regcache;
c04a1aa8 30
6afd337d 31 regcache = thread_regcache_data (thread);
c04a1aa8 32
3aee8918
PA
33 /* Threads' regcaches are created lazily, because biarch targets add
34 the main thread/lwp before seeing it stop for the first time, and
35 it is only after the target sees the thread stop for the first
36 time that the target has a chance of determining the process's
37 architecture. IOW, when we first add the process's main thread
38 we don't know which architecture/tdesc its regcache should
39 have. */
c04a1aa8 40 if (regcache == NULL)
3aee8918
PA
41 {
42 struct process_info *proc = get_thread_process (thread);
43
38e08fca 44 gdb_assert (proc->tdesc != NULL);
3aee8918
PA
45
46 regcache = new_register_cache (proc->tdesc);
6afd337d 47 set_thread_regcache_data (thread, regcache);
3aee8918 48 }
c04a1aa8 49
0d62e5e8
DJ
50 if (fetch && regcache->registers_valid == 0)
51 {
0bfdf32f 52 struct thread_info *saved_thread = current_thread;
442ea881 53
0bfdf32f 54 current_thread = thread;
098dbe61
AA
55 /* Invalidate all registers, to prevent stale left-overs. */
56 memset (regcache->register_status, REG_UNAVAILABLE,
f7000548 57 VEC_length (tdesc_reg_p, regcache->tdesc->reg_defs));
442ea881 58 fetch_inferior_registers (regcache, -1);
0bfdf32f 59 current_thread = saved_thread;
0d62e5e8
DJ
60 regcache->registers_valid = 1;
61 }
62
c04a1aa8
DJ
63 return regcache;
64}
65
361c8ade
GB
66/* See common/common-regcache.h. */
67
68struct regcache *
69get_thread_regcache_for_ptid (ptid_t ptid)
70{
71 return get_thread_regcache (find_thread_ptid (ptid), 1);
72}
73
0d62e5e8 74void
3aee8918 75regcache_invalidate_thread (struct thread_info *thread)
0d62e5e8 76{
442ea881 77 struct regcache *regcache;
0d62e5e8 78
6afd337d 79 regcache = thread_regcache_data (thread);
0d62e5e8 80
45ba0d02
PA
81 if (regcache == NULL)
82 return;
83
0d62e5e8
DJ
84 if (regcache->registers_valid)
85 {
0bfdf32f 86 struct thread_info *saved_thread = current_thread;
0d62e5e8 87
0bfdf32f 88 current_thread = thread;
442ea881 89 store_inferior_registers (regcache, -1);
0bfdf32f 90 current_thread = saved_thread;
0d62e5e8
DJ
91 }
92
93 regcache->registers_valid = 0;
94}
95
3aee8918
PA
96static int
97regcache_invalidate_one (struct inferior_list_entry *entry,
98 void *pid_p)
99{
100 struct thread_info *thread = (struct thread_info *) entry;
101 int pid = *(int *) pid_p;
102
103 /* Only invalidate the regcaches of threads of this process. */
104 if (ptid_get_pid (entry->id) == pid)
105 regcache_invalidate_thread (thread);
106
107 return 0;
108}
109
80d82c19
JB
110/* See regcache.h. */
111
112void
113regcache_invalidate_pid (int pid)
114{
115 find_inferior (&all_threads, regcache_invalidate_one, &pid);
116}
117
118/* See regcache.h. */
119
0d62e5e8 120void
442ea881 121regcache_invalidate (void)
0d62e5e8 122{
3aee8918 123 /* Only update the threads of the current process. */
0bfdf32f 124 int pid = ptid_get_pid (current_thread->entry.id);
3aee8918 125
80d82c19 126 regcache_invalidate_pid (pid);
0d62e5e8
DJ
127}
128
fa593d66
PA
129#endif
130
219f2f23 131struct regcache *
3aee8918
PA
132init_register_cache (struct regcache *regcache,
133 const struct target_desc *tdesc,
134 unsigned char *regbuf)
219f2f23
PA
135{
136 if (regbuf == NULL)
137 {
87f6c4e3 138#ifndef IN_PROCESS_AGENT
219f2f23
PA
139 /* Make sure to zero-initialize the register cache when it is
140 created, in case there are registers the target never
141 fetches. This way they'll read as zero instead of
142 garbage. */
3aee8918 143 regcache->tdesc = tdesc;
224c3ddb
SM
144 regcache->registers
145 = (unsigned char *) xcalloc (1, tdesc->registers_size);
219f2f23 146 regcache->registers_owned = 1;
224c3ddb 147 regcache->register_status
f7000548 148 = (unsigned char *) xmalloc (VEC_length (tdesc_reg_p, tdesc->reg_defs));
68ce2059 149 memset ((void *) regcache->register_status, REG_UNAVAILABLE,
f7000548 150 VEC_length (tdesc_reg_p, tdesc->reg_defs));
fa593d66 151#else
38e08fca 152 gdb_assert_not_reached ("can't allocate memory from the heap");
fa593d66 153#endif
87f6c4e3
GB
154 }
155 else
219f2f23 156 {
3aee8918 157 regcache->tdesc = tdesc;
219f2f23
PA
158 regcache->registers = regbuf;
159 regcache->registers_owned = 0;
1c79eb8a
PA
160#ifndef IN_PROCESS_AGENT
161 regcache->register_status = NULL;
162#endif
219f2f23
PA
163 }
164
165 regcache->registers_valid = 0;
166
167 return regcache;
168}
169
fa593d66
PA
170#ifndef IN_PROCESS_AGENT
171
442ea881 172struct regcache *
3aee8918 173new_register_cache (const struct target_desc *tdesc)
c04a1aa8 174{
8d749320 175 struct regcache *regcache = XCNEW (struct regcache);
c04a1aa8 176
3aee8918 177 gdb_assert (tdesc->registers_size != 0);
5822d809 178
3aee8918 179 return init_register_cache (regcache, tdesc, NULL);
c04a1aa8
DJ
180}
181
182void
442ea881 183free_register_cache (struct regcache *regcache)
c04a1aa8 184{
5822d809
PA
185 if (regcache)
186 {
fa593d66
PA
187 if (regcache->registers_owned)
188 free (regcache->registers);
1c79eb8a 189 free (regcache->register_status);
5822d809
PA
190 free (regcache);
191 }
c04a1aa8
DJ
192}
193
fa593d66
PA
194#endif
195
219f2f23
PA
196void
197regcache_cpy (struct regcache *dst, struct regcache *src)
198{
3aee8918
PA
199 gdb_assert (src != NULL && dst != NULL);
200 gdb_assert (src->tdesc == dst->tdesc);
201 gdb_assert (src != dst);
202
203 memcpy (dst->registers, src->registers, src->tdesc->registers_size);
1c79eb8a
PA
204#ifndef IN_PROCESS_AGENT
205 if (dst->register_status != NULL && src->register_status != NULL)
3aee8918 206 memcpy (dst->register_status, src->register_status,
f7000548 207 VEC_length (tdesc_reg_p, src->tdesc->reg_defs));
1c79eb8a 208#endif
219f2f23
PA
209 dst->registers_valid = src->registers_valid;
210}
211
219f2f23 212
fa593d66
PA
213#ifndef IN_PROCESS_AGENT
214
0a30fbc4 215void
442ea881 216registers_to_string (struct regcache *regcache, char *buf)
0a30fbc4 217{
442ea881 218 unsigned char *registers = regcache->registers;
3aee8918 219 const struct target_desc *tdesc = regcache->tdesc;
1c79eb8a 220 int i;
f7000548 221 reg *reg;
c04a1aa8 222
f7000548 223 for (i = 0; VEC_iterate (tdesc_reg_p, tdesc->reg_defs, i, reg); i++)
1c79eb8a
PA
224 {
225 if (regcache->register_status[i] == REG_VALID)
226 {
e9371aff 227 bin2hex (registers, buf, register_size (tdesc, i));
3aee8918 228 buf += register_size (tdesc, i) * 2;
1c79eb8a
PA
229 }
230 else
231 {
3aee8918
PA
232 memset (buf, 'x', register_size (tdesc, i) * 2);
233 buf += register_size (tdesc, i) * 2;
1c79eb8a 234 }
3aee8918 235 registers += register_size (tdesc, i);
1c79eb8a
PA
236 }
237 *buf = '\0';
0a30fbc4
DJ
238}
239
240void
442ea881 241registers_from_string (struct regcache *regcache, char *buf)
0a30fbc4
DJ
242{
243 int len = strlen (buf);
442ea881 244 unsigned char *registers = regcache->registers;
3aee8918 245 const struct target_desc *tdesc = regcache->tdesc;
0a30fbc4 246
3aee8918 247 if (len != tdesc->registers_size * 2)
0a30fbc4 248 {
1b3f6016 249 warning ("Wrong sized register packet (expected %d bytes, got %d)",
3aee8918
PA
250 2 * tdesc->registers_size, len);
251 if (len > tdesc->registers_size * 2)
252 len = tdesc->registers_size * 2;
0a30fbc4 253 }
a7191e8b 254 hex2bin (buf, registers, len / 2);
0a30fbc4
DJ
255}
256
0a30fbc4 257int
3aee8918 258find_regno (const struct target_desc *tdesc, const char *name)
0a30fbc4
DJ
259{
260 int i;
f7000548 261 reg *reg;
0a30fbc4 262
f7000548
YQ
263 for (i = 0; VEC_iterate (tdesc_reg_p, tdesc->reg_defs, i, reg); i++)
264 if (strcmp (name, reg->name) == 0)
0a30fbc4 265 return i;
38e08fca
GB
266 internal_error (__FILE__, __LINE__, "Unknown register %s requested",
267 name);
0a30fbc4
DJ
268}
269
f7000548
YQ
270#endif
271
0a30fbc4 272struct reg *
3aee8918 273find_register_by_number (const struct target_desc *tdesc, int n)
0a30fbc4 274{
f7000548 275 return VEC_index (tdesc_reg_p, tdesc->reg_defs, n);
0a30fbc4
DJ
276}
277
3aee8918
PA
278#ifndef IN_PROCESS_AGENT
279static void
280free_register_cache_thread (struct thread_info *thread)
281{
6afd337d 282 struct regcache *regcache = thread_regcache_data (thread);
3aee8918
PA
283
284 if (regcache != NULL)
285 {
286 regcache_invalidate_thread (thread);
287 free_register_cache (regcache);
6afd337d 288 set_thread_regcache_data (thread, NULL);
3aee8918
PA
289 }
290}
291
292static void
293free_register_cache_thread_one (struct inferior_list_entry *entry)
294{
295 struct thread_info *thread = (struct thread_info *) entry;
296
297 free_register_cache_thread (thread);
298}
299
300void
301regcache_release (void)
302{
303 /* Flush and release all pre-existing register caches. */
304 for_each_inferior (&all_threads, free_register_cache_thread_one);
305}
306#endif
307
0a30fbc4 308int
3aee8918 309register_cache_size (const struct target_desc *tdesc)
0a30fbc4 310{
3aee8918
PA
311 return tdesc->registers_size;
312}
313
314int
315register_size (const struct target_desc *tdesc, int n)
316{
f7000548 317 return find_register_by_number (tdesc, n)->size / 8;
0a30fbc4
DJ
318}
319
8d689ee5
YQ
320/* See common/common-regcache.h. */
321
322int
323regcache_register_size (const struct regcache *regcache, int n)
324{
325 return register_size (regcache->tdesc, n);
326}
327
f450004a 328static unsigned char *
442ea881 329register_data (struct regcache *regcache, int n, int fetch)
0a30fbc4 330{
f7000548
YQ
331 return (regcache->registers
332 + find_register_by_number (regcache->tdesc, n)->offset / 8);
0a30fbc4
DJ
333}
334
1c79eb8a
PA
335/* Supply register N, whose contents are stored in BUF, to REGCACHE.
336 If BUF is NULL, the register's value is recorded as
337 unavailable. */
338
58caa3dc 339void
442ea881 340supply_register (struct regcache *regcache, int n, const void *buf)
58caa3dc 341{
3327ccf7 342 if (buf)
1c79eb8a 343 {
3aee8918
PA
344 memcpy (register_data (regcache, n, 0), buf,
345 register_size (regcache->tdesc, n));
1c79eb8a
PA
346#ifndef IN_PROCESS_AGENT
347 if (regcache->register_status != NULL)
348 regcache->register_status[n] = REG_VALID;
349#endif
350 }
3327ccf7 351 else
1c79eb8a 352 {
3aee8918
PA
353 memset (register_data (regcache, n, 0), 0,
354 register_size (regcache->tdesc, n));
1c79eb8a
PA
355#ifndef IN_PROCESS_AGENT
356 if (regcache->register_status != NULL)
357 regcache->register_status[n] = REG_UNAVAILABLE;
358#endif
359 }
58caa3dc
DJ
360}
361
1c79eb8a
PA
362/* Supply register N with value zero to REGCACHE. */
363
364void
365supply_register_zeroed (struct regcache *regcache, int n)
366{
3aee8918
PA
367 memset (register_data (regcache, n, 0), 0,
368 register_size (regcache->tdesc, n));
1c79eb8a
PA
369#ifndef IN_PROCESS_AGENT
370 if (regcache->register_status != NULL)
371 regcache->register_status[n] = REG_VALID;
372#endif
373}
374
375/* Supply the whole register set whose contents are stored in BUF, to
376 REGCACHE. If BUF is NULL, all the registers' values are recorded
377 as unavailable. */
378
219f2f23
PA
379void
380supply_regblock (struct regcache *regcache, const void *buf)
381{
382 if (buf)
1c79eb8a 383 {
3aee8918
PA
384 const struct target_desc *tdesc = regcache->tdesc;
385
386 memcpy (regcache->registers, buf, tdesc->registers_size);
1c79eb8a
PA
387#ifndef IN_PROCESS_AGENT
388 {
389 int i;
390
f7000548 391 for (i = 0; i < VEC_length (tdesc_reg_p, tdesc->reg_defs); i++)
1c79eb8a
PA
392 regcache->register_status[i] = REG_VALID;
393 }
394#endif
395 }
219f2f23 396 else
1c79eb8a 397 {
3aee8918
PA
398 const struct target_desc *tdesc = regcache->tdesc;
399
400 memset (regcache->registers, 0, tdesc->registers_size);
1c79eb8a
PA
401#ifndef IN_PROCESS_AGENT
402 {
403 int i;
404
f7000548 405 for (i = 0; i < VEC_length (tdesc_reg_p, tdesc->reg_defs); i++)
1c79eb8a
PA
406 regcache->register_status[i] = REG_UNAVAILABLE;
407 }
408#endif
409 }
219f2f23
PA
410}
411
fa593d66
PA
412#ifndef IN_PROCESS_AGENT
413
58caa3dc 414void
442ea881
PA
415supply_register_by_name (struct regcache *regcache,
416 const char *name, const void *buf)
58caa3dc 417{
3aee8918 418 supply_register (regcache, find_regno (regcache->tdesc, name), buf);
58caa3dc
DJ
419}
420
fa593d66
PA
421#endif
422
58caa3dc 423void
442ea881 424collect_register (struct regcache *regcache, int n, void *buf)
58caa3dc 425{
3aee8918
PA
426 memcpy (buf, register_data (regcache, n, 1),
427 register_size (regcache->tdesc, n));
0d62e5e8
DJ
428}
429
68ce2059
AT
430enum register_status
431regcache_raw_read_unsigned (struct regcache *regcache, int regnum,
432 ULONGEST *val)
433{
434 int size;
435
436 gdb_assert (regcache != NULL);
f7000548
YQ
437 gdb_assert (regnum >= 0
438 && regnum < VEC_length (tdesc_reg_p, regcache->tdesc->reg_defs));
68ce2059
AT
439
440 size = register_size (regcache->tdesc, regnum);
441
442 if (size > (int) sizeof (ULONGEST))
443 error (_("That operation is not available on integers of more than"
444 "%d bytes."),
445 (int) sizeof (ULONGEST));
446
9f6a71b4 447 *val = 0;
68ce2059
AT
448 collect_register (regcache, regnum, val);
449
450 return REG_VALID;
451}
452
fa593d66
PA
453#ifndef IN_PROCESS_AGENT
454
0d62e5e8 455void
442ea881 456collect_register_as_string (struct regcache *regcache, int n, char *buf)
0d62e5e8 457{
e9371aff
TT
458 bin2hex (register_data (regcache, n, 1), buf,
459 register_size (regcache->tdesc, n));
58caa3dc
DJ
460}
461
462void
442ea881
PA
463collect_register_by_name (struct regcache *regcache,
464 const char *name, void *buf)
58caa3dc 465{
3aee8918 466 collect_register (regcache, find_regno (regcache->tdesc, name), buf);
58caa3dc 467}
219f2f23
PA
468
469/* Special handling for register PC. */
470
471CORE_ADDR
472regcache_read_pc (struct regcache *regcache)
473{
474 CORE_ADDR pc_val;
475
476 if (the_target->read_pc)
477 pc_val = the_target->read_pc (regcache);
478 else
479 internal_error (__FILE__, __LINE__,
480 "regcache_read_pc: Unable to find PC");
481
482 return pc_val;
483}
484
485void
486regcache_write_pc (struct regcache *regcache, CORE_ADDR pc)
487{
488 if (the_target->write_pc)
489 the_target->write_pc (regcache, pc);
490 else
491 internal_error (__FILE__, __LINE__,
492 "regcache_write_pc: Unable to update PC");
493}
fa593d66
PA
494
495#endif
This page took 1.13451 seconds and 4 git commands to generate.