1 /***************************************************************************
2 * Copyright (C) 2005 by Dominic Rath *
3 * Dominic.Rath@gmx.de *
5 * Copyright (C) 2007,2008 Øyvind Harboe *
6 * oyvind.harboe@zylin.com *
8 * This program is free software; you can redistribute it and/or modify *
9 * it under the terms of the GNU General Public License as published by *
10 * the Free Software Foundation; either version 2 of the License, or *
11 * (at your option) any later version. *
13 * This program is distributed in the hope that it will be useful, *
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
16 * GNU General Public License for more details. *
18 * You should have received a copy of the GNU General Public License *
19 * along with this program; if not, write to the *
20 * Free Software Foundation, Inc., *
21 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. *
22 ***************************************************************************/
46 REG_TYPE_ARCH_DEFINED
,
53 struct reg_data_type_vector
{
54 struct reg_data_type
*type
;
58 struct reg_data_type_union_field
{
60 struct reg_data_type
*type
;
61 struct reg_data_type_union_field
*next
;
64 struct reg_data_type_union
{
65 struct reg_data_type_union_field
*fields
;
68 struct reg_data_type_bitfield
{
73 struct reg_data_type_struct_field
{
77 struct reg_data_type_bitfield
*bitfield
;
78 struct reg_data_type
*type
;
80 struct reg_data_type_struct_field
*next
;
83 struct reg_data_type_struct
{
85 struct reg_data_type_struct_field
*fields
;
88 struct reg_data_type_flags_field
{
90 struct reg_data_type_bitfield
*bitfield
;
91 struct reg_data_type_flags_field
*next
;
94 struct reg_data_type_flags
{
96 struct reg_data_type_flags_field
*fields
;
99 enum reg_data_type_class
{
100 REG_TYPE_CLASS_VECTOR
,
101 REG_TYPE_CLASS_UNION
,
102 REG_TYPE_CLASS_STRUCT
,
103 REG_TYPE_CLASS_FLAGS
,
106 struct reg_data_type
{
109 enum reg_data_type_class type_class
;
111 struct reg_data_type_vector
*reg_type_vector
;
112 struct reg_data_type_union
*reg_type_union
;
113 struct reg_data_type_struct
*reg_type_struct
;
114 struct reg_data_type_flags
*reg_type_flags
;
121 struct reg_feature
*feature
;
128 struct reg_data_type
*reg_data_type
;
131 const struct reg_arch_type
*type
;
136 struct reg_cache
*next
;
137 struct reg
*reg_list
;
141 struct reg_arch_type
{
142 int (*get
)(struct reg
*reg
);
143 int (*set
)(struct reg
*reg
, uint8_t *buf
);
146 struct reg
*register_get_by_name(struct reg_cache
*first
,
147 const char *name
, bool search_all
);
148 struct reg_cache
**register_get_last_cache_p(struct reg_cache
**first
);
149 void register_cache_invalidate(struct reg_cache
*cache
);
151 void register_init_dummy(struct reg
*reg
);
153 #endif /* REGISTER_H */