1 /*****************************************************************************/
5 /* cc65 main program */
9 /* (C) 2000-2015, Ullrich von Bassewitz */
10 /* Roemerstrasse 52 */
11 /* D-70794 Filderstadt */
12 /* EMail: uz@cc65.org */
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. */
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: */
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 */
32 /*****************************************************************************/
46 #include "debugflag.h"
73 /*****************************************************************************/
75 /*****************************************************************************/
79 static void Usage (void)
80 /* Print usage information to stderr */
82 printf ("Usage: %s [options] file\n"
84 " -Cl\t\t\t\tMake local variables static\n"
85 " -Dsym[=defn]\t\t\tDefine a symbol\n"
86 " -E\t\t\t\tStop after the preprocessing stage\n"
87 " -I dir\t\t\tSet an include directory search path\n"
88 " -O\t\t\t\tOptimize code\n"
89 " -Oi\t\t\t\tOptimize code, inline more code\n"
90 " -Or\t\t\t\tEnable register variables\n"
91 " -Os\t\t\t\tInline some known functions\n"
92 " -T\t\t\t\tInclude source as comment\n"
93 " -V\t\t\t\tPrint the compiler version number\n"
94 " -W warning[,...]\t\tSuppress warnings\n"
95 " -d\t\t\t\tDebug mode\n"
96 " -g\t\t\t\tAdd debug info to object file\n"
97 " -h\t\t\t\tHelp (this text)\n"
98 " -j\t\t\t\tDefault characters are signed\n"
99 " -mm model\t\t\tSet the memory model\n"
100 " -o name\t\t\tName the output file\n"
101 " -r\t\t\t\tEnable register variables\n"
102 " -t sys\t\t\tSet the target system\n"
103 " -v\t\t\t\tIncrease verbosity\n"
106 " --add-source\t\t\tInclude source as comment\n"
107 " --all-cdecl\t\t\tMake functions default to __cdecl__\n"
108 " --bss-name seg\t\tSet the name of the BSS segment\n"
109 " --check-stack\t\t\tGenerate stack overflow checks\n"
110 " --code-name seg\t\tSet the name of the CODE segment\n"
111 " --codesize x\t\t\tAccept larger code by factor x\n"
112 " --cpu type\t\t\tSet cpu type (6502, 65c02)\n"
113 " --create-dep name\t\tCreate a make dependency file\n"
114 " --create-full-dep name\tCreate a full make dependency file\n"
115 " --data-name seg\t\tSet the name of the DATA segment\n"
116 " --debug\t\t\tDebug mode\n"
117 " --debug-info\t\t\tAdd debug info to object file\n"
118 " --debug-opt name\t\tDebug optimization steps\n"
119 " --dep-target target\t\tUse this dependency target\n"
120 " --disable-opt name\t\tDisable an optimization step\n"
121 " --enable-opt name\t\tEnable an optimization step\n"
122 " --help\t\t\tHelp (this text)\n"
123 " --include-dir dir\t\tSet an include directory search path\n"
124 " --list-opt-steps\t\tList all optimizer steps and exit\n"
125 " --list-warnings\t\tList available warning types for -W\n"
126 " --local-strings\t\tEmit string literals immediately\n"
127 " --memory-model model\t\tSet the memory model\n"
128 " --register-space b\t\tSet space available for register variables\n"
129 " --register-vars\t\tEnable register variables\n"
130 " --rodata-name seg\t\tSet the name of the RODATA segment\n"
131 " --signed-chars\t\tDefault characters are signed\n"
132 " --standard std\t\tLanguage standard (c89, c99, cc65)\n"
133 " --static-locals\t\tMake local variables static\n"
134 " --target sys\t\t\tSet the target system\n"
135 " --verbose\t\t\tIncrease verbosity\n"
136 " --version\t\t\tPrint the compiler version number\n"
137 " --writable-strings\t\tMake string literals writable\n",
143 static void cbmsys (const char* sys)
144 /* Define a CBM system */
146 DefineNumericMacro ("__CBM__", 1);
147 DefineNumericMacro (sys, 1);
152 static void SetSys (const char* Sys)
153 /* Define a target system */
155 switch (Target = FindTarget (Sys)) {
161 AbEnd ("Cannot use `module' as a target for the compiler");
165 DefineNumericMacro ("__ATARI2600__", 1);
169 DefineNumericMacro ("__ATARI5200__", 1);
173 DefineNumericMacro ("__ATARI__", 1);
177 DefineNumericMacro ("__ATARI__", 1);
178 DefineNumericMacro ("__ATARIXL__", 1);
190 cbmsys ("__VIC20__");
199 DefineNumericMacro ("__PLUS4__", 1);
203 cbmsys ("__CBM510__");
207 cbmsys ("__CBM610__");
215 DefineNumericMacro ("__BBC__", 1);
219 DefineNumericMacro ("__APPLE2__", 1);
223 DefineNumericMacro ("__APPLE2__", 1);
224 DefineNumericMacro ("__APPLE2ENH__", 1);
228 DefineNumericMacro ("__GAMATE__", 1);
232 /* Do not handle as a CBM system */
233 DefineNumericMacro ("__GEOS__", 1);
234 DefineNumericMacro ("__GEOS_CBM__", 1);
238 DefineNumericMacro ("__GEOS__", 1);
239 DefineNumericMacro ("__GEOS_APPLE__", 1);
243 DefineNumericMacro ("__LUNIX__", 1);
247 DefineNumericMacro ("__ATMOS__", 1);
251 DefineNumericMacro ("__NES__", 1);
254 case TGT_SUPERVISION:
255 DefineNumericMacro ("__SUPERVISION__", 1);
259 DefineNumericMacro ("__LYNX__", 1);
263 DefineNumericMacro ("__SIM6502__", 1);
267 DefineNumericMacro ("__SIM65C02__", 1);
271 DefineNumericMacro ("__OSIC1P__", 1);
275 DefineNumericMacro ("__PCE__", 1);
279 AbEnd ("Unknown target system type %d", Target);
282 /* Initialize the translation tables for the target system */
288 static void FileNameOption (const char* Opt, const char* Arg, StrBuf* Name)
289 /* Handle an option that remembers a file name for later */
291 /* Cannot have the option twice */
292 if (SB_NotEmpty (Name)) {
293 AbEnd ("Cannot use option `%s' twice", Opt);
295 /* Remember the file name for later */
296 SB_CopyStr (Name, Arg);
302 static void DefineSym (const char* Def)
303 /* Define a symbol on the command line */
307 /* The symbol must start with a character or underline */
308 if (Def [0] != '_' && !IsAlpha (Def [0])) {
312 /* Check the symbol name */
313 while (IsAlNum (*P) || *P == '_') {
317 /* Do we have a value given? */
322 /* No value given. Define the macro with the value 1 */
323 DefineNumericMacro (Def, 1);
325 /* We have a value, P points to the '=' character. Since the argument
326 ** is const, create a copy and replace the '=' in the copy by a zero
330 unsigned Len = strlen (Def)+1;
331 char* S = (char*) xmalloc (Len);
332 memcpy (S, Def, Len);
336 /* Define this as a macro */
337 DefineTextMacro (S, Q);
339 /* Release the allocated memory */
346 static void CheckSegName (const char* Seg)
347 /* Abort if the given name is not a valid segment name */
349 /* Print an error and abort if the name is not ok */
350 if (!ValidSegName (Seg)) {
351 AbEnd ("Segment name `%s' is invalid", Seg);
357 static void OptAddSource (const char* Opt attribute ((unused)),
358 const char* Arg attribute ((unused)))
359 /* Add source lines as comments in generated assembler file */
366 static void OptAllCDecl (const char* Opt attribute ((unused)),
367 const char* Arg attribute ((unused)))
368 /* Make functions default to cdecl instead of fastcall. */
375 static void OptBssName (const char* Opt attribute ((unused)), const char* Arg)
376 /* Handle the --bss-name option */
378 /* Check for a valid name */
382 SetSegName (SEG_BSS, Arg);
387 static void OptCheckStack (const char* Opt attribute ((unused)),
388 const char* Arg attribute ((unused)))
389 /* Handle the --check-stack option */
391 IS_Set (&CheckStack, 1);
396 static void OptCodeName (const char* Opt attribute ((unused)), const char* Arg)
397 /* Handle the --code-name option */
399 /* Check for a valid name */
403 SetSegName (SEG_CODE, Arg);
408 static void OptCodeSize (const char* Opt, const char* Arg)
409 /* Handle the --codesize option */
414 /* Numeric argument expected */
415 if (sscanf (Arg, "%u%c", &Factor, &BoundsCheck) != 1 ||
416 Factor < 10 || Factor > 1000) {
417 AbEnd ("Argument for %s is invalid", Opt);
419 IS_Set (&CodeSizeFactor, Factor);
424 static void OptCreateDep (const char* Opt, const char* Arg)
425 /* Handle the --create-dep option */
427 FileNameOption (Opt, Arg, &DepName);
432 static void OptCreateFullDep (const char* Opt attribute ((unused)),
434 /* Handle the --create-full-dep option */
436 FileNameOption (Opt, Arg, &FullDepName);
441 static void OptCPU (const char* Opt, const char* Arg)
442 /* Handle the --cpu option */
444 /* Find the CPU from the given name */
446 if (CPU != CPU_6502 && CPU != CPU_6502X && CPU != CPU_65SC02 &&
447 CPU != CPU_65C02 && CPU != CPU_65816 && CPU != CPU_HUC6280) {
448 AbEnd ("Invalid argument for %s: `%s'", Opt, Arg);
454 static void OptDataName (const char* Opt attribute ((unused)), const char* Arg)
455 /* Handle the --data-name option */
457 /* Check for a valid name */
461 SetSegName (SEG_DATA, Arg);
466 static void OptDebug (const char* Opt attribute ((unused)),
467 const char* Arg attribute ((unused)))
468 /* Compiler debug mode */
475 static void OptDebugInfo (const char* Opt attribute ((unused)),
476 const char* Arg attribute ((unused)))
477 /* Add debug info to the object file */
484 static void OptDebugOpt (const char* Opt attribute ((unused)), const char* Arg)
485 /* Debug optimization steps */
491 FILE* F = fopen (Arg, "r");
493 AbEnd ("Cannot open `%s': %s", Arg, strerror (errno));
496 /* Read line by line, ignore empty lines and switch optimization
499 while (fgets (Buf, sizeof (Buf), F) != 0) {
501 /* Remove trailing control chars. This will also remove the
504 unsigned Len = strlen (Buf);
505 while (Len > 0 && IsControl (Buf[Len-1])) {
510 /* Get a pointer to the buffer and remove leading white space */
512 while (IsBlank (*Line)) {
516 /* Check the first character and enable/disable the step or
524 /* Empty or comment line */
543 /* Close the file, no error check here since we were just reading and
544 ** this is only a debug function.
551 static void OptDebugOptOutput (const char* Opt attribute ((unused)),
552 const char* Arg attribute ((unused)))
553 /* Output optimization steps */
560 static void OptDepTarget (const char* Opt attribute ((unused)), const char* Arg)
561 /* Handle the --dep-target option */
563 FileNameOption (Opt, Arg, &DepTarget);
568 static void OptDisableOpt (const char* Opt attribute ((unused)), const char* Arg)
569 /* Disable an optimization step */
576 static void OptEnableOpt (const char* Opt attribute ((unused)), const char* Arg)
577 /* Enable an optimization step */
584 static void OptHelp (const char* Opt attribute ((unused)),
585 const char* Arg attribute ((unused)))
586 /* Print usage information and exit */
594 static void OptIncludeDir (const char* Opt attribute ((unused)), const char* Arg)
595 /* Add an include search path */
597 AddSearchPath (SysIncSearchPath, Arg);
598 AddSearchPath (UsrIncSearchPath, Arg);
603 static void OptListOptSteps (const char* Opt attribute ((unused)),
604 const char* Arg attribute ((unused)))
605 /* List all optimizer steps */
607 /* List the optimizer steps */
608 ListOptSteps (stdout);
616 static void OptListWarnings (const char* Opt attribute ((unused)),
617 const char* Arg attribute ((unused)))
618 /* List all warning types */
620 /* List the warnings */
621 ListWarnings (stdout);
629 static void OptLocalStrings (const char* Opt attribute ((unused)),
630 const char* Arg attribute ((unused)))
631 /* Emit string literals immediately */
633 IS_Set (&LocalStrings, 1);
638 static void OptMemoryModel (const char* Opt, const char* Arg)
639 /* Set the memory model */
643 /* Check the current memory model */
644 if (MemoryModel != MMODEL_UNKNOWN) {
645 AbEnd ("Cannot use option `%s' twice", Opt);
648 /* Translate the memory model name and check it */
649 M = FindMemoryModel (Arg);
650 if (M == MMODEL_UNKNOWN) {
651 AbEnd ("Unknown memory model: %s", Arg);
652 } else if (M == MMODEL_HUGE) {
653 AbEnd ("Unsupported memory model: %s", Arg);
656 /* Set the memory model */
662 static void OptRegisterSpace (const char* Opt, const char* Arg)
663 /* Handle the --register-space option */
665 /* Numeric argument expected */
666 if (sscanf (Arg, "%u", &RegisterSpace) != 1 || RegisterSpace > 256) {
667 AbEnd ("Argument for option %s is invalid", Opt);
673 static void OptRegisterVars (const char* Opt attribute ((unused)),
674 const char* Arg attribute ((unused)))
675 /* Handle the --register-vars option */
677 IS_Set (&EnableRegVars, 1);
682 static void OptRodataName (const char* Opt attribute ((unused)), const char* Arg)
683 /* Handle the --rodata-name option */
685 /* Check for a valid name */
689 SetSegName (SEG_RODATA, Arg);
694 static void OptSignedChars (const char* Opt attribute ((unused)),
695 const char* Arg attribute ((unused)))
696 /* Make default characters signed */
698 IS_Set (&SignedChars, 1);
703 static void OptStandard (const char* Opt, const char* Arg)
704 /* Handle the --standard option */
706 /* Find the standard from the given name */
707 standard_t Std = FindStandard (Arg);
708 if (Std == STD_UNKNOWN) {
709 AbEnd ("Invalid argument for %s: `%s'", Opt, Arg);
710 } else if (IS_Get (&Standard) != STD_UNKNOWN) {
711 AbEnd ("Option %s given more than once", Opt);
713 IS_Set (&Standard, Std);
719 static void OptStaticLocals (const char* Opt attribute ((unused)),
720 const char* Arg attribute ((unused)))
721 /* Place local variables in static storage */
723 IS_Set (&StaticLocals, 1);
728 static void OptTarget (const char* Opt attribute ((unused)), const char* Arg)
729 /* Set the target system */
736 static void OptVerbose (const char* Opt attribute ((unused)),
737 const char* Arg attribute ((unused)))
738 /* Increase verbosity */
745 static void OptVersion (const char* Opt attribute ((unused)),
746 const char* Arg attribute ((unused)))
747 /* Print the compiler version */
749 fprintf (stderr, "%s V%s\n", ProgName, GetVersionAsString ());
755 static void OptWarning (const char* Opt attribute ((unused)), const char* Arg)
756 /* Handle the -W option */
758 StrBuf W = AUTO_STRBUF_INITIALIZER;
760 /* Arg is a list of suboptions, separated by commas */
767 /* The suboption may be prefixed with '-' or '+' */
771 } else if (*Arg == '+') {
772 /* This is the default */
776 /* Get the next suboption */
777 Pos = strchr (Arg, ',');
779 SB_CopyBuf (&W, Arg, Pos - Arg);
782 SB_CopyStr (&W, Arg);
787 /* Search for the warning */
788 S = FindWarning (SB_GetConstBuf (&W));
790 InvArg (Opt, SB_GetConstBuf (&W));
795 /* Free allocated memory */
801 static void OptWritableStrings (const char* Opt attribute ((unused)),
802 const char* Arg attribute ((unused)))
803 /* Make string literals writable */
805 IS_Set (&WritableStrings, 1);
810 int main (int argc, char* argv[])
812 /* Program long options */
813 static const LongOpt OptTab[] = {
814 { "--add-source", 0, OptAddSource },
815 { "--all-cdecl", 0, OptAllCDecl },
816 { "--bss-name", 1, OptBssName },
817 { "--check-stack", 0, OptCheckStack },
818 { "--code-name", 1, OptCodeName },
819 { "--codesize", 1, OptCodeSize },
820 { "--cpu", 1, OptCPU },
821 { "--create-dep", 1, OptCreateDep },
822 { "--create-full-dep", 1, OptCreateFullDep },
823 { "--data-name", 1, OptDataName },
824 { "--debug", 0, OptDebug },
825 { "--debug-info", 0, OptDebugInfo },
826 { "--debug-opt", 1, OptDebugOpt },
827 { "--debug-opt-output", 0, OptDebugOptOutput },
828 { "--dep-target", 1, OptDepTarget },
829 { "--disable-opt", 1, OptDisableOpt },
830 { "--enable-opt", 1, OptEnableOpt },
831 { "--help", 0, OptHelp },
832 { "--include-dir", 1, OptIncludeDir },
833 { "--list-opt-steps", 0, OptListOptSteps },
834 { "--list-warnings", 0, OptListWarnings },
835 { "--local-strings", 0, OptLocalStrings },
836 { "--memory-model", 1, OptMemoryModel },
837 { "--register-space", 1, OptRegisterSpace },
838 { "--register-vars", 0, OptRegisterVars },
839 { "--rodata-name", 1, OptRodataName },
840 { "--signed-chars", 0, OptSignedChars },
841 { "--standard", 1, OptStandard },
842 { "--static-locals", 0, OptStaticLocals },
843 { "--target", 1, OptTarget },
844 { "--verbose", 0, OptVerbose },
845 { "--version", 0, OptVersion },
846 { "--writable-strings", 0, OptWritableStrings },
851 /* Initialize the input file name */
852 const char* InputFile = 0;
854 /* Initialize the cmdline module */
855 InitCmdLine (&argc, &argv, "cc65");
857 /* Initialize the default segment names */
860 /* Initialize the include search paths */
863 /* Parse the command line */
865 while (I < ArgCount) {
869 /* Get the argument */
870 const char* Arg = ArgVec[I];
872 /* Check for an option */
878 LongOption (&I, OptTab, sizeof(OptTab)/sizeof(OptTab[0]));
891 OptDebugInfo (Arg, 0);
895 OptSignedChars (Arg, 0);
899 SetOutputName (GetArg (&I, 2));
903 OptRegisterVars (Arg, 0);
907 OptTarget (Arg, GetArg (&I, 2));
911 OptCreateDep (Arg, 0);
923 OptStaticLocals (Arg, 0);
933 DefineSym (GetArg (&I, 2));
941 OptIncludeDir (Arg, GetArg (&I, 2));
945 IS_Set (&Optimize, 1);
950 IS_Set (&CodeSizeFactor, 200);
953 IS_Set (&EnableRegVars, 1);
956 IS_Set (&InlineStdFuncs, 1);
963 OptAddSource (Arg, 0);
971 OptWarning (Arg, GetArg (&I, 2));
980 fprintf (stderr, "additional file specs ignored\n");
990 /* Did we have a file spec on the command line? */
991 if (InputFile == 0) {
992 AbEnd ("No input files");
995 /* Add the default include search paths. */
996 FinishIncludePaths ();
998 /* Create the output file name if it was not explicitly given */
999 MakeDefaultOutputName (InputFile);
1001 /* If no CPU given, use the default CPU for the target */
1002 if (CPU == CPU_UNKNOWN) {
1003 if (Target != TGT_UNKNOWN) {
1004 CPU = GetTargetProperties (Target)->DefaultCPU;
1010 /* If no memory model was given, use the default */
1011 if (MemoryModel == MMODEL_UNKNOWN) {
1012 SetMemoryModel (MMODEL_NEAR);
1015 /* If no language standard was given, use the default one */
1016 if (IS_Get (&Standard) == STD_UNKNOWN) {
1017 IS_Set (&Standard, STD_DEFAULT);
1021 Compile (InputFile);
1023 /* Create the output file if we didn't had any errors */
1024 if (PreprocessOnly == 0 && (ErrorCount == 0 || Debug)) {
1026 /* Emit literals, externals, do cleanup and optimizations */
1032 /* Write the output to the file */
1034 Print (stdout, 1, "Wrote output to `%s'\n", OutputFilename);
1036 /* Close the file, check for errors */
1039 /* Create dependencies if requested */
1040 CreateDependencies ();
1043 /* Return an apropriate exit code */
1044 return (ErrorCount > 0)? EXIT_FAILURE : EXIT_SUCCESS;