]> git.sur5r.net Git - cc65/blob - src/ld65/objdata.c
81320796d4dd03b18dabe5b2e63edd77643252af
[cc65] / src / ld65 / objdata.c
1 /*****************************************************************************/
2 /*                                                                           */
3 /*                                 objdata.c                                 */
4 /*                                                                           */
5 /*               Handling object file data 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 <string.h>
37
38 /* common */
39 #include "check.h"
40 #include "xmalloc.h"
41
42 /* ld65 */
43 #include "error.h"
44 #include "fileinfo.h"
45 #include "objdata.h"
46 #include "spool.h"
47
48
49
50 /*****************************************************************************/
51 /*                                   Data                                    */
52 /*****************************************************************************/
53
54
55
56 /* Object data list management */
57 unsigned        ObjCount = 0;   /* Count of object files in the list */
58 ObjData*        ObjRoot  = 0;   /* List of object files */
59 ObjData*        ObjLast  = 0;   /* Last entry in list */
60 ObjData**       ObjPool  = 0;   /* Object files as array */
61
62
63
64 /*****************************************************************************/
65 /*                                   Code                                    */
66 /*****************************************************************************/
67
68
69
70 ObjData* NewObjData (void)
71 /* Allocate a new structure on the heap, insert it into the list, return it */
72 {
73     /* Allocate memory */
74     ObjData* O = xmalloc (sizeof (ObjData));
75
76     /* Initialize the data */
77     O->Next             = 0;
78     O->Name             = 0;
79     O->LibName          = 0;
80     O->Flags            = 0;
81     O->Start            = 0;
82     O->ExportCount      = 0;
83     O->Exports          = 0;
84     O->ImportCount      = 0;
85     O->Imports          = 0;
86     O->DbgSymCount      = 0;
87     O->DbgSyms          = 0;
88     O->LineInfoCount    = 0;
89     O->LineInfos        = 0;
90     O->StringCount      = 0;
91     O->Strings          = 0;
92
93     /* Link it into the list */
94     if (ObjLast) {
95         ObjLast->Next = O;
96         ObjLast       = O;
97     } else {
98         /* First entry */
99         ObjRoot = ObjLast = O;
100     }
101
102     /* One object file more now */
103     ++ObjCount;
104
105     /* Return the new entry */
106     return O;
107 }
108
109
110
111 void FreeObjStrings (ObjData* O)
112 /* Free the module string data. Used once the object file is loaded completely
113  * when all strings are converted to global strings.
114  */
115 {
116     while (O->StringCount) {
117         xfree (O->Strings[--O->StringCount]);
118     }
119     xfree (O->Strings);
120     O->Strings = 0;
121 }
122
123
124
125 const char* GetObjString (const ObjData* O, unsigned Index)
126 /* Get a string from the object file string table. Abort if the string index
127  * is invalid.
128  */
129 {
130     if (Index >= O->StringCount) {
131         Error ("Invalid string index (%u) in module `%s'",
132                Index, GetObjFileName (O));
133     }
134     return O->Strings[Index];
135 }
136
137
138
139 unsigned MakeGlobalStringId (const ObjData* O, unsigned Index)
140 /* Convert a local string id into a global one and return it. */
141 {
142     if (Index >= O->StringCount) {
143         Error ("Invalid string index (%u) in module `%s'",
144                Index, GetObjFileName (O));
145     }
146     return GetStringId (O->Strings[Index]);
147 }
148
149
150
151 const char* GetObjFileName (const ObjData* O)
152 /* Get the name of the object file. Return "[linker generated]" if the object
153  * file is NULL.
154  */
155 {
156     return O? O->Name : "[linker generated]";
157 }
158
159
160
161 const char* GetSourceFileName (const ObjData* O, unsigned Index)
162 /* Get the name of the source file with the given index. If O is NULL, return
163  * "[linker generated]" as the file name.
164  */
165 {
166     /* Check if we have an object file */
167     if (O == 0) {
168
169         /* No object file */
170         return "[linker generated]";
171
172     } else {
173
174         /* Check the parameter */
175         PRECONDITION (Index < O->FileCount);
176
177         /* Return the name */
178         return O->Files[Index]->Name;
179
180     }
181 }
182
183
184
185