]> git.sur5r.net Git - cc65/blob - src/cc65/main.c
* Added several type casts to increase C++ compatibility.
[cc65] / src / cc65 / main.c
1 /*****************************************************************************/
2 /*                                                                           */
3 /*                                  main.c                                   */
4 /*                                                                           */
5 /*                             cc65 main program                             */
6 /*                                                                           */
7 /*                                                                           */
8 /*                                                                           */
9 /* (C) 2000      Ullrich von Bassewitz                                       */
10 /*               Wacholderweg 14                                             */
11 /*               D-70597 Stuttgart                                           */
12 /* EMail:        uz@musoftware.de                                            */
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 <string.h>
38 #include <stdlib.h>
39 #include <errno.h>
40
41 /* common */
42 #include "abend.h"
43 #include "chartype.h"
44 #include "cmdline.h"
45 #include "fname.h"
46 #include "print.h"
47 #include "target.h"
48 #include "tgttrans.h"
49 #include "version.h"
50 #include "xmalloc.h"
51
52 /* cc65 */
53 #include "asmcode.h"
54 #include "compile.h"
55 #include "cpu.h"
56 #include "error.h"
57 #include "global.h"
58 #include "incpath.h"
59 #include "input.h"
60 #include "macrotab.h"
61 #include "optimize.h"
62 #include "scanner.h"
63 #include "segname.h"
64
65
66
67 /*****************************************************************************/
68 /*                                   Code                                    */
69 /*****************************************************************************/
70
71
72
73 static void Usage (void)
74 {
75     fprintf (stderr,
76              "Usage: %s [options] file\n"
77              "Short options:\n"
78              "  -d\t\t\tDebug mode\n"
79              "  -g\t\t\tAdd debug info to object file\n"
80              "  -h\t\t\tHelp (this text)\n"
81              "  -j\t\t\tDefault characters are signed\n"
82              "  -o name\t\tName the output file\n"
83              "  -t sys\t\tSet the target system\n"
84              "  -v\t\t\tIncrease verbosity\n"
85              "  -A\t\t\tStrict ANSI mode\n"
86              "  -Cl\t\t\tMake local variables static\n"
87              "  -Dsym[=defn]\t\tDefine a symbol\n"
88              "  -I dir\t\tSet an include directory search path\n"
89              "  -O\t\t\tOptimize code\n"
90              "  -Oi\t\t\tOptimize code, inline more code\n"
91              "  -Or\t\t\tEnable register variables\n"
92              "  -Os\t\t\tInline some known functions\n"
93              "  -T\t\t\tInclude source as comment\n"
94              "  -V\t\t\tPrint the compiler version number\n"
95              "  -W\t\t\tSuppress warnings\n"
96              "\n"
97              "Long options:\n"
98              "  --ansi\t\tStrict ANSI mode\n"
99              "  --bss-name seg\tSet the name of the BSS segment\n"
100              "  --check-stack\t\tGenerate stack overflow checks\n"
101              "  --code-name seg\tSet the name of the CODE segment\n"
102              "  --cpu type\t\tSet cpu type\n"
103              "  --data-name seg\tSet the name of the DATA segment\n"
104              "  --debug\t\tDebug mode\n"
105              "  --debug-info\t\tAdd debug info to object file\n"
106              "  --help\t\tHelp (this text)\n"
107              "  --include-dir dir\tSet an include directory search path\n"
108              "  --rodata-name seg\tSet the name of the RODATA segment\n"
109              "  --signed-chars\tDefault characters are signed\n"
110              "  --static-locals\tMake local variables static\n"
111              "  --target sys\t\tSet the target system\n"
112              "  --verbose\t\tIncrease verbosity\n"
113              "  --version\t\tPrint the compiler version number\n",
114              ProgName);
115 }
116
117
118
119 static void cbmsys (const char* sys)
120 /* Define a CBM system */
121 {
122     AddNumericMacro ("__CBM__", 1);
123     AddNumericMacro (sys, 1);
124 }
125
126
127
128 static void SetSys (const char* Sys)
129 /* Define a target system */
130 {
131     switch (Target = FindTarget (Sys)) {
132
133         case TGT_NONE:
134             break;
135
136         case TGT_ATARI:
137             AddNumericMacro ("__ATARI__", 1);
138             break;
139
140         case TGT_C64:
141             cbmsys ("__C64__");
142             break;
143
144         case TGT_C128:
145             cbmsys ("__C128__");
146             break;
147
148         case TGT_ACE:
149             cbmsys ("__ACE__");
150             break;
151
152         case TGT_PLUS4:
153             cbmsys ("__PLUS4__");
154             break;
155
156         case TGT_CBM610:
157             cbmsys ("__CBM610__");
158             break;
159
160         case TGT_PET:
161             cbmsys ("__PET__");
162             break;
163
164         case TGT_BBC:
165             AddNumericMacro ("__BBC__", 1);
166             break;
167
168         case TGT_APPLE2:
169             AddNumericMacro ("__APPLE2__", 1);
170             break;
171
172         case TGT_GEOS:
173             /* Do not handle as a CBM system */
174             AddNumericMacro ("__GEOS__", 1);
175             break;
176
177         default:
178             AbEnd ("Unknown target system type");
179     }
180
181     /* Initialize the translation tables for the target system */
182     TgtTranslateInit ();
183 }
184
185
186
187 static void DoCreateDep (const char* OutputName)
188 /* Create the dependency file */
189 {
190     /* Make the dependency file name from the output file name */
191     char* DepName = MakeFilename (OutputName, ".u");
192
193     /* Open the file */
194     FILE* F = fopen (DepName, "w");
195     if (F == 0) {
196         Fatal ("Cannot open dependency file `%s': %s", DepName, strerror (errno));
197     }
198
199     /* Write the dependencies to the file */
200     WriteDependencies (F, OutputName);
201
202     /* Close the file, check for errors */
203     if (fclose (F) != 0) {
204         remove (DepName);
205         Fatal ("Cannot write to dependeny file (disk full?)");
206     }
207
208     /* Free the name */
209     xfree (DepName);
210 }
211
212
213
214 static void DefineSym (const char* Def)
215 /* Define a symbol on the command line */
216 {
217     const char* P = Def;
218
219     /* The symbol must start with a character or underline */
220     if (Def [0] != '_' && !IsAlpha (Def [0])) {
221         InvDef (Def);
222     }
223
224     /* Check the symbol name */
225     while (IsAlNum (*P) || *P == '_') {
226         ++P;
227     }
228
229     /* Do we have a value given? */
230     if (*P != '=') {
231         if (*P != '\0') {
232             InvDef (Def);
233         }
234         /* No value given. Define the macro with the value 1 */
235         AddNumericMacro (Def, 1);
236     } else {
237         /* We have a value, P points to the '=' character. Since the argument
238          * is const, create a copy and replace the '=' in the copy by a zero
239          * terminator.
240          */
241         char* Q;
242         unsigned Len = strlen (Def)+1;
243         char* S = (char*) xmalloc (Len);
244         memcpy (S, Def, Len);
245         Q = S + (P - Def);
246         *Q++ = '\0';
247
248         /* Define this as a macro */
249         AddTextMacro (S, Q);
250
251         /* Release the allocated memory */
252         xfree (S);
253     }
254 }
255
256
257
258 static void CheckSegName (const char* Seg)
259 /* Abort if the given name is not a valid segment name */
260 {
261     /* Print an error and abort if the name is not ok */
262     if (!ValidSegName (Seg)) {
263         AbEnd ("Segment name `%s' is invalid", Seg);
264     }
265 }
266
267
268
269 static void OptAddSource (const char* Opt, const char* Arg)
270 /* Add source lines as comments in generated assembler file */
271 {
272     AddSource = 1;
273 }
274
275
276
277 static void OptAnsi (const char* Opt, const char* Arg)
278 /* Compile in strict ANSI mode */
279 {
280     ANSI = 1;
281 }
282
283
284
285 static void OptBssName (const char* Opt, const char* Arg)
286 /* Handle the --bss-name option */
287 {
288     /* Check for a valid name */
289     CheckSegName (Arg);
290
291     /* Set the name */
292     NewSegName (SEG_BSS, Arg);
293 }
294
295
296
297 static void OptCheckStack (const char* Opt, const char* Arg)
298 /* Handle the --check-stack option */
299 {
300     CheckStack = 1;
301 }
302
303
304
305 static void OptCodeName (const char* Opt, const char* Arg)
306 /* Handle the --code-name option */
307 {
308     /* Check for a valid name */
309     CheckSegName (Arg);
310
311     /* Set the name */
312     NewSegName (SEG_CODE, Arg);
313 }
314
315
316
317 static void OptCreateDep (const char* Opt, const char* Arg)
318 /* Handle the --create-dep option */
319 {
320     CreateDep = 1;
321 }
322
323
324
325 static void OptCPU (const char* Opt, const char* Arg)
326 /* Handle the --cpu option */
327 {
328     if (strcmp (Arg, "6502") == 0) {
329         CPU = CPU_6502;
330     } else if (strcmp (Arg, "65C02") == 0) {
331         CPU = CPU_65C02;
332     } else {
333         AbEnd ("Invalid CPU: `%s'", Arg);
334     }
335 }
336
337
338
339 static void OptDataName (const char* Opt, const char* Arg)
340 /* Handle the --code-name option */
341 {
342     /* Check for a valid name */
343     CheckSegName (Arg);
344
345     /* Set the name */
346     NewSegName (SEG_DATA, Arg);
347 }
348
349
350
351 static void OptDebug (const char* Opt, const char* Arg)
352 /* Compiler debug mode */
353 {
354     Debug = 1;
355 }
356
357
358
359 static void OptDebugInfo (const char* Opt, const char* Arg)
360 /* Add debug info to the object file */
361 {
362     DebugInfo = 1;
363 }
364
365
366
367 static void OptHelp (const char* Opt, const char* Arg)
368 /* Print usage information and exit */
369 {
370     Usage ();
371     exit (EXIT_SUCCESS);
372 }
373
374
375
376 static void OptIncludeDir (const char* Opt, const char* Arg)
377 /* Add an include search path */
378 {
379     AddIncludePath (Arg, INC_SYS | INC_USER);
380 }
381
382
383
384 static void OptRodataName (const char* Opt, const char* Arg)
385 /* Handle the --rodata-name option */
386 {
387     /* Check for a valid name */
388     CheckSegName (Arg);
389
390     /* Set the name */
391     NewSegName (SEG_RODATA, Arg);
392 }
393
394
395
396 static void OptSignedChars (const char* Opt, const char* Arg)
397 /* Make default characters signed */
398 {
399     SignedChars = 1;
400 }
401
402
403
404 static void OptStaticLocals (const char* Opt, const char* Arg)
405 /* Place local variables in static storage */
406 {
407     StaticLocals = 1;
408 }
409
410
411
412 static void OptTarget (const char* Opt, const char* Arg)
413 /* Set the target system */
414 {
415     SetSys (Arg);
416 }
417
418
419
420 static void OptVerbose (const char* Opt, const char* Arg)
421 /* Increase verbosity */
422 {
423     ++Verbosity;
424 }
425
426
427
428 static void OptVersion (const char* Opt, const char* Arg)
429 /* Print the assembler version */
430 {
431     fprintf (stderr,
432              "cc65 V%u.%u.%u\n",
433              VER_MAJOR, VER_MINOR, VER_PATCH);
434 }
435
436
437
438 int main (int argc, char* argv[])
439 {
440     /* Program long options */
441     static const LongOpt OptTab[] = {
442         { "--add-source",       0,      OptAddSource            },
443         { "--ansi",             0,      OptAnsi                 },
444         { "--bss-name",         1,      OptBssName              },
445         { "--check-stack",      0,      OptCheckStack           },
446         { "--code-name",        1,      OptCodeName             },
447         { "--create-dep",       0,      OptCreateDep            },
448         { "--cpu",              1,      OptCPU                  },
449         { "--data-name",        1,      OptDataName             },
450         { "--debug",            0,      OptDebug                },
451         { "--debug-info",       0,      OptDebugInfo            },
452         { "--help",             0,      OptHelp                 },
453         { "--include-dir",      1,      OptIncludeDir           },
454         { "--rodata-name",      1,      OptRodataName           },
455         { "--signed-chars",     0,      OptSignedChars          },
456         { "--static-locals",    0,      OptStaticLocals         },
457         { "--target",           1,      OptTarget               },
458         { "--verbose",          0,      OptVerbose              },
459         { "--version",          0,      OptVersion              },
460     };
461
462     int I;
463
464     /* Initialize the output file name */
465     const char* OutputFile = 0;
466     const char* InputFile  = 0;
467
468     /* Initialize the cmdline module */
469     InitCmdLine (&argc, &argv, "cc65");
470
471     /* Initialize the default segment names */
472     InitSegNames ();
473
474     /* Parse the command line */
475     I = 1;
476     while (I < (int)ArgCount) {
477
478         const char* P;
479
480         /* Get the argument */
481         const char* Arg = ArgVec[I];
482
483         /* Check for an option */
484         if (Arg [0] == '-') {
485
486             switch (Arg [1]) {
487
488                 case '-':
489                     LongOption (&I, OptTab, sizeof(OptTab)/sizeof(OptTab[0]));
490                     break;
491
492                 case 'd':
493                     OptDebug (Arg, 0);
494                     break;
495
496                 case 'h':
497                 case '?':
498                     OptHelp (Arg, 0);
499                     break;
500
501                 case 'g':
502                     OptDebugInfo (Arg, 0);
503                     break;
504
505                 case 'j':
506                     OptSignedChars (Arg, 0);
507                     break;
508
509                 case 'o':
510                     OutputFile = GetArg (&I, 2);
511                     break;
512
513                 case 't':
514                     OptTarget (Arg, GetArg (&I, 2));
515                     break;
516
517                 case 'u':
518                     OptCreateDep (Arg, 0);
519                     break;
520
521                 case 'v':
522                     OptVerbose (Arg, 0);
523                     break;
524
525                 case 'A':
526                     OptAnsi (Arg, 0);
527                     break;
528
529                 case 'C':
530                     P = Arg + 2;
531                     while (*P) {
532                         switch (*P++) {
533                             case 'l':
534                                 OptStaticLocals (Arg, 0);
535                                 break;
536                             default:
537                                 UnknownOption (Arg);
538                                 break;
539                         }
540                     }
541                     break;
542
543                 case 'D':
544                     DefineSym (GetArg (&I, 2));
545                     break;
546
547                 case 'I':
548                     OptIncludeDir (Arg, GetArg (&I, 2));
549                     break;
550
551                 case 'O':
552                     Optimize = 1;
553                     P = Arg + 2;
554                     while (*P) {
555                         switch (*P++) {
556                             case 'f':
557                                 sscanf (P, "%lx", (long*) &OptDisable);
558                                 break;
559                             case 'i':
560                                 FavourSize = 0;
561                                 break;
562                             case 'r':
563                                 EnableRegVars = 1;
564                                 break;
565                             case 's':
566                                 InlineStdFuncs = 1;
567                                 break;
568                         }
569                     }
570                     break;
571
572                 case 'T':
573                     OptAddSource (Arg, 0);
574                     break;
575
576                 case 'V':
577                     OptVersion (Arg, 0);
578                     break;
579
580                 case 'W':
581                     NoWarn = 1;
582                     break;
583
584                 default:
585                     UnknownOption (Arg);
586                     break;
587             }
588         } else {
589             if (InputFile) {
590                 fprintf (stderr, "additional file specs ignored\n");
591             } else {
592                 InputFile = Arg;
593             }
594         }
595
596         /* Next argument */
597         ++I;
598     }
599
600     /* Did we have a file spec on the command line? */
601     if (InputFile == 0) {
602         AbEnd ("No input files");
603     }
604
605     /* Open the input file */
606     OpenMainFile (InputFile);
607
608     /* Create the output file name if it was not explicitly given */
609     if (OutputFile == 0) {
610         OutputFile = MakeFilename (InputFile, ".s");
611     }
612
613     /* Go! */
614     Compile ();
615
616     /* Create the output file if we didn't had any errors */
617     if (ErrorCount == 0 || Debug) {
618
619         FILE* F;
620
621         /* Optimize the output if requested */
622         if (Optimize) {
623             OptDoOpt ();
624         }
625
626         /* Open the file */
627         F = fopen (OutputFile, "w");
628         if (F == 0) {
629             Fatal ("Cannot open output file `%s': %s", OutputFile, strerror (errno));
630         }
631
632         /* Write the output to the file */
633         WriteOutput (F);
634
635         /* Close the file, check for errors */
636         if (fclose (F) != 0) {
637             remove (OutputFile);
638             Fatal ("Cannot write to output file (disk full?)");
639         }
640
641         /* Create dependencies if requested */
642         if (CreateDep) {
643             DoCreateDep (OutputFile);
644         }
645
646     }
647
648     /* Return an apropriate exit code */
649     return (ErrorCount > 0)? EXIT_FAILURE : EXIT_SUCCESS;
650 }
651
652
653