mirror of
https://github.com/mariusgreuel/avrdude.git
synced 2025-12-15 18:21:07 +00:00
Implementation for an "alias" keyword. By now, only applied inside memory descriptions. * Make "mem_alias" a separate nonterminal. The previous implementation attempt caused a syntax error in yacc code, and separating mem_alias on the same level as mem_spec appears to be the cleaner solution anyway. * Maintain real memory aliases. Instead of duplicating the aliased memory with a new name, maintain a second list of memory aliases (per device) that contains a pointer to the memory area it is aliased to. That way, a memory name can be clearly distinguished between the canonical one and any aliases. * Check p->mem_alias != NULL before touching it * Add avr_find_memalias() This takes a memory region as input, and searches whether an alias can be found for it. * We need to add a list structure for the mem_alias list, always. By that means, mem_alias won't ever be NULL, so no need to check later. Also, in avr_dup_part(), duplicate the alias list. * In a memory alias, actually remember the current name. * In avr_dup_part(), adjust pointers of aliased memories While walking the list of memories, for each entry, see if there is an alias pointing to it. If so, allocate a duplicated one, and fix its aliased_mem pointer to point to the duplicated memory region instead of the original one. * Add avr_locate_mem_noalias() When looking whether any memory region has already been defined for the current part while parsing the config file, only non-aliased names must be considered. Otherwise, a newly defined alias would kick out the memory definition it is being aliased to. * When defining a mem_alias, drop any existing one of that name. * Actually use avr_find_memalias() to find aliases * Add declaration for avr_find_memalias() * When defining a memory, also search for an existing alias If the newly defined name has the same as an existing alias, the alias can be removed. Note that we do explicitly *not* remove any memory by the same name of a later defined alias, as this might invalidate another alias'es pointer. If someone defines that, the alias name just won't ever be found by avr_locate_mem().
105 lines
2.2 KiB
C
105 lines
2.2 KiB
C
/*
|
|
* avrdude - A Downloader/Uploader for AVR device programmers
|
|
* Copyright (C) 2000-2004 Brian S. Dean <bsd@bsdhome.com>
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
/* $Id$ */
|
|
|
|
/* These are the internal definitions needed for config parsing */
|
|
|
|
#ifndef config_h
|
|
#define config_h
|
|
|
|
#include "libavrdude.h"
|
|
|
|
|
|
#define MAX_STR_CONST 1024
|
|
|
|
enum { V_NONE, V_NUM, V_NUM_REAL, V_STR };
|
|
typedef struct value_t {
|
|
int type;
|
|
/*union { TODO: use an anonymous union here ? */
|
|
int number;
|
|
double number_real;
|
|
char * string;
|
|
/*};*/
|
|
} VALUE;
|
|
|
|
|
|
typedef struct token_t {
|
|
int primary;
|
|
VALUE value;
|
|
} TOKEN;
|
|
typedef struct token_t *token_p;
|
|
|
|
|
|
extern FILE * yyin;
|
|
extern PROGRAMMER * current_prog;
|
|
extern AVRPART * current_part;
|
|
extern AVRMEM * current_mem;
|
|
extern int lineno;
|
|
extern const char * infile;
|
|
extern LISTID string_list;
|
|
extern LISTID number_list;
|
|
extern bool is_alias; // current entry is alias
|
|
|
|
|
|
#if !defined(HAS_YYSTYPE)
|
|
#define YYSTYPE token_p
|
|
#endif
|
|
extern YYSTYPE yylval;
|
|
|
|
extern char string_buf[MAX_STR_CONST];
|
|
extern char *string_buf_ptr;
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
int yyparse(void);
|
|
|
|
int yyerror(char * errmsg, ...);
|
|
|
|
int yywarning(char * errmsg, ...);
|
|
|
|
TOKEN * new_token(int primary);
|
|
|
|
void free_token(TOKEN * tkn);
|
|
|
|
void free_tokens(int n, ...);
|
|
|
|
TOKEN * number(char * text);
|
|
|
|
TOKEN * number_real(char * text);
|
|
|
|
TOKEN * hexnumber(char * text);
|
|
|
|
TOKEN * string(char * text);
|
|
|
|
TOKEN * keyword(int primary);
|
|
|
|
void print_token(TOKEN * tkn);
|
|
|
|
void pyytext(void);
|
|
|
|
char * dup_string(const char * str);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|