reg_arch_type_t -> struct reg_arch_type

Remove misleading typedef and redundant suffix from struct reg_arch_type.
This commit is contained in:
Zachary T Welch 2009-11-13 08:44:18 -08:00
parent 74d09617b9
commit c2b5d8a6fa
4 changed files with 13 additions and 13 deletions

View File

@ -1003,7 +1003,7 @@ int gdb_set_registers_packet(struct connection *connection, target_t *target, ch
LOG_ERROR("BUG: register packet is too small for registers"); LOG_ERROR("BUG: register packet is too small for registers");
} }
reg_arch_type_t *arch_type; struct reg_arch_type *arch_type;
bin_buf = malloc(CEIL(reg_list[i]->size, 8)); bin_buf = malloc(CEIL(reg_list[i]->size, 8));
gdb_target_to_reg(target, packet_p, chars, bin_buf); gdb_target_to_reg(target, packet_p, chars, bin_buf);
@ -1070,7 +1070,7 @@ int gdb_set_register_packet(struct connection *connection, target_t *target, cha
reg_t **reg_list; reg_t **reg_list;
int reg_list_size; int reg_list_size;
int retval; int retval;
reg_arch_type_t *arch_type; struct reg_arch_type *arch_type;
LOG_DEBUG("-"); LOG_DEBUG("-");

View File

@ -28,7 +28,7 @@
#include "log.h" #include "log.h"
reg_arch_type_t *reg_arch_types = NULL; struct reg_arch_type *reg_arch_types = NULL;
reg_t* register_get_by_name(struct reg_cache *first, reg_t* register_get_by_name(struct reg_cache *first,
const char *name, bool search_all) const char *name, bool search_all)
@ -68,7 +68,7 @@ struct reg_cache** register_get_last_cache_p(struct reg_cache **first)
int register_reg_arch_type(int (*get)(reg_t *reg), int (*set)(reg_t *reg, uint8_t *buf)) int register_reg_arch_type(int (*get)(reg_t *reg), int (*set)(reg_t *reg, uint8_t *buf))
{ {
reg_arch_type_t** arch_type_p = &reg_arch_types; struct reg_arch_type** arch_type_p = &reg_arch_types;
int id = 0; int id = 0;
if (*arch_type_p) if (*arch_type_p)
@ -80,7 +80,7 @@ int register_reg_arch_type(int (*get)(reg_t *reg), int (*set)(reg_t *reg, uint8_
} }
} }
(*arch_type_p) = malloc(sizeof(reg_arch_type_t)); (*arch_type_p) = malloc(sizeof(struct reg_arch_type));
(*arch_type_p)->id = id + 1; (*arch_type_p)->id = id + 1;
(*arch_type_p)->set = set; (*arch_type_p)->set = set;
(*arch_type_p)->get = get; (*arch_type_p)->get = get;
@ -89,9 +89,9 @@ int register_reg_arch_type(int (*get)(reg_t *reg), int (*set)(reg_t *reg, uint8_
return id + 1; return id + 1;
} }
reg_arch_type_t* register_get_arch_type(int id) struct reg_arch_type* register_get_arch_type(int id)
{ {
reg_arch_type_t *arch_type = reg_arch_types; struct reg_arch_type *arch_type = reg_arch_types;
while (arch_type) while (arch_type)
{ {

View File

@ -54,13 +54,13 @@ struct reg_cache
int num_regs; int num_regs;
}; };
typedef struct reg_arch_type_s struct reg_arch_type
{ {
int id; int id;
int (*get)(reg_t *reg); int (*get)(reg_t *reg);
int (*set)(reg_t *reg, uint8_t *buf); int (*set)(reg_t *reg, uint8_t *buf);
struct reg_arch_type_s *next; struct reg_arch_type *next;
} reg_arch_type_t; };
reg_t* register_get_by_name(struct reg_cache *first, reg_t* register_get_by_name(struct reg_cache *first,
const char *name, bool search_all); const char *name, bool search_all);
@ -68,7 +68,7 @@ struct reg_cache** register_get_last_cache_p(struct reg_cache **first);
int register_reg_arch_type(int (*get)(reg_t *reg), int register_reg_arch_type(int (*get)(reg_t *reg),
int (*set)(reg_t *reg, uint8_t *buf)); int (*set)(reg_t *reg, uint8_t *buf));
reg_arch_type_t* register_get_arch_type(int id); struct reg_arch_type* register_get_arch_type(int id);
void register_init_dummy(reg_t *reg); void register_init_dummy(reg_t *reg);

View File

@ -1961,7 +1961,7 @@ COMMAND_HANDLER(handle_reg_command)
if (reg->valid == 0) if (reg->valid == 0)
{ {
reg_arch_type_t *arch_type = register_get_arch_type(reg->arch_type); struct reg_arch_type *arch_type = register_get_arch_type(reg->arch_type);
arch_type->get(reg); arch_type->get(reg);
} }
value = buf_to_str(reg->value, reg->size, 16); value = buf_to_str(reg->value, reg->size, 16);
@ -1976,7 +1976,7 @@ COMMAND_HANDLER(handle_reg_command)
uint8_t *buf = malloc(CEIL(reg->size, 8)); uint8_t *buf = malloc(CEIL(reg->size, 8));
str_to_buf(args[1], strlen(args[1]), buf, reg->size, 0); str_to_buf(args[1], strlen(args[1]), buf, reg->size, 0);
reg_arch_type_t *arch_type = register_get_arch_type(reg->arch_type); struct reg_arch_type *arch_type = register_get_arch_type(reg->arch_type);
arch_type->set(reg, buf); arch_type->set(reg, buf);
value = buf_to_str(reg->value, reg->size, 16); value = buf_to_str(reg->value, reg->size, 16);