]> git.sur5r.net Git - cc65/blob - src/da65/attrtab.c
Added labels, SIEZ attribute for labels, dependent labels etc.
[cc65] / src / da65 / attrtab.c
1 /*****************************************************************************/
2 /*                                                                           */
3 /*                                 attrtab.c                                 */
4 /*                                                                           */
5 /*                       Disassembler attribute table                        */
6 /*                                                                           */
7 /*                                                                           */
8 /*                                                                           */
9 /* (C) 2000      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 <stdio.h>
37 #include <string.h>
38
39 /* common */
40 #include "xmalloc.h"
41 #include "xsprintf.h"
42
43 /* da65 */
44 #include "code.h"
45 #include "error.h"
46 #include "global.h"
47 #include "output.h"
48 #include "attrtab.h"
49
50
51
52 /*****************************************************************************/
53 /*                                   Data                                    */
54 /*****************************************************************************/
55
56
57
58 /* Attribute table */
59 static unsigned char AttrTab [0x10000];
60
61 /* Symbol table */
62 static const char* SymTab [0x10000];
63
64
65
66 /*****************************************************************************/
67 /*                                   Code                                    */
68 /*****************************************************************************/
69
70
71
72 void AddrCheck (unsigned Addr)
73 /* Check if the given address has a valid range */
74 {
75     if (Addr >= 0x10000) {
76         Error ("Address out of range: %08X", Addr);
77     }
78 }
79
80
81
82 void MarkRange (unsigned Start, unsigned End, attr_t Attr)
83 /* Mark a range with the given attribute */
84 {
85     /* Do it easy here... */
86     while (Start <= End) {
87         MarkAddr (Start++, Attr);
88     }
89 }
90
91
92
93 void MarkAddr (unsigned Addr, attr_t Attr)
94 /* Mark an address with an attribute */
95 {
96     /* Check the given address */
97     AddrCheck (Addr);
98
99     /* We must not have more than one style bit */
100     if (Attr & atStyleMask) {
101         if (AttrTab[Addr] & atStyleMask) {
102             Error ("Duplicate style for address %04X", Addr);
103         }
104     }
105
106     /* Set the style */
107     AttrTab[Addr] |= Attr;
108 }
109
110
111
112 const char* MakeLabelName (unsigned Addr)
113 /* Make the default label name from the given address and return it in a
114  * static buffer.
115  */
116 {
117     static char LabelBuf [32];
118     xsprintf (LabelBuf, sizeof (LabelBuf), "L%04X", Addr);
119     return LabelBuf;
120 }
121
122
123
124 void AddLabel (unsigned Addr, attr_t Attr, const char* Name)
125 /* Add a label */
126 {
127     /* Get an existing label attribute */
128     attr_t ExistingAttr = GetLabelAttr (Addr);
129
130     /* Must not have two symbols for one address */
131     if (ExistingAttr != atNoLabel) {
132         /* Allow redefinition if identical */
133         if (ExistingAttr == Attr && strcmp (SymTab[Addr], Name) == 0) {
134             return;
135         }
136         Error ("Duplicate label for address %04X: %s/%s", Addr, SymTab[Addr], Name);
137     }
138
139     /* Create a new label */
140     SymTab[Addr] = xstrdup (Name);
141
142     /* Remember the attribute */
143     AttrTab[Addr] |= Attr;
144 }
145
146
147
148 int HaveLabel (unsigned Addr)
149 /* Check if there is a label for the given address */
150 {
151     /* Check the given address */
152     AddrCheck (Addr);
153
154     /* Check for a label */
155     return (SymTab[Addr] != 0);
156 }
157
158
159
160 int MustDefLabel (unsigned Addr)
161 /* Return true if we must define a label for this address, that is, if there
162  * is a label at this address, and it is an external or internal label.
163  */
164 {
165     /* Get the label attribute */
166     attr_t A = GetLabelAttr (Addr);
167
168     /* Check for an internal or external label */
169     return (A == atExtLabel || A == atIntLabel);
170 }
171
172
173
174 const char* GetLabel (unsigned Addr)
175 /* Return the label for an address */
176 {
177     /* Check the given address */
178     AddrCheck (Addr);
179
180     /* Return the label if any */
181     return SymTab[Addr];
182 }
183
184
185
186 unsigned char GetStyleAttr (unsigned Addr)
187 /* Return the style attribute for the given address */
188 {
189     /* Check the given address */
190     AddrCheck (Addr);
191
192     /* Return the attribute */
193     return (AttrTab[Addr] & atStyleMask);
194 }
195
196
197
198 unsigned char GetLabelAttr (unsigned Addr)
199 /* Return the label attribute for the given address */
200 {
201     /* Check the given address */
202     AddrCheck (Addr);
203
204     /* Return the attribute */
205     return (AttrTab[Addr] & atLabelMask);
206 }
207
208
209
210 static void DefineConst (unsigned Addr)
211 /* Define an address constant */
212 {
213     Output ("%s", SymTab [Addr]);
214     Indent (AIndent);
215     Output ("= $%04X", Addr);
216     LineFeed ();
217 }
218
219
220
221 void DefOutOfRangeLabels (void)
222 /* Output any labels that are out of the loaded code range */
223 {
224     unsigned long Addr;
225
226     SeparatorLine ();
227
228     /* Low range */
229     for (Addr = 0; Addr < CodeStart; ++Addr) {
230         if (MustDefLabel (Addr)) {
231             DefineConst (Addr);
232         }
233     }
234
235     /* High range */
236     for (Addr = CodeEnd+1; Addr < 0x10000; ++Addr) {
237         if (MustDefLabel (Addr)) {
238             DefineConst (Addr);
239         }
240     }
241
242     SeparatorLine ();
243 }
244
245
246