]> git.sur5r.net Git - cc65/blob - src/ld65/objdata.c
Restructuring the object file format
[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
47
48
49 /*****************************************************************************/
50 /*                                   Data                                    */
51 /*****************************************************************************/
52
53
54
55 /* Object data list management */
56 unsigned        ObjCount = 0;   /* Count of object files in the list */
57 ObjData*        ObjRoot  = 0;   /* List of object files */
58 ObjData*        ObjLast  = 0;   /* Last entry in list */
59 ObjData**       ObjPool  = 0;   /* Object files as array */
60
61
62
63 /*****************************************************************************/
64 /*                                   Code                                    */
65 /*****************************************************************************/
66
67
68
69 ObjData* NewObjData (void)
70 /* Allocate a new structure on the heap, insert it into the list, return it */
71 {
72     /* Allocate memory */
73     ObjData* O = xmalloc (sizeof (ObjData));
74
75     /* Initialize the data */
76     O->Next             = 0;
77     O->Name             = 0;
78     O->LibName          = 0;
79     O->Flags            = 0;
80     O->Start            = 0;
81     O->ExportCount      = 0;
82     O->Exports          = 0;
83     O->ImportCount      = 0;
84     O->Imports          = 0;
85     O->DbgSymCount      = 0;
86     O->DbgSyms          = 0;
87     O->LineInfoCount    = 0;
88     O->LineInfos        = 0;
89     O->StringCount      = 0;
90     O->Strings          = 0;
91
92     /* Link it into the list */
93     if (ObjLast) {
94         ObjLast->Next = O;
95         ObjLast       = O;
96     } else {
97         /* First entry */
98         ObjRoot = ObjLast = O;
99     }
100
101     /* One object file more now */
102     ++ObjCount;
103
104     /* Return the new entry */
105     return O;
106 }
107
108
109
110 const char* GetObjString (const ObjData* O, unsigned long Index)
111 /* Get a string from the object file string table. Abort if the string index
112  * is invalid.
113  */
114 {
115     if (Index >= O->StringCount) {
116         Error ("Invalid string index (%lu) in module `%s'",
117                Index, GetObjFileName (O));
118     }
119     return O->Strings[Index];
120 }
121
122
123
124 const char* GetObjFileName (const ObjData* O)
125 /* Get the name of the object file. Return "[linker generated]" if the object
126  * file is NULL.
127  */
128 {
129     return O? O->Name : "[linker generated]";
130 }
131
132
133
134 const char* GetSourceFileName (const ObjData* O, unsigned Index)
135 /* Get the name of the source file with the given index. If O is NULL, return
136  * "[linker generated]" as the file name.
137  */
138 {
139     /* Check if we have an object file */
140     if (O == 0) {
141
142         /* No object file */
143         return "[linker generated]";
144
145     } else {
146
147         /* Check the parameter */
148         PRECONDITION (Index < O->FileCount);
149
150         /* Return the name */
151         return O->Files[Index]->Name;
152
153     }
154 }
155
156
157
158