]> git.sur5r.net Git - cc65/blob - src/da65/attrtab.c
Completed the coding of da65's SEGMENT feature.
[cc65] / src / da65 / attrtab.c
1 /*****************************************************************************/
2 /*                                                                           */
3 /*                                 attrtab.c                                 */
4 /*                                                                           */
5 /*                       Disassembler attribute table                        */
6 /*                                                                           */
7 /*                                                                           */
8 /*                                                                           */
9 /* (C) 2000-2014, Ullrich von Bassewitz                                      */
10 /*                Roemerstrasse 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 /* da65 */
37 #include "error.h"
38 #include "attrtab.h"
39
40
41
42 /*****************************************************************************/
43 /*                                   Data                                    */
44 /*****************************************************************************/
45
46
47
48 /* Attribute table */
49 static unsigned short AttrTab[0x10000];
50
51
52
53 /*****************************************************************************/
54 /*                                   Code                                    */
55 /*****************************************************************************/
56
57
58
59 void AddrCheck (unsigned Addr)
60 /* Check if the given address has a valid range */
61 {
62     if (Addr >= 0x10000) {
63         Error ("Address out of range: %08X", Addr);
64     }
65 }
66
67
68
69 attr_t GetAttr (unsigned Addr)
70 /* Return the attribute for the given address */
71 {
72     /* Check the given address */
73     AddrCheck (Addr);
74
75     /* Return the attribute */
76     return AttrTab[Addr];
77 }
78
79
80
81 int SegmentDefined (unsigned Start, unsigned End)
82 /* Return true if the atSegment bit is set somewhere in the given range */
83 {
84     while (Start <= End) {
85         if (AttrTab[Start++] & atSegment) {
86             return 1;
87         }
88     }
89     return 0;
90 }
91
92
93
94 int IsSegmentEnd (unsigned Addr)
95 /* Return true if a segment ends at the given address */
96 {
97     return (GetAttr (Addr) & atSegmentEnd) != 0x0000;
98 }
99
100
101
102 int IsSegmentStart (unsigned Addr)
103 /* Return true if a segment starts at the given address */
104 {
105     return (GetAttr (Addr) & atSegmentStart) != 0x0000;
106 }
107
108
109
110 int HaveSegmentChange (unsigned Addr)
111 /* Return true if the segment change attributes are set for the given address */
112 {
113     return (GetAttr (Addr) & (atSegmentStart | atSegmentEnd)) != 0x0000;
114 }
115
116
117
118 unsigned GetGranularity (attr_t Style)
119 /* Get the granularity for the given style */
120 {
121     switch (Style) {
122         case atDefault:  return 1;
123         case atCode:     return 1;
124         case atIllegal:  return 1;
125         case atByteTab:  return 1;
126         case atDByteTab: return 2;
127         case atWordTab:  return 2;
128         case atDWordTab: return 4;
129         case atAddrTab:  return 2;
130         case atRtsTab:   return 2;
131         case atTextTab:  return 1;
132
133         case atSkip:
134         default:
135             Internal ("GetGraularity called for style = %d", Style);
136             return 0;
137     }
138 }
139
140
141
142 void MarkRange (unsigned Start, unsigned End, attr_t Attr)
143 /* Mark a range with the given attribute */
144 {
145     /* Do it easy here... */
146     while (Start <= End) {
147         MarkAddr (Start++, Attr);
148     }
149 }
150
151
152
153 void MarkAddr (unsigned Addr, attr_t Attr)
154 /* Mark an address with an attribute */
155 {
156     /* Check the given address */
157     AddrCheck (Addr);
158
159     /* We must not have more than one style bit */
160     if (Attr & atStyleMask) {
161         if (AttrTab[Addr] & atStyleMask) {
162             Error ("Duplicate style for address %04X", Addr);
163         }
164     }
165
166     /* Set the style */
167     AttrTab[Addr] |= Attr;
168 }
169
170
171
172 attr_t GetStyleAttr (unsigned Addr)
173 /* Return the style attribute for the given address */
174 {
175     /* Check the given address */
176     AddrCheck (Addr);
177
178     /* Return the attribute */
179     return (AttrTab[Addr] & atStyleMask);
180 }
181
182
183
184 attr_t GetLabelAttr (unsigned Addr)
185 /* Return the label attribute for the given address */
186 {
187     /* Check the given address */
188     AddrCheck (Addr);
189
190     /* Return the attribute */
191     return (AttrTab[Addr] & atLabelMask);
192 }