]> git.sur5r.net Git - cc65/blob - src/ld65/scanner.h
Removed (pretty inconsistently used) tab chars from source code base.
[cc65] / src / ld65 / scanner.h
1 /*****************************************************************************/
2 /*                                                                           */
3 /*                                 scanner.h                                 */
4 /*                                                                           */
5 /*              Configuration file scanner for the ld65 linker               */
6 /*                                                                           */
7 /*                                                                           */
8 /*                                                                           */
9 /* (C) 1998-2013, 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 /* common */
42 #include "filepos.h"
43 #include "strbuf.h"
44
45
46
47 /*****************************************************************************/
48 /*                                   Data                                    */
49 /*****************************************************************************/
50
51
52
53 /* Config file tokens */
54 typedef enum {
55     CFGTOK_NONE,
56     CFGTOK_INTCON,              /* Integer constant */
57     CFGTOK_STRCON,              /* String constant */
58     CFGTOK_IDENT,               /* Identifier */
59     CFGTOK_PLUS,
60     CFGTOK_MINUS,
61     CFGTOK_MUL,
62     CFGTOK_DIV,
63     CFGTOK_LPAR,
64     CFGTOK_RPAR,
65     CFGTOK_LCURLY,
66     CFGTOK_RCURLY,
67     CFGTOK_SEMI,
68     CFGTOK_COMMA,
69     CFGTOK_EQ,
70     CFGTOK_COLON,
71     CFGTOK_DOT,
72     CFGTOK_EOF,
73
74     /* Special identifiers */
75     CFGTOK_MEMORY,
76     CFGTOK_FILES,
77     CFGTOK_SEGMENTS,
78     CFGTOK_FORMATS,
79     CFGTOK_FEATURES,
80     CFGTOK_SYMBOLS,
81
82     CFGTOK_START,
83     CFGTOK_SIZE,
84     CFGTOK_TYPE,
85     CFGTOK_FILE,
86     CFGTOK_DEFINE,
87     CFGTOK_BANK,
88     CFGTOK_FILL,
89     CFGTOK_FILLVAL,
90     CFGTOK_EXPORT,
91     CFGTOK_IMPORT,
92     CFGTOK_OS,
93     CFGTOK_ID,
94     CFGTOK_VERSION,
95     CFGTOK_FORMAT,
96
97     CFGTOK_LOAD,
98     CFGTOK_RUN,
99     CFGTOK_ALIGN,
100     CFGTOK_ALIGN_LOAD,
101     CFGTOK_OFFSET,
102     CFGTOK_OPTIONAL,
103
104     CFGTOK_RO,
105     CFGTOK_RW,
106     CFGTOK_BSS,
107     CFGTOK_ZP,
108
109     CFGTOK_O65,
110     CFGTOK_BIN,
111
112     CFGTOK_SMALL,
113     CFGTOK_LARGE,
114
115     CFGTOK_TRUE,
116     CFGTOK_FALSE,
117
118     CFGTOK_LUNIX,
119     CFGTOK_OSA65,
120     CFGTOK_CC65,
121     CFGTOK_OPENCBM,
122
123     CFGTOK_CONDES,
124     CFGTOK_STARTADDRESS,
125
126     CFGTOK_ADDRSIZE,
127     CFGTOK_VALUE,
128
129     CFGTOK_WEAK,
130
131     CFGTOK_ABS,
132     CFGTOK_FAR,
133     CFGTOK_LONG,
134
135     CFGTOK_SEGMENT,
136     CFGTOK_LABEL,
137     CFGTOK_COUNT,
138     CFGTOK_ORDER,
139
140     CFGTOK_CONSTRUCTOR,
141     CFGTOK_DESTRUCTOR,
142     CFGTOK_INTERRUPTOR,
143
144     CFGTOK_DECREASING,
145     CFGTOK_INCREASING,
146
147     CFGTOK_DEFAULT
148
149 } cfgtok_t;
150
151
152
153 /* Mapping table entry, special identifier --> token */
154 typedef struct IdentTok IdentTok;
155 struct IdentTok {
156     const char* Ident;          /* Identifier */
157     cfgtok_t    Tok;            /* Token for identifier */
158 };
159 #define ENTRY_COUNT(s)  (sizeof (s) / sizeof (s [0]))
160
161
162
163 /* Current token and attributes */
164 extern cfgtok_t         CfgTok;
165 extern StrBuf           CfgSVal;
166 extern unsigned long    CfgIVal;
167
168 /* Error location. PLEASE NOTE: I'm abusing the FilePos structure to some
169  * degree. It is used mostly to hold a file position, where the Name member
170  * is an index into the source file table of an object file. As used in config
171  * file processing, the Name member is a string pool index instead. This is
172  * distinguished by the object file pointer being NULL or not in the structs
173  * where this is relevant.
174  */
175 extern FilePos          CfgErrorPos;
176
177
178
179 /*****************************************************************************/
180 /*                                   Code                                    */
181 /*****************************************************************************/
182
183
184
185 void CfgWarning (const FilePos* Pos, const char* Format, ...) attribute((format(printf,2,3)));
186 /* Print a warning message adding file name and line number of the config file */
187
188 void CfgError (const FilePos* Pos, const char* Format, ...) attribute((format(printf,2,3)));
189 /* Print an error message adding file name and line number of a given file */
190
191 void CfgNextTok (void);
192 /* Read the next token from the input stream */
193
194 void CfgConsume (cfgtok_t T, const char* Msg);
195 /* Skip a token, print an error message if not found */
196
197 void CfgConsumeSemi (void);
198 /* Consume a semicolon */
199
200 void CfgConsumeColon (void);
201 /* Consume a colon */
202
203 void CfgOptionalComma (void);
204 /* Consume a comma if there is one */
205
206 void CfgOptionalAssign (void);
207 /* Consume an equal sign if there is one */
208
209 void CfgAssureInt (void);
210 /* Make sure the next token is an integer */
211
212 void CfgAssureStr (void);
213 /* Make sure the next token is a string constant */
214
215 void CfgAssureIdent (void);
216 /* Make sure the next token is an identifier */
217
218 void CfgRangeCheck (unsigned long Lo, unsigned long Hi);
219 /* Check the range of CfgIVal */
220
221 void CfgSpecialToken (const IdentTok* Table, unsigned Size, const char* Name);
222 /* Map an identifier to one of the special tokens in the table */
223
224 void CfgBoolToken (void);
225 /* Map an identifier or integer to a boolean token */
226
227 void CfgSetName (const char* Name);
228 /* Set a name for a config file */
229
230 int CfgAvail (void);
231 /* Return true if we have a configuration available */
232
233 void CfgOpenInput (void);
234 /* Open the input file if we have one */
235
236 void CfgCloseInput (void);
237 /* Close the input file if we have one */
238
239
240
241 /* End of scanner.h */
242 #endif
243
244
245