From c9736a9db5f1c0aae4023a32ef905a6d9ea6bc1e Mon Sep 17 00:00:00 2001 From: Stefan Rueger Date: Sat, 13 Aug 2022 20:51:12 +0100 Subject: [PATCH] Specifying the full memory name now always works ... even if a memory with longer name and same initial part exists --- src/avrpart.c | 61 +++++++++++++++------------------------------------ 1 file changed, 18 insertions(+), 43 deletions(-) diff --git a/src/avrpart.c b/src/avrpart.c index 526d0503..df514f1d 100644 --- a/src/avrpart.c +++ b/src/avrpart.c @@ -423,88 +423,63 @@ void avr_free_memalias(AVRMEM_ALIAS *m) { AVRMEM_ALIAS *avr_locate_memalias(const AVRPART *p, const char *desc) { AVRMEM_ALIAS * m, * match; LNODEID ln; - int matches; + int matches, exact; int l; if(!p || !desc || !p->mem_alias) return NULL; l = strlen(desc); - matches = 0; + matches = exact = 0; match = NULL; for (ln=lfirst(p->mem_alias); ln; ln=lnext(ln)) { m = ldata(ln); - if (strncmp(desc, m->desc, l) == 0) { + if (strncmp(m->desc, desc, l) == 0) { // Partial initial match match = m; matches++; + if(m->desc[l] == 0) // Exact match between arg and memory + exact++; } } - if (matches == 1) - return match; - - return NULL; + return exact == 1 || matches == 1? match: NULL; } AVRMEM *avr_locate_mem_noalias(const AVRPART *p, const char *desc) { AVRMEM * m, * match; LNODEID ln; - int matches; + int matches, exact; int l; if(!p || !desc || !p->mem) return NULL; l = strlen(desc); - matches = 0; + matches = exact = 0; match = NULL; for (ln=lfirst(p->mem); ln; ln=lnext(ln)) { m = ldata(ln); - if (strncmp(desc, m->desc, l) == 0) { + if (strncmp(m->desc, desc, l) == 0) { // Partial initial match match = m; matches++; + if(m->desc[l] == 0) // Exact match between arg and memory + exact++; } } - if (matches == 1) - return match; - - return NULL; + return exact == 1 || matches == 1? match: NULL; } AVRMEM *avr_locate_mem(const AVRPART *p, const char *desc) { - AVRMEM * m, * match; - AVRMEM_ALIAS * alias; - LNODEID ln; - int matches; - int l; + AVRMEM *m = avr_locate_mem_noalias(p, desc); - if(!p || !desc) - return NULL; + if(m) + return m; - l = strlen(desc); - matches = 0; - match = NULL; - if(p->mem) { - for (ln=lfirst(p->mem); ln; ln=lnext(ln)) { - m = ldata(ln); - if (strncmp(desc, m->desc, l) == 0) { - match = m; - matches++; - } - } - } - - if (matches == 1) - return match; - - /* not yet found: look for matching alias name */ - alias = avr_locate_memalias(p, desc); - if (alias != NULL) - return alias->aliased_mem; - - return NULL; + // Not yet found: look for matching alias name + AVRMEM_ALIAS *a = avr_locate_memalias(p, desc); + return a? a->aliased_mem: NULL; } AVRMEM_ALIAS *avr_find_memalias(const AVRPART *p, const AVRMEM *m_orig) {