~ubuntu-branches/ubuntu/karmic/insight/karmic

« back to all changes in this revision

Viewing changes to gdb/user-regs.h

  • Committer: Bazaar Package Importer
  • Author(s): Masayuki Hatta (mhatta)
  • Date: 2007-12-04 22:37:09 UTC
  • mfrom: (1.2.5 upstream)
  • Revision ID: james.westby@ubuntu.com-20071204223709-jxj396d1ox92s8ox
Tags: 6.7.1.dfsg.1-1
* New upstream release.
* This typo has been fixed in the upstream - closes: #314037.
* Removed non-free documents (GFDL'd with Invariant Sections, etc.).

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/* Per-frame user registers, for GDB, the GNU debugger.
2
2
 
3
 
   Copyright (C) 2002, 2003 Free Software Foundation, Inc.
 
3
   Copyright (C) 2002, 2003, 2007 Free Software Foundation, Inc.
4
4
 
5
5
   Contributed by Red Hat.
6
6
 
8
8
 
9
9
   This program is free software; you can redistribute it and/or modify
10
10
   it under the terms of the GNU General Public License as published by
11
 
   the Free Software Foundation; either version 2 of the License, or
 
11
   the Free Software Foundation; either version 3 of the License, or
12
12
   (at your option) any later version.
13
13
 
14
14
   This program is distributed in the hope that it will be useful,
17
17
   GNU General Public License for more details.
18
18
 
19
19
   You should have received a copy of the GNU General Public License
20
 
   along with this program; if not, write to the Free Software
21
 
   Foundation, Inc., 51 Franklin Street, Fifth Floor,
22
 
   Boston, MA 02110-1301, USA.  */
 
20
   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
23
21
 
24
22
#ifndef USER_REGS_H
25
23
#define USER_REGS_H
31
29
   specific registers are present when the architecture is selected.
32
30
 
33
31
   These registers are assigned register numbers outside the
34
 
   architecture's register range [0 .. NUM_REGS + NUM_PSEUDO_REGS).
 
32
   architecture's register range
 
33
   [0 .. gdbarch_num_regs + gdbarch_num_pseudo_regs].
35
34
   Their values should be constructed using per-frame information.  */
36
35
 
37
36
/* TODO: cagney/2003-06-27: Need to think more about how these
57
56
   bytes as, at the time the register is being added, the type needed
58
57
   to describe the register has not bee initialized.  */
59
58
 
60
 
typedef struct value *(user_reg_read_ftype) (struct frame_info *frame);
 
59
typedef struct value *(user_reg_read_ftype) (struct frame_info *frame,
 
60
                                             const void *baton);
61
61
extern struct value *value_of_user_reg (int regnum, struct frame_info *frame);
62
62
 
63
63
/* Add a builtin register (present in all architectures).  */
64
64
extern void user_reg_add_builtin (const char *name,
65
 
                                  user_reg_read_ftype *read);
 
65
                                  user_reg_read_ftype *read, const void *baton);
66
66
 
67
67
/* Add a per-architecture frame register.  */
68
68
extern void user_reg_add (struct gdbarch *gdbarch, const char *name, 
69
 
                          user_reg_read_ftype *read);
 
69
                          user_reg_read_ftype *read, const void *baton);
70
70
 
71
71
#endif