replace hexify with bin2hex
[deliverable/binutils-gdb.git] / gdb / gdbserver / regcache.c
CommitLineData
0a30fbc4 1/* Register support routines for the remote server for GDB.
ecd75fc8 2 Copyright (C) 2001-2014 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"
0a30fbc4
DJ
24
25#include <stdlib.h>
26#include <string.h>
27
fa593d66
PA
28#ifndef IN_PROCESS_AGENT
29
442ea881
PA
30struct regcache *
31get_thread_regcache (struct thread_info *thread, int fetch)
c04a1aa8 32{
442ea881 33 struct regcache *regcache;
c04a1aa8 34
442ea881 35 regcache = (struct regcache *) inferior_regcache_data (thread);
c04a1aa8 36
3aee8918
PA
37 /* Threads' regcaches are created lazily, because biarch targets add
38 the main thread/lwp before seeing it stop for the first time, and
39 it is only after the target sees the thread stop for the first
40 time that the target has a chance of determining the process's
41 architecture. IOW, when we first add the process's main thread
42 we don't know which architecture/tdesc its regcache should
43 have. */
c04a1aa8 44 if (regcache == NULL)
3aee8918
PA
45 {
46 struct process_info *proc = get_thread_process (thread);
47
48 if (proc->tdesc == NULL)
49 fatal ("no target description");
50
51 regcache = new_register_cache (proc->tdesc);
52 set_inferior_regcache_data (thread, regcache);
53 }
c04a1aa8 54
0d62e5e8
DJ
55 if (fetch && regcache->registers_valid == 0)
56 {
442ea881
PA
57 struct thread_info *saved_inferior = current_inferior;
58
59 current_inferior = thread;
60 fetch_inferior_registers (regcache, -1);
61 current_inferior = saved_inferior;
0d62e5e8
DJ
62 regcache->registers_valid = 1;
63 }
64
c04a1aa8
DJ
65 return regcache;
66}
67
0d62e5e8 68void
3aee8918 69regcache_invalidate_thread (struct thread_info *thread)
0d62e5e8 70{
442ea881 71 struct regcache *regcache;
0d62e5e8 72
442ea881 73 regcache = (struct regcache *) inferior_regcache_data (thread);
0d62e5e8 74
45ba0d02
PA
75 if (regcache == NULL)
76 return;
77
0d62e5e8
DJ
78 if (regcache->registers_valid)
79 {
80 struct thread_info *saved_inferior = current_inferior;
81
82 current_inferior = thread;
442ea881 83 store_inferior_registers (regcache, -1);
0d62e5e8
DJ
84 current_inferior = saved_inferior;
85 }
86
87 regcache->registers_valid = 0;
88}
89
3aee8918
PA
90static int
91regcache_invalidate_one (struct inferior_list_entry *entry,
92 void *pid_p)
93{
94 struct thread_info *thread = (struct thread_info *) entry;
95 int pid = *(int *) pid_p;
96
97 /* Only invalidate the regcaches of threads of this process. */
98 if (ptid_get_pid (entry->id) == pid)
99 regcache_invalidate_thread (thread);
100
101 return 0;
102}
103
0d62e5e8 104void
442ea881 105regcache_invalidate (void)
0d62e5e8 106{
3aee8918
PA
107 /* Only update the threads of the current process. */
108 int pid = ptid_get_pid (current_inferior->entry.id);
109
110 find_inferior (&all_threads, regcache_invalidate_one, &pid);
0d62e5e8
DJ
111}
112
fa593d66
PA
113#endif
114
219f2f23 115struct regcache *
3aee8918
PA
116init_register_cache (struct regcache *regcache,
117 const struct target_desc *tdesc,
118 unsigned char *regbuf)
219f2f23 119{
fa593d66 120#ifndef IN_PROCESS_AGENT
219f2f23
PA
121 if (regbuf == NULL)
122 {
123 /* Make sure to zero-initialize the register cache when it is
124 created, in case there are registers the target never
125 fetches. This way they'll read as zero instead of
126 garbage. */
3aee8918
PA
127 regcache->tdesc = tdesc;
128 regcache->registers = xcalloc (1, tdesc->registers_size);
219f2f23 129 regcache->registers_owned = 1;
3aee8918 130 regcache->register_status = xcalloc (1, tdesc->num_registers);
1c79eb8a 131 gdb_assert (REG_UNAVAILABLE == 0);
219f2f23
PA
132 }
133 else
fa593d66
PA
134#else
135 if (regbuf == NULL)
136 fatal ("init_register_cache: can't allocate memory from the heap");
137 else
138#endif
219f2f23 139 {
3aee8918 140 regcache->tdesc = tdesc;
219f2f23
PA
141 regcache->registers = regbuf;
142 regcache->registers_owned = 0;
1c79eb8a
PA
143#ifndef IN_PROCESS_AGENT
144 regcache->register_status = NULL;
145#endif
219f2f23
PA
146 }
147
148 regcache->registers_valid = 0;
149
150 return regcache;
151}
152
fa593d66
PA
153#ifndef IN_PROCESS_AGENT
154
442ea881 155struct regcache *
3aee8918 156new_register_cache (const struct target_desc *tdesc)
c04a1aa8 157{
442ea881 158 struct regcache *regcache;
c04a1aa8 159
3aee8918 160 gdb_assert (tdesc->registers_size != 0);
5822d809 161
bca929d3 162 regcache = xmalloc (sizeof (*regcache));
3aee8918 163 return init_register_cache (regcache, tdesc, NULL);
c04a1aa8
DJ
164}
165
166void
442ea881 167free_register_cache (struct regcache *regcache)
c04a1aa8 168{
5822d809
PA
169 if (regcache)
170 {
fa593d66
PA
171 if (regcache->registers_owned)
172 free (regcache->registers);
1c79eb8a 173 free (regcache->register_status);
5822d809
PA
174 free (regcache);
175 }
c04a1aa8
DJ
176}
177
fa593d66
PA
178#endif
179
219f2f23
PA
180void
181regcache_cpy (struct regcache *dst, struct regcache *src)
182{
3aee8918
PA
183 gdb_assert (src != NULL && dst != NULL);
184 gdb_assert (src->tdesc == dst->tdesc);
185 gdb_assert (src != dst);
186
187 memcpy (dst->registers, src->registers, src->tdesc->registers_size);
1c79eb8a
PA
188#ifndef IN_PROCESS_AGENT
189 if (dst->register_status != NULL && src->register_status != NULL)
3aee8918
PA
190 memcpy (dst->register_status, src->register_status,
191 src->tdesc->num_registers);
1c79eb8a 192#endif
219f2f23
PA
193 dst->registers_valid = src->registers_valid;
194}
195
219f2f23 196
fa593d66
PA
197#ifndef IN_PROCESS_AGENT
198
0a30fbc4 199void
442ea881 200registers_to_string (struct regcache *regcache, char *buf)
0a30fbc4 201{
442ea881 202 unsigned char *registers = regcache->registers;
3aee8918 203 const struct target_desc *tdesc = regcache->tdesc;
1c79eb8a 204 int i;
c04a1aa8 205
3aee8918 206 for (i = 0; i < tdesc->num_registers; i++)
1c79eb8a
PA
207 {
208 if (regcache->register_status[i] == REG_VALID)
209 {
3aee8918
PA
210 convert_int_to_ascii (registers, buf,
211 register_size (tdesc, i));
212 buf += register_size (tdesc, i) * 2;
1c79eb8a
PA
213 }
214 else
215 {
3aee8918
PA
216 memset (buf, 'x', register_size (tdesc, i) * 2);
217 buf += register_size (tdesc, i) * 2;
1c79eb8a 218 }
3aee8918 219 registers += register_size (tdesc, i);
1c79eb8a
PA
220 }
221 *buf = '\0';
0a30fbc4
DJ
222}
223
224void
442ea881 225registers_from_string (struct regcache *regcache, char *buf)
0a30fbc4
DJ
226{
227 int len = strlen (buf);
442ea881 228 unsigned char *registers = regcache->registers;
3aee8918 229 const struct target_desc *tdesc = regcache->tdesc;
0a30fbc4 230
3aee8918 231 if (len != tdesc->registers_size * 2)
0a30fbc4 232 {
1b3f6016 233 warning ("Wrong sized register packet (expected %d bytes, got %d)",
3aee8918
PA
234 2 * tdesc->registers_size, len);
235 if (len > tdesc->registers_size * 2)
236 len = tdesc->registers_size * 2;
0a30fbc4
DJ
237 }
238 convert_ascii_to_int (buf, registers, len / 2);
239}
240
241struct reg *
3aee8918 242find_register_by_name (const struct target_desc *tdesc, const char *name)
0a30fbc4
DJ
243{
244 int i;
245
3aee8918
PA
246 for (i = 0; i < tdesc->num_registers; i++)
247 if (strcmp (name, tdesc->reg_defs[i].name) == 0)
248 return &tdesc->reg_defs[i];
0a30fbc4
DJ
249 fatal ("Unknown register %s requested", name);
250 return 0;
251}
252
253int
3aee8918 254find_regno (const struct target_desc *tdesc, const char *name)
0a30fbc4
DJ
255{
256 int i;
257
3aee8918
PA
258 for (i = 0; i < tdesc->num_registers; i++)
259 if (strcmp (name, tdesc->reg_defs[i].name) == 0)
0a30fbc4
DJ
260 return i;
261 fatal ("Unknown register %s requested", name);
262 return -1;
263}
264
265struct reg *
3aee8918 266find_register_by_number (const struct target_desc *tdesc, int n)
0a30fbc4 267{
3aee8918 268 return &tdesc->reg_defs[n];
0a30fbc4
DJ
269}
270
fa593d66
PA
271#endif
272
3aee8918
PA
273#ifndef IN_PROCESS_AGENT
274static void
275free_register_cache_thread (struct thread_info *thread)
276{
277 struct regcache *regcache
278 = (struct regcache *) inferior_regcache_data (thread);
279
280 if (regcache != NULL)
281 {
282 regcache_invalidate_thread (thread);
283 free_register_cache (regcache);
284 set_inferior_regcache_data (thread, NULL);
285 }
286}
287
288static void
289free_register_cache_thread_one (struct inferior_list_entry *entry)
290{
291 struct thread_info *thread = (struct thread_info *) entry;
292
293 free_register_cache_thread (thread);
294}
295
296void
297regcache_release (void)
298{
299 /* Flush and release all pre-existing register caches. */
300 for_each_inferior (&all_threads, free_register_cache_thread_one);
301}
302#endif
303
0a30fbc4 304int
3aee8918 305register_cache_size (const struct target_desc *tdesc)
0a30fbc4 306{
3aee8918
PA
307 return tdesc->registers_size;
308}
309
310int
311register_size (const struct target_desc *tdesc, int n)
312{
313 return tdesc->reg_defs[n].size / 8;
0a30fbc4
DJ
314}
315
f450004a 316static unsigned char *
442ea881 317register_data (struct regcache *regcache, int n, int fetch)
0a30fbc4 318{
3aee8918 319 return regcache->registers + regcache->tdesc->reg_defs[n].offset / 8;
0a30fbc4
DJ
320}
321
1c79eb8a
PA
322/* Supply register N, whose contents are stored in BUF, to REGCACHE.
323 If BUF is NULL, the register's value is recorded as
324 unavailable. */
325
58caa3dc 326void
442ea881 327supply_register (struct regcache *regcache, int n, const void *buf)
58caa3dc 328{
3327ccf7 329 if (buf)
1c79eb8a 330 {
3aee8918
PA
331 memcpy (register_data (regcache, n, 0), buf,
332 register_size (regcache->tdesc, n));
1c79eb8a
PA
333#ifndef IN_PROCESS_AGENT
334 if (regcache->register_status != NULL)
335 regcache->register_status[n] = REG_VALID;
336#endif
337 }
3327ccf7 338 else
1c79eb8a 339 {
3aee8918
PA
340 memset (register_data (regcache, n, 0), 0,
341 register_size (regcache->tdesc, n));
1c79eb8a
PA
342#ifndef IN_PROCESS_AGENT
343 if (regcache->register_status != NULL)
344 regcache->register_status[n] = REG_UNAVAILABLE;
345#endif
346 }
58caa3dc
DJ
347}
348
1c79eb8a
PA
349/* Supply register N with value zero to REGCACHE. */
350
351void
352supply_register_zeroed (struct regcache *regcache, int n)
353{
3aee8918
PA
354 memset (register_data (regcache, n, 0), 0,
355 register_size (regcache->tdesc, n));
1c79eb8a
PA
356#ifndef IN_PROCESS_AGENT
357 if (regcache->register_status != NULL)
358 regcache->register_status[n] = REG_VALID;
359#endif
360}
361
362/* Supply the whole register set whose contents are stored in BUF, to
363 REGCACHE. If BUF is NULL, all the registers' values are recorded
364 as unavailable. */
365
219f2f23
PA
366void
367supply_regblock (struct regcache *regcache, const void *buf)
368{
369 if (buf)
1c79eb8a 370 {
3aee8918
PA
371 const struct target_desc *tdesc = regcache->tdesc;
372
373 memcpy (regcache->registers, buf, tdesc->registers_size);
1c79eb8a
PA
374#ifndef IN_PROCESS_AGENT
375 {
376 int i;
377
3aee8918 378 for (i = 0; i < tdesc->num_registers; i++)
1c79eb8a
PA
379 regcache->register_status[i] = REG_VALID;
380 }
381#endif
382 }
219f2f23 383 else
1c79eb8a 384 {
3aee8918
PA
385 const struct target_desc *tdesc = regcache->tdesc;
386
387 memset (regcache->registers, 0, tdesc->registers_size);
1c79eb8a
PA
388#ifndef IN_PROCESS_AGENT
389 {
390 int i;
391
3aee8918 392 for (i = 0; i < tdesc->num_registers; i++)
1c79eb8a
PA
393 regcache->register_status[i] = REG_UNAVAILABLE;
394 }
395#endif
396 }
219f2f23
PA
397}
398
fa593d66
PA
399#ifndef IN_PROCESS_AGENT
400
58caa3dc 401void
442ea881
PA
402supply_register_by_name (struct regcache *regcache,
403 const char *name, const void *buf)
58caa3dc 404{
3aee8918 405 supply_register (regcache, find_regno (regcache->tdesc, name), buf);
58caa3dc
DJ
406}
407
fa593d66
PA
408#endif
409
58caa3dc 410void
442ea881 411collect_register (struct regcache *regcache, int n, void *buf)
58caa3dc 412{
3aee8918
PA
413 memcpy (buf, register_data (regcache, n, 1),
414 register_size (regcache->tdesc, n));
0d62e5e8
DJ
415}
416
fa593d66
PA
417#ifndef IN_PROCESS_AGENT
418
0d62e5e8 419void
442ea881 420collect_register_as_string (struct regcache *regcache, int n, char *buf)
0d62e5e8 421{
3aee8918
PA
422 convert_int_to_ascii (register_data (regcache, n, 1), buf,
423 register_size (regcache->tdesc, n));
58caa3dc
DJ
424}
425
426void
442ea881
PA
427collect_register_by_name (struct regcache *regcache,
428 const char *name, void *buf)
58caa3dc 429{
3aee8918 430 collect_register (regcache, find_regno (regcache->tdesc, name), buf);
58caa3dc 431}
219f2f23
PA
432
433/* Special handling for register PC. */
434
435CORE_ADDR
436regcache_read_pc (struct regcache *regcache)
437{
438 CORE_ADDR pc_val;
439
440 if (the_target->read_pc)
441 pc_val = the_target->read_pc (regcache);
442 else
443 internal_error (__FILE__, __LINE__,
444 "regcache_read_pc: Unable to find PC");
445
446 return pc_val;
447}
448
449void
450regcache_write_pc (struct regcache *regcache, CORE_ADDR pc)
451{
452 if (the_target->write_pc)
453 the_target->write_pc (regcache, pc);
454 else
455 internal_error (__FILE__, __LINE__,
456 "regcache_write_pc: Unable to update PC");
457}
fa593d66
PA
458
459#endif
This page took 1.473672 seconds and 4 git commands to generate.