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