]> git.sur5r.net Git - cc65/blob - src/ld65/main.c
Use a string pool to reduce the memory footprint
[cc65] / src / ld65 / main.c
1 /*****************************************************************************/
2 /*                                                                           */
3 /*                                  main.c                                   */
4 /*                                                                           */
5 /*                     Main program for the ld65 linker                      */
6 /*                                                                           */
7 /*                                                                           */
8 /*                                                                           */
9 /* (C) 1998-2003 Ullrich von Bassewitz                                       */
10 /*               Römerstrasse 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 <errno.h>
40
41 /* common */
42 #include "cmdline.h"
43 #include "filetype.h"
44 #include "libdefs.h"
45 #include "objdefs.h"
46 #include "print.h"
47 #include "target.h"
48 #include "version.h"
49 #include "xmalloc.h"
50
51 /* ld65 */
52 #include "binfmt.h"
53 #include "condes.h"
54 #include "config.h"
55 #include "error.h"
56 #include "exports.h"
57 #include "fileio.h"
58 #include "filepath.h"
59 #include "global.h"
60 #include "library.h"
61 #include "mapfile.h"
62 #include "objfile.h"
63 #include "scanner.h"
64 #include "segments.h"
65 #include "spool.h"
66 #include "tgtcfg.h"
67
68
69
70 /*****************************************************************************/
71 /*                                   Data                                    */
72 /*****************************************************************************/
73
74
75
76 static unsigned         ObjFiles   = 0; /* Count of object files linked */
77 static unsigned         LibFiles   = 0; /* Count of library files linked */
78
79
80
81 /*****************************************************************************/
82 /*                                   Code                                    */
83 /*****************************************************************************/
84
85
86
87 static void Usage (void)
88 /* Print usage information and exit */
89 {
90     fprintf (stderr,
91              "Usage: %s [options] module ...\n"
92              "Short options:\n"
93              "  -C name\t\tUse linker config file\n"
94              "  -L path\t\tSpecify a library search path\n"
95              "  -Ln name\t\tCreate a VICE label file\n"
96              "  -Lp\t\t\tMark write protected segments as such (VICE)\n"
97              "  -S addr\t\tSet the default start address\n"
98              "  -V\t\t\tPrint the linker version\n"
99              "  -h\t\t\tHelp (this text)\n"
100              "  -m name\t\tCreate a map file\n"
101              "  -o name\t\tName the default output file\n"
102              "  -t sys\t\tSet the target system\n"
103              "  -v\t\t\tVerbose mode\n"
104              "  -vm\t\t\tVerbose map file\n"
105              "\n"
106              "Long options:\n"
107              "  --cfg-path path\tSpecify a config file search path\n"
108              "  --config name\t\tUse linker config file\n"
109              "  --dump-config name\tDump a builtin configuration\n"
110              "  --help\t\tHelp (this text)\n"
111              "  --lib file\t\tLink this library\n"
112              "  --lib-path path\tSpecify a library search path\n"
113              "  --mapfile name\tCreate a map file\n"
114              "  --module-id id\tSpecify a module id\n"
115              "  --obj file\t\tLink this object file\n"
116              "  --obj-path path\tSpecify an object file search path\n"
117              "  --start-addr addr\tSet the default start address\n"
118              "  --target sys\t\tSet the target system\n"
119              "  --version\t\tPrint the linker version\n",
120              ProgName);
121 }
122
123
124
125 static unsigned long CvtNumber (const char* Arg, const char* Number)
126 /* Convert a number from a string. Allow '$' and '0x' prefixes for hex
127  * numbers.
128  */
129 {
130     unsigned long Val;
131     int           Converted;
132
133     /* Convert */
134     if (*Number == '$') {
135         ++Number;
136         Converted = sscanf (Number, "%lx", &Val);
137     } else {
138         Converted = sscanf (Number, "%li", (long*)&Val);
139     }
140
141     /* Check if we do really have a number */
142     if (Converted != 1) {
143         Error ("Invalid number given in argument: %s\n", Arg);
144     }
145
146     /* Return the result */
147     return Val;
148 }
149
150
151
152 static void LinkFile (const char* Name, FILETYPE Type)
153 /* Handle one file */
154 {
155     char*         PathName;
156     FILE*         F;
157     unsigned long Magic;
158
159
160     /* If we don't know the file type, determine it from the extension */
161     if (Type == FILETYPE_UNKNOWN) {
162         Type = GetFileType (Name);
163     }
164
165     /* For known file types, search the file in the directory list */
166     switch (Type) {
167
168         case FILETYPE_LIB:
169             PathName = SearchFile (Name, SEARCH_LIB);
170             break;
171
172         case FILETYPE_OBJ:
173             PathName = SearchFile (Name, SEARCH_OBJ);
174             break;
175
176         default:
177             PathName = xstrdup (Name);   /* Use the name as is */
178             break;
179     }
180
181     /* We must have a valid name now */
182     if (PathName == 0) {
183         Error ("Input file `%s' not found", Name);
184     }
185
186     /* Try to open the file */
187     F = fopen (PathName, "rb");
188     if (F == 0) {
189         Error ("Cannot open `%s': %s", PathName, strerror (errno));
190     }
191
192     /* Read the magic word */
193     Magic = Read32 (F);
194
195     /* Check the magic for known file types. The handling is somewhat weird
196      * since we may have given a file with a ".lib" extension, which was
197      * searched and found in a directory for library files, but we now find
198      * out (by looking at the magic) that it's indeed an object file. We just
199      * ignore the problem and hope no one will notice...
200      */
201     switch (Magic) {
202
203         case OBJ_MAGIC:
204             ObjAdd (F, PathName);
205             ++ObjFiles;
206             break;
207
208         case LIB_MAGIC:
209             LibAdd (F, PathName);
210             ++LibFiles;
211             break;
212
213         default:
214             fclose (F);
215             Error ("File `%s' has unknown type", PathName);
216
217     }
218
219     /* Free allocated memory. */
220     xfree (PathName);
221 }
222
223
224
225 static void OptCfgPath (const char* Opt attribute ((unused)), const char* Arg)
226 /* Specify a config file search path */
227 {
228     AddSearchPath (Arg, SEARCH_CFG);
229 }
230
231
232
233 static void OptConfig (const char* Opt attribute ((unused)), const char* Arg)
234 /* Define the config file */
235 {
236     char* PathName;
237
238     if (CfgAvail ()) {
239         Error ("Cannot use -C/-t twice");
240     }
241     /* Search for the file */
242     PathName = SearchFile (Arg, SEARCH_CFG);
243     if (PathName == 0) {
244         Error ("Cannot find config file `%s'", Arg);
245     } else {
246         CfgSetName (PathName);
247         xfree (PathName);
248     }
249 }
250
251
252
253 static void OptDbgFile (const char* Opt attribute ((unused)), const char* Arg)
254 /* Give the name of the debug file */
255 {
256     DbgFileName = Arg;
257 }
258
259
260
261 static void OptDumpConfig (const char* Opt attribute ((unused)), const char* Arg)
262 /* Dump a builtin linker configuration */
263 {
264     /* Map the given target name to its id */
265     target_t T = FindTarget (Arg);
266     if (T == TGT_UNKNOWN) {
267         Error ("Target system `%s' is unknown", Arg);
268     }
269
270     /* Dump the builtin configuration */
271     DumpBuiltinConfig (stdout, T);
272 }
273
274
275
276 static void OptHelp (const char* Opt attribute ((unused)),
277                      const char* Arg attribute ((unused)))
278 /* Print usage information and exit */
279 {
280     Usage ();
281     exit (EXIT_SUCCESS);
282 }
283
284
285
286 static void OptLib (const char* Opt attribute ((unused)), const char* Arg)
287 /* Link a library */
288 {
289     LinkFile (Arg, FILETYPE_LIB);
290 }
291
292
293
294 static void OptLibPath (const char* Opt attribute ((unused)), const char* Arg)
295 /* Specify a library file search path */
296 {
297     AddSearchPath (Arg, SEARCH_LIB);
298 }
299
300
301
302 static void OptMapFile (const char* Opt attribute ((unused)), const char* Arg)
303 /* Give the name of the map file */
304 {
305     MapFileName = Arg;
306 }
307
308
309
310 static void OptModuleId (const char* Opt, const char* Arg)
311 /* Specify a module id */
312 {
313     unsigned long Id = CvtNumber (Opt, Arg);
314     if (Id > 0xFFFFUL) {
315         Error ("Range error in module id");
316     }
317     ModuleId = (unsigned) Id;
318 }
319
320
321
322 static void OptObj (const char* Opt attribute ((unused)), const char* Arg)
323 /* Link an object file */
324 {
325     LinkFile (Arg, FILETYPE_OBJ);
326 }
327
328
329
330 static void OptObjPath (const char* Opt attribute ((unused)), const char* Arg)
331 /* Specify an object file search path */
332 {
333     AddSearchPath (Arg, SEARCH_OBJ);
334 }
335
336
337
338 static void OptStartAddr (const char* Opt, const char* Arg)
339 /* Set the default start address */
340 {
341     StartAddr = CvtNumber (Opt, Arg);
342     HaveStartAddr = 1;
343 }
344
345
346
347 static void OptTarget (const char* Opt attribute ((unused)), const char* Arg)
348 /* Set the target system */
349 {
350     const TargetDesc* D;
351
352     /* Map the target name to a target id */
353     Target = FindTarget (Arg);
354     if (Target == TGT_UNKNOWN) {
355         Error ("Invalid target name: `%s'", Arg);
356     }
357
358     /* Get the target description record */
359     D = &Targets[Target];
360
361     /* Set the target data */
362     DefaultBinFmt = D->BinFmt;
363     CfgSetBuf (D->Cfg);
364 }
365
366
367
368 static void OptVersion (const char* Opt attribute ((unused)),
369                         const char* Arg attribute ((unused)))
370 /* Print the assembler version */
371 {
372     fprintf (stderr,
373              "ld65 V%u.%u.%u - (C) Copyright 1998-2002 Ullrich von Bassewitz\n",
374              VER_MAJOR, VER_MINOR, VER_PATCH);
375 }
376
377
378
379 int main (int argc, char* argv [])
380 /* Assembler main program */
381 {
382     /* Program long options */
383     static const LongOpt OptTab[] = {
384         { "--cfg-path",         1,      OptCfgPath              },
385         { "--config",           1,      OptConfig               },
386         { "--dbgfile",          1,      OptDbgFile              },
387         { "--dump-config",      1,      OptDumpConfig           },
388         { "--help",             0,      OptHelp                 },
389         { "--lib",              1,      OptLib                  },
390         { "--lib-path",         1,      OptLibPath              },
391         { "--mapfile",          1,      OptMapFile              },
392         { "--module-id",        1,      OptModuleId             },
393         { "--obj",              1,      OptObj                  },
394         { "--obj-path",         1,      OptObjPath              },
395         { "--start-addr",       1,      OptStartAddr            },
396         { "--target",           1,      OptTarget               },
397         { "--version",          0,      OptVersion              },
398     };
399
400     unsigned I;
401
402     /* Initialize the cmdline module */
403     InitCmdLine (&argc, &argv, "ld65");
404
405     /* Initialize the input file search paths */
406     InitSearchPaths ();
407
408     /* Initialize the string pool */
409     InitStrPool ();
410
411     /* Check the parameters */
412     I = 1;
413     while (I < ArgCount) {
414
415         /* Get the argument */
416         const char* Arg = ArgVec[I];
417
418         /* Check for an option */
419         if (Arg [0] == '-') {
420
421             /* An option */
422             switch (Arg [1]) {
423
424                 case '-':
425                     LongOption (&I, OptTab, sizeof(OptTab)/sizeof(OptTab[0]));
426                     break;
427
428                 case 'h':
429                 case '?':
430                     OptHelp (Arg, 0);
431                     break;
432
433                 case 'm':
434                     OptMapFile (Arg, GetArg (&I, 2));
435                     break;
436
437                 case 'o':
438                     OutputName = GetArg (&I, 2);
439                     break;
440
441                 case 't':
442                     if (CfgAvail ()) {
443                         Error ("Cannot use -C/-t twice");
444                     }
445                     OptTarget (Arg, GetArg (&I, 2));
446                     break;
447
448                 case 'v':
449                     switch (Arg [2]) {
450                         case 'm':   VerboseMap = 1;     break;
451                         case '\0':  ++Verbosity;        break;
452                         default:    UnknownOption (Arg);
453                     }
454                     break;
455
456                 case 'C':
457                     OptConfig (Arg, GetArg (&I, 2));
458                     break;
459
460                 case 'L':
461                     switch (Arg [2]) {
462                         /* ## The first two are obsolete and will go */
463                         case 'n': LabelFileName = GetArg (&I, 3);   break;
464                         case 'p': WProtSegs = 1;                    break;
465                         default:  OptLibPath (Arg, GetArg (&I, 2)); break;
466                     }
467                     break;
468
469                 case 'S':
470                     OptStartAddr (Arg, GetArg (&I, 2));
471                     break;
472
473                 case 'V':
474                     OptVersion (Arg, 0);
475                     break;
476
477                 default:
478                     UnknownOption (Arg);
479                     break;
480             }
481
482         } else {
483
484             /* A filename */
485             LinkFile (Arg, FILETYPE_UNKNOWN);
486
487         }
488
489         /* Next argument */
490         ++I;
491     }
492
493     /* Check if we had any object files */
494     if (ObjFiles == 0) {
495         Error ("No object files to link");
496     }
497
498     /* Check if we have a valid configuration */
499     if (!CfgAvail ()) {
500         Error ("Memory configuration missing");
501     }
502
503     /* Read the config file */
504     CfgRead ();
505
506     /* Create the condes tables if requested */
507     ConDesCreate ();
508
509     /* Assign start addresses for the segments, define linker symbols */
510     CfgAssignSegments ();
511
512     /* Create the output file */
513     CfgWriteTarget ();
514
515     /* Check for segments not written to the output file */
516     CheckSegments ();
517
518     /* If requested, create a map file and a label file for VICE */
519     if (MapFileName) {
520         CreateMapFile ();
521     }
522     if (LabelFileName) {
523         CreateLabelFile ();
524     }
525     if (DbgFileName) {
526         CreateDbgFile ();
527     }
528
529     /* Dump the data for debugging */
530     if (Verbosity > 1) {
531         SegDump ();
532         ConDesDump ();
533     }
534
535     /* Return an apropriate exit code */
536     return EXIT_SUCCESS;
537 }
538
539
540
541