]> git.sur5r.net Git - cc65/blob - src/da65/attrtab.c
Working
[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, const char* Name)
125 /* Add a label */
126 {
127     /* Check the given address */
128     AddrCheck (Addr);
129
130     /* Must not have two symbols for one address */
131     if (SymTab[Addr] != 0) {
132         if (strcmp (SymTab[Addr], Name) == 0) {
133             /* Allow label if it has the same name */
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
143
144
145 int HaveLabel (unsigned Addr)
146 /* Check if there is a label for the given address */
147 {
148     /* Check the given address */
149     AddrCheck (Addr);
150
151     /* Check for a label */
152     return (SymTab[Addr] != 0);
153 }
154
155
156
157 const char* GetLabel (unsigned Addr)
158 /* Return the label for an address */
159 {
160     /* Check the given address */
161     AddrCheck (Addr);
162
163     /* Return the label if any */
164     return SymTab[Addr];
165 }
166
167
168
169 unsigned char GetStyle (unsigned Addr)
170 /* Return the style attribute for the given address */
171 {
172     /* Check the given address */
173     AddrCheck (Addr);
174
175     /* Return the attribute */
176     return (AttrTab[Addr] & atStyleMask);
177 }
178
179
180
181 static void DefineConst (unsigned Addr)
182 /* Define an address constant */
183 {
184     Output ("%s", SymTab [Addr]);
185     Indent (AIndent);
186     Output ("= $%04X", Addr);
187     LineFeed ();
188 }
189
190
191
192 void DefOutOfRangeLabels (void)
193 /* Output any labels that are out of the loaded code range */
194 {
195     unsigned long Addr;
196
197     SeparatorLine ();
198
199     /* Low range */
200     for (Addr = 0; Addr < CodeStart; ++Addr) {
201         if (SymTab [Addr]) {
202             DefineConst (Addr);
203         }
204     }
205
206     /* High range */
207     for (Addr = CodeEnd+1; Addr < 0x10000; ++Addr) {
208         if (SymTab [Addr]) {
209             DefineConst (Addr);
210         }
211     }
212
213     SeparatorLine ();
214 }
215
216
217