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 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
22 ***************************************************************************/
31 reg_arch_type_t
*reg_arch_types
= NULL
;
33 reg_t
* register_get_by_name(reg_cache_t
*first
, char *name
, int search_all
)
36 reg_cache_t
*cache
= first
;
40 for (i
= 0; i
< cache
->num_regs
; i
++)
42 if (strcmp(cache
->reg_list
[i
].name
, name
) == 0)
43 return &(cache
->reg_list
[i
]);
55 reg_cache_t
** register_get_last_cache_p(reg_cache_t
**first
)
57 reg_cache_t
**cache_p
= first
;
61 cache_p
= &((*cache_p
)->next
);
68 int register_reg_arch_type(int (*get
)(reg_t
*reg
), int (*set
)(reg_t
*reg
, uint8_t *buf
))
70 reg_arch_type_t
** arch_type_p
= ®_arch_types
;
77 id
= (*arch_type_p
)->id
;
78 arch_type_p
= &((*arch_type_p
)->next
);
82 (*arch_type_p
) = malloc(sizeof(reg_arch_type_t
));
83 (*arch_type_p
)->id
= id
+ 1;
84 (*arch_type_p
)->set
= set
;
85 (*arch_type_p
)->get
= get
;
86 (*arch_type_p
)->next
= NULL
;
91 reg_arch_type_t
* register_get_arch_type(int id
)
93 reg_arch_type_t
*arch_type
= reg_arch_types
;
97 if (arch_type
->id
== id
)
99 arch_type
= arch_type
->next
;
101 LOG_ERROR("BUG: encountered unregistered arch type 0x%08x", id
);
106 static int register_get_dummy_core_reg(reg_t
*reg
)
111 static int register_set_dummy_core_reg(reg_t
*reg
, uint8_t *buf
)
119 void register_init_dummy(reg_t
*reg
)
121 static int dummy_arch_type
= -1;
122 if (dummy_arch_type
== -1 )
123 dummy_arch_type
= register_reg_arch_type(register_get_dummy_core_reg
, register_set_dummy_core_reg
);
125 reg
->arch_type
= dummy_arch_type
;