]> git.sur5r.net Git - cc65/blob - src/da65/attrtab.c
Restructured some of the code. Attribute handling is still a mess and needs
[cc65] / src / da65 / attrtab.c
1 /*****************************************************************************/
2 /*                                                                           */
3 /*                                 attrtab.c                                 */
4 /*                                                                           */
5 /*                       Disassembler attribute table                        */
6 /*                                                                           */
7 /*                                                                           */
8 /*                                                                           */
9 /* (C) 2000-2006 Ullrich von Bassewitz                                       */
10 /*               Römerstrasse 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 unsigned GetGranularity (attr_t Style)
70 /* Get the granularity for the given style */
71 {
72     switch (Style) {
73         case atDefault:  return 1;
74         case atCode:     return 1;
75         case atIllegal:  return 1;
76         case atByteTab:  return 1;
77         case atDByteTab: return 2;
78         case atWordTab:  return 2;
79         case atDWordTab: return 4;
80         case atAddrTab:  return 2;
81         case atRtsTab:   return 2;
82         case atTextTab:  return 1;
83
84         case atSkip:
85         default:
86             Internal ("GetGraularity called for style = %d", Style);
87             return 0;
88     }
89 }
90
91
92
93 void MarkRange (unsigned Start, unsigned End, attr_t Attr)
94 /* Mark a range with the given attribute */
95 {
96     /* Do it easy here... */
97     while (Start <= End) {
98         MarkAddr (Start++, Attr);
99     }
100 }
101
102
103
104 void MarkAddr (unsigned Addr, attr_t Attr)
105 /* Mark an address with an attribute */
106 {
107     /* Check the given address */
108     AddrCheck (Addr);
109
110     /* We must not have more than one style bit */
111     if (Attr & atStyleMask) {
112         if (AttrTab[Addr] & atStyleMask) {
113             Error ("Duplicate style for address %04X", Addr);
114         }
115     }
116
117     /* Set the style */
118     AttrTab[Addr] |= Attr;
119 }
120
121
122
123 attr_t GetStyleAttr (unsigned Addr)
124 /* Return the style attribute for the given address */
125 {
126     /* Check the given address */
127     AddrCheck (Addr);
128
129     /* Return the attribute */
130     return (AttrTab[Addr] & atStyleMask);
131 }
132
133
134
135 attr_t GetLabelAttr (unsigned Addr)
136 /* Return the label attribute for the given address */
137 {
138     /* Check the given address */
139     AddrCheck (Addr);
140
141     /* Return the attribute */
142     return (AttrTab[Addr] & atLabelMask);
143 }
144
145
146