gdbserver:prepare_access_memory: pick another thread
[deliverable/binutils-gdb.git] / gdb / gdbserver / regcache.h
CommitLineData
0a30fbc4 1/* Register support routines for the remote server for GDB.
32d0add0 2 Copyright (C) 2001-2015 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#ifndef REGCACHE_H
20#define REGCACHE_H
21
361c8ade
GB
22#include "common-regcache.h"
23
442ea881 24struct thread_info;
3aee8918 25struct target_desc;
442ea881 26
1c79eb8a
PA
27/* The register exists, it has a value, but we don't know what it is.
28 Used when inspecting traceframes. */
29#define REG_UNAVAILABLE 0
30
31/* We know the register's value (and we have it cached). */
32#define REG_VALID 1
33
442ea881
PA
34/* The data for the register cache. Note that we have one per
35 inferior; this is primarily for simplicity, as the performance
36 benefit is minimal. */
37
38struct regcache
39{
3aee8918
PA
40 /* The regcache's target description. */
41 const struct target_desc *tdesc;
42
1c79eb8a
PA
43 /* Whether the REGISTERS buffer's contents are valid. If false, we
44 haven't fetched the registers from the target yet. Not that this
45 register cache is _not_ pass-through, unlike GDB's. Note that
46 "valid" here is unrelated to whether the registers are available
47 in a traceframe. For that, check REGISTER_STATUS below. */
442ea881 48 int registers_valid;
219f2f23 49 int registers_owned;
442ea881 50 unsigned char *registers;
1c79eb8a
PA
51#ifndef IN_PROCESS_AGENT
52 /* One of REG_UNAVAILBLE or REG_VALID. */
53 unsigned char *register_status;
54#endif
442ea881 55};
d06f167a 56
219f2f23 57struct regcache *init_register_cache (struct regcache *regcache,
3aee8918 58 const struct target_desc *tdesc,
219f2f23
PA
59 unsigned char *regbuf);
60
61void regcache_cpy (struct regcache *dst, struct regcache *src);
62
c04a1aa8
DJ
63/* Create a new register cache for INFERIOR. */
64
3aee8918 65struct regcache *new_register_cache (const struct target_desc *tdesc);
442ea881
PA
66
67struct regcache *get_thread_regcache (struct thread_info *thread, int fetch);
c04a1aa8
DJ
68
69/* Release all memory associated with the register cache for INFERIOR. */
70
442ea881 71void free_register_cache (struct regcache *regcache);
0d62e5e8 72
3aee8918
PA
73/* Invalidate cached registers for one thread. */
74
75void regcache_invalidate_thread (struct thread_info *);
76
80d82c19
JB
77/* Invalidate cached registers for all threads of the given process. */
78
79void regcache_invalidate_pid (int pid);
80
3aee8918
PA
81/* Invalidate cached registers for all threads of the current
82 process. */
0d62e5e8 83
0d62e5e8 84void regcache_invalidate (void);
c04a1aa8 85
3aee8918
PA
86/* Invalidate and release the register cache of all threads of the
87 current process. */
88
89void regcache_release (void);
90
0a30fbc4
DJ
91/* Convert all registers to a string in the currently specified remote
92 format. */
93
442ea881 94void registers_to_string (struct regcache *regcache, char *buf);
0a30fbc4
DJ
95
96/* Convert a string to register values and fill our register cache. */
97
442ea881 98void registers_from_string (struct regcache *regcache, char *buf);
0a30fbc4 99
361c8ade 100/* For regcache_read_pc see common/common-regcache.h. */
219f2f23
PA
101
102void regcache_write_pc (struct regcache *regcache, CORE_ADDR pc);
103
0a30fbc4
DJ
104/* Return a pointer to the description of register ``n''. */
105
3aee8918 106struct reg *find_register_by_number (const struct target_desc *tdesc, int n);
0a30fbc4 107
3aee8918 108int register_cache_size (const struct target_desc *tdesc);
219f2f23 109
3aee8918 110int register_size (const struct target_desc *tdesc, int n);
0a30fbc4 111
3aee8918 112int find_regno (const struct target_desc *tdesc, const char *name);
0a30fbc4 113
442ea881 114void supply_register (struct regcache *regcache, int n, const void *buf);
0729219d 115
1c79eb8a
PA
116void supply_register_zeroed (struct regcache *regcache, int n);
117
442ea881
PA
118void supply_register_by_name (struct regcache *regcache,
119 const char *name, const void *buf);
0729219d 120
219f2f23
PA
121void supply_regblock (struct regcache *regcache, const void *buf);
122
442ea881 123void collect_register (struct regcache *regcache, int n, void *buf);
0729219d 124
442ea881 125void collect_register_as_string (struct regcache *regcache, int n, char *buf);
0d62e5e8 126
493e2a69
MS
127void collect_register_by_name (struct regcache *regcache,
128 const char *name, void *buf);
0729219d 129
0a30fbc4 130#endif /* REGCACHE_H */
This page took 1.00864 seconds and 4 git commands to generate.