]> git.sur5r.net Git - cc65/blob - src/ld65/library.c
Use a string pool to reduce the memory footprint
[cc65] / src / ld65 / library.c
1 /*****************************************************************************/
2 /*                                                                           */
3 /*                                 library.c                                 */
4 /*                                                                           */
5 /*          Library data structures and helpers 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 <string.h>
38 #include <errno.h>
39
40 /* common */
41 #include "exprdefs.h"
42 #include "filepos.h"
43 #include "libdefs.h"
44 #include "objdefs.h"
45 #include "symdefs.h"
46 #include "xmalloc.h"
47
48 /* ld65 */
49 #include "error.h"
50 #include "exports.h"
51 #include "fileio.h"
52 #include "objdata.h"
53 #include "objfile.h"
54 #include "library.h"
55
56
57
58 /*****************************************************************************/
59 /*                                   Data                                    */
60 /*****************************************************************************/
61
62
63
64 /* Library data */
65 static FILE*            Lib             = 0;
66 static char*            LibName         = 0;
67 static unsigned         ModuleCount     = 0;
68 static ObjData**        Index           = 0;
69
70
71
72 /*****************************************************************************/
73 /*                       Reading file data structures                        */
74 /*****************************************************************************/
75
76
77
78 static void LibReadObjHeader (ObjData* O)
79 /* Read the header of the object file checking the signature */
80 {
81     O->Header.Magic = Read32 (Lib);
82     if (O->Header.Magic != OBJ_MAGIC) {
83         Error ("Object file `%s' in library `%s' is invalid",
84                GetObjFileName (O), LibName);
85     }
86     O->Header.Version = Read16 (Lib);
87     if (O->Header.Version != OBJ_VERSION) {
88         Error ("Object file `%s' in library `%s' has wrong version",
89                GetObjFileName (O), LibName);
90     }
91     O->Header.Flags        = Read16 (Lib);
92     O->Header.OptionOffs   = Read32 (Lib);
93     O->Header.OptionSize   = Read32 (Lib);
94     O->Header.FileOffs     = Read32 (Lib);
95     O->Header.FileSize     = Read32 (Lib);
96     O->Header.SegOffs      = Read32 (Lib);
97     O->Header.SegSize      = Read32 (Lib);
98     O->Header.ImportOffs   = Read32 (Lib);
99     O->Header.ImportSize   = Read32 (Lib);
100     O->Header.ExportOffs   = Read32 (Lib);
101     O->Header.ExportSize   = Read32 (Lib);
102     O->Header.DbgSymOffs   = Read32 (Lib);
103     O->Header.DbgSymSize   = Read32 (Lib);
104     O->Header.LineInfoOffs = Read32 (Lib);
105     O->Header.LineInfoSize = Read32 (Lib);
106     O->Header.StrPoolOffs  = Read32 (Lib);
107     O->Header.StrPoolSize  = Read32 (Lib);
108 }
109
110
111
112 static ObjData* ReadIndexEntry (void)
113 /* Read one entry in the index */
114 {
115     unsigned I;
116
117     /* Create a new entry and insert it into the list */
118     ObjData* O  = NewObjData ();
119
120     /* Module name/flags/MTime/Start/Size */
121     O->Name     = ReadStr (Lib);
122     O->Flags    = Read16 (Lib);
123     Read32 (Lib);                       /* Skip MTime */
124     O->Start    = Read32 (Lib);
125     Read32 (Lib);                       /* Skip Size */
126
127     /* Read the string pool */
128     ObjReadStrPool (Lib, O);
129
130     /* Skip the export size, then read the exports */
131     (void) ReadVar (Lib);
132     O->ExportCount = ReadVar (Lib);
133     O->Exports = xmalloc (O->ExportCount * sizeof (Export*));
134     for (I = 0; I < O->ExportCount; ++I) {
135         O->Exports[I] = ReadExport (Lib, O);
136     }
137
138     /* Skip the import size, then read the imports */
139     (void) ReadVar (Lib);
140     O->ImportCount = ReadVar (Lib);
141     O->Imports = xmalloc (O->ImportCount * sizeof (Import*));
142     for (I = 0; I < O->ImportCount; ++I) {
143         O->Imports[I] = ReadImport (Lib, O);
144     }
145
146     /* Done */
147     return O;
148 }
149
150
151
152 static void ReadIndex (void)
153 /* Read the index of a library file */
154 {
155     unsigned I;
156
157     /* Read the object file count and allocate memory */
158     ModuleCount = ReadVar (Lib);
159     Index = xmalloc (ModuleCount * sizeof (ObjData*));
160
161     /* Read all entries in the index */
162     for (I = 0; I < ModuleCount; ++I) {
163         Index[I] = ReadIndexEntry ();
164     }
165 }
166
167
168
169 /*****************************************************************************/
170 /*                             High level stuff                              */
171 /*****************************************************************************/
172
173
174
175 static void LibCheckExports (ObjData* O)
176 /* Check if the exports from this file can satisfy any import requests. If so,
177  * insert the imports and exports from this file and mark the file as added.
178  */
179 {
180     unsigned I;
181
182     /* Check all exports */
183     for (I = 0; I < O->ExportCount; ++I) {
184         if (IsUnresolved (O->Exports[I]->Name)) {
185             /* We need this module */
186             O->Flags |= OBJ_REF;
187             break;
188         }
189     }
190
191     /* If we need this module, insert the imports and exports */
192     if (O->Flags & OBJ_REF) {
193         /* Insert the exports */
194         for (I = 0; I < O->ExportCount; ++I) {
195             InsertExport (O->Exports[I]);
196         }
197         /* Insert the imports */
198         for (I = 0; I < O->ImportCount; ++I) {
199             InsertImport (O->Imports[I]);
200         }
201     }
202 }
203
204
205
206 void LibAdd (FILE* F, const char* Name)
207 /* Add files from the library to the list if there are references that could
208  * be satisfied.
209  */
210 {
211     int Add;
212     unsigned I;
213     LibHeader Header;
214
215     /* Store the parameters, so they're visible for other routines */
216     Lib     = F;
217     LibName = xstrdup (Name);
218
219     /* Read the remaining header fields (magic is already read) */
220     Header.Magic   = LIB_MAGIC;
221     Header.Version = Read16 (Lib);
222     if (Header.Version != LIB_VERSION) {
223         Error ("Wrong data version in `%s'", Name);
224     }
225     Header.Flags   = Read16 (Lib);
226     Header.IndexOffs = Read32 (Lib);
227
228     /* Seek to the index position and read the index */
229     fseek (Lib, Header.IndexOffs, SEEK_SET);
230     ReadIndex ();
231
232     /* Walk through all library modules and check for each module if there
233      * are unresolved externals in existing modules that may be resolved
234      * by adding the module. Repeat this step until no more object files
235      * were added.
236      */
237     do {
238         Add = 0;
239         for (I = 0; I < ModuleCount; ++I) {
240             ObjData* O = Index [I];
241             if ((O->Flags & OBJ_REF) == 0) {
242                 LibCheckExports (O);
243                 if (O->Flags & OBJ_REF) {
244                     /* The routine added the file */
245                     Add = 1;
246                 }
247             }
248         }
249     } while (Add);
250
251     /* Add the files list and sections for all requested modules */
252     for (I = 0; I < ModuleCount; ++I) {
253         ObjData* O = Index [I];
254         if (O->Flags & OBJ_REF) {
255
256             /* Seek to the start of the object file and read the header */
257             fseek (Lib, O->Start, SEEK_SET);
258             LibReadObjHeader (O);
259
260             /* Seek to the start of the files list and read the files list */
261             fseek (Lib, O->Start + O->Header.FileOffs, SEEK_SET);
262             ObjReadFiles (Lib, O);
263
264             /* Seek to the start of the debug info and read the debug info */
265             fseek (Lib, O->Start + O->Header.DbgSymOffs, SEEK_SET);
266             ObjReadDbgSyms (Lib, O);
267
268             /* Seek to the start of the line infos and read them */
269             fseek (Lib, O->Start + O->Header.LineInfoOffs, SEEK_SET);
270             ObjReadLineInfos (Lib, O);
271
272             /* Seek to the start of the segment list and read the segments.
273              * This must be last, since the data here may reference other
274              * stuff.
275              */
276             fseek (Lib, O->Start + O->Header.SegOffs, SEEK_SET);
277             ObjReadSections (Lib, O);
278
279             /* We have the data now */
280             O->Flags |= OBJ_HAVEDATA;
281         }
282
283         /* All references to strings are now resolved, so we can delete
284          * the module string pool.
285          */
286         FreeObjStrings (O);
287
288         /* Add a pointer to the library name */
289         O->LibName = LibName;
290     }
291
292     /* Done. Close the file, release allocated memory */
293     fclose (F);
294     xfree (Index);
295     Lib         = 0;
296     LibName     = 0;
297     ModuleCount = 0;
298     Index       = 0;
299 }
300
301
302