]> git.sur5r.net Git - cc65/blob - src/ar65/objdata.c
Bumped the version number
[cc65] / src / ar65 / objdata.c
1 /*****************************************************************************/
2 /*                                                                           */
3 /*                                 objdata.c                                 */
4 /*                                                                           */
5 /*              Handling object file data for the ar65 archiver              */
6 /*                                                                           */
7 /*                                                                           */
8 /*                                                                           */
9 /* (C) 1998     Ullrich von Bassewitz                                        */
10 /*              Wacholderweg 14                                              */
11 /*              D-70597 Stuttgart                                            */
12 /* EMail:       uz@musoftware.de                                             */
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 #include "../common/xmalloc.h"
39
40 #include "error.h"
41 #include "objdata.h"
42
43
44
45 /*****************************************************************************/
46 /*                                   Data                                    */
47 /*****************************************************************************/
48
49
50
51 /* Object data list management */
52 unsigned        ObjCount = 0;   /* Count of object files in the list */
53 ObjData*        ObjRoot  = 0;   /* List of object files */
54 ObjData*        ObjLast  = 0;   /* Last entry in list */
55 ObjData**       ObjPool  = 0;   /* Object files as array */
56
57
58
59 /*****************************************************************************/
60 /*                                   Code                                    */
61 /*****************************************************************************/
62
63
64
65 ObjData* NewObjData (void)
66 /* Allocate a new structure on the heap, insert it into the list, return it */
67 {
68     /* Allocate memory */
69     ObjData* O = xmalloc (sizeof (ObjData));
70
71     /* Initialize the data */
72     O->Next       = 0;
73     O->Name       = 0;
74     O->Index      = ~0;
75     O->Flags      = 0;
76     O->MTime      = 0;
77     O->Start      = 0;
78     O->Size       = 0;
79     O->ImportSize = 0;
80     O->Imports    = 0;
81     O->ExportSize = 0;
82     O->Exports    = 0;
83
84     /* Link it into the list */
85     if (ObjLast) {
86         ObjLast->Next = O;
87         ObjLast       = O;
88     } else {
89         /* First entry */
90         ObjRoot = ObjLast = O;
91     }
92
93     /* One object file more now */
94     ++ObjCount;
95
96     /* Return the new entry */
97     return O;
98 }
99
100
101
102 void FreeObjData (ObjData* O)
103 /* Free a complete struct */
104 {
105     xfree (O->Name);
106     xfree (O->Imports);
107     xfree (O->Exports);
108     xfree (O);
109 }
110
111
112
113 ObjData* FindObjData (const char* Module)
114 /* Search for the module with the given name and return it. Return NULL if the
115  * module is not in the list.
116  */
117 {
118     /* Hmm. Maybe we should hash the module names? */
119     ObjData* O = ObjRoot;
120     while (O) {
121         if (strcmp (O->Name, Module) == 0) {
122             return O;
123         }
124         O = O->Next;
125     }
126     return 0;
127 }
128
129
130
131 void DelObjData (const char* Module)
132 /* Delete the object module from the list */
133 {
134     ObjData* O = ObjRoot;
135     ObjData* Last = 0;
136     while (O) {
137         if (strcmp (O->Name, Module) == 0) {
138             /* Found the module, remove it from the list */
139             if (Last == 0) {
140                 /* This was the first entry in the list */
141                 ObjRoot = O->Next;
142             } else {
143                 Last->Next = O->Next;
144             }
145             if (ObjLast == O) {
146                 /* O was the last object in the list */
147                 ObjLast = Last;
148             }
149             --ObjCount;
150
151             /* Free the entry */
152             FreeObjData (O);
153
154             /* Done */
155             return;
156         }
157         Last = O;
158         O = O->Next;
159     }
160
161     /* Not found! */
162     Warning ("Module `%s' not found in library", Module);
163 }
164
165
166
167 void MakeObjPool (void)
168 /* Allocate memory, index the entries and make the ObjPool valid */
169 {
170     ObjData* O;
171     unsigned Index;
172
173     /* Allocate memory for the pool */
174     ObjPool = xmalloc (ObjCount * sizeof (ObjData*));
175
176     /* Setup the pointers and index the objects */
177     Index = 0;
178     O = ObjRoot;
179     while (O) {
180
181         /* Safety */
182         CHECK (Index < ObjCount);
183
184         /* Set the Index */
185         O->Index = Index;
186
187         /* Set the pool pointer */
188         ObjPool [Index] = O;
189
190         /* Next object */
191         ++Index;
192         O = O->Next;
193     }
194 }
195
196
197
198 const char* GetObjName (unsigned Index)
199 /* Get the name of a module by index */
200 {
201     PRECONDITION (ObjPool != 0 && Index < ObjCount && ObjPool [Index] != 0);
202     return ObjPool [Index]->Name;
203 }
204
205
206
207
208