]> git.sur5r.net Git - cc65/blob - src/ld65/mapfile.c
New module strstack
[cc65] / src / ld65 / mapfile.c
1 /*****************************************************************************/
2 /*                                                                           */
3 /*                                 mapfile.c                                 */
4 /*                                                                           */
5 /*                   Map file creation for the ld65 linker                   */
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 <string.h>
38 #include <errno.h>
39
40 /* ld65 */
41 #include "config.h"
42 #include "dbgsyms.h"
43 #include "exports.h"
44 #include "global.h"
45 #include "error.h"
46 #include "mapfile.h"
47 #include "objdata.h"
48 #include "segments.h"
49 #include "spool.h"
50
51
52
53 /*****************************************************************************/
54 /*                                   Code                                    */
55 /*****************************************************************************/
56
57
58
59 void CreateMapFile (void)
60 /* Create a map file */
61 {
62     unsigned I;
63
64     /* Open the map file */
65     FILE* F = fopen (MapFileName, "w");
66     if (F == 0) {
67         Error ("Cannot create map file `%s': %s", MapFileName, strerror (errno));
68     }
69
70     /* Write a modules list */
71     fprintf (F, "Modules list:\n"
72                 "-------------\n");
73     for (I = 0; I < CollCount (&ObjDataList); ++I) {
74
75         unsigned J;
76
77         /* Get the object file */
78         const ObjData* O = CollConstAt (&ObjDataList, I);
79
80         /* Output the data */
81         if (O->LibName != INVALID_STRING_ID) {
82             /* The file is from a library */
83             fprintf (F, "%s(%s):\n", GetString (O->LibName), GetObjFileName (O));
84         } else {
85             fprintf (F, "%s:\n", GetObjFileName (O));
86         }
87         for (J = 0; J < O->SectionCount; ++J) {
88             const Section* S = O->Sections [J];
89             /* Don't include zero sized sections if not explicitly
90              * requested
91              */
92             if (VerboseMap || S->Size > 0) {
93                 fprintf (F, "    %-15s   Offs = %06lX   Size = %06lX\n",
94                          GetString (S->Seg->Name), S->Offs, S->Size);
95             }
96         }
97     }
98
99     /* Write the segment list */
100     fprintf (F, "\n\n"
101                 "Segment list:\n"
102                 "-------------\n");
103     PrintSegmentMap (F);
104
105     /* Write the exports list */
106     fprintf (F, "\n\n"
107                 "Exports list:\n"
108                 "-------------\n");
109     PrintExportMap (F);
110
111     /* Write the imports list */
112     fprintf (F, "\n\n"
113                 "Imports list:\n"
114                 "-------------\n");
115     PrintImportMap (F);
116
117     /* Close the file */
118     if (fclose (F) != 0) {
119         Error ("Error closing map file `%s': %s", MapFileName, strerror (errno));
120     }
121 }
122
123
124
125 void CreateLabelFile (void)
126 /* Create a label file */
127 {
128     unsigned I;
129
130     /* Open the label file */
131     FILE* F = fopen (LabelFileName, "w");
132     if (F == 0) {
133         Error ("Cannot create label file `%s': %s", LabelFileName, strerror (errno));
134     }
135
136     /* Clear the debug sym table (used to detect duplicates) */
137     ClearDbgSymTable ();
138
139     /* Print the labels for the export symbols */
140     PrintExportLabels (F);
141
142     /* Create labels from all modules we have linked into the output file */
143     for (I = 0; I < CollCount (&ObjDataList); ++I) {
144
145         /* Get the object file */
146         ObjData* O = CollAtUnchecked (&ObjDataList, I);
147
148         /* Output the labels */
149         PrintDbgSymLabels (O, F);
150     }
151
152     /* Close the file */
153     if (fclose (F) != 0) {
154         Error ("Error closing label file `%s': %s", LabelFileName, strerror (errno));
155     }
156 }
157
158
159