3 * Lexical Analyzer for the Aic7xxx SCSI Host adapter sequencer assembler.
5 * Copyright (c) 1997, 1998, 2000 Justin T. Gibbs.
6 * Copyright (c) 2001, 2002 Adaptec Inc.
9 * Redistribution and use in source and binary forms, with or without
10 * modification, are permitted provided that the following conditions
12 * 1. Redistributions of source code must retain the above copyright
13 * notice, this list of conditions, and the following disclaimer,
14 * without modification.
15 * 2. Redistributions in binary form must reproduce at minimum a disclaimer
16 * substantially similar to the "NO WARRANTY" disclaimer below
17 * ("Disclaimer") and any redistribution must be conditioned upon
18 * including a substantially similar Disclaimer requirement for further
19 * binary redistribution.
20 * 3. Neither the names of the above-listed copyright holders nor the names
21 * of any contributors may be used to endorse or promote products derived
22 * from this software without specific prior written permission.
24 * Alternatively, this software may be distributed under the terms of the
25 * GNU General Public License ("GPL") version 2 as published by the Free
26 * Software Foundation.
29 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
30 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
31 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR
32 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
33 * HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
34 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
35 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
36 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
37 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
38 * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
39 * POSSIBILITY OF SUCH DAMAGES.
41 * $Id: //depot/aic7xxx/aic7xxx/aicasm/aicasm_scan.l#19 $
46 #include <sys/types.h>
57 #include <sys/queue.h>
61 #include "aicasm_symbol.h"
62 #include "aicasm_gram.h"
64 /* This is used for macro body capture too, so err on the large size. */
65 #define MAX_STR_CONST 4096
66 static char string_buf[MAX_STR_CONST];
67 static char *string_buf_ptr;
68 static int parren_count;
69 static int quote_count;
73 PATH ([/]*[-A-Za-z0-9_.])+
74 WORD [A-Za-z_][-A-Za-z_0-9]*
77 MBODY ((\\[^\n])*[^\n\\]*)+
91 "/*" { BEGIN COMMENT; /* Enter comment eating state */ }
92 <COMMENT>"/*" { fprintf(stderr, "Warning! Comment within comment."); }
93 <COMMENT>\n { ++yylineno; }
95 <COMMENT>"*"+[^*/\n]* ;
96 <COMMENT>"/"+[^*/\n]* ;
97 <COMMENT>"*"+"/" { BEGIN INITIAL; }
99 string_buf_ptr = string_buf;
104 <CEXPR>\( { *string_buf_ptr++ = '('; parren_count++; }
107 if (parren_count == 0) {
110 *string_buf_ptr = '\0';
111 yylval.sym = symtable_get(string_buf);
114 *string_buf_ptr++ = ')';
117 <CEXPR>\n { ++yylineno; }
123 while (*yptr != '\0') {
124 /* Remove duplicate spaces */
128 && string_buf_ptr != string_buf
129 && string_buf_ptr[-1] == ' ')
132 *string_buf_ptr++ = *yptr++;
136 VERSION { return T_VERSION; }
137 PREFIX { return T_PREFIX; }
138 PATCH_ARG_LIST { return T_PATCH_ARG_LIST; }
140 string_buf_ptr = string_buf;
148 *string_buf_ptr++ = *yptr++;
153 *string_buf_ptr = '\0';
154 yylval.str = string_buf;
159 /* Register/SCB/SRAM definition keywords */
160 export { return T_EXPORT; }
161 register { return T_REGISTER; }
162 const { yylval.value = FALSE; return T_CONST; }
163 download { return T_DOWNLOAD; }
164 address { return T_ADDRESS; }
165 access_mode { return T_ACCESS_MODE; }
166 modes { return T_MODES; }
168 if (strcmp(yytext, "RW") == 0)
170 else if (strcmp(yytext, "RO") == 0)
176 BEGIN_CRITICAL { return T_BEGIN_CS; }
177 END_CRITICAL { return T_END_CS; }
178 SET_SRC_MODE { return T_SET_SRC_MODE; }
179 SET_DST_MODE { return T_SET_DST_MODE; }
180 field { return T_FIELD; }
181 enum { return T_ENUM; }
182 mask { return T_MASK; }
183 alias { return T_ALIAS; }
184 size { return T_SIZE; }
185 scb { return T_SCB; }
186 scratch_ram { return T_SRAM; }
187 accumulator { return T_ACCUM; }
188 mode_pointer { return T_MODE_PTR; }
189 allones { return T_ALLONES; }
190 allzeros { return T_ALLZEROS; }
191 none { return T_NONE; }
192 sindex { return T_SINDEX; }
196 shl { return T_SHL; }
197 shr { return T_SHR; }
198 ror { return T_ROR; }
199 rol { return T_ROL; }
200 mvi { return T_MVI; }
201 mov { return T_MOV; }
202 clr { return T_CLR; }
203 jmp { return T_JMP; }
205 jnc { return T_JNC; }
207 jne { return T_JNE; }
209 jnz { return T_JNZ; }
210 call { return T_CALL; }
211 add { return T_ADD; }
212 adc { return T_ADC; }
213 bmov { return T_BMOV; }
214 inc { return T_INC; }
215 dec { return T_DEC; }
216 stc { return T_STC; }
217 clc { return T_CLC; }
218 cmp { return T_CMP; }
219 not { return T_NOT; }
220 xor { return T_XOR; }
221 test { return T_TEST;}
222 and { return T_AND; }
224 ret { return T_RET; }
225 nop { return T_NOP; }
226 else { return T_ELSE; }
228 /* Allowed Symbols */
229 \<\< { return T_EXPR_LSHIFT; }
230 \>\> { return T_EXPR_RSHIFT; }
231 [-+,:()~|&."{};<>[\]/*!=] { return yytext[0]; }
233 /* Number processing */
235 yylval.value = strtol(yytext, NULL, 8);
240 yylval.value = strtoul(yytext + 2, NULL, 16);
245 yylval.value = strtol(yytext, NULL, 10);
254 <INCLUDE>[<] { return yytext[0]; }
255 <INCLUDE>[>] { BEGIN INITIAL; return yytext[0]; }
257 if (quote_count != 0)
266 string_buf_ptr = string_buf;
268 *string_buf_ptr++ = *yptr++;
269 yylval.str = string_buf;
270 *string_buf_ptr = '\0';
273 <INCLUDE>. { stop("Invalid include line", EX_DATAERR); }
278 <MACRODEF>{WORD}{SPACE} {
281 /* Strip space and return as a normal symbol */
283 while (*yptr != ' ' && *yptr != '\t')
286 yylval.sym = symtable_get(yytext);
287 string_buf_ptr = string_buf;
293 * We store the symbol with its opening
294 * parren so we can differentiate macros
295 * that take args from macros with the
296 * same name that do not take args as
300 yylval.sym = symtable_get(yytext);
304 <MACROARGLIST>{WORD} {
308 <MACROARGLIST>{SPACE} ;
313 string_buf_ptr = string_buf;
318 snprintf(buf, sizeof(buf), "Invalid character "
319 "'%c' in macro argument list",
321 stop(buf, EX_DATAERR);
323 <MACROCALLARGS>{SPACE} ;
326 if (parren_count == 1)
328 *string_buf_ptr++ = '(';
332 if (parren_count == 0) {
336 *string_buf_ptr++ = ')';
338 <MACROCALLARGS>{MCARG} {
343 *string_buf_ptr++ = *yptr++;
346 if (string_buf_ptr != string_buf) {
348 * Return an argument and
349 * rescan this comma so we
350 * can return it as well.
352 *string_buf_ptr = '\0';
353 yylval.str = string_buf;
354 string_buf_ptr = string_buf;
361 /* Eat escaped newlines. */
366 /* Macros end on the first unescaped newline. */
368 *string_buf_ptr = '\0';
369 yylval.str = string_buf;
378 while (c = *yptr++) {
380 * Strip carriage returns.
384 *string_buf_ptr++ = c;
391 /* May be a symbol or a macro invocation. */
392 yylval.sym = symtable_get(yytext);
393 if (yylval.sym->type == MACRO) {
394 YY_BUFFER_STATE old_state;
395 YY_BUFFER_STATE temp_state;
397 ycopy = strdup(yytext);
398 yptr = ycopy + yyleng;
401 old_state = YY_CURRENT_BUFFER;
403 yy_create_buffer(stdin,
405 yy_switch_to_buffer(temp_state);
406 mm_switch_to_buffer(old_state);
408 mm_switch_to_buffer(temp_state);
409 yy_switch_to_buffer(old_state);
410 mm_delete_buffer(temp_state);
411 expand_macro(yylval.sym);
413 if (yylval.sym->type == UNINITIALIZED) {
414 /* Try without the '(' */
415 symbol_delete(yylval.sym);
416 yytext[yyleng-1] = '\0';
418 symtable_get(yytext);
425 yylval.sym = symtable_get(yytext);
426 if (yylval.sym->type == MACRO) {
427 expand_macro(yylval.sym);
433 snprintf(buf, sizeof(buf), "Invalid character "
435 stop(buf, EX_DATAERR);
439 typedef struct include {
440 YY_BUFFER_STATE buffer;
443 SLIST_ENTRY(include) links;
446 SLIST_HEAD(, include) include_stack;
449 include_file(char *file_name, include_type type)
455 /* Try the current directory first */
456 if (includes_search_curdir != 0 || type == SOURCE_FILE)
457 newfile = fopen(file_name, "r");
459 if (newfile == NULL && type != SOURCE_FILE) {
460 path_entry_t include_dir;
461 for (include_dir = search_path.slh_first;
463 include_dir = include_dir->links.sle_next) {
464 char fullname[PATH_MAX];
466 if ((include_dir->quoted_includes_only == TRUE)
467 && (type != QUOTED_INCLUDE))
470 snprintf(fullname, sizeof(fullname),
471 "%s/%s", include_dir->directory, file_name);
473 if ((newfile = fopen(fullname, "r")) != NULL)
478 if (newfile == NULL) {
480 stop("Unable to open input file", EX_SOFTWARE);
484 if (type != SOURCE_FILE) {
485 include = (include_t *)malloc(sizeof(include_t));
486 if (include == NULL) {
487 stop("Unable to allocate include stack entry",
491 include->buffer = YY_CURRENT_BUFFER;
492 include->lineno = yylineno;
493 include->filename = yyfilename;
494 SLIST_INSERT_HEAD(&include_stack, include, links);
496 yy_switch_to_buffer(yy_create_buffer(newfile, YY_BUF_SIZE));
498 yyfilename = strdup(file_name);
501 static void next_substitution(struct symbol *mac_symbol, const char *body_pos,
502 const char **next_match,
503 struct macro_arg **match_marg, regmatch_t *match);
506 expand_macro(struct symbol *macro_symbol)
508 struct macro_arg *marg;
509 struct macro_arg *match_marg;
510 const char *body_head;
511 const char *body_pos;
512 const char *next_match;
515 * Due to the nature of unput, we must work
516 * backwards through the macro body performing
519 body_head = macro_symbol->info.macroinfo->body;
520 body_pos = body_head + strlen(body_head);
521 while (body_pos > body_head) {
524 next_match = body_head;
526 next_substitution(macro_symbol, body_pos, &next_match,
527 &match_marg, &match);
529 /* Put back everything up until the replacement. */
530 while (body_pos > next_match)
533 /* Perform the replacement. */
534 if (match_marg != NULL) {
537 next_match = match_marg->replacement_text;
538 strp = next_match + strlen(next_match);
539 while (strp > next_match)
542 /* Skip past the unexpanded macro arg. */
543 body_pos -= match.rm_eo - match.rm_so;
547 /* Cleanup replacement text. */
548 STAILQ_FOREACH(marg, ¯o_symbol->info.macroinfo->args, links) {
549 free(marg->replacement_text);
554 * Find the next substitution in the macro working backwards from
555 * body_pos until the beginning of the macro buffer. next_match
556 * should be initialized to the beginning of the macro buffer prior
557 * to calling this routine.
560 next_substitution(struct symbol *mac_symbol, const char *body_pos,
561 const char **next_match, struct macro_arg **match_marg,
564 regmatch_t matches[2];
565 struct macro_arg *marg;
566 const char *search_pos;
570 search_pos = *next_match;
572 STAILQ_FOREACH(marg, &mac_symbol->info.macroinfo->args, links) {
574 retval = regexec(&marg->arg_regex, search_pos, 2,
577 && (matches[1].rm_eo + search_pos) <= body_pos
578 && (matches[1].rm_eo + search_pos) > *next_match) {
580 *next_match = match->rm_eo + search_pos;
584 } while (search_pos != *next_match);
592 yy_delete_buffer(YY_CURRENT_BUFFER);
594 if (yyfilename != NULL)
597 include = include_stack.slh_first;
598 if (include != NULL) {
599 yy_switch_to_buffer(include->buffer);
600 yylineno = include->lineno;
601 yyfilename = include->filename;
602 SLIST_REMOVE_HEAD(&include_stack, links);