]> git.sur5r.net Git - cc65/blob - src/da65/scanner.h
Removed (pretty inconsistently used) tab chars from source code base.
[cc65] / src / da65 / scanner.h
1 /*****************************************************************************/
2 /*                                                                           */
3 /*                                 scanner.h                                 */
4 /*                                                                           */
5 /*           Configuration file scanner for the da65 disassembler            */
6 /*                                                                           */
7 /*                                                                           */
8 /*                                                                           */
9 /* (C) 2000-2011, 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 #ifndef SCANNER_H
37 #define SCANNER_H
38
39
40
41 /*****************************************************************************/
42 /*                                   Data                                    */
43 /*****************************************************************************/
44
45
46
47 /* Info file tokens */
48 typedef enum token_t {
49     INFOTOK_NONE,
50     INFOTOK_INTCON,
51     INFOTOK_STRCON,
52     INFOTOK_CHARCON,
53     INFOTOK_IDENT,
54     INFOTOK_LCURLY,
55     INFOTOK_RCURLY,
56     INFOTOK_SEMI,
57     INFOTOK_COMMA,
58     INFOTOK_EQ,
59     INFOTOK_COLON,
60     INFOTOK_DOT,
61     INFOTOK_EOF,
62
63     /* Special tokens */
64     INFOTOK_GLOBAL,
65     INFOTOK_RANGE,
66     INFOTOK_LABEL,
67     INFOTOK_ASMINC,
68     INFOTOK_SEGMENT,
69
70     /* Global section */
71     INFOTOK_ARGUMENT_COLUMN,
72     INFOTOK_COMMENT_COLUMN,
73     INFOTOK_COMMENTS,
74     INFOTOK_CPU,
75     INFOTOK_HEXOFFS,
76     INFOTOK_INPUTNAME,
77     INFOTOK_INPUTOFFS,
78     INFOTOK_INPUTSIZE,
79     INFOTOK_LABELBREAK,
80     INFOTOK_MNEMONIC_COLUMN,
81     INFOTOK_NL_AFTER_JMP,
82     INFOTOK_NL_AFTER_RTS,
83     INFOTOK_OUTPUTNAME,
84     INFOTOK_PAGELENGTH,
85     INFOTOK_STARTADDR,
86     INFOTOK_TEXT_COLUMN,
87
88     /* Range section */
89     INFOTOK_START,
90     INFOTOK_END,
91     INFOTOK_TYPE,
92
93     INFOTOK_CODE,
94     INFOTOK_BYTETAB,
95     INFOTOK_DBYTETAB,
96     INFOTOK_WORDTAB,
97     INFOTOK_DWORDTAB,
98     INFOTOK_ADDRTAB,
99     INFOTOK_RTSTAB,
100     INFOTOK_TEXTTAB,
101     INFOTOK_SKIP,
102
103     /* Label section */
104     INFOTOK_NAME,
105     INFOTOK_COMMENT,
106     INFOTOK_ADDR,
107     INFOTOK_SIZE,
108
109     /* ASMINC section */
110     INFOTOK_FILE,
111     INFOTOK_COMMENTSTART,
112     INFOTOK_IGNOREUNKNOWN,
113
114     /* */
115     INFOTOK_TRUE,
116     INFOTOK_FALSE
117 } token_t;
118
119
120 /* Mapping table entry, special identifier --> token */
121 typedef struct IdentTok IdentTok;
122 struct IdentTok {
123     const char*         Ident;          /* Identifier */
124     token_t             Tok;            /* Token for identifier */
125 };
126 #define ENTRY_COUNT(s)  (sizeof (s) / sizeof (s [0]))
127
128
129
130 /* Current token and attributes */
131 #define CFG_MAX_IDENT_LEN  255
132 extern unsigned         InfoTok;
133 extern char             InfoSVal[CFG_MAX_IDENT_LEN+1];
134 extern long             InfoIVal;
135
136 /* Error location */
137 extern unsigned         InfoErrorLine;
138 extern unsigned         InfoErrorCol;
139
140
141
142 /*****************************************************************************/
143 /*                                   Code                                    */
144 /*****************************************************************************/
145
146
147
148 void InfoWarning (const char* Format, ...);
149 /* Print a warning message adding file name and line number of the config file */
150
151 void InfoError (const char* Format, ...);
152 /* Print an error message adding file name and line number of the config file */
153
154 void InfoNextTok (void);
155 /* Read the next token from the input stream */
156
157 void InfoConsume (unsigned T, const char* Msg);
158 /* Skip a token, print an error message if not found */
159
160 void InfoConsumeLCurly (void);
161 /* Consume a left curly brace */
162
163 void InfoConsumeRCurly (void);
164 /* Consume a right curly brace */
165
166 void InfoConsumeSemi (void);
167 /* Consume a semicolon */
168
169 void InfoConsumeColon (void);
170 /* Consume a colon */
171
172 void InfoOptionalComma (void);
173 /* Consume a comma if there is one */
174
175 void InfoOptionalAssign (void);
176 /* Consume an equal sign if there is one */
177
178 void InfoAssureInt (void);
179 /* Make sure the next token is an integer */
180
181 void InfoAssureStr (void);
182 /* Make sure the next token is a string constant */
183
184 void InfoAssureChar (void);
185 /* Make sure the next token is a char constant */
186
187 void InfoAssureIdent (void);
188 /* Make sure the next token is an identifier */
189
190 void InfoRangeCheck (long Lo, long Hi);
191 /* Check the range of InfoIVal */
192
193 void InfoSpecialToken (const IdentTok* Table, unsigned Size, const char* Name);
194 /* Map an identifier to one of the special tokens in the table */
195
196 void InfoBoolToken (void);
197 /* Map an identifier or integer to a boolean token */
198
199 void InfoSetName (const char* Name);
200 /* Set a name for a config file */
201
202 const char* InfoGetName (void);
203 /* Get the name of the config file */
204
205 int InfoAvail ();
206 /* Return true if we have an info file given */
207
208 void InfoOpenInput (void);
209 /* Open the input file if we have one */
210
211 void InfoCloseInput (void);
212 /* Close the input file if we have one */
213
214
215
216 /* End of scanner.h */
217 #endif
218
219
220