2002-04-20 Daniel Jacobowitz <drow@mvista.com>
[deliverable/binutils-gdb.git] / gdb / gdbserver / regcache.h
CommitLineData
0a30fbc4
DJ
1/* Register support routines for the remote server for GDB.
2 Copyright 2001, 2002 Free Software Foundation, Inc.
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
8 the Free Software Foundation; either version 2 of the License, or
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
17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 59 Temple Place - Suite 330,
19 Boston, MA 02111-1307, USA. */
20
21#ifndef REGCACHE_H
22#define REGCACHE_H
23
24/* Convert all registers to a string in the currently specified remote
25 format. */
26
27void registers_to_string (char *buf);
28
29/* Convert a string to register values and fill our register cache. */
30
31void registers_from_string (char *buf);
32
33/* Return the size in bytes of a string-encoded register packet. */
34
35int registers_length (void);
36
37/* Return a pointer to the description of register ``n''. */
38
39struct reg *find_register_by_number (int n);
40
41char *register_data (int n);
42
43int register_size (int n);
44
45int find_regno (const char *name);
46
47extern const char **gdbserver_expedite_regs;
48
0729219d
DJ
49void supply_register (int n, const void *buf);
50
51void supply_register_by_name (const char *name, const void *buf);
52
53void collect_register (int n, void *buf);
54
55void collect_register_by_name (const char *name, void *buf);
56
0a30fbc4 57#endif /* REGCACHE_H */
This page took 0.039959 seconds and 4 git commands to generate.