* as/asxxsrc/aslex.c: moved from as/mcs51/aslex.c;
[fw/sdcc] / as / mcs51 / asmain.c
1 /* asmain.c */
2
3 /*
4  * (C) Copyright 1989-1995
5  * All Rights Reserved
6  *
7  * Alan R. Baldwin
8  * 721 Berkeley St.
9  * Kent, Ohio  44240
10  *
11  * 29-Oct-97 JLH pass ";!" comments to output file
12  */
13
14 #include <errno.h>
15 #include <stdlib.h>
16 #include <stdio.h>
17 #include <setjmp.h>
18 #include <string.h>
19
20 #include "asm.h"
21
22 /*)Module       asmain.c
23  *
24  *      The module asmain.c includes the command argument parser,
25  *      the three pass sequencer, and the machine independent
26  *      assembler parsing code.
27  *
28  *      asmain.c contains the following functions:
29  *              VOID    main(argc, argv)
30  *              VOID    asexit()
31  *              VOID    asmbl()
32  *              FILE *  afile(fn, ft, wf)
33  *              VOID    newdot(nap)
34  *              VOID    phase(ap, a)
35  *              VOID    usage()
36  *
37  *      asmain.c contains the array char *usetxt[] which
38  *      references the usage text strings printed by usage().
39  */
40
41 static const char *search_path[100];
42 static int search_path_length;
43
44 /**
45  * The search_path_append is used to append another directory to the end
46  * of the include file search path.
47  *
48  * @param dir
49  *     The directory to be added to the path.
50  */
51 void
52 search_path_append(const char *dir)
53 {
54         if (search_path_length < sizeof(search_path)/sizeof(char*))
55         {
56                 search_path[search_path_length++] = dir;
57         }
58 }
59
60 /**
61  * The search_path_fopen function is used to open the named file.  If
62  * the file isn't in the current directory, the search path is then used
63  * to build a series of possible file names, and attempts to open them.
64  * The first found is used.
65  *
66  * @param filename
67  *     The name of the file to be opened.
68  * @param mode
69  *     The mode of the file to be opened.
70  * @returns
71  *     what the fopen function would return on success, or NULL if the
72  *     file is not anywhere in the search path.
73  */
74 static FILE *
75 search_path_fopen(const char *filename, const char *mode)
76 {
77         FILE *fp;
78         int j;
79
80         fp = fopen(filename, mode);
81         if (fp != NULL || filename[0] == '/' || filename[0] == '\\')
82                 return fp;
83         for (j = 0; j < search_path_length; ++j)
84         {
85                 char path[2000];
86
87                 strncpy(path, search_path[j], sizeof(path));
88                 if ((path[strlen(path) - 1] != '/') &&
89                     (path[strlen(path) - 1] != DIR_SEPARATOR_CHAR))
90                 {
91                         strncat(path, DIR_SEPARATOR_STRING, sizeof(path));
92                 }
93                 strncat(path, filename, sizeof(path));
94                 fp = fopen(path, mode);
95                 if (fp != NULL)
96                         return fp;
97         }
98         errno = ENOENT;
99         return NULL;
100 }
101
102 /*)Function     VOID    main(argc, argv)
103  *
104  *              int     argc            argument count
105  *              char *  argv            array of pointers to argument strings
106  *
107  *      The function main() is the entry point to the assembler.
108  *      The purpose of main() is to (1) parse the command line
109  *      arguments for options and source file specifications and
110  *      (2) to process the source files through the 3 pass assembler.
111  *      Before each assembler pass various variables are initialized
112  *      and source files are rewound to their beginning.  During each
113  *      assembler pass each assembler-source text line is processed.
114  *      After each assembler pass the assembler information is flushed
115  *      to any opened output files and the if-else-endif processing
116  *      is checked for proper termination.
117  *
118  *      The function main() is also responsible for opening all
119  *      output files (REL, LST, and SYM), sequencing the global (-g)
120  *      and all-global (-a) variable definitions, and dumping the
121  *      REL file header information.
122  *
123  *      local variables:
124  *              char *  p               pointer to argument string
125  *              int     c               character from argument string
126  *              int     i               argument loop counter
127  *              area *  ap              pointer to area structure
128  *
129  *      global variables:
130  *              int     aflag           -a, make all symbols global flag
131  *              char    afn[]           afile() constructed filespec
132  *              area *  areap           pointer to an area structure
133  *              int     cb[]            array of assembler output values
134  *              int     cbt[]           array of assembler relocation types
135  *                                      describing the data in cb[]
136  *              int     cfile           current file handle index
137  *                                      of input assembly files
138  *              int *   cp              pointer to assembler output array cb[]
139  *              int *   cpt             pointer to assembler relocation type
140  *                                      output array cbt[]
141  *              char    eb[]            array of generated error codes
142  *              char *  ep              pointer into error list array eb[]
143  *              int     fflag           -f(f), relocations flagged flag
144  *              int     flevel          IF-ELSE-ENDIF flag will be non
145  *                                      zero for false conditional case
146  *              Addr_T  fuzz            tracks pass to pass changes in the
147  *                                      address of symbols caused by
148  *                                      variable length instruction formats
149  *              int     gflag           -g, make undefined symbols global flag
150  *              char    ib[]            assembler-source text line
151  *              int     inpfil          count of assembler
152  *                                      input files specified
153  *              int     ifcnd[]         array of IF statement condition
154  *                                      values (0 = FALSE) indexed by tlevel
155  *              int     iflvl[]         array of IF-ELSE-ENDIF flevel
156  *                                      values indexed by tlevel
157  *              int     incfil          current file handle index
158  *                                      for include files
159  *              char *  ip              pointer into the assembler-source
160  *                                      text line in ib[]
161  *              jmp_buf jump_env        compiler dependent structure
162  *                                      used by setjmp() and longjmp()
163  *              int     lflag           -l, generate listing flag
164  *              int     line            current assembler source
165  *                                      line number
166  *              int     lop             current line number on page
167  *              int     oflag           -o, generate relocatable output flag
168  *              int     jflag           -j, generate debug info flag
169  *              int     page            current page number
170  *              int     pflag           enable listing pagination
171  *              int     pass            assembler pass number
172  *              int     radix           current number conversion radix:
173  *                                      2 (binary), 8 (octal), 10 (decimal),
174  *                                      16 (hexadecimal)
175  *              int     sflag           -s, generate symbol table flag
176  *              char    srcfn[][]       array of source file names
177  *              int     srcline[]       current source file line
178  *              char    stb[]           Subtitle string buffer
179  *              sym *   symp            pointer to a symbol structure
180  *              int     tlevel          current conditional level
181  *              int     xflag           -x, listing radix flag
182  *              FILE *  lfp             list output file handle
183  *              FILE *  ofp             relocation output file handle
184  *              FILE *  tfp             symbol table output file handle
185  *              FILE *  sfp[]           array of assembler-source file handles
186  *
187  *      called functions:
188  *              FILE *  afile()         asmain.c
189  *              VOID    allglob()       assym.c
190  *              VOID    asexit()        asmain.c
191  *              VOID    diag()          assubr.c
192  *              VOID    err()           assubr.c
193  *              int     fprintf()       c-library
194  *              int     as_getline()    aslex.c
195  *              VOID    list()          aslist.c
196  *              VOID    lstsym()        aslist.c
197  *              VOID    minit()         ___mch.c
198  *              VOID    newdot()        asmain.c
199  *              VOID    outchk()        asout.c
200  *              VOID    outgsd()        asout.c
201  *              int     rewind()        c-library
202  *              int     setjmp()        c-library
203  *              VOID    symglob()       assym.c
204  *              VOID    syminit()       assym.c
205  *              VOID    usage()         asmain.c
206  *
207  *      side effects:
208  *              Completion of main() completes the assembly process.
209  *              REL, LST, and/or SYM files may be generated.
210  */
211
212 int fatalErrors=0;
213 char relFile[128];
214
215 int
216 main(argc, argv)
217 char *argv[];
218 {
219         register char *p;
220         register int c, i;
221         struct area *ap;
222
223         /*fprintf(stdout, "\n");*/
224         inpfil = -1;
225         pflag = 1;
226         for (i=1; i<argc; ++i) {
227                 p = argv[i];
228                 if (*p == '-') {
229                         if (inpfil >= 0)
230                                 usage();
231                         ++p;
232                         while ((c = *p++) != 0)
233                                 switch(c) {
234
235                                 case 'a':
236                                 case 'A':
237                                         ++aflag;
238                                         break;
239
240                                 case 'c':
241                                 case 'C':
242                                     ++cflag;
243                                     break;
244
245                                 case 'g':
246                                 case 'G':
247                                         ++gflag;
248                                         break;
249
250                                 case 'i':
251                                 case 'I':
252                                         search_path_append(p);
253                                         while (*p)
254                                                 ++p;
255                                         break;
256
257                                 case 'j':               /* JLH: debug info */
258                                 case 'J':
259                                         ++jflag;
260                                         ++oflag;        /* force object */
261                                         break;
262
263                                 case 'l':
264                                 case 'L':
265                                         ++lflag;
266                                         break;
267
268                                 case 'o':
269                                 case 'O':
270                                         ++oflag;
271                                         break;
272
273                                 case 's':
274                                 case 'S':
275                                         ++sflag;
276                                         break;
277
278                                 case 'p':
279                                 case 'P':
280                                         pflag = 0;
281                                         break;
282
283                                 case 'x':
284                                 case 'X':
285                                         xflag = 0;
286                                         break;
287
288                                 case 'q':
289                                 case 'Q':
290                                         xflag = 1;
291                                         break;
292
293                                 case 'd':
294                                 case 'D':
295                                         xflag = 2;
296                                         break;
297
298                                 case 'f':
299                                 case 'F':
300                                         ++fflag;
301                                         break;
302
303                                 default:
304                                         usage();
305                                 }
306                 } else {
307                         if (++inpfil == MAXFIL) {
308                                 fprintf(stderr, "too many input files\n");
309                                 asexit(1);
310                         }
311                         sfp[inpfil] = afile(p, "", 0);
312                         strcpy(srcfn[inpfil],afn);
313                         if (inpfil == 0) {
314                                 if (lflag)
315                                         lfp = afile(p, "lst", 1);
316                                 if (oflag) {
317                                   ofp = afile(p, "rel", 1);
318                                   // save the file name if we have to delete it on error
319                                   strcpy(relFile,afn);
320                                 }
321                                 if (sflag)
322                                         tfp = afile(p, "sym", 1);
323                         }
324                 }
325         }
326         if (inpfil < 0)
327                 usage();
328         syminit();
329         for (pass=0; pass<3; ++pass) {
330                 if (gflag && pass == 1)
331                         symglob();
332                 if (aflag && pass == 1)
333                         allglob();
334                 if (oflag && pass == 2)
335                         outgsd();
336                 flevel = 0;
337                 tlevel = 0;
338                 ifcnd[0] = 0;
339                 iflvl[0] = 0;
340                 radix = 10;
341                 srcline[0] = 0;
342                 page = 0;
343                 stb[0] = 0;
344                 lop  = NLPP;
345                 cfile = 0;
346                 incfil = -1;
347                 for (i = 0; i <= inpfil; i++)
348                         rewind(sfp[i]);
349                 ap = areap;
350                 while (ap) {
351                         ap->a_fuzz = 0;
352                         ap->a_size = 0;
353                         ap = ap->a_ap;
354                 }
355                 fuzz = 0;
356                 dot.s_addr = 0;
357                 dot.s_area = &dca;
358                 symp = &dot;
359                 minit();
360                 while (as_getline()) {
361                         cp = cb;
362                         cpt = cbt;
363                         ep = eb;
364                         ip = ib;
365
366                         /* JLH: if line begins with ";!", then
367                          * pass this comment on to the output file
368                          */
369                         if (oflag && (pass == 1) &&
370                             (ip[0] == ';') && (ip[1] == '!'))
371                         {
372                                 fprintf(ofp, "%s\n", ip );
373                         }
374
375                         if (setjmp(jump_env) == 0)
376                                 asmbl();
377
378                         if (pass == 2) {
379                                 diag();
380                                 list();
381                         }
382                 }
383                 newdot(dot.s_area); /* Flush area info */
384                 if (flevel || tlevel)
385                         err('i');
386         }
387         if (oflag)
388                 outchk(HUGE, HUGE);  /* Flush */
389         if (sflag) {
390                 lstsym(tfp);
391         } else
392         if (lflag) {
393                 lstsym(lfp);
394         }
395         //printf ("aserr: %d\n", aserr);
396         //printf ("fatalErrors: %d\n", fatalErrors);
397         asexit(fatalErrors);
398         return 0; // hush the compiler
399 }
400
401 /*)Function     VOID    asexit(i)
402  *
403  *                      int     i       exit code
404  *
405  *      The function asexit() explicitly closes all open
406  *      files and then terminates the program.
407  *
408  *      local variables:
409  *              int     j               loop counter
410  *
411  *      global variables:
412  *              FILE *  ifp[]           array of include-file file handles
413  *              FILE *  lfp             list output file handle
414  *              FILE *  ofp             relocation output file handle
415  *              FILE *  tfp             symbol table output file handle
416  *              FILE *  sfp[]           array of assembler-source file handles
417  *
418  *      functions called:
419  *              int     fclose()        c-library
420  *              VOID    exit()          c-library
421  *
422  *      side effects:
423  *              All files closed. Program terminates.
424  */
425
426 VOID
427 asexit(i)
428 int i;
429 {
430         int j;
431
432         if (lfp != NULL) fclose(lfp);
433         if (ofp != NULL) fclose(ofp);
434         if (tfp != NULL) fclose(tfp);
435
436         for (j=0; j<MAXFIL && sfp[j] != NULL; j++) {
437                 fclose(sfp[j]);
438         }
439
440         /*for (j=0; j<MAXINC && ifp[j] != NULL; j++) {
441                 fclose(ifp[j]);
442                 }*/
443         if (i) {
444           // remove output file
445           printf ("removing %s\n", relFile);
446           remove(relFile);
447         }
448         exit(i);
449 }
450
451 /*)Function     VOID    asmbl()
452  *
453  *      The function asmbl() scans the assembler-source text for
454  *      (1) labels, global labels, equates, global equates, and local
455  *      symbols, (2) .if, .else, .endif, and .page directives,
456  *      (3) machine independent assembler directives, and (4) machine
457  *      dependent mnemonics.
458  *
459  *      local variables:
460  *              mne *   mp              pointer to a mne structure
461  *              sym *   sp              pointer to a sym structure
462  *              tsym *  tp              pointer to a tsym structure
463  *              int     c               character from assembler-source
464  *                                      text line
465  *              area *  ap              pointer to an area structure
466  *              expr    e1              expression structure
467  *              char    id[]            id string
468  *              char    opt[]           options string
469  *              char    fn[]            filename string
470  *              char *  p               pointer into a string
471  *              int     d               temporary value
472  *              int     n               temporary value
473  *              int     uaf             user area options flag
474  *              int     uf              area options
475  *
476  *      global variables:
477  *              area *  areap           pointer to an area structure
478  *              char    ctype[]         array of character types, one per
479  *                                      ASCII character
480  *              int     flevel          IF-ELSE-ENDIF flag will be non
481  *                                      zero for false conditional case
482  *              Addr_T  fuzz            tracks pass to pass changes in the
483  *                                      address of symbols caused by
484  *                                      variable length instruction formats
485  *              int     ifcnd[]         array of IF statement condition
486  *                                      values (0 = FALSE) indexed by tlevel
487  *              int     iflvl[]         array of IF-ELSE-ENDIF flevel
488  *                                      values indexed by tlevel
489  *              FILE *  ifp[]           array of include-file file handles
490  *              char    incfn[][]       array of include file names
491  *              int     incline[]       current include file line
492  *              int     incfil          current file handle index
493  *                                      for include files
494  *              Addr_T  laddr           address of current assembler line
495  *                                      or value of .if argument
496  *              int     lmode           listing mode
497  *              int     lop             current line number on page
498  *              char    module[]        module name string
499  *              int     pass            assembler pass number
500  *              int     radix           current number conversion radix:
501  *                                      2 (binary), 8 (octal), 10 (decimal),
502  *                                      16 (hexadecimal)
503  *              char    stb[]           Subtitle string buffer
504  *              sym *   symp            pointer to a symbol structure
505  *              char    tb[]            Title string buffer
506  *              int     tlevel          current conditional level
507  *
508  *      functions called:
509  *              Addr_T  absexpr()       asexpr.c
510  *              area *  alookup()       assym.c
511  *              VOID    clrexpr()       asexpr.c
512  *              int     digit()         asexpr.c
513  *              char    endline()       aslex.c
514  *              VOID    err()           assubr.c
515  *              VOID    expr()          asexpr.c
516  *              FILE *  fopen()         c-library
517  *              char    get()           aslex.c
518  *              VOID    getid()         aslex.c
519  *              int     getmap()        aslex.c
520  *              char    getnb()         aslex.c
521  *              VOID    getst()         aslex.c
522  *              sym *   lookup()        assym.c
523  *              VOID    machine()       ___mch.c
524  *              mne *   mlookup()       assym.c
525  *              int     more()          aslex.c
526  *              VOID *  new()           assym.c
527  *              VOID    newdot()        asmain.c
528  *              VOID    outall()        asout.c
529  *              VOID    outab()         asout.c
530  *              VOID    outchk()        asout.c
531  *              VOID    outrb()         asout.c
532  *              VOID    outrw()         asout.c
533  *              VOID    phase()         asmain.c
534  *              VOID    qerr()          assubr.c
535  *              char *  strcpy()        c-library
536  *              char *  strncpy()       c-library
537  *              VOID    unget()         aslex.c
538  */
539
540 VOID
541 asmbl()
542 {
543         register struct mne *mp;
544         register struct sym *sp;
545         register struct tsym *tp;
546         register int c;
547         struct area  *ap;
548         struct expr e1;
549         char id[NCPS];
550         char opt[NCPS];
551         char fn[PATH_MAX];
552         char *p;
553         int d, n, uaf, uf;
554         static struct area *abs_ap; /* pointer to current absolute area structure */
555
556         laddr = dot.s_addr;
557         lmode = SLIST;
558 loop:
559         if ((c=endline()) == 0) { return; }
560         /*
561          * If the first character is a digit then assume
562          * a local symbol is being specified.  The symbol
563          * must end with $: to be valid.
564          *      pass 0:
565          *              Construct a tsym structure at the first
566          *              occurance of the symbol.  Flag the symbol
567          *              as multiply defined if not the first occurance.
568          *      pass 1:
569          *              Load area, address, and fuzz values
570          *              into structure tsym.
571          *      pass 2:
572          *              Check for assembler phase error and
573          *              multiply defined error.
574          */
575         if (ctype[c] & DIGIT) {
576                 if (flevel)
577                         return;
578                 n = 0;
579                 while ((d = digit(c, 10)) >= 0) {
580                         n = 10*n + d;
581                         c = get();
582                 }
583                 if (c != '$' || get() != ':')
584                         qerr();
585                 tp = symp->s_tsym;
586                 if (pass == 0) {
587                         while (tp) {
588                                 if (n == tp->t_num) {
589                                         tp->t_flg |= S_MDF;
590                                         break;
591                                 }
592                                 tp = tp->t_lnk;
593                         }
594                         if (tp == NULL) {
595                                 tp=(struct tsym *) new (sizeof(struct tsym));
596                                 tp->t_lnk = symp->s_tsym;
597                                 tp->t_num = n;
598                                 tp->t_flg = 0;
599                                 tp->t_area = dot.s_area;
600                                 tp->t_addr = dot.s_addr;
601                                 symp->s_tsym = tp;
602                         }
603                 } else {
604                         while (tp) {
605                                 if (n == tp->t_num) {
606                                         break;
607                                 }
608                                 tp = tp->t_lnk;
609                         }
610                         if (tp) {
611                                 if (pass == 1) {
612                                         fuzz = tp->t_addr - dot.s_addr;
613                                         tp->t_area = dot.s_area;
614                                         tp->t_addr = dot.s_addr;
615                                 } else {
616                                         phase(tp->t_area, tp->t_addr);
617                                         if (tp->t_flg & S_MDF)
618                                                 err('m');
619                                 }
620                         } else {
621                                 err('u');
622                         }
623                 }
624                 lmode = ALIST;
625                 goto loop;
626         }
627         /*
628          * If the first character is a letter then assume a label,
629          * symbol, assembler directive, or assembler mnemonic is
630          * being processed.
631          */
632         if ((ctype[c] & LETTER) == 0) {
633                 if (flevel) {
634                         return;
635                 } else {
636                         qerr();
637                 }
638         }
639         getid(id, c);
640         c = getnb();
641         /*
642          * If the next character is a : then a label is being processed.
643          * A double :: defines a global label.  If this is new label
644          * then create a symbol structure.
645          *      pass 0:
646          *              Flag multiply defined labels.
647          *      pass 1:
648          *              Load area, address, and fuzz values
649          *              into structure symp.
650          *      pass 2:
651          *              Check for assembler phase error and
652          *              multiply defined error.
653          */
654         if (c == ':') {
655                 if (flevel)
656                         return;
657                 if ((c = get()) != ':') {
658                         unget(c);
659                         c = 0;
660                 }
661                 symp = lookup(id);
662                 if (symp == &dot)
663                         err('.');
664                 if (pass == 0)
665                         if ((symp->s_type != S_NEW) &&
666                            ((symp->s_flag & S_ASG) == 0))
667                                 symp->s_flag |= S_MDF;
668                 if (pass != 2) {
669                         fuzz = symp->s_addr - dot.s_addr;
670                         symp->s_type = S_USER;
671                         symp->s_area = dot.s_area;
672                         symp->s_addr = dot.s_addr;
673                 } else {
674                         if (symp->s_flag & S_MDF)
675                                 err('m');
676                         phase(symp->s_area, symp->s_addr);
677                 }
678                 if (c) {
679                         symp->s_flag |= S_GBL;
680                 }
681                 lmode = ALIST;
682                 goto loop;
683         }
684         /*
685          * If the next character is a = then an equate is being processed.
686          * A double == defines a global equate.  If this is new variable
687          * then create a symbol structure.
688          */
689         if (c == '=') {
690                 if (flevel)
691                         return;
692                 if ((c = get()) != '=') {
693                         unget(c);
694                         c = 0;
695                 }
696                 clrexpr(&e1);
697                 expr(&e1, 0);
698                 sp = lookup(id);
699                 if (sp == &dot) {
700                         outall();
701                         if (e1.e_flag || e1.e_base.e_ap != dot.s_area)
702                                 err('.');
703                 } else
704                 if (sp->s_type != S_NEW && (sp->s_flag & S_ASG) == 0) {
705                         err('m');
706                 }
707                 sp->s_type = S_USER;
708                 sp->s_area = e1.e_base.e_ap;
709                 sp->s_addr = laddr = e1.e_addr;
710                 sp->s_flag |= S_ASG;
711                 if (c) {
712                         sp->s_flag |= S_GBL;
713                 }
714                 lmode = ELIST;
715                 goto loop;
716         }
717         unget(c);
718         lmode = flevel ? SLIST : CLIST;
719         if ((mp = mlookup(id)) == NULL) {
720                 if (!flevel)
721                         err('o');
722                 return;
723         }
724         /*
725          * If we have gotten this far then we have found an
726          * assembler directive or an assembler mnemonic.
727          *
728          * Check for .if, .else, .endif, and .page directives
729          * which are not controlled by the conditional flags
730          */
731         switch (mp->m_type) {
732
733         case S_IF:
734                 n = absexpr();
735                 if (tlevel < MAXIF) {
736                         ++tlevel;
737                         ifcnd[tlevel] = n;
738                         iflvl[tlevel] = flevel;
739                         if (n == 0) {
740                                 ++flevel;
741                         }
742                 } else {
743                         err('i');
744                 }
745                 lmode = ELIST;
746                 laddr = n;
747                 return;
748
749         case S_ELSE:
750                 if (ifcnd[tlevel]) {
751                         if (++flevel > (iflvl[tlevel]+1)) {
752                                 err('i');
753                         }
754                 } else {
755                         if (--flevel < iflvl[tlevel]) {
756                                 err('i');
757                         }
758                 }
759                 lmode = SLIST;
760                 return;
761
762         case S_ENDIF:
763                 if (tlevel) {
764                         flevel = iflvl[tlevel--];
765                 } else {
766                         err('i');
767                 }
768                 lmode = SLIST;
769                 return;
770
771         case S_PAGE:
772                 lop = NLPP;
773                 lmode = NLIST;
774                 return;
775
776         default:
777                 break;
778         }
779         if (flevel)
780                 return;
781         /*
782          * If we are not in a false state for .if/.else then
783          * process the assembler directives here.
784          */
785         switch (mp->m_type) {
786
787         case S_EVEN:
788                 outall();
789                 laddr = dot.s_addr = (dot.s_addr + 1) & ~1;
790                 lmode = ALIST;
791                 break;
792
793         case S_ODD:
794                 outall();
795                 laddr = dot.s_addr |= 1;
796                 lmode = ALIST;
797                 break;
798
799         case S_BYTE:
800         case S_WORD:
801                 do {
802                         clrexpr(&e1);
803                         expr(&e1, 0);
804                         if (mp->m_type == S_BYTE) {
805                                 outrb(&e1, R_NORM);
806                         } else {
807                                 outrw(&e1, R_NORM);
808                         }
809                 } while ((c = getnb()) == ',');
810                 unget(c);
811                 break;
812
813         case S_ASCII:
814         case S_ASCIZ:
815                 if ((d = getnb()) == '\0')
816                         qerr();
817                 while ((c = getmap(d)) >= 0)
818                         outab(c);
819                 if (mp->m_type == S_ASCIZ)
820                         outab(0);
821                 break;
822
823         case S_ASCIS:
824                 if ((d = getnb()) == '\0')
825                         qerr();
826                 c = getmap(d);
827                 while (c >= 0) {
828                         if ((n = getmap(d)) >= 0) {
829                                 outab(c);
830                         } else {
831                                 outab(c | 0x80);
832                         }
833                         c = n;
834                 }
835                 break;
836
837         case S_BLK:
838                 clrexpr(&e1);
839                 expr(&e1, 0);
840                 outchk(HUGE,HUGE);
841                 dot.s_addr += e1.e_addr*mp->m_valu;
842                 lmode = BLIST;
843                 break;
844
845         case S_TITLE:
846                 p = tb;
847                 if ((c = getnb()) != 0) {
848                         do {
849                                 if (p < &tb[NTITL-1])
850                                         *p++ = c;
851                         } while ((c = get()) != 0);
852                 }
853                 *p = 0;
854                 unget(c);
855                 lmode = SLIST;
856                 break;
857
858         case S_SBTL:
859                 p = stb;
860                 if ((c = getnb()) != 0) {
861                         do {
862                                 if (p < &stb[NSBTL-1])
863                                         *p++ = c;
864                         } while ((c = get()) != 0);
865                 }
866                 *p = 0;
867                 unget(c);
868                 lmode = SLIST;
869                 break;
870
871         case S_MODUL:
872                 getst(id, getnb()); // a module can start with a digit
873                 if (pass == 0) {
874                         if (module[0]) {
875                                 err('m');
876                         } else {
877                                 strncpy(module, id, NCPS);
878                         }
879                 }
880                 lmode = SLIST;
881                 break;
882
883         case S_OPTSDCC:
884                 p = optsdcc;
885                 if ((c = getnb()) != 0) {
886                         do {
887                                 if (p < &optsdcc[NINPUT-1])
888                                         *p++ = c;
889                         } while ((c = get()) != 0);
890                 }
891                 *p = 0;
892                 unget(c);
893                 lmode = SLIST;
894         /*if (pass == 0) printf("optsdcc=%s\n", optsdcc);*/
895         break;
896
897         case S_GLOBL:
898                 do {
899                         getid(id, -1);
900                         sp = lookup(id);
901                         sp->s_flag |= S_GBL;
902                 } while ((c = getnb()) == ',');
903                 unget(c);
904                 lmode = SLIST;
905                 break;
906
907         case S_DAREA:
908                 getid(id, -1);
909                 uaf = 0;
910                 uf  = A_CON|A_REL;
911                 if ((c = getnb()) == '(') {
912                         do {
913                                 getid(opt, -1);
914                                 mp = mlookup(opt);
915                                 if (mp && mp->m_type == S_ATYP) {
916                                         ++uaf;
917                                         uf |= mp->m_valu;
918                                 } else {
919                                         err('u');
920                                 }
921                         } while ((c = getnb()) == ',');
922                         if (c != ')')
923                                 qerr();
924                 } else {
925                         unget(c);
926                 }
927                 if ((ap = alookup(id)) != NULL) {
928                         if (uaf && uf != ap->a_flag)
929                                 err('m');
930                 } else {
931                         ap = (struct area *) new (sizeof(struct area));
932                         ap->a_ap = areap;
933                         strncpy(ap->a_id, id, NCPS);
934                         ap->a_ref = areap->a_ref + 1;
935                         ap->a_addr = 0;
936                         ap->a_size = 0;
937                         ap->a_fuzz = 0;
938                         ap->a_flag = uaf ? uf : (A_CON|A_REL);
939                         areap = ap;
940                 }
941                 newdot(ap);
942                 lmode = SLIST;
943                 if (dot.s_area->a_flag & A_ABS)
944                         abs_ap = ap;
945                 break;
946
947         case S_ORG:
948                 if (dot.s_area->a_flag & A_ABS) {
949                         char buf[NCPS];
950                         laddr = absexpr();
951                         sprintf(buf, "%s%x", abs_ap->a_id, laddr);
952                         if ((ap = alookup(buf)) == NULL) {
953                                 ap = (struct area *) new (sizeof(struct area));
954                                 *ap = *areap;
955                                 ap->a_ap = areap;
956                                 strncpy(ap->a_id, buf, NCPS);
957                                 ap->a_ref = areap->a_ref + 1;
958                                 ap->a_size = 0;
959                                 ap->a_fuzz = 0;
960                                 areap = ap;
961                         }
962                         newdot(ap);
963                         lmode = ALIST;
964                         dot.s_addr = dot.s_org = laddr;
965                 } else {
966                         err('o');
967                 }
968                 break;
969
970         case S_RADIX:
971                 if (more()) {
972                         switch (getnb()) {
973                         case 'b':
974                         case 'B':
975                                 radix = 2;
976                                 break;
977                         case '@':
978                         case 'o':
979                         case 'O':
980                         case 'q':
981                         case 'Q':
982                                 radix = 8;
983                                 break;
984                         case 'd':
985                         case 'D':
986                                 radix = 10;
987                                 break;
988                         case 'h':
989                         case 'H':
990                         case 'x':
991                         case 'X':
992                                 radix = 16;
993                                 break;
994                         default:
995                                 radix = 10;
996                                 qerr();
997                                 break;
998                         }
999                 } else {
1000                         radix = 10;
1001                 }
1002                 lmode = SLIST;
1003                 break;
1004
1005         case S_INCL:
1006                 d = getnb();
1007                 p = fn;
1008                 while ((c = get()) != d) {
1009                         if (p < &fn[PATH_MAX-1]) {
1010                                 *p++ = c;
1011                         } else {
1012                                 break;
1013                         }
1014                 }
1015                 *p = 0;
1016                 if ((++incfil == MAXINC) ||
1017                     (ifp[incfil] = search_path_fopen(fn, "r")) == NULL) {
1018                         --incfil;
1019                         err('i');
1020                 } else {
1021                         lop = NLPP;
1022                         incline[incfil] = 0;
1023                         strcpy(incfn[incfil],fn);
1024                 }
1025                 lmode = SLIST;
1026                 break;
1027
1028         case S_FLAT24:
1029                 if (more())
1030                 {
1031                     getst(id, -1);
1032
1033                     if (!as_strcmpi(id, "on"))
1034                     {
1035                         /* Quick sanity check: size of
1036                          * Addr_T must be at least 24 bits.
1037                          */
1038                         if (sizeof(Addr_T) < 3)
1039                         {
1040                             warnBanner();
1041                             fprintf(stderr,
1042                                     "Cannot enable Flat24 mode: "
1043                                     "host system must have 24 bit "
1044                                     "or greater integers.\n");
1045                         }
1046                         else
1047                         {
1048                             flat24Mode = 1;
1049                         }
1050                     }
1051                     else if (!as_strcmpi(id, "off"))
1052                     {
1053                         flat24Mode = 0;
1054                     }
1055                     else
1056                     {
1057                         qerr();
1058                     }
1059                 }
1060                 else
1061                 {
1062                     qerr();
1063                 }
1064                 lmode = SLIST;
1065                 #if 0
1066                 printf("as8051: ds390 flat mode %sabled.\n",
1067                         flat24Mode ? "en" : "dis");
1068                 #endif
1069                 break;
1070
1071
1072         /*
1073          * If not an assembler directive then go to
1074          * the machine dependent function which handles
1075          * all the assembler mnemonics.
1076          */
1077         default:
1078                 machine(mp);
1079                 /* if cdb information then generate the line info */
1080                 if (cflag && (pass == 1))
1081                     DefineCDB_Line();
1082
1083                 /* JLH: if -j, generate a line number symbol */
1084                 if (jflag && (pass == 1))
1085                 {
1086                    DefineNoICE_Line();
1087                 }
1088
1089         }
1090         goto loop;
1091 }
1092
1093 /*)Function     FILE *  afile(fn, ft, wf)
1094  *
1095  *              char *  fn              file specification string
1096  *              char *  ft              file type string
1097  *              int     wf              read(0)/write(1) flag
1098  *
1099  *      The function afile() opens a file for reading or writing.
1100  *              (1)     If the file type specification string ft
1101  *                      is not NULL then a file specification is
1102  *                      constructed with the file path\name in fn
1103  *                      and the extension in ft.
1104  *              (2)     If the file type specification string ft
1105  *                      is NULL then the file specification is
1106  *                      constructed from fn.  If fn does not have
1107  *                      a file type then the default source file
1108  *                      type dsft is appended to the file specification.
1109  *
1110  *      afile() returns a file handle for the opened file or aborts
1111  *      the assembler on an open error.
1112  *
1113  *      local variables:
1114  *              int     c               character value
1115  *              FILE *  fp              filehandle for opened file
1116  *              char *  p1              pointer to filespec string fn
1117  *              char *  p2              pointer to filespec string fb
1118  *              char *  p3              pointer to filetype string ft
1119  *
1120  *      global variables:
1121  *              char    afn[]           afile() constructed filespec
1122  *              char    dsft[]          default assembler file type string
1123  *              char    afn[]           constructed file specification string
1124  *
1125  *      functions called:
1126  *              VOID    asexit()        asmain.c
1127  *              FILE *  fopen()         c_library
1128  *              int     fprintf()       c_library
1129  *
1130  *      side effects:
1131  *              File is opened for read or write.
1132  */
1133
1134 FILE *
1135 afile(fn, ft, wf)
1136 char *fn;
1137 char *ft;
1138 int wf;
1139 {
1140         register char *p2, *p3;
1141         register int c;
1142         FILE *fp;
1143
1144         p2 = afn;
1145         p3 = ft;
1146
1147         strcpy (afn, fn);
1148         p2 = strrchr (afn, FSEPX);              // search last '.'
1149         if (!p2)
1150                 p2 = afn + strlen (afn);
1151         if (p2 > &afn[PATH_MAX-4])              // truncate filename, if it's too long
1152                 p2 = &afn[PATH_MAX-4];
1153         *p2++ = FSEPX;
1154
1155         // choose a file-extension
1156         if (*p3 == 0) {                                 // extension supplied?
1157                 p3 = strrchr (fn, FSEPX);       // no: extension in fn?
1158                 if (p3)
1159                         ++p3;
1160                 else
1161                         p3 = dsft;                                      // no: default extension
1162         }
1163
1164         while ((c = *p3++) != 0) {              // strncpy
1165                 if (p2 < &afn[PATH_MAX-1])
1166                         *p2++ = c;
1167         }
1168         *p2++ = 0;
1169
1170         if ((fp = fopen(afn, wf?"w":"r")) == NULL) {
1171                 fprintf(stderr, "%s: cannot %s.\n", afn, wf?"create":"open");
1172                 asexit(1);
1173         }
1174         return (fp);
1175 }
1176
1177 /*)Function     VOID    newdot(nap)
1178  *
1179  *              area *  nap             pointer to the new area structure
1180  *
1181  *      The function newdot():
1182  *              (1)     copies the current values of fuzz and the last
1183  *                      address into the current area referenced by dot
1184  *              (2)     loads dot with the pointer to the new area and
1185  *                      loads the fuzz and last address parameters
1186  *              (3)     outall() is called to flush any remaining
1187  *                      bufferred code from the old area to the output
1188  *
1189  *      local variables:
1190  *              area *  oap             pointer to old area
1191  *
1192  *      global variables:
1193  *              sym     dot             defined as sym[0]
1194  *              Addr_T  fuzz            tracks pass to pass changes in the
1195  *                                      address of symbols caused by
1196  *                                      variable length instruction formats
1197  *
1198  *      functions called:
1199  *              none
1200  *
1201  *      side effects:
1202  *              Current area saved, new area loaded, buffers flushed.
1203  */
1204
1205 VOID
1206 newdot(nap)
1207 register struct area *nap;
1208 {
1209         register struct area *oap;
1210
1211         oap = dot.s_area;
1212         /* fprintf (stderr, "%s dot.s_area->a_size: %d dot.s_addr: %d\n",
1213              oap->a_id, dot.s_area->a_size, dot.s_addr); */
1214         oap->a_fuzz = fuzz;
1215         if (oap->a_flag & A_OVR) {
1216           // the size of an overlay is the biggest size encountered
1217           if (oap->a_size < dot.s_addr) {
1218             oap->a_size = dot.s_addr;
1219           }
1220         } else if (oap->a_flag & A_ABS) {
1221           oap->a_addr = dot.s_org;
1222           oap->a_size += dot.s_addr - dot.s_org;
1223           dot.s_addr = dot.s_org = 0;
1224         } else {
1225           oap->a_addr = 0;
1226           oap->a_size = dot.s_addr;
1227         }
1228         if (nap->a_flag & A_OVR) {
1229           // a new overlay starts at 0, no fuzz
1230           dot.s_addr = 0;
1231           fuzz = 0;
1232         } else if (nap->a_flag & A_ABS) {
1233           // a new absolute starts at org, no fuzz
1234           dot.s_addr = dot.s_org;
1235           fuzz = 0;
1236         } else {
1237           dot.s_addr = nap->a_size;
1238           fuzz = nap->a_fuzz;
1239         }
1240         dot.s_area = nap;
1241         outall();
1242 }
1243
1244 /*)Function     VOID    phase(ap, a)
1245  *
1246  *              area *  ap              pointer to area
1247  *              Addr_T  a               address in area
1248  *
1249  *      Function phase() compares the area ap and address a
1250  *      with the current area dot.s_area and address dot.s_addr
1251  *      to determine if the position of the symbol has changed
1252  *      between assembler passes.
1253  *
1254  *      local variables:
1255  *              none
1256  *
1257  *      global varaibles:
1258  *              sym *   dot             defined as sym[0]
1259  *
1260  *      functions called:
1261  *              none
1262  *
1263  *      side effects:
1264  *              The p error is invoked if the area and/or address
1265  *              has changed.
1266  */
1267
1268 VOID
1269 phase(ap, a)
1270 struct area *ap;
1271 Addr_T a;
1272 {
1273         if (ap != dot.s_area || a != dot.s_addr)
1274                 err('p');
1275 }
1276
1277 char *usetxt[] = {
1278         "Usage: [-dqxjgalopsf][ -I<dir> ] file1 [file2 file3 ...]",
1279         "  d    decimal listing",
1280         "  q    octal   listing",
1281         "  x    hex     listing (default)",
1282         "  j    add line number and debug information to file", /* JLH */
1283         "  g    undefined symbols made global",
1284         "  a    all user symbols made global",
1285         "  l    create list   output file1[LST]",
1286         "  o    create object output file1[REL]",
1287         "  s    create symbol output file1[SYM]",
1288         "  p    disable listing pagination",
1289         "  f    flag relocatable references by `    in listing file",
1290         " ff    flag relocatable references by mode in listing file",
1291         "-I<dir>  Add the named directory to the include file",
1292         "       search path.  This option may be used more than once.",
1293         "       Directories are searched in the order given.",
1294         "",
1295         0
1296 };
1297
1298 /*)Function     VOID    usage()
1299  *
1300  *      The function usage() outputs to the stderr device the
1301  *      assembler name and version and a list of valid assembler options.
1302  *
1303  *      local variables:
1304  *              char ** dp              pointer to an array of
1305  *                                      text string pointers.
1306  *
1307  *      global variables:
1308  *              char    cpu[]           assembler type string
1309  *              char *  usetxt[]        array of string pointers
1310  *
1311  *      functions called:
1312  *              VOID    asexit()        asmain.c
1313  *              int     fprintf()       c_library
1314  *
1315  *      side effects:
1316  *              program is terminated
1317  */
1318
1319 VOID
1320 usage()
1321 {
1322         register char   **dp;
1323
1324         fprintf(stderr, "\nASxxxx Assembler %s  (%s)\n\n", VERSION, cpu);
1325         for (dp = usetxt; *dp; dp++)
1326                 fprintf(stderr, "%s\n", *dp);
1327         asexit(1);
1328 }