]> git.sur5r.net Git - cc65/blob - src/ca65/scanner.c
The line counter got confused for lines with more than 256 chars. Removed the
[cc65] / src / ca65 / scanner.c
1 /*****************************************************************************/
2 /*                                                                           */
3 /*                                 scanner.c                                 */
4 /*                                                                           */
5 /*                  The scanner for the ca65 macroassembler                  */
6 /*                                                                           */
7 /*                                                                           */
8 /*                                                                           */
9 /* (C) 1998-2011, Ullrich von Bassewitz                                      */
10 /*                Roemerstrasse 52                                           */
11 /*                D-70794 Filderstadt                                        */
12 /* EMail:         uz@cc65.org                                                */
13 /*                                                                           */
14 /*                                                                           */
15 /* This software is provided 'as-is', without any expressed or implied       */
16 /* warranty.  In no event will the authors be held liable for any damages    */
17 /* arising from the use of this software.                                    */
18 /*                                                                           */
19 /* Permission is granted to anyone to use this software for any purpose,     */
20 /* including commercial applications, and to alter it and redistribute it    */
21 /* freely, subject to the following restrictions:                            */
22 /*                                                                           */
23 /* 1. The origin of this software must not be misrepresented; you must not   */
24 /*    claim that you wrote the original software. If you use this software   */
25 /*    in a product, an acknowledgment in the product documentation would be  */
26 /*    appreciated but is not required.                                       */
27 /* 2. Altered source versions must be plainly marked as such, and must not   */
28 /*    be misrepresented as being the original software.                      */
29 /* 3. This notice may not be removed or altered from any source              */
30 /*    distribution.                                                          */
31 /*                                                                           */
32 /*****************************************************************************/
33
34
35
36 #include <stdio.h>
37 #include <stdlib.h>
38 #include <string.h>
39 #include <ctype.h>
40 #include <errno.h>
41 #include <sys/types.h>          /* EMX needs this */
42 #include <sys/stat.h>
43
44 /* common */
45 #include "addrsize.h"
46 #include "attrib.h"
47 #include "chartype.h"
48 #include "check.h"
49 #include "fname.h"
50 #include "xmalloc.h"
51
52 /* ca65 */
53 #include "condasm.h"
54 #include "error.h"
55 #include "filetab.h"
56 #include "global.h"
57 #include "incpath.h"
58 #include "instr.h"
59 #include "istack.h"
60 #include "listing.h"
61 #include "macro.h"
62 #include "toklist.h"
63 #include "scanner.h"
64
65
66
67 /*****************************************************************************/
68 /*                                   Data                                    */
69 /*****************************************************************************/
70
71
72
73 /* Current input token incl. attributes */
74 Token CurTok = STATIC_TOKEN_INITIALIZER;
75
76 /* Struct to handle include files. */
77 typedef struct InputFile InputFile;
78 struct InputFile {
79     FILE*           F;                  /* Input file descriptor */
80     FilePos         Pos;                /* Position in file */
81     token_t         Tok;                /* Last token */
82     int             C;                  /* Last character */
83     StrBuf          Line;               /* The current input line */
84     int             IncSearchPath;      /* True if we've added a search path */
85     int             BinSearchPath;      /* True if we've added a search path */
86     InputFile*      Next;               /* Linked list of input files */
87 };
88
89 /* Struct to handle textual input data */
90 typedef struct InputData InputData;
91 struct InputData {
92     char*           Text;               /* Pointer to the text data */
93     const char*     Pos;                /* Pointer to current position */
94     int             Malloced;           /* Memory was malloced */
95     token_t         Tok;                /* Last token */
96     int             C;                  /* Last character */
97     InputData*      Next;               /* Linked list of input data */
98 };
99
100 /* Input source: Either file or data */
101 typedef struct CharSource CharSource;
102
103 /* Set of input functions */
104 typedef struct CharSourceFunctions CharSourceFunctions;
105 struct CharSourceFunctions {
106     void (*MarkStart) (CharSource*);    /* Mark the start pos of a token */
107     void (*NextChar) (CharSource*);     /* Read next char from input */
108     void (*Done) (CharSource*);         /* Close input source */
109 };
110
111 /* Input source: Either file or data */
112 struct CharSource {
113     CharSource*                 Next;   /* Linked list of char sources */
114     token_t                     Tok;    /* Last token */
115     int                         C;      /* Last character */
116     const CharSourceFunctions*  Func;   /* Pointer to function table */
117     union {
118         InputFile               File;   /* File data */
119         InputData               Data;   /* Textual data */
120     }                           V;
121 };
122
123 /* Current input variables */
124 static CharSource* Source       = 0;    /* Current char source */
125 static unsigned     FCount      = 0;    /* Count of input files */
126 static int          C           = 0;    /* Current input character */
127
128 /* Force end of assembly */
129 int               ForcedEnd     = 0;
130
131 /* List of dot keywords with the corresponding tokens */
132 struct DotKeyword {
133     const char* Key;                    /* MUST be first field */
134     token_t     Tok;
135 } DotKeywords [] = {
136     { ".A16",           TOK_A16         },
137     { ".A8",            TOK_A8          },
138     { ".ADDR",          TOK_ADDR        },
139     { ".ALIGN",         TOK_ALIGN       },
140     { ".AND",           TOK_BOOLAND     },
141     { ".ASCIIZ",        TOK_ASCIIZ      },
142     { ".ASSERT",        TOK_ASSERT      },
143     { ".AUTOIMPORT",    TOK_AUTOIMPORT  },
144     { ".BANKBYTE",      TOK_BANKBYTE    },
145     { ".BANKBYTES",     TOK_BANKBYTES   },
146     { ".BITAND",        TOK_AND         },
147     { ".BITNOT",        TOK_NOT         },
148     { ".BITOR",         TOK_OR          },
149     { ".BITXOR",        TOK_XOR         },
150     { ".BLANK",         TOK_BLANK       },
151     { ".BSS",           TOK_BSS         },
152     { ".BYT",           TOK_BYTE        },
153     { ".BYTE",          TOK_BYTE        },
154     { ".CASE",          TOK_CASE        },
155     { ".CHARMAP",       TOK_CHARMAP     },
156     { ".CODE",          TOK_CODE        },
157     { ".CONCAT",        TOK_CONCAT      },
158     { ".CONDES",        TOK_CONDES      },
159     { ".CONST",         TOK_CONST       },
160     { ".CONSTRUCTOR",   TOK_CONSTRUCTOR },
161     { ".CPU",           TOK_CPU         },
162     { ".DATA",          TOK_DATA        },
163     { ".DBG",           TOK_DBG         },
164     { ".DBYT",          TOK_DBYT        },
165     { ".DEBUGINFO",     TOK_DEBUGINFO   },
166     { ".DEF",           TOK_DEFINED     },
167     { ".DEFINE",        TOK_DEFINE      },
168     { ".DEFINED",       TOK_DEFINED     },
169     { ".DELMAC",        TOK_DELMAC      },
170     { ".DELMACRO",      TOK_DELMAC      },
171     { ".DESTRUCTOR",    TOK_DESTRUCTOR  },
172     { ".DWORD",         TOK_DWORD       },
173     { ".ELSE",          TOK_ELSE        },
174     { ".ELSEIF",        TOK_ELSEIF      },
175     { ".END",           TOK_END         },
176     { ".ENDENUM",       TOK_ENDENUM     },
177     { ".ENDIF",         TOK_ENDIF       },
178     { ".ENDMAC",        TOK_ENDMACRO    },
179     { ".ENDMACRO",      TOK_ENDMACRO    },
180     { ".ENDPROC",       TOK_ENDPROC     },
181     { ".ENDREP",        TOK_ENDREP      },
182     { ".ENDREPEAT",     TOK_ENDREP      },
183     { ".ENDSCOPE",      TOK_ENDSCOPE    },
184     { ".ENDSTRUCT",     TOK_ENDSTRUCT   },
185     { ".ENDUNION",      TOK_ENDUNION    },
186     { ".ENUM",          TOK_ENUM        },
187     { ".ERROR",         TOK_ERROR       },
188     { ".EXITMAC",       TOK_EXITMACRO   },
189     { ".EXITMACRO",     TOK_EXITMACRO   },
190     { ".EXPORT",        TOK_EXPORT      },
191     { ".EXPORTZP",      TOK_EXPORTZP    },
192     { ".FARADDR",       TOK_FARADDR     },
193     { ".FATAL",         TOK_FATAL       },
194     { ".FEATURE",       TOK_FEATURE     },
195     { ".FILEOPT",       TOK_FILEOPT     },
196     { ".FOPT",          TOK_FILEOPT     },
197     { ".FORCEIMPORT",   TOK_FORCEIMPORT },
198     { ".FORCEWORD",     TOK_FORCEWORD   },
199     { ".GLOBAL",        TOK_GLOBAL      },
200     { ".GLOBALZP",      TOK_GLOBALZP    },
201     { ".HIBYTE",        TOK_HIBYTE      },
202     { ".HIBYTES",       TOK_HIBYTES     },
203     { ".HIWORD",        TOK_HIWORD      },
204     { ".I16",           TOK_I16         },
205     { ".I8",            TOK_I8          },
206     { ".IDENT",         TOK_MAKEIDENT   },
207     { ".IF",            TOK_IF          },
208     { ".IFBLANK",       TOK_IFBLANK     },
209     { ".IFCONST",       TOK_IFCONST     },
210     { ".IFDEF",         TOK_IFDEF       },
211     { ".IFNBLANK",      TOK_IFNBLANK    },
212     { ".IFNCONST",      TOK_IFNCONST    },
213     { ".IFNDEF",        TOK_IFNDEF      },
214     { ".IFNREF",        TOK_IFNREF      },
215     { ".IFP02",         TOK_IFP02       },
216     { ".IFP816",        TOK_IFP816      },
217     { ".IFPC02",        TOK_IFPC02      },
218     { ".IFPSC02",       TOK_IFPSC02     },
219     { ".IFREF",         TOK_IFREF       },
220     { ".IMPORT",        TOK_IMPORT      },
221     { ".IMPORTZP",      TOK_IMPORTZP    },
222     { ".INCBIN",        TOK_INCBIN      },
223     { ".INCLUDE",       TOK_INCLUDE     },
224     { ".INTERRUPTOR",   TOK_INTERRUPTOR },
225     { ".LEFT",          TOK_LEFT        },
226     { ".LINECONT",      TOK_LINECONT    },
227     { ".LIST",          TOK_LIST        },
228     { ".LISTBYTES",     TOK_LISTBYTES   },
229     { ".LOBYTE",        TOK_LOBYTE      },
230     { ".LOBYTES",       TOK_LOBYTES     },
231     { ".LOCAL",         TOK_LOCAL       },
232     { ".LOCALCHAR",     TOK_LOCALCHAR   },
233     { ".LOWORD",        TOK_LOWORD      },
234     { ".MAC",           TOK_MACRO       },
235     { ".MACPACK",       TOK_MACPACK     },
236     { ".MACRO",         TOK_MACRO       },
237     { ".MATCH",         TOK_MATCH       },
238     { ".MAX",           TOK_MAX         },
239     { ".MID",           TOK_MID         },
240     { ".MIN",           TOK_MIN         },
241     { ".MOD",           TOK_MOD         },
242     { ".NOT",           TOK_BOOLNOT     },
243     { ".NULL",          TOK_NULL        },
244     { ".OR",            TOK_BOOLOR      },
245     { ".ORG",           TOK_ORG         },
246     { ".OUT",           TOK_OUT         },
247     { ".P02",           TOK_P02         },
248     { ".P816",          TOK_P816        },
249     { ".PAGELEN",       TOK_PAGELENGTH  },
250     { ".PAGELENGTH",    TOK_PAGELENGTH  },
251     { ".PARAMCOUNT",    TOK_PARAMCOUNT  },
252     { ".PC02",          TOK_PC02        },
253     { ".POPCPU",        TOK_POPCPU      },
254     { ".POPSEG",        TOK_POPSEG      },
255     { ".PROC",          TOK_PROC        },
256     { ".PSC02",         TOK_PSC02       },
257     { ".PUSHCPU",       TOK_PUSHCPU     },
258     { ".PUSHSEG",       TOK_PUSHSEG     },
259     { ".REF",           TOK_REFERENCED  },
260     { ".REFERENCED",    TOK_REFERENCED  },
261     { ".RELOC",         TOK_RELOC       },
262     { ".REPEAT",        TOK_REPEAT      },
263     { ".RES",           TOK_RES         },
264     { ".RIGHT",         TOK_RIGHT       },
265     { ".RODATA",        TOK_RODATA      },
266     { ".SCOPE",         TOK_SCOPE       },
267     { ".SEGMENT",       TOK_SEGMENT     },
268     { ".SET",           TOK_SET         },
269     { ".SETCPU",        TOK_SETCPU      },
270     { ".SHL",           TOK_SHL         },
271     { ".SHR",           TOK_SHR         },
272     { ".SIZEOF",        TOK_SIZEOF      },
273     { ".SMART",         TOK_SMART       },
274     { ".SPRINTF",       TOK_SPRINTF     },
275     { ".STRAT",         TOK_STRAT       },
276     { ".STRING",        TOK_STRING      },
277     { ".STRLEN",        TOK_STRLEN      },
278     { ".STRUCT",        TOK_STRUCT      },
279     { ".SUNPLUS",       TOK_SUNPLUS     },
280     { ".TAG",           TOK_TAG         },
281     { ".TCOUNT",        TOK_TCOUNT      },
282     { ".TIME",          TOK_TIME        },
283     { ".UNDEF",         TOK_UNDEF       },
284     { ".UNDEFINE",      TOK_UNDEF       },
285     { ".UNION",         TOK_UNION       },
286     { ".VERSION",       TOK_VERSION     },
287     { ".WARNING",       TOK_WARNING     },
288     { ".WORD",          TOK_WORD        },
289     { ".XMATCH",        TOK_XMATCH      },
290     { ".XOR",           TOK_BOOLXOR     },
291     { ".ZEROPAGE",      TOK_ZEROPAGE    },
292 };
293
294
295
296 /*****************************************************************************/
297 /*                            CharSource functions                           */
298 /*****************************************************************************/
299
300
301
302 static void UseCharSource (CharSource* S)
303 /* Initialize a new input source and start to use it. */
304 {
305     /* Remember the current input char and token */
306     S->Tok      = CurTok.Tok;
307     S->C        = C;
308
309     /* Use the new input source */
310     S->Next     = Source;
311     Source      = S;
312
313     /* Read the first character from the new file */
314     S->Func->NextChar (S);
315
316     /* Setup the next token so it will be skipped on the next call to
317      * NextRawTok().
318      */
319     CurTok.Tok = TOK_SEP;
320 }
321
322
323
324 static void DoneCharSource (void)
325 /* Close the top level character source */
326 {
327     CharSource* S;
328
329     /* First, call the type specific function */
330     Source->Func->Done (Source);
331
332     /* Restore the old token */
333     CurTok.Tok = Source->Tok;
334     C   = Source->C;
335
336     /* Remember the last stacked input source */
337     S = Source->Next;
338
339     /* Delete the top level one ... */
340     xfree (Source);
341
342     /* ... and use the one before */
343     Source = S;
344 }
345
346
347
348 /*****************************************************************************/
349 /*                            InputFile functions                            */
350 /*****************************************************************************/
351
352
353
354 static void IFMarkStart (CharSource* S)
355 /* Mark the start of the next token */
356 {
357     CurTok.Pos = S->V.File.Pos;
358 }
359
360
361
362 static void IFNextChar (CharSource* S)
363 /* Read the next character from the input file */
364 {
365     /* Check for end of line, read the next line if needed */
366     while (SB_GetIndex (&S->V.File.Line) >= SB_GetLen (&S->V.File.Line)) {
367
368         unsigned Len;
369
370         /* End of current line reached, read next line */
371         SB_Clear (&S->V.File.Line);
372         while (1) {
373
374             int N = fgetc (S->V.File.F);
375             if (N == EOF) {
376                 /* End of file. Accept files without a newline at the end */
377                 if (SB_NotEmpty (&S->V.File.Line)) {
378                     break;
379                 }
380
381                 /* No more data - add an empty line to the listing. This
382                  * is a small hack needed to keep the PC output in sync.
383                  */
384                 NewListingLine (&EmptyStrBuf, S->V.File.Pos.Name, FCount);
385                 C = EOF;
386                 return;
387
388             /* Check for end of line */
389             } else if (N == '\n') {
390
391                 /* End of line */
392                 break;
393
394             /* Collect other stuff */
395             } else {
396
397                 /* Append data to line */
398                 SB_AppendChar (&S->V.File.Line, N);
399
400             }
401         }
402
403
404         /* If we come here, we have a new input line. To avoid problems
405          * with strange line terminators, remove all whitespace from the
406          * end of the line, the add a single newline.
407          */
408         Len = SB_GetLen (&S->V.File.Line);
409         while (Len > 0 && IsSpace (SB_AtUnchecked (&S->V.File.Line, Len-1))) {
410             --Len;
411         }
412         SB_Drop (&S->V.File.Line, SB_GetLen (&S->V.File.Line) - Len);
413         SB_AppendChar (&S->V.File.Line, '\n');
414
415         /* Terminate the string buffer */
416         SB_Terminate (&S->V.File.Line);
417
418         /* One more line */
419         S->V.File.Pos.Line++;
420
421         /* Remember the new line for the listing */
422         NewListingLine (&S->V.File.Line, S->V.File.Pos.Name, FCount);
423
424     }
425
426     /* Set the column pointer */
427     S->V.File.Pos.Col = SB_GetIndex (&S->V.File.Line);
428
429     /* Return the next character from the buffer */
430     C = SB_Get (&S->V.File.Line);
431 }
432
433
434
435 void IFDone (CharSource* S)
436 /* Close the current input file */
437 {
438     /* We're at the end of an include file. Check if we have any
439      * open .IFs, or any open token lists in this file. This
440      * enforcement is artificial, using conditionals that start
441      * in one file and end in another are uncommon, and don't
442      * allowing these things will help finding errors.
443      */
444     CheckOpenIfs ();
445
446     /* If we've added search paths for this file, remove them */
447     if (S->V.File.IncSearchPath) {
448         PopSearchPath (IncSearchPath);
449     }
450     if (S->V.File.BinSearchPath) {
451         PopSearchPath (BinSearchPath);
452     }
453
454     /* Free the line buffer */
455     SB_Done (&S->V.File.Line);
456
457     /* Close the input file and decrement the file count. We will ignore
458      * errors here, since we were just reading from the file.
459      */
460     (void) fclose (S->V.File.F);
461     --FCount;
462 }
463
464
465
466 /* Set of input file handling functions */
467 static const CharSourceFunctions IFFunc = {
468     IFMarkStart,
469     IFNextChar,
470     IFDone
471 };
472
473
474
475 int NewInputFile (const char* Name)
476 /* Open a new input file. Returns true if the file could be successfully opened
477  * and false otherwise.
478  */
479 {
480     int         RetCode = 0;            /* Return code. Assume an error. */
481     char*       PathName = 0;
482     FILE*       F;
483     struct stat Buf;
484     StrBuf      NameBuf;                /* No need to initialize */
485     StrBuf      Path = AUTO_STRBUF_INITIALIZER;
486     unsigned    FileIdx;
487     CharSource* S;
488
489
490     /* If this is the main file, just try to open it. If it's an include file,
491      * search for it using the include path list.
492      */
493     if (FCount == 0) {
494         /* Main file */
495         F = fopen (Name, "r");
496         if (F == 0) {
497             Fatal ("Cannot open input file `%s': %s", Name, strerror (errno));
498         }
499     } else {
500         /* We are on include level. Search for the file in the include
501          * directories.
502          */
503         PathName = SearchFile (IncSearchPath, Name);
504         if (PathName == 0 || (F = fopen (PathName, "r")) == 0) {
505             /* Not found or cannot open, print an error and bail out */
506             Error ("Cannot open include file `%s': %s", Name, strerror (errno));
507             goto ExitPoint;
508         }
509
510         /* Use the path name from now on */
511         Name = PathName;
512     }
513
514     /* Stat the file and remember the values. There a race condition here,
515      * since we cannot use fileno() (non standard identifier in standard
516      * header file), and therefore not fstat. When using stat with the
517      * file name, there's a risk that the file was deleted and recreated
518      * while it was open. Since mtime and size are only used to check
519      * if a file has changed in the debugger, we will ignore this problem
520      * here.
521      */
522     if (stat (Name, &Buf) != 0) {
523         Fatal ("Cannot stat input file `%s': %s", Name, strerror (errno));
524     }
525
526     /* Add the file to the input file table and remember the index */
527     FileIdx = AddFile (SB_InitFromString (&NameBuf, Name),
528                        (FCount == 0)? FT_MAIN : FT_INCLUDE,
529                        Buf.st_size, Buf.st_mtime);
530
531     /* Create a new input source variable and initialize it */
532     S                   = xmalloc (sizeof (*S));
533     S->Func             = &IFFunc;
534     S->V.File.F         = F;
535     S->V.File.Pos.Line  = 0;
536     S->V.File.Pos.Col   = 0;
537     S->V.File.Pos.Name  = FileIdx;
538     SB_Init (&S->V.File.Line);
539
540     /* Push the path for this file onto the include search lists */
541     SB_CopyBuf (&Path, Name, FindName (Name) - Name);
542     SB_Terminate (&Path);
543     S->V.File.IncSearchPath = PushSearchPath (IncSearchPath, SB_GetConstBuf (&Path));
544     S->V.File.BinSearchPath = PushSearchPath (BinSearchPath, SB_GetConstBuf (&Path));
545     SB_Done (&Path);
546
547     /* Count active input files */
548     ++FCount;
549
550     /* Use this input source */
551     UseCharSource (S);
552
553     /* File successfully opened */
554     RetCode = 1;
555
556 ExitPoint:
557     /* Free an allocated name buffer */
558     xfree (PathName);
559
560     /* Return the success code */
561     return RetCode;
562 }
563
564
565
566 /*****************************************************************************/
567 /*                            InputData functions                            */
568 /*****************************************************************************/
569
570
571
572 static void IDMarkStart (CharSource* S attribute ((unused)))
573 /* Mark the start of the next token */
574 {
575     /* Nothing to do here */
576 }
577
578
579
580 static void IDNextChar (CharSource* S)
581 /* Read the next character from the input text */
582 {
583     C = *S->V.Data.Pos++;
584     if (C == '\0') {
585         /* End of input data */
586         --S->V.Data.Pos;
587         C = EOF;
588     }
589 }
590
591
592
593 void IDDone (CharSource* S)
594 /* Close the current input data */
595 {
596     /* Cleanup the current stuff */
597     if (S->V.Data.Malloced) {
598         xfree (S->V.Data.Text);
599     }
600 }
601
602
603
604 /* Set of input data handling functions */
605 static const CharSourceFunctions IDFunc = {
606     IDMarkStart,
607     IDNextChar,
608     IDDone
609 };
610
611
612
613 void NewInputData (char* Text, int Malloced)
614 /* Add a chunk of input data to the input stream */
615 {
616     CharSource* S;
617
618     /* Create a new input source variable and initialize it */
619     S                   = xmalloc (sizeof (*S));
620     S->Func             = &IDFunc;
621     S->V.Data.Text      = Text;
622     S->V.Data.Pos       = Text;
623     S->V.Data.Malloced  = Malloced;
624
625     /* Use this input source */
626     UseCharSource (S);
627 }
628
629
630
631 /*****************************************************************************/
632 /*                    Character classification functions                     */
633 /*****************************************************************************/
634
635
636
637 int IsIdChar (int C)
638 /* Return true if the character is a valid character for an identifier */
639 {
640     return IsAlNum (C)                  ||
641            (C == '_')                   ||
642            (C == '@' && AtInIdents)     ||
643            (C == '$' && DollarInIdents);
644 }
645
646
647
648 int IsIdStart (int C)
649 /* Return true if the character may start an identifier */
650 {
651     return IsAlpha (C) || C == '_';
652 }
653
654
655
656 /*****************************************************************************/
657 /*                                   Code                                    */
658 /*****************************************************************************/
659
660
661
662 static unsigned DigitVal (unsigned char C)
663 /* Convert a digit into it's numerical representation */
664 {
665     if (IsDigit (C)) {
666         return C - '0';
667     } else {
668         return toupper (C) - 'A' + 10;
669     }
670 }
671
672
673
674 static void NextChar (void)
675 /* Read the next character from the input file */
676 {
677     Source->Func->NextChar (Source);
678 }
679
680
681
682 void LocaseSVal (void)
683 /* Make SVal lower case */
684 {
685     SB_ToLower (&CurTok.SVal);
686 }
687
688
689
690 void UpcaseSVal (void)
691 /* Make SVal upper case */
692 {
693     SB_ToUpper (&CurTok.SVal);
694 }
695
696
697
698 static int CmpDotKeyword (const void* K1, const void* K2)
699 /* Compare function for the dot keyword search */
700 {
701     return strcmp (((struct DotKeyword*)K1)->Key, ((struct DotKeyword*)K2)->Key);
702 }
703
704
705
706 static token_t FindDotKeyword (void)
707 /* Find the dot keyword in SVal. Return the corresponding token if found,
708  * return TOK_NONE if not found.
709  */
710 {
711     struct DotKeyword K;
712     struct DotKeyword* R;
713
714     /* Initialize K */
715     K.Key = SB_GetConstBuf (&CurTok.SVal);
716     K.Tok = 0;
717
718     /* If we aren't in ignore case mode, we have to uppercase the keyword */
719     if (!IgnoreCase) {
720         UpcaseSVal ();
721     }
722
723     /* Search for the keyword */
724     R = bsearch (&K, DotKeywords, sizeof (DotKeywords) / sizeof (DotKeywords [0]),
725                  sizeof (DotKeywords [0]), CmpDotKeyword);
726     if (R != 0) {
727         return R->Tok;
728     } else {
729         return TOK_NONE;
730     }
731 }
732
733
734
735 static void ReadIdent (void)
736 /* Read an identifier from the current input position into Ident. Filling SVal
737  * starts at the current position with the next character in C. It is assumed
738  * that any characters already filled in are ok, and the character in C is
739  * checked.
740  */
741 {
742     /* Read the identifier */
743     do {
744         SB_AppendChar (&CurTok.SVal, C);
745         NextChar ();
746     } while (IsIdChar (C));
747     SB_Terminate (&CurTok.SVal);
748
749     /* If we should ignore case, convert the identifier to upper case */
750     if (IgnoreCase) {
751         UpcaseSVal ();
752     }
753 }
754
755
756
757 static void ReadStringConst (int StringTerm)
758 /* Read a string constant into SVal. */
759 {
760     /* Skip the leading string terminator */
761     NextChar ();
762
763     /* Read the string */
764     while (1) {
765         if (C == StringTerm) {
766             break;
767         }
768         if (C == '\n' || C == EOF) {
769             Error ("Newline in string constant");
770             break;
771         }
772
773         /* Append the char to the string */
774         SB_AppendChar (&CurTok.SVal, C);
775
776         /* Skip the character */
777         NextChar ();
778     }
779
780     /* Skip the trailing terminator */
781     NextChar ();
782
783     /* Terminate the string */
784     SB_Terminate (&CurTok.SVal);
785 }
786
787
788
789 static int Sweet16Reg (const StrBuf* Id)
790 /* Check if the given identifier is a sweet16 register. Return -1 if this is
791  * not the case, return the register number otherwise.
792  */
793 {
794     unsigned RegNum;
795     char Check;
796
797     if (SB_GetLen (Id) < 2) {
798         return -1;
799     }
800     if (toupper (SB_AtUnchecked (Id, 0)) != 'R') {
801         return -1;
802     }
803     if (!IsDigit (SB_AtUnchecked (Id, 1))) {
804         return -1;
805     }
806
807     if (sscanf (SB_GetConstBuf (Id)+1, "%u%c", &RegNum, &Check) != 1 || RegNum > 15) {
808         /* Invalid register */
809         return -1;
810     }
811
812     /* The register number is valid */
813     return (int) RegNum;
814 }
815
816
817
818 void NextRawTok (void)
819 /* Read the next raw token from the input stream */
820 {
821     /* If we've a forced end of assembly, don't read further */
822     if (ForcedEnd) {
823         CurTok.Tok = TOK_EOF;
824         return;
825     }
826
827 Restart:
828     /* Check if we have tokens from another input source */
829     if (InputFromStack ()) {
830         if (CurTok.Tok == TOK_IDENT && IsDefine (&CurTok.SVal)) {
831             /* This is a define style macro - expand it */
832             MacExpandStart ();
833             goto Restart;
834         }
835         return;
836     }
837
838 Again:
839     /* Skip whitespace, remember if we had some */
840     if ((CurTok.WS = IsBlank (C)) != 0) {
841         do {
842             NextChar ();
843         } while (IsBlank (C));
844     }
845
846     /* Mark the file position of the next token */
847     Source->Func->MarkStart (Source);
848
849     /* Clear the string attribute */
850     SB_Clear (&CurTok.SVal);
851
852     /* Generate line info for the current token */
853     GenLineInfo (LI_SLOT_ASM, &CurTok.Pos);
854
855     /* Hex number or PC symbol? */
856     if (C == '$') {
857         NextChar ();
858
859         /* Hex digit must follow or DollarIsPC must be enabled */
860         if (!IsXDigit (C)) {
861             if (DollarIsPC) {
862                 CurTok.Tok = TOK_PC;
863                 return;
864             } else {
865                 Error ("Hexadecimal digit expected");
866             }
867         }
868
869         /* Read the number */
870         CurTok.IVal = 0;
871         while (IsXDigit (C)) {
872             if (CurTok.IVal & 0xF0000000) {
873                 Error ("Overflow in hexadecimal number");
874                 CurTok.IVal = 0;
875             }
876             CurTok.IVal = (CurTok.IVal << 4) + DigitVal (C);
877             NextChar ();
878         }
879
880         /* This is an integer constant */
881         CurTok.Tok = TOK_INTCON;
882         return;
883     }
884
885     /* Binary number? */
886     if (C == '%') {
887         NextChar ();
888
889         /* 0 or 1 must follow */
890         if (!IsBDigit (C)) {
891             Error ("Binary digit expected");
892         }
893
894         /* Read the number */
895         CurTok.IVal = 0;
896         while (IsBDigit (C)) {
897             if (CurTok.IVal & 0x80000000) {
898                 Error ("Overflow in binary number");
899                 CurTok.IVal = 0;
900             }
901             CurTok.IVal = (CurTok.IVal << 1) + DigitVal (C);
902             NextChar ();
903         }
904
905         /* This is an integer constant */
906         CurTok.Tok = TOK_INTCON;
907         return;
908     }
909
910     /* Number? */
911     if (IsDigit (C)) {
912
913         char Buf[16];
914         unsigned Digits;
915         unsigned Base;
916         unsigned I;
917         long     Max;
918         unsigned DVal;
919
920         /* Ignore leading zeros */
921         while (C == '0') {
922             NextChar ();
923         }
924
925         /* Read the number into Buf counting the digits */
926         Digits = 0;
927         while (IsXDigit (C)) {
928
929             /* Buf is big enough to allow any decimal and hex number to
930              * overflow, so ignore excess digits here, they will be detected
931              * when we convert the value.
932              */
933             if (Digits < sizeof (Buf)) {
934                 Buf[Digits++] = C;
935             }
936
937             NextChar ();
938         }
939
940         /* Allow zilog/intel style hex numbers with a 'h' suffix */
941         if (C == 'h' || C == 'H') {
942             NextChar ();
943             Base = 16;
944             Max  = 0xFFFFFFFFUL / 16;
945         } else {
946             Base = 10;
947             Max  = 0xFFFFFFFFUL / 10;
948         }
949
950         /* Convert the number using the given base */
951         CurTok.IVal = 0;
952         for (I = 0; I < Digits; ++I) {
953             if (CurTok.IVal > Max) {
954                 Error ("Number out of range");
955                 CurTok.IVal = 0;
956                 break;
957             }
958             DVal = DigitVal (Buf[I]);
959             if (DVal > Base) {
960                 Error ("Invalid digits in number");
961                 CurTok.IVal = 0;
962                 break;
963             }
964             CurTok.IVal = (CurTok.IVal * Base) + DVal;
965         }
966
967         /* This is an integer constant */
968         CurTok.Tok = TOK_INTCON;
969         return;
970     }
971
972     /* Control command? */
973     if (C == '.') {
974
975         /* Remember and skip the dot */
976         NextChar ();
977
978         /* Check if it's just a dot */
979         if (!IsIdStart (C)) {
980
981             /* Just a dot */
982             CurTok.Tok = TOK_DOT;
983
984         } else {
985
986             /* Read the remainder of the identifier */
987             SB_AppendChar (&CurTok.SVal, '.');
988             ReadIdent ();
989
990             /* Dot keyword, search for it */
991             CurTok.Tok = FindDotKeyword ();
992             if (CurTok.Tok == TOK_NONE) {
993
994                 /* Not found */
995                 if (!LeadingDotInIdents) {
996                     /* Invalid pseudo instruction */
997                     Error ("`%m%p' is not a recognized control command", &CurTok.SVal);
998                     goto Again;
999                 }
1000
1001                 /* An identifier with a dot. Check if it's a define style
1002                  * macro.
1003                  */
1004                 if (IsDefine (&CurTok.SVal)) {
1005                     /* This is a define style macro - expand it */
1006                     MacExpandStart ();
1007                     goto Restart;
1008                 }
1009
1010                 /* Just an identifier with a dot */
1011                 CurTok.Tok = TOK_IDENT;
1012             }
1013
1014         }
1015         return;
1016     }
1017
1018     /* Indirect op for sweet16 cpu. Must check this before checking for local
1019      * symbols, because these may also use the '@' symbol.
1020      */
1021     if (CPU == CPU_SWEET16 && C == '@') {
1022         NextChar ();
1023         CurTok.Tok = TOK_AT;
1024         return;
1025     }
1026
1027     /* Local symbol? */
1028     if (C == LocalStart) {
1029
1030         /* Read the identifier. */
1031         ReadIdent ();
1032
1033         /* Start character alone is not enough */
1034         if (SB_GetLen (&CurTok.SVal) == 1) {
1035             Error ("Invalid cheap local symbol");
1036             goto Again;
1037         }
1038
1039         /* A local identifier */
1040         CurTok.Tok = TOK_LOCAL_IDENT;
1041         return;
1042     }
1043
1044
1045     /* Identifier or keyword? */
1046     if (IsIdStart (C)) {
1047
1048         /* Read the identifier */
1049         ReadIdent ();
1050
1051         /* Check for special names. Bail out if we have identified the type of
1052          * the token. Go on if the token is an identifier.
1053          */
1054         if (SB_GetLen (&CurTok.SVal) == 1) {
1055             switch (toupper (SB_AtUnchecked (&CurTok.SVal, 0))) {
1056
1057                 case 'A':
1058                     if (C == ':') {
1059                         NextChar ();
1060                         CurTok.Tok = TOK_OVERRIDE_ABS;
1061                     } else {
1062                         CurTok.Tok = TOK_A;
1063                     }
1064                     return;
1065
1066                 case 'F':
1067                     if (C == ':') {
1068                         NextChar ();
1069                         CurTok.Tok = TOK_OVERRIDE_FAR;
1070                         return;
1071                     }
1072                     break;
1073
1074                 case 'S':
1075                     if (CPU == CPU_65816) {
1076                         CurTok.Tok = TOK_S;
1077                         return;
1078                     }
1079                     break;
1080
1081                 case 'X':
1082                     CurTok.Tok = TOK_X;
1083                     return;
1084
1085                 case 'Y':
1086                     CurTok.Tok = TOK_Y;
1087                     return;
1088
1089                 case 'Z':
1090                     if (C == ':') {
1091                         NextChar ();
1092                         CurTok.Tok = TOK_OVERRIDE_ZP;
1093                         return;
1094                     }
1095                     break;
1096
1097                 default:
1098                     break;
1099             }
1100
1101         } else if (CPU == CPU_SWEET16 &&
1102                   (CurTok.IVal = Sweet16Reg (&CurTok.SVal)) >= 0) {
1103
1104             /* A sweet16 register number in sweet16 mode */
1105             CurTok.Tok = TOK_REG;
1106             return;
1107
1108         }
1109
1110         /* Check for define style macro */
1111         if (IsDefine (&CurTok.SVal)) {
1112             /* Macro - expand it */
1113             MacExpandStart ();
1114             goto Restart;
1115         } else {
1116             /* An identifier */
1117             CurTok.Tok = TOK_IDENT;
1118         }
1119         return;
1120     }
1121
1122     /* Ok, let's do the switch */
1123 CharAgain:
1124     switch (C) {
1125
1126         case '+':
1127             NextChar ();
1128             CurTok.Tok = TOK_PLUS;
1129             return;
1130
1131         case '-':
1132             NextChar ();
1133             CurTok.Tok = TOK_MINUS;
1134             return;
1135
1136         case '/':
1137             NextChar ();
1138             if (C != '*') {
1139                 CurTok.Tok = TOK_DIV;
1140             } else if (CComments) {
1141                 /* Remember the position, then skip the '*' */
1142                 Collection LineInfos = STATIC_COLLECTION_INITIALIZER;
1143                 GetFullLineInfo (&LineInfos, 0);
1144                 NextChar ();
1145                 do {
1146                     while (C !=  '*') {
1147                         if (C == EOF) {
1148                             LIError (&LineInfos, "Unterminated comment");
1149                             DoneCollection (&LineInfos);
1150                             goto CharAgain;
1151                         }
1152                         NextChar ();
1153                     }
1154                     NextChar ();
1155                 } while (C != '/');
1156                 NextChar ();
1157                 DoneCollection (&LineInfos);
1158                 goto Again;
1159             }
1160             return;
1161
1162         case '*':
1163             NextChar ();
1164             CurTok.Tok = TOK_MUL;
1165             return;
1166
1167         case '^':
1168             NextChar ();
1169             CurTok.Tok = TOK_XOR;
1170             return;
1171
1172         case '&':
1173             NextChar ();
1174             if (C == '&') {
1175                 NextChar ();
1176                 CurTok.Tok = TOK_BOOLAND;
1177             } else {
1178                 CurTok.Tok = TOK_AND;
1179             }
1180             return;
1181
1182         case '|':
1183             NextChar ();
1184             if (C == '|') {
1185                 NextChar ();
1186                 CurTok.Tok = TOK_BOOLOR;
1187             } else {
1188                 CurTok.Tok = TOK_OR;
1189             }
1190             return;
1191
1192         case ':':
1193             NextChar ();
1194             switch (C) {
1195
1196                 case ':':
1197                     NextChar ();
1198                     CurTok.Tok = TOK_NAMESPACE;
1199                     break;
1200
1201                 case '-':
1202                     CurTok.IVal = 0;
1203                     do {
1204                         --CurTok.IVal;
1205                         NextChar ();
1206                     } while (C == '-');
1207                     CurTok.Tok = TOK_ULABEL;
1208                     break;
1209
1210                 case '+':
1211                     CurTok.IVal = 0;
1212                     do {
1213                         ++CurTok.IVal;
1214                         NextChar ();
1215                     } while (C == '+');
1216                     CurTok.Tok = TOK_ULABEL;
1217                     break;
1218
1219                 case '=':
1220                     NextChar ();
1221                     CurTok.Tok = TOK_ASSIGN;
1222                     break;
1223
1224                 default:
1225                     CurTok.Tok = TOK_COLON;
1226                     break;
1227             }
1228             return;
1229
1230         case ',':
1231             NextChar ();
1232             CurTok.Tok = TOK_COMMA;
1233             return;
1234
1235         case ';':
1236             NextChar ();
1237             while (C != '\n' && C != EOF) {
1238                 NextChar ();
1239             }
1240             goto CharAgain;
1241
1242         case '#':
1243             NextChar ();
1244             CurTok.Tok = TOK_HASH;
1245             return;
1246
1247         case '(':
1248             NextChar ();
1249             CurTok.Tok = TOK_LPAREN;
1250             return;
1251
1252         case ')':
1253             NextChar ();
1254             CurTok.Tok = TOK_RPAREN;
1255             return;
1256
1257         case '[':
1258             NextChar ();
1259             CurTok.Tok = TOK_LBRACK;
1260             return;
1261
1262         case ']':
1263             NextChar ();
1264             CurTok.Tok = TOK_RBRACK;
1265             return;
1266
1267         case '{':
1268             NextChar ();
1269             CurTok.Tok = TOK_LCURLY;
1270             return;
1271
1272         case '}':
1273             NextChar ();
1274             CurTok.Tok = TOK_RCURLY;
1275             return;
1276
1277         case '<':
1278             NextChar ();
1279             if (C == '=') {
1280                 NextChar ();
1281                 CurTok.Tok = TOK_LE;
1282             } else if (C == '<') {
1283                 NextChar ();
1284                 CurTok.Tok = TOK_SHL;
1285             } else if (C == '>') {
1286                 NextChar ();
1287                 CurTok.Tok = TOK_NE;
1288             } else {
1289                 CurTok.Tok = TOK_LT;
1290             }
1291             return;
1292
1293         case '=':
1294             NextChar ();
1295             CurTok.Tok = TOK_EQ;
1296             return;
1297
1298         case '!':
1299             NextChar ();
1300             CurTok.Tok = TOK_BOOLNOT;
1301             return;
1302
1303         case '>':
1304             NextChar ();
1305             if (C == '=') {
1306                 NextChar ();
1307                 CurTok.Tok = TOK_GE;
1308             } else if (C == '>') {
1309                 NextChar ();
1310                 CurTok.Tok = TOK_SHR;
1311             } else {
1312                 CurTok.Tok = TOK_GT;
1313             }
1314             return;
1315
1316         case '~':
1317             NextChar ();
1318             CurTok.Tok = TOK_NOT;
1319             return;
1320
1321         case '\'':
1322             /* Hack: If we allow ' as terminating character for strings, read
1323              * the following stuff as a string, and check for a one character
1324              * string later.
1325              */
1326             if (LooseStringTerm) {
1327                 ReadStringConst ('\'');
1328                 if (SB_GetLen (&CurTok.SVal) == 1) {
1329                     CurTok.IVal = SB_AtUnchecked (&CurTok.SVal, 0);
1330                     CurTok.Tok = TOK_CHARCON;
1331                 } else {
1332                     CurTok.Tok = TOK_STRCON;
1333                 }
1334             } else {
1335                 /* Always a character constant */
1336                 NextChar ();
1337                 if (C == EOF || IsControl (C)) {
1338                     Error ("Illegal character constant");
1339                     goto CharAgain;
1340                 }
1341                 CurTok.IVal = C;
1342                 CurTok.Tok = TOK_CHARCON;
1343                 NextChar ();
1344                 if (C != '\'') {
1345                     if (!MissingCharTerm) {
1346                         Error ("Illegal character constant");
1347                     }
1348                 } else {
1349                     NextChar ();
1350                 }
1351             }
1352             return;
1353
1354         case '\"':
1355             ReadStringConst ('\"');
1356             CurTok.Tok = TOK_STRCON;
1357             return;
1358
1359         case '\\':
1360             /* Line continuation? */
1361             if (LineCont) {
1362                 NextChar ();
1363                 if (C == '\n') {
1364                     /* Handle as white space */
1365                     NextChar ();
1366                     C = ' ';
1367                     goto Again;
1368                 }
1369             }
1370             break;
1371
1372         case '\n':
1373             NextChar ();
1374             CurTok.Tok = TOK_SEP;
1375             return;
1376
1377         case EOF:
1378             CheckInputStack ();
1379             /* In case of the main file, do not close it, but return EOF. */
1380             if (Source && Source->Next) {
1381                 DoneCharSource ();
1382                 goto Again;
1383             } else {
1384                 CurTok.Tok = TOK_EOF;
1385             }
1386             return;
1387     }
1388
1389     /* If we go here, we could not identify the current character. Skip it
1390      * and try again.
1391      */
1392     Error ("Invalid input character: 0x%02X", C & 0xFF);
1393     NextChar ();
1394     goto Again;
1395 }
1396
1397
1398
1399 int GetSubKey (const char** Keys, unsigned Count)
1400 /* Search for a subkey in a table of keywords. The current token must be an
1401  * identifier and all keys must be in upper case. The identifier will be
1402  * uppercased in the process. The function returns the index of the keyword,
1403  * or -1 if the keyword was not found.
1404  */
1405 {
1406     unsigned I;
1407
1408     /* Must have an identifier */
1409     PRECONDITION (CurTok.Tok == TOK_IDENT);
1410
1411     /* If we aren't in ignore case mode, we have to uppercase the identifier */
1412     if (!IgnoreCase) {
1413         UpcaseSVal ();
1414     }
1415
1416     /* Do a linear search (a binary search is not worth the effort) */
1417     for (I = 0; I < Count; ++I) {
1418         if (SB_CompareStr (&CurTok.SVal, Keys [I]) == 0) {
1419             /* Found it */
1420             return I;
1421         }
1422     }
1423
1424     /* Not found */
1425     return -1;
1426 }
1427
1428
1429
1430 unsigned char ParseAddrSize (void)
1431 /* Check if the next token is a keyword that denotes an address size specifier.
1432  * If so, return the corresponding address size constant, otherwise output an
1433  * error message and return ADDR_SIZE_DEFAULT.
1434  */
1435 {
1436     unsigned char AddrSize;
1437
1438     /* Check for an identifier */
1439     if (CurTok.Tok != TOK_IDENT) {
1440         Error ("Address size specifier expected");
1441         return ADDR_SIZE_DEFAULT;
1442     }
1443
1444     /* Convert the attribute */
1445     AddrSize = AddrSizeFromStr (SB_GetConstBuf (&CurTok.SVal));
1446     if (AddrSize == ADDR_SIZE_INVALID) {
1447         Error ("Address size specifier expected");
1448         AddrSize = ADDR_SIZE_DEFAULT;
1449     }
1450
1451     /* Done */
1452     return AddrSize;
1453 }
1454
1455
1456
1457 void InitScanner (const char* InFile)
1458 /* Initialize the scanner, open the given input file */
1459 {
1460     /* Open the input file */
1461     NewInputFile (InFile);
1462 }
1463
1464
1465
1466 void DoneScanner (void)
1467 /* Release scanner resources */
1468 {
1469     DoneCharSource ();
1470 }
1471
1472
1473
1474