]> git.sur5r.net Git - cc65/blob - src/ld65/scanner.h
Add translation from PETSCII to screen codes.
[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     CFGTOK_RUNAD,
97
98     CFGTOK_LOAD,
99     CFGTOK_RUN,
100     CFGTOK_ALIGN,
101     CFGTOK_ALIGN_LOAD,
102     CFGTOK_OFFSET,
103     CFGTOK_OPTIONAL,
104
105     CFGTOK_RO,
106     CFGTOK_RW,
107     CFGTOK_BSS,
108     CFGTOK_ZP,
109     CFGTOK_OVERWRITE,
110
111     CFGTOK_ATARIEXE,
112     CFGTOK_O65,
113     CFGTOK_BIN,
114
115     CFGTOK_SMALL,
116     CFGTOK_LARGE,
117
118     CFGTOK_TRUE,
119     CFGTOK_FALSE,
120
121     CFGTOK_LUNIX,
122     CFGTOK_OSA65,
123     CFGTOK_CC65,
124     CFGTOK_OPENCBM,
125
126     CFGTOK_CONDES,
127     CFGTOK_STARTADDRESS,
128
129     CFGTOK_ADDRSIZE,
130     CFGTOK_VALUE,
131
132     CFGTOK_WEAK,
133
134     CFGTOK_ABS,
135     CFGTOK_FAR,
136     CFGTOK_LONG,
137
138     CFGTOK_SEGMENT,
139     CFGTOK_LABEL,
140     CFGTOK_COUNT,
141     CFGTOK_ORDER,
142
143     CFGTOK_CONSTRUCTOR,
144     CFGTOK_DESTRUCTOR,
145     CFGTOK_INTERRUPTOR,
146
147     CFGTOK_DECREASING,
148     CFGTOK_INCREASING,
149
150     CFGTOK_DEFAULT
151
152 } cfgtok_t;
153
154
155
156 /* Mapping table entry, special identifier --> token */
157 typedef struct IdentTok IdentTok;
158 struct IdentTok {
159     const char* Ident;          /* Identifier */
160     cfgtok_t    Tok;            /* Token for identifier */
161 };
162 #define ENTRY_COUNT(s)  (sizeof (s) / sizeof (s [0]))
163
164
165
166 /* Current token and attributes */
167 extern cfgtok_t         CfgTok;
168 extern StrBuf           CfgSVal;
169 extern unsigned long    CfgIVal;
170
171 /* Error location. PLEASE NOTE: I'm abusing the FilePos structure to some
172 ** degree. It is used mostly to hold a file position, where the Name member
173 ** is an index into the source file table of an object file. As used in config
174 ** file processing, the Name member is a string pool index instead. This is
175 ** distinguished by the object file pointer being NULL or not in the structs
176 ** where this is relevant.
177 */
178 extern FilePos          CfgErrorPos;
179
180
181
182 /*****************************************************************************/
183 /*                                   Code                                    */
184 /*****************************************************************************/
185
186
187
188 void CfgWarning (const FilePos* Pos, const char* Format, ...) attribute((format(printf,2,3)));
189 /* Print a warning message adding file name and line number of the config file */
190
191 void CfgError (const FilePos* Pos, const char* Format, ...) attribute((format(printf,2,3)));
192 /* Print an error message adding file name and line number of a given file */
193
194 void CfgNextTok (void);
195 /* Read the next token from the input stream */
196
197 void CfgConsume (cfgtok_t T, const char* Msg);
198 /* Skip a token, print an error message if not found */
199
200 void CfgConsumeSemi (void);
201 /* Consume a semicolon */
202
203 void CfgConsumeColon (void);
204 /* Consume a colon */
205
206 void CfgOptionalComma (void);
207 /* Consume a comma if there is one */
208
209 void CfgOptionalAssign (void);
210 /* Consume an equal sign if there is one */
211
212 void CfgAssureInt (void);
213 /* Make sure the next token is an integer */
214
215 void CfgAssureStr (void);
216 /* Make sure the next token is a string constant */
217
218 void CfgAssureIdent (void);
219 /* Make sure the next token is an identifier */
220
221 void CfgRangeCheck (unsigned long Lo, unsigned long Hi);
222 /* Check the range of CfgIVal */
223
224 void CfgSpecialToken (const IdentTok* Table, unsigned Size, const char* Name);
225 /* Map an identifier to one of the special tokens in the table */
226
227 void CfgBoolToken (void);
228 /* Map an identifier or integer to a boolean token */
229
230 void CfgSetName (const char* Name);
231 /* Set a name for a config file */
232
233 int CfgAvail (void);
234 /* Return true if we have a configuration available */
235
236 void CfgOpenInput (void);
237 /* Open the input file if we have one */
238
239 void CfgCloseInput (void);
240 /* Close the input file if we have one */
241
242
243
244 /* End of scanner.h */
245
246 #endif