From 74d09617b927ed7011098d5a65087dee1ef1e87a Mon Sep 17 00:00:00 2001 From: Zachary T Welch Date: Fri, 13 Nov 2009 08:44:08 -0800 Subject: [PATCH] reg_cache_t -> struct reg_cache Remove misleading typedef and redundant suffix from struct reg_cache. --- src/target/arm11.c | 4 ++-- src/target/arm11.h | 2 +- src/target/arm7_9_common.h | 2 +- src/target/arm7tdmi.c | 6 +++--- src/target/arm9tdmi.c | 6 +++--- src/target/armv4_5.c | 4 ++-- src/target/armv4_5.h | 4 ++-- src/target/armv7a.h | 4 ++-- src/target/armv7m.c | 6 +++--- src/target/armv7m.h | 4 ++-- src/target/cortex_a8.c | 2 +- src/target/cortex_m3.c | 2 +- src/target/cortex_m3.h | 2 +- src/target/embeddedice.c | 4 ++-- src/target/embeddedice.h | 2 +- src/target/etb.c | 4 ++-- src/target/etb.h | 4 ++-- src/target/etm.c | 8 ++++---- src/target/etm.h | 4 ++-- src/target/mips32.c | 6 +++--- src/target/mips32.h | 4 ++-- src/target/register.c | 8 ++++---- src/target/register.h | 10 +++++----- src/target/target.c | 4 ++-- src/target/target.h | 2 +- src/target/xscale.c | 4 ++-- src/target/xscale.h | 2 +- 27 files changed, 57 insertions(+), 57 deletions(-) diff --git a/src/target/arm11.c b/src/target/arm11.c index 5e96b3e6a5..549f4767fa 100644 --- a/src/target/arm11.c +++ b/src/target/arm11.c @@ -1933,7 +1933,7 @@ static int arm11_build_reg_cache(target_t *target) { struct arm11_common *arm11 = target->arch_info; - NEW(reg_cache_t, cache, 1); + NEW(struct reg_cache, cache, 1); NEW(reg_t, reg_list, ARM11_REGCACHE_COUNT); NEW(struct arm11_reg_state, arm11_reg_states, ARM11_REGCACHE_COUNT); @@ -1951,7 +1951,7 @@ static int arm11_build_reg_cache(target_t *target) cache->reg_list = reg_list; cache->num_regs = ARM11_REGCACHE_COUNT; - reg_cache_t **cache_p = register_get_last_cache_p(&target->reg_cache); + struct reg_cache **cache_p = register_get_last_cache_p(&target->reg_cache); (*cache_p) = cache; arm11->core_cache = cache; diff --git a/src/target/arm11.h b/src/target/arm11.h index f277b29a4a..b397709a82 100644 --- a/src/target/arm11.h +++ b/src/target/arm11.h @@ -116,7 +116,7 @@ struct arm11_common size_t free_wrps; /**< keep track of breakpoints allocated by arm11_add_watchpoint() */ // GA - reg_cache_t *core_cache; + struct reg_cache *core_cache; }; diff --git a/src/target/arm7_9_common.h b/src/target/arm7_9_common.h index 0cd6bf5dac..cebf6e3c9e 100644 --- a/src/target/arm7_9_common.h +++ b/src/target/arm7_9_common.h @@ -43,7 +43,7 @@ struct arm7_9_common uint32_t common_magic; struct arm_jtag jtag_info; /**< JTAG information for target */ - reg_cache_t *eice_cache; /**< Embedded ICE register cache */ + struct reg_cache *eice_cache; /**< Embedded ICE register cache */ uint32_t arm_bkpt; /**< ARM breakpoint instruction */ uint16_t thumb_bkpt; /**< Thumb breakpoint instruction */ diff --git a/src/target/arm7tdmi.c b/src/target/arm7tdmi.c index dc2cfbd35e..d1509cbb68 100644 --- a/src/target/arm7tdmi.c +++ b/src/target/arm7tdmi.c @@ -639,7 +639,7 @@ static void arm7tdmi_branch_resume_thumb(target_t *target) static void arm7tdmi_build_reg_cache(target_t *target) { - reg_cache_t **cache_p = register_get_last_cache_p(&target->reg_cache); + struct reg_cache **cache_p = register_get_last_cache_p(&target->reg_cache); struct armv4_5_common_s *armv4_5 = target_to_armv4_5(target); (*cache_p) = armv4_5_build_reg_cache(target, armv4_5); @@ -655,8 +655,8 @@ int arm7tdmi_examine(struct target_s *target) if (!target_was_examined(target)) { /* get pointers to arch-specific information */ - reg_cache_t **cache_p = register_get_last_cache_p(&target->reg_cache); - reg_cache_t *t = embeddedice_build_reg_cache(target, arm7_9); + struct reg_cache **cache_p = register_get_last_cache_p(&target->reg_cache); + struct reg_cache *t = embeddedice_build_reg_cache(target, arm7_9); if (t == NULL) return ERROR_FAIL; diff --git a/src/target/arm9tdmi.c b/src/target/arm9tdmi.c index 897563ccaa..5e0349346b 100644 --- a/src/target/arm9tdmi.c +++ b/src/target/arm9tdmi.c @@ -735,7 +735,7 @@ void arm9tdmi_disable_single_step(target_t *target) static void arm9tdmi_build_reg_cache(target_t *target) { - reg_cache_t **cache_p = register_get_last_cache_p(&target->reg_cache); + struct reg_cache **cache_p = register_get_last_cache_p(&target->reg_cache); struct armv4_5_common_s *armv4_5 = target_to_armv4_5(target); (*cache_p) = armv4_5_build_reg_cache(target, armv4_5); @@ -749,8 +749,8 @@ int arm9tdmi_examine(struct target_s *target) if (!target_was_examined(target)) { - reg_cache_t **cache_p = register_get_last_cache_p(&target->reg_cache); - reg_cache_t *t; + struct reg_cache **cache_p = register_get_last_cache_p(&target->reg_cache); + struct reg_cache *t; /* one extra register (vector catch) */ t = embeddedice_build_reg_cache(target, arm7_9); if (t == NULL) diff --git a/src/target/armv4_5.c b/src/target/armv4_5.c index 1c5db291af..e7c405c9a2 100644 --- a/src/target/armv4_5.c +++ b/src/target/armv4_5.c @@ -249,10 +249,10 @@ int armv4_5_invalidate_core_regs(target_t *target) return ERROR_OK; } -reg_cache_t* armv4_5_build_reg_cache(target_t *target, armv4_5_common_t *armv4_5_common) +struct reg_cache* armv4_5_build_reg_cache(target_t *target, armv4_5_common_t *armv4_5_common) { int num_regs = 37; - reg_cache_t *cache = malloc(sizeof(reg_cache_t)); + struct reg_cache *cache = malloc(sizeof(struct reg_cache)); reg_t *reg_list = malloc(sizeof(reg_t) * num_regs); struct armv4_5_core_reg *arch_info = malloc(sizeof(struct armv4_5_core_reg) * num_regs); int i; diff --git a/src/target/armv4_5.h b/src/target/armv4_5.h index 3cc8937eb3..89879163b8 100644 --- a/src/target/armv4_5.h +++ b/src/target/armv4_5.h @@ -87,7 +87,7 @@ enum typedef struct arm { int common_magic; - reg_cache_t *core_cache; + struct reg_cache *core_cache; int /* armv4_5_mode */ core_mode; enum armv4_5_state core_state; @@ -135,7 +135,7 @@ struct armv4_5_core_reg armv4_5_common_t *armv4_5_common; }; -reg_cache_t* armv4_5_build_reg_cache(target_t *target, +struct reg_cache* armv4_5_build_reg_cache(target_t *target, armv4_5_common_t *armv4_5_common); /* map psr mode bits to linear number */ diff --git a/src/target/armv7a.h b/src/target/armv7a.h index 42a25df88d..910a884c53 100644 --- a/src/target/armv7a.h +++ b/src/target/armv7a.h @@ -92,7 +92,7 @@ enum struct armv7a_common { int common_magic; - reg_cache_t *core_cache; + struct reg_cache *core_cache; enum armv7a_mode core_mode; enum armv7a_state core_state; @@ -150,7 +150,7 @@ struct armv7a_core_reg }; int armv7a_arch_state(struct target_s *target); -reg_cache_t *armv7a_build_reg_cache(target_t *target, +struct reg_cache *armv7a_build_reg_cache(target_t *target, struct armv7a_common *armv7a_common); int armv7a_register_commands(struct command_context_s *cmd_ctx); int armv7a_init_arch_info(target_t *target, struct armv7a_common *armv7a); diff --git a/src/target/armv7m.c b/src/target/armv7m.c index 9319bf25a7..05668880e5 100644 --- a/src/target/armv7m.c +++ b/src/target/armv7m.c @@ -524,12 +524,12 @@ int armv7m_arch_state(struct target_s *target) } /** Builds cache of architecturally defined registers. */ -reg_cache_t *armv7m_build_reg_cache(target_t *target) +struct reg_cache *armv7m_build_reg_cache(target_t *target) { struct armv7m_common *armv7m = target_to_armv7m(target); int num_regs = ARMV7M_NUM_REGS; - reg_cache_t **cache_p = register_get_last_cache_p(&target->reg_cache); - reg_cache_t *cache = malloc(sizeof(reg_cache_t)); + struct reg_cache **cache_p = register_get_last_cache_p(&target->reg_cache); + struct reg_cache *cache = malloc(sizeof(struct reg_cache)); reg_t *reg_list = calloc(num_regs, sizeof(reg_t)); struct armv7m_core_reg *arch_info = calloc(num_regs, sizeof(struct armv7m_core_reg)); int i; diff --git a/src/target/armv7m.h b/src/target/armv7m.h index 43ec563222..2f4fbdb531 100644 --- a/src/target/armv7m.h +++ b/src/target/armv7m.h @@ -94,7 +94,7 @@ enum struct armv7m_common { int common_magic; - reg_cache_t *core_cache; + struct reg_cache *core_cache; enum armv7m_mode core_mode; int exception_number; struct swjdp_common swjdp_info; @@ -134,7 +134,7 @@ struct armv7m_core_reg struct armv7m_common *armv7m_common; }; -reg_cache_t *armv7m_build_reg_cache(target_t *target); +struct reg_cache *armv7m_build_reg_cache(target_t *target); enum armv7m_mode armv7m_number_to_mode(int number); int armv7m_mode_to_number(enum armv7m_mode mode); diff --git a/src/target/cortex_a8.c b/src/target/cortex_a8.c index a60564c60a..edf7f141ed 100644 --- a/src/target/cortex_a8.c +++ b/src/target/cortex_a8.c @@ -1435,7 +1435,7 @@ static int cortex_a8_examine(struct target_s *target) static void cortex_a8_build_reg_cache(target_t *target) { - reg_cache_t **cache_p = register_get_last_cache_p(&target->reg_cache); + struct reg_cache **cache_p = register_get_last_cache_p(&target->reg_cache); struct armv4_5_common_s *armv4_5 = target_to_armv4_5(target); (*cache_p) = armv4_5_build_reg_cache(target, armv4_5); diff --git a/src/target/cortex_m3.c b/src/target/cortex_m3.c index 9d2c54f732..01fe7c1076 100644 --- a/src/target/cortex_m3.c +++ b/src/target/cortex_m3.c @@ -1516,7 +1516,7 @@ static void cortex_m3_dwt_setup(struct cortex_m3_common *cm3, struct target_s *target) { uint32_t dwtcr; - struct reg_cache_s *cache; + struct reg_cache *cache; cortex_m3_dwt_comparator_t *comparator; int reg, i; diff --git a/src/target/cortex_m3.h b/src/target/cortex_m3.h index b2d558d1fb..96264678e5 100644 --- a/src/target/cortex_m3.h +++ b/src/target/cortex_m3.h @@ -158,7 +158,7 @@ struct cortex_m3_common int dwt_num_comp; int dwt_comp_available; cortex_m3_dwt_comparator_t *dwt_comparator_list; - struct reg_cache_s *dwt_cache; + struct reg_cache *dwt_cache; struct armv7m_common armv7m; }; diff --git a/src/target/embeddedice.c b/src/target/embeddedice.c index 169ad2c302..4d939818b2 100644 --- a/src/target/embeddedice.c +++ b/src/target/embeddedice.c @@ -163,11 +163,11 @@ static int embeddedice_get_reg(reg_t *reg) * Different versions of the modules have different capabilities, such as * hardware support for vector_catch, single stepping, and monitor mode. */ -reg_cache_t * +struct reg_cache * embeddedice_build_reg_cache(target_t *target, struct arm7_9_common *arm7_9) { int retval; - reg_cache_t *reg_cache = malloc(sizeof(reg_cache_t)); + struct reg_cache *reg_cache = malloc(sizeof(struct reg_cache)); reg_t *reg_list = NULL; struct embeddedice_reg *arch_info = NULL; struct arm_jtag *jtag_info = &arm7_9->jtag_info; diff --git a/src/target/embeddedice.h b/src/target/embeddedice.h index eb2bb2939e..47ef3d96b9 100644 --- a/src/target/embeddedice.h +++ b/src/target/embeddedice.h @@ -93,7 +93,7 @@ struct embeddedice_reg struct arm_jtag *jtag_info; }; -reg_cache_t* embeddedice_build_reg_cache(target_t *target, +struct reg_cache* embeddedice_build_reg_cache(target_t *target, struct arm7_9_common *arm7_9); int embeddedice_setup(target_t *target); diff --git a/src/target/etb.c b/src/target/etb.c index 44decfefec..8f1c67aa83 100644 --- a/src/target/etb.c +++ b/src/target/etb.c @@ -121,9 +121,9 @@ static int etb_get_reg(reg_t *reg) return ERROR_OK; } -reg_cache_t* etb_build_reg_cache(etb_t *etb) +struct reg_cache* etb_build_reg_cache(etb_t *etb) { - reg_cache_t *reg_cache = malloc(sizeof(reg_cache_t)); + struct reg_cache *reg_cache = malloc(sizeof(struct reg_cache)); reg_t *reg_list = NULL; struct etb_reg *arch_info = NULL; int num_regs = 9; diff --git a/src/target/etb.h b/src/target/etb.h index b8973de22d..820d296132 100644 --- a/src/target/etb.h +++ b/src/target/etb.h @@ -39,7 +39,7 @@ typedef struct etb_s etm_context_t *etm_ctx; struct jtag_tap *tap; uint32_t cur_scan_chain; - reg_cache_t *reg_cache; + struct reg_cache *reg_cache; /* ETB parameters */ uint32_t ram_depth; @@ -54,6 +54,6 @@ struct etb_reg extern struct etm_capture_driver etb_capture_driver; -reg_cache_t* etb_build_reg_cache(etb_t *etb); +struct reg_cache* etb_build_reg_cache(etb_t *etb); #endif /* ETB_H */ diff --git a/src/target/etm.c b/src/target/etm.c index 9952279d2f..118fe12d2b 100644 --- a/src/target/etm.c +++ b/src/target/etm.c @@ -231,7 +231,7 @@ static command_t *etm_cmd; */ static reg_t *etm_reg_lookup(etm_context_t *etm_ctx, unsigned id) { - reg_cache_t *cache = etm_ctx->reg_cache; + struct reg_cache *cache = etm_ctx->reg_cache; int i; for (i = 0; i < cache->num_regs; i++) { @@ -248,7 +248,7 @@ static reg_t *etm_reg_lookup(etm_context_t *etm_ctx, unsigned id) } static void etm_reg_add(unsigned bcd_vers, struct arm_jtag *jtag_info, - reg_cache_t *cache, struct etm_reg *ereg, + struct reg_cache *cache, struct etm_reg *ereg, const struct etm_reg_info *r, unsigned nreg) { reg_t *reg = cache->reg_list; @@ -279,10 +279,10 @@ static void etm_reg_add(unsigned bcd_vers, struct arm_jtag *jtag_info, } } -reg_cache_t *etm_build_reg_cache(target_t *target, +struct reg_cache *etm_build_reg_cache(target_t *target, struct arm_jtag *jtag_info, etm_context_t *etm_ctx) { - reg_cache_t *reg_cache = malloc(sizeof(reg_cache_t)); + struct reg_cache *reg_cache = malloc(sizeof(struct reg_cache)); reg_t *reg_list = NULL; struct etm_reg *arch_info = NULL; unsigned bcd_vers, config; diff --git a/src/target/etm.h b/src/target/etm.h index 08f9c2269b..63e31f1b64 100644 --- a/src/target/etm.h +++ b/src/target/etm.h @@ -155,7 +155,7 @@ struct etmv1_trace_data typedef struct etm { target_t *target; /* target this ETM is connected to */ - reg_cache_t *reg_cache; /* ETM register cache */ + struct reg_cache *reg_cache; /* ETM register cache */ struct etm_capture_driver *capture_driver; /* driver used to access ETM data */ void *capture_driver_priv; /* capture driver private data */ uint32_t trigger_percent; /* how much trace buffer to fill after trigger */ @@ -207,7 +207,7 @@ typedef enum BR_RSVD7 = 0x7, /* reserved */ } etmv1_branch_reason_t; -reg_cache_t* etm_build_reg_cache(target_t *target, +struct reg_cache* etm_build_reg_cache(target_t *target, struct arm_jtag *jtag_info, etm_context_t *etm_ctx); int etm_setup(target_t *target); diff --git a/src/target/mips32.c b/src/target/mips32.c index 48fb7a3877..ddc27a6615 100644 --- a/src/target/mips32.c +++ b/src/target/mips32.c @@ -271,14 +271,14 @@ int mips32_arch_state(struct target_s *target) return ERROR_OK; } -reg_cache_t *mips32_build_reg_cache(target_t *target) +struct reg_cache *mips32_build_reg_cache(target_t *target) { /* get pointers to arch-specific information */ struct mips32_common *mips32 = target->arch_info; int num_regs = MIPS32NUMCOREREGS; - reg_cache_t **cache_p = register_get_last_cache_p(&target->reg_cache); - reg_cache_t *cache = malloc(sizeof(reg_cache_t)); + struct reg_cache **cache_p = register_get_last_cache_p(&target->reg_cache); + struct reg_cache *cache = malloc(sizeof(struct reg_cache)); reg_t *reg_list = malloc(sizeof(reg_t) * num_regs); struct mips32_core_reg *arch_info = malloc(sizeof(struct mips32_core_reg) * num_regs); int i; diff --git a/src/target/mips32.h b/src/target/mips32.h index 39f00be4e0..7cecb7542b 100644 --- a/src/target/mips32.h +++ b/src/target/mips32.h @@ -49,7 +49,7 @@ struct mips32_common { uint32_t common_magic; void *arch_info; - reg_cache_t *core_cache; + struct reg_cache *core_cache; struct mips_ejtag ejtag_info; uint32_t core_regs[MIPS32NUMCOREREGS]; @@ -132,7 +132,7 @@ int mips32_init_arch_info(target_t *target, int mips32_restore_context(target_t *target); int mips32_save_context(target_t *target); -reg_cache_t *mips32_build_reg_cache(target_t *target); +struct reg_cache *mips32_build_reg_cache(target_t *target); int mips32_run_algorithm(struct target_s *target, int num_mem_params, struct mem_param *mem_params, diff --git a/src/target/register.c b/src/target/register.c index 58cc85e281..2efcd5f8bb 100644 --- a/src/target/register.c +++ b/src/target/register.c @@ -30,11 +30,11 @@ reg_arch_type_t *reg_arch_types = NULL; -reg_t* register_get_by_name(reg_cache_t *first, +reg_t* register_get_by_name(struct reg_cache *first, const char *name, bool search_all) { int i; - reg_cache_t *cache = first; + struct reg_cache *cache = first; while (cache) { @@ -53,9 +53,9 @@ reg_t* register_get_by_name(reg_cache_t *first, return NULL; } -reg_cache_t** register_get_last_cache_p(reg_cache_t **first) +struct reg_cache** register_get_last_cache_p(struct reg_cache **first) { - reg_cache_t **cache_p = first; + struct reg_cache **cache_p = first; if (*cache_p) while (*cache_p) diff --git a/src/target/register.h b/src/target/register.h index bc40d1fa61..422fbd2931 100644 --- a/src/target/register.h +++ b/src/target/register.h @@ -46,13 +46,13 @@ typedef struct reg_s int arch_type; } reg_t; -typedef struct reg_cache_s +struct reg_cache { char *name; - struct reg_cache_s *next; + struct reg_cache *next; reg_t *reg_list; int num_regs; -} reg_cache_t; +}; typedef struct reg_arch_type_s { @@ -62,9 +62,9 @@ typedef struct reg_arch_type_s struct reg_arch_type_s *next; } reg_arch_type_t; -reg_t* register_get_by_name(reg_cache_t *first, +reg_t* register_get_by_name(struct reg_cache *first, const char *name, bool search_all); -reg_cache_t** register_get_last_cache_p(reg_cache_t **first); +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)); diff --git a/src/target/target.c b/src/target/target.c index e8f91def47..eaa29db11f 100644 --- a/src/target/target.c +++ b/src/target/target.c @@ -1876,7 +1876,7 @@ COMMAND_HANDLER(handle_reg_command) /* list all available registers for the current target */ if (argc == 0) { - reg_cache_t *cache = target->reg_cache; + struct reg_cache *cache = target->reg_cache; count = 0; while (cache) @@ -1919,7 +1919,7 @@ COMMAND_HANDLER(handle_reg_command) unsigned num; COMMAND_PARSE_NUMBER(uint, args[0], num); - reg_cache_t *cache = target->reg_cache; + struct reg_cache *cache = target->reg_cache; count = 0; while (cache) { diff --git a/src/target/target.h b/src/target/target.h index 064a954a42..b7fa3eb918 100644 --- a/src/target/target.h +++ b/src/target/target.h @@ -154,7 +154,7 @@ typedef struct target_s enum target_endianess endianness; /* target endianess */ // also see: target_state_name() enum target_state state; /* the current backend-state (running, halted, ...) */ - struct reg_cache_s *reg_cache; /* the first register cache of the target (core regs) */ + struct reg_cache *reg_cache; /* the first register cache of the target (core regs) */ struct breakpoint_s *breakpoints; /* list of breakpoints */ struct watchpoint *watchpoints; /* list of watchpoints */ struct trace_s *trace_info; /* generic trace information */ diff --git a/src/target/xscale.c b/src/target/xscale.c index a04bf42954..d114fecdaa 100644 --- a/src/target/xscale.c +++ b/src/target/xscale.c @@ -2821,7 +2821,7 @@ static void xscale_build_reg_cache(target_t *target) { struct xscale_common_s *xscale = target_to_xscale(target); struct armv4_5_common_s *armv4_5 = &xscale->armv4_5_common; - reg_cache_t **cache_p = register_get_last_cache_p(&target->reg_cache); + struct reg_cache **cache_p = register_get_last_cache_p(&target->reg_cache); xscale_reg_t *arch_info = malloc(sizeof(xscale_reg_arch_info)); int i; int num_regs = sizeof(xscale_reg_arch_info) / sizeof(xscale_reg_t); @@ -2833,7 +2833,7 @@ static void xscale_build_reg_cache(target_t *target) if (xscale_reg_arch_type == -1) xscale_reg_arch_type = register_reg_arch_type(xscale_get_reg, xscale_set_reg); - (*cache_p)->next = malloc(sizeof(reg_cache_t)); + (*cache_p)->next = malloc(sizeof(struct reg_cache)); cache_p = &(*cache_p)->next; /* fill in values for the xscale reg cache */ diff --git a/src/target/xscale.h b/src/target/xscale.h index dd7b034652..d5de8dc8d7 100644 --- a/src/target/xscale.h +++ b/src/target/xscale.h @@ -86,7 +86,7 @@ typedef struct xscale_common_s int common_magic; /* XScale registers (CP15, DBG) */ - reg_cache_t *reg_cache; + struct reg_cache *reg_cache; /* current state of the debug handler */ uint32_t handler_address; -- 2.30.2