]> git.sur5r.net Git - cc65/blob - src/ca65/main.c
More work on .sizeof, fixed problems with cheap locals
[cc65] / src / ca65 / main.c
1 /*****************************************************************************/
2 /*                                                                           */
3 /*                                  main.c                                   */
4 /*                                                                           */
5 /*                 Main program for the ca65 macroassembler                  */
6 /*                                                                           */
7 /*                                                                           */
8 /*                                                                           */
9 /* (C) 1998-2003 Ullrich von Bassewitz                                       */
10 /*               Römerstraße 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 <time.h>
40
41 /* common */
42 #include "addrsize.h"
43 #include "chartype.h"
44 #include "cmdline.h"
45 #include "mmodel.h"
46 #include "print.h"
47 #include "target.h"
48 #include "tgttrans.h"
49 #include "version.h"
50
51 /* ca65 */
52 #include "abend.h"
53 #include "asserts.h"
54 #include "error.h"
55 #include "expr.h"
56 #include "feature.h"
57 #include "filetab.h"
58 #include "global.h"
59 #include "incpath.h"
60 #include "instr.h"
61 #include "istack.h"
62 #include "lineinfo.h"
63 #include "listing.h"
64 #include "macro.h"
65 #include "nexttok.h"
66 #include "objfile.h"
67 #include "options.h"
68 #include "pseudo.h"
69 #include "scanner.h"
70 #include "segment.h"
71 #include "sizeof.h"
72 #include "spool.h"
73 #include "symtab.h"
74 #include "ulabel.h"
75
76
77
78 /*****************************************************************************/
79 /*                                   Code                                    */
80 /*****************************************************************************/
81
82
83
84 static void Usage (void)
85 /* Print usage information and exit */
86 {
87     fprintf (stderr,
88              "Usage: %s [options] file\n"
89              "Short options:\n"
90              "  -D name[=value]\tDefine a symbol\n"
91              "  -I dir\t\tSet an include directory search path\n"
92              "  -U\t\t\tMark unresolved symbols as import\n"
93              "  -V\t\t\tPrint the assembler version\n"
94              "  -W n\t\t\tSet warning level n\n"
95              "  -g\t\t\tAdd debug info to object file\n"
96              "  -h\t\t\tHelp (this text)\n"
97              "  -i\t\t\tIgnore case of symbols\n"
98              "  -l\t\t\tCreate a listing if assembly was ok\n"
99              "  -mm model\t\tSet the memory model\n"
100              "  -o name\t\tName the output file\n"
101              "  -s\t\t\tEnable smart mode\n"
102              "  -t sys\t\tSet the target system\n"
103              "  -v\t\t\tIncrease verbosity\n"
104              "\n"
105              "Long options:\n"
106              "  --auto-import\t\tMark unresolved symbols as import\n"
107              "  --cpu type\t\tSet cpu type\n"
108              "  --debug-info\t\tAdd debug info to object file\n"
109              "  --feature name\tSet an emulation feature\n"
110              "  --help\t\tHelp (this text)\n"
111              "  --ignore-case\t\tIgnore case of symbols\n"
112              "  --include-dir dir\tSet an include directory search path\n"
113              "  --listing\t\tCreate a listing if assembly was ok\n"
114              "  --memory-model model\tSet the memory model\n"
115              "  --pagelength n\tSet the page length for the listing\n"
116              "  --smart\t\tEnable smart mode\n"
117              "  --target sys\t\tSet the target system\n"
118              "  --verbose\t\tIncrease verbosity\n"
119              "  --version\t\tPrint the assembler version\n",
120              ProgName);
121 }
122
123
124
125 static void SetOptions (void)
126 /* Set the option for the translator */
127 {
128     char Buf [256];
129
130     /* Set the translator */
131     sprintf (Buf, "ca65 V%u.%u.%u", VER_MAJOR, VER_MINOR, VER_PATCH);
132     OptTranslator (Buf);
133
134     /* Set date and time */
135     OptDateTime ((unsigned long) time(0));
136 }
137
138
139
140 static void DefineSymbol (const char* Def)
141 /* Define a symbol from the command line */
142 {
143     const char* P;
144     unsigned I;
145     long Val;
146     char SymName [MAX_STR_LEN+1];
147     SymEntry* Sym;
148     ExprNode* Expr;
149
150
151     /* The symbol must start with a character or underline */
152     if (Def [0] != '_' && !IsAlpha (Def [0])) {
153         InvDef (Def);
154     }
155     P = Def;
156
157     /* Copy the symbol, checking the rest */
158     I = 0;
159     while (IsAlNum (*P) || *P == '_') {
160         if (I <= MAX_STR_LEN) {
161             SymName [I++] = *P;
162         }
163         ++P;
164     }
165     SymName [I] = '\0';
166
167     /* Do we have a value given? */
168     if (*P != '=') {
169         if (*P != '\0') {
170             InvDef (Def);
171         }
172         Val = 0;
173     } else {
174         /* We have a value */
175         ++P;
176         if (*P == '$') {
177             ++P;
178             if (sscanf (P, "%lx", &Val) != 1) {
179                 InvDef (Def);
180             }
181         } else {
182             if (sscanf (P, "%li", &Val) != 1) {
183                 InvDef (Def);
184             }
185         }
186     }
187
188     /* Search for the symbol, allocate a new one if it doesn't exist */
189     Sym = SymFind (CurrentScope, SymName, SYM_ALLOC_NEW);
190
191     /* Check if have already a symbol with this name */
192     if (SymIsDef (Sym)) {
193         AbEnd ("`%s' is already defined", SymName);
194     }
195
196     /* Generate an expression for the symbol */
197     Expr = GenLiteralExpr (Val);
198
199     /* Mark the symbol as defined */
200     SymDef (Sym, Expr, ADDR_SIZE_DEFAULT, SF_NONE);
201 }
202
203
204
205 static void OptAutoImport (const char* Opt attribute ((unused)),
206                            const char* Arg attribute ((unused)))
207 /* Mark unresolved symbols as imported */
208 {
209     AutoImport = 1;
210 }
211
212
213
214 static void OptCPU (const char* Opt attribute ((unused)), const char* Arg)
215 /* Handle the --cpu option */
216 {
217     cpu_t CPU = FindCPU (Arg);
218     if (CPU == CPU_UNKNOWN) {
219         AbEnd ("Invalid CPU: `%s'", Arg);
220     } else {
221         SetCPU (CPU);
222     }
223 }
224
225
226
227 static void OptDebugInfo (const char* Opt attribute ((unused)),
228                           const char* Arg attribute ((unused)))
229 /* Add debug info to the object file */
230 {
231     DbgSyms = 1;
232 }
233
234
235
236 static void OptFeature (const char* Opt attribute ((unused)), const char* Arg)
237 /* Set an emulation feature */
238 {
239     /* Set the feature, check for errors */
240     if (SetFeature (Arg) == FEAT_UNKNOWN) {
241         AbEnd ("Illegal emulation feature: `%s'", Arg);
242     }
243 }
244
245
246
247 static void OptHelp (const char* Opt attribute ((unused)),
248                      const char* Arg attribute ((unused)))
249 /* Print usage information and exit */
250 {
251     Usage ();
252     exit (EXIT_SUCCESS);
253 }
254
255
256
257 static void OptIgnoreCase (const char* Opt attribute ((unused)),
258                            const char* Arg attribute ((unused)))
259 /* Ignore case on symbols */
260 {
261     IgnoreCase = 1;
262 }
263
264
265
266 static void OptIncludeDir (const char* Opt attribute ((unused)), const char* Arg)
267 /* Add an include search path */
268 {
269     AddIncludePath (Arg);
270 }
271
272
273
274 static void OptListing (const char* Opt attribute ((unused)),
275                         const char* Arg attribute ((unused)))
276 /* Create a listing file */
277 {
278     Listing = 1;
279 }
280
281
282
283 static void OptMemoryModel (const char* Opt, const char* Arg)
284 /* Set the memory model */
285 {
286     mmodel_t M;
287
288     /* Check the current memory model */
289     if (MemoryModel != MMODEL_UNKNOWN) {
290         AbEnd ("Cannot use option `%s' twice", Opt);
291     }
292
293     /* Translate the memory model name and check it */
294     M = FindMemoryModel (Arg);
295     if (M == MMODEL_UNKNOWN) {
296         AbEnd ("Unknown memory model: %s", Arg);
297     } else if (M == MMODEL_HUGE) {
298         AbEnd ("Unsupported memory model: %s", Arg);
299     }
300
301     /* Set the memory model */
302     SetMemoryModel (M);
303 }
304
305
306
307 static void OptPageLength (const char* Opt attribute ((unused)), const char* Arg)
308 /* Handle the --pagelength option */
309 {
310     int Len = atoi (Arg);
311     if (Len != -1 && (Len < MIN_PAGE_LEN || Len > MAX_PAGE_LEN)) {
312         AbEnd ("Invalid page length: %d", Len);
313     }
314     PageLength = Len;
315 }
316
317
318
319 static void OptSmart (const char* Opt attribute ((unused)),
320                       const char* Arg attribute ((unused)))
321 /* Handle the -s/--smart options */
322 {
323     SmartMode = 1;
324 }
325
326
327
328 static void OptTarget (const char* Opt attribute ((unused)), const char* Arg)
329 /* Set the target system */
330 {
331     /* Map the target name to a target id */
332     Target = FindTarget (Arg);
333     if (Target == TGT_UNKNOWN) {
334         AbEnd ("Invalid target name: `%s'", Arg);
335     } else if (Target == TGT_MODULE) {
336         AbEnd ("Cannot use `module' as a target for the assembler");
337     }
338 }
339
340
341
342 static void OptVerbose (const char* Opt attribute ((unused)),
343                         const char* Arg attribute ((unused)))
344 /* Increase verbosity */
345 {
346     ++Verbosity;
347 }
348
349
350
351 static void OptVersion (const char* Opt attribute ((unused)),
352                         const char* Arg attribute ((unused)))
353 /* Print the assembler version */
354 {
355     fprintf (stderr,
356              "ca65 V%u.%u.%u - %s\n",
357              VER_MAJOR, VER_MINOR, VER_PATCH, Copyright);
358 }
359
360
361
362 static void DoPCAssign (void)
363 /* Start absolute code */
364 {
365     long PC = ConstExpression ();
366     if (PC < 0 || PC > 0xFFFFFF) {
367         Error ("Range error");
368     } else {
369         SetAbsPC (PC);
370     }
371 }
372
373
374
375 static void OneLine (void)
376 /* Assemble one line */
377 {
378     Segment*      Seg  = 0;
379     unsigned long PC   = 0;
380     SymEntry*     Sym  = 0;
381     int           Done = 0;
382
383     /* Initialize the new listing line if we are actually reading from file
384      * and not from internally pushed input.
385      */
386     if (!HavePushedInput ()) {
387         InitListingLine ();
388     }
389
390     if (Tok == TOK_COLON) {
391         /* An unnamed label */
392         ULabDef ();
393         NextTok ();
394     }
395
396     /* Assemble the line */
397     if (Tok == TOK_LOCAL_IDENT || (Tok == TOK_IDENT && !IsMacro (SVal))) {
398
399         /* Did we have whitespace before the ident? */
400         int HadWS = WS;
401
402         /* Generate the symbol table entry, then skip the name */
403         if (Tok == TOK_IDENT) {
404             Sym = SymFind (CurrentScope, SVal, SYM_ALLOC_NEW);
405         } else {
406             Sym = SymFindLocal (SymLast, SVal, SYM_ALLOC_NEW);
407         }
408         NextTok ();
409
410         /* If a colon follows, this is a label definition. If there
411          * is no colon, it's an assignment.
412          */
413         if (Tok == TOK_EQ || Tok == TOK_ASSIGN) {
414             /* If it's an assign token, we have a label */
415             unsigned Flags = (Tok == TOK_ASSIGN)? SF_LABEL : SF_NONE;
416             /* Skip the '=' */
417             NextTok ();
418             /* Define the symbol with the expression following the '=' */
419             SymDef (Sym, Expression(), ADDR_SIZE_DEFAULT, Flags);
420             /* Don't allow anything after a symbol definition */
421             Done = 1;
422         } else {
423             /* A label. Remember the current segment, so we can later
424              * determine the size of the data stored under the label.
425              */
426             Seg = ActiveSeg;
427             PC  = GetPC ();
428
429             /* Define the label */
430             SymDef (Sym, GenCurrentPC (), ADDR_SIZE_DEFAULT, SF_LABEL);
431
432             /* Skip the colon. If NoColonLabels is enabled, allow labels
433              * without a colon if there is no whitespace before the
434              * identifier.
435              */
436             if (Tok != TOK_COLON) {
437                 if (HadWS || !NoColonLabels) {
438                     Error ("`:' expected");
439                     /* Try some smart error recovery */
440                     if (Tok == TOK_NAMESPACE) {
441                         NextTok ();
442                     }
443                 }
444             } else {
445                 /* Skip the colon */
446                 NextTok ();
447             }
448         }
449     }
450
451     if (!Done) {
452
453         if (Tok >= TOK_FIRSTPSEUDO && Tok <= TOK_LASTPSEUDO) {
454             /* A control command */
455             HandlePseudo ();
456         } else if (Tok == TOK_MNEMO) {
457             /* A mnemonic - assemble one instruction */
458             HandleInstruction (IVal);
459         } else if (Tok == TOK_IDENT && IsMacro (SVal)) {
460             /* A macro expansion */
461             MacExpandStart ();
462         } else if (PCAssignment && (Tok == TOK_STAR || Tok == TOK_PC)) {
463             NextTok ();
464             if (Tok != TOK_EQ) {
465                 Error ("`=' expected");
466                 SkipUntilSep ();
467             } else {
468                 /* Skip the equal sign */
469                 NextTok ();
470                 /* Enter absolute mode */
471                 DoPCAssign ();
472             }
473         }
474
475         /* If we have defined a label, remember its size. Sym is also set by
476          * a symbol assignment, but in this case Done is false, so we don't
477          * come here.
478          */
479         if (Sym) {
480             unsigned long Size;
481             if (Seg == ActiveSeg) {
482                 /* Same segment */
483                 Size = GetPC () - PC;
484             } else {
485                 /* The line has switched the segment */
486                 Size = 0;
487             }
488             DefSizeOfSymbol (Sym, Size);
489         }
490     }
491
492     /* Line separator must come here */
493     ConsumeSep ();
494 }
495
496
497
498 static void Assemble (void)
499 /* Start the ball rolling ... */
500 {
501     /* Prime the pump */
502     NextTok ();
503
504     /* Assemble lines until end of file */
505     while (Tok != TOK_EOF) {
506         OneLine ();
507     }
508 }
509
510
511
512 static void CreateObjFile (void)
513 /* Create the object file */
514 {
515     /* Open the object, write the header */
516     ObjOpen ();
517
518     /* Write the object file options */
519     WriteOptions ();
520
521     /* Write the list of input files */
522     WriteFiles ();
523
524     /* Write the segment data to the file */
525     WriteSegments ();
526
527     /* Write the import list */
528     WriteImports ();
529
530     /* Write the export list */
531     WriteExports ();
532
533     /* Write debug symbols if requested */
534     WriteDbgSyms ();
535
536     /* Write line infos if requested */
537     WriteLineInfo ();
538
539     /* Write the string pool */
540     WriteStrPool ();
541
542     /* Write the assertions */
543     WriteAssertions ();
544
545     /* Write an updated header and close the file */
546     ObjClose ();
547 }
548
549
550
551 int main (int argc, char* argv [])
552 /* Assembler main program */
553 {
554     /* Program long options */
555     static const LongOpt OptTab[] = {
556         { "--auto-import",      0,      OptAutoImport           },
557         { "--cpu",              1,      OptCPU                  },
558         { "--debug-info",       0,      OptDebugInfo            },
559         { "--feature",          1,      OptFeature              },
560         { "--help",             0,      OptHelp                 },
561         { "--ignore-case",      0,      OptIgnoreCase           },
562         { "--include-dir",      1,      OptIncludeDir           },
563         { "--listing",          0,      OptListing              },
564         { "--memory-model",     1,      OptMemoryModel          },
565         { "--pagelength",       1,      OptPageLength           },
566         { "--smart",            0,      OptSmart                },
567         { "--target",           1,      OptTarget               },
568         { "--verbose",          0,      OptVerbose              },
569         { "--version",          0,      OptVersion              },
570     };
571
572     unsigned I;
573
574     /* Initialize the cmdline module */
575     InitCmdLine (&argc, &argv, "ca65");
576
577     /* Enter the base lexical level. We must do that here, since we may
578      * define symbols using -D.
579      */
580     SymEnterLevel ("", ST_GLOBAL, ADDR_SIZE_DEFAULT);
581
582     /* Check the parameters */
583     I = 1;
584     while (I < ArgCount) {
585
586         /* Get the argument */
587         const char* Arg = ArgVec [I];
588
589         /* Check for an option */
590         if (Arg[0] == '-') {
591             switch (Arg[1]) {
592
593                 case '-':
594                     LongOption (&I, OptTab, sizeof(OptTab)/sizeof(OptTab[0]));
595                     break;
596
597                 case 'g':
598                     OptDebugInfo (Arg, 0);
599                     break;
600
601                 case 'h':
602                     OptHelp (Arg, 0);
603                     break;
604
605                 case 'i':
606                     OptIgnoreCase (Arg, 0);
607                     break;
608
609                 case 'l':
610                     OptListing (Arg, 0);
611                     break;
612
613                 case 'm':
614                     if (Arg[2] == 'm') {
615                         OptMemoryModel (Arg, GetArg (&I, 3));
616                     } else {
617                         UnknownOption (Arg);
618                     }
619                     break;
620
621                 case 'o':
622                     OutFile = GetArg (&I, 2);
623                     break;
624
625                 case 's':
626                     OptSmart (Arg, 0);
627                     break;
628
629                 case 't':
630                     OptTarget (Arg, GetArg (&I, 2));
631                     break;
632
633                 case 'v':
634                     OptVerbose (Arg, 0);
635                     break;
636
637                 case 'D':
638                     DefineSymbol (GetArg (&I, 2));
639                     break;
640
641                 case 'I':
642                     OptIncludeDir (Arg, GetArg (&I, 2));
643                     break;
644
645                 case 'U':
646                     OptAutoImport (Arg, 0);
647                     break;
648
649                 case 'V':
650                     OptVersion (Arg, 0);
651                     break;
652
653                 case 'W':
654                     WarnLevel = atoi (GetArg (&I, 2));
655                     break;
656
657                 default:
658                     UnknownOption (Arg);
659                     break;
660
661             }
662         } else {
663             /* Filename. Check if we already had one */
664             if (InFile) {
665                 fprintf (stderr, "%s: Don't know what to do with `%s'\n",
666                          ProgName, Arg);
667                 exit (EXIT_FAILURE);
668             } else {
669                 InFile = Arg;
670             }
671         }
672
673         /* Next argument */
674         ++I;
675     }
676
677     /* Do we have an input file? */
678     if (InFile == 0) {
679         fprintf (stderr, "%s: No input files\n", ProgName);
680         exit (EXIT_FAILURE);
681     }
682
683     /* If no CPU given, use the default CPU for the target */
684     if (GetCPU () == CPU_UNKNOWN) {
685         if (Target != TGT_UNKNOWN) {
686             SetCPU (DefaultCPU[Target]);
687         } else {
688             SetCPU (CPU_6502);
689         }
690     }
691
692     /* If no memory model was given, use the default */
693     if (MemoryModel == MMODEL_UNKNOWN) {
694         SetMemoryModel (MMODEL_NEAR);
695     }
696
697     /* Intialize the target translation tables */
698     TgtTranslateInit ();
699
700     /* Initialize the segments */
701     InitSegments ();
702
703     /* Initialize the scanner, open the input file */
704     InitScanner (InFile);
705
706     /* Define the default options */
707     SetOptions ();
708
709     /* Assemble the input */
710     Assemble ();
711
712     /* If we didn't have any errors, check the segment stack */
713     if (ErrorCount == 0) {
714         SegStackCheck ();
715     }
716
717     /* If we didn't have any errors, check the unnamed labels */
718     if (ErrorCount == 0) {
719         ULabCheck ();
720     }
721
722     /* If we didn't have any errors, check the symbol table */
723     if (ErrorCount == 0) {
724         SymCheck ();
725     }
726
727     /* If we didn't have any errors, check and resolve the segment data */
728     if (ErrorCount == 0) {
729         SegCheck ();
730     }
731
732     /* If we didn't have an errors, index the line infos */
733     MakeLineInfoIndex ();
734
735     /* Dump the data */
736     if (Verbosity >= 2) {
737         SymDump (stdout);
738         SegDump ();
739     }
740
741     /* If we didn't have any errors, create the object and listing files */
742     if (ErrorCount == 0) {
743         CreateObjFile ();
744         if (Listing) {
745             CreateListing ();
746         }
747     }
748
749     /* Close the input file */
750     DoneScanner ();
751
752     /* Return an apropriate exit code */
753     return (ErrorCount == 0)? EXIT_SUCCESS : EXIT_FAILURE;
754 }
755
756
757