]> git.sur5r.net Git - cc65/blob - src/cc65/pragma.c
ValidSegName now defined in segnames.h
[cc65] / src / cc65 / pragma.c
1 /*****************************************************************************/
2 /*                                                                           */
3 /*                                 pragma.c                                  */
4 /*                                                                           */
5 /*                  Pragma handling for the cc65 C compiler                  */
6 /*                                                                           */
7 /*                                                                           */
8 /*                                                                           */
9 /* (C) 1998-2002 Ullrich von Bassewitz                                       */
10 /*               Wacholderweg 14                                             */
11 /*               D-70597 Stuttgart                                           */
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 #include <stdlib.h>
37 #include <string.h>
38
39 /* common */
40 #include "segnames.h"
41 #include "tgttrans.h"
42
43 /* cc65 */
44 #include "codegen.h"
45 #include "error.h"
46 #include "expr.h"
47 #include "global.h"
48 #include "litpool.h"
49 #include "scanner.h"
50 #include "scanstrbuf.h"
51 #include "symtab.h"
52 #include "pragma.h"
53
54
55
56 /*****************************************************************************/
57 /*                                   data                                    */
58 /*****************************************************************************/
59
60
61
62 /* Tokens for the #pragmas */
63 typedef enum {
64     PR_ILLEGAL = -1,
65     PR_BSSSEG,
66     PR_CHARMAP,
67     PR_CHECKSTACK,
68     PR_CODESEG,
69     PR_DATASEG,
70     PR_REGVARADDR,
71     PR_RODATASEG,
72     PR_SIGNEDCHARS,
73     PR_STATICLOCALS,
74     PR_ZPSYM,
75     PR_COUNT
76 } pragma_t;
77
78 /* Pragma table */
79 static const struct Pragma {
80     const char* Key;            /* Keyword */
81     pragma_t    Tok;            /* Token */
82 } Pragmas[PR_COUNT] = {
83     {   "bssseg",       PR_BSSSEG       },
84     {   "charmap",      PR_CHARMAP      },
85     {   "checkstack",   PR_CHECKSTACK   },
86     {   "codeseg",      PR_CODESEG      },
87     {   "dataseg",      PR_DATASEG      },
88     {   "regvaraddr",   PR_REGVARADDR   },
89     {   "rodataseg",    PR_RODATASEG    },
90     {   "signedchars",  PR_SIGNEDCHARS  },
91     {   "staticlocals", PR_STATICLOCALS },
92     {   "zpsym",        PR_ZPSYM        },
93 };
94
95
96
97 /*****************************************************************************/
98 /*                                   Code                                    */
99 /*****************************************************************************/
100
101
102
103 static void PragmaErrorSkip (void)
104 /* Called in case of an error, skips tokens until the closing paren or a
105  * semicolon is reached.
106  */
107 {
108     static const token_t TokenList[] = { TOK_RPAREN, TOK_SEMI };
109     SkipTokens (TokenList, sizeof(TokenList) / sizeof(TokenList[0]));
110 }
111
112
113
114 static int CmpKey (const void* Key, const void* Elem)
115 /* Compare function for bsearch */
116 {
117     return strcmp ((const char*) Key, ((const struct Pragma*) Elem)->Key);
118 }
119
120
121
122 static pragma_t FindPragma (const char* Key)
123 /* Find a pragma and return the token. Return PR_ILLEGAL if the keyword is
124  * not a valid pragma.
125  */
126 {
127     struct Pragma* P;
128     P = bsearch (Key, Pragmas, PR_COUNT, sizeof (Pragmas[0]), CmpKey);
129     return P? P->Tok : PR_ILLEGAL;
130 }
131
132
133
134 static void StringPragma (StrBuf* B, void (*Func) (const char*))
135 /* Handle a pragma that expects a string parameter */
136 {
137     StrBuf S;
138
139     /* We expect a string here */
140     if (SB_GetString (B, &S)) {
141         /* Call the given function with the string argument */
142         Func (SB_GetConstBuf (&S));
143     } else {
144         Error ("String literal expected");
145     }
146
147     /* Call the string buf destructor */
148     DoneStrBuf (&S);
149 }
150
151
152
153 static void SegNamePragma (StrBuf* B, segment_t Seg)
154 /* Handle a pragma that expects a segment name parameter */
155 {
156     StrBuf S;
157
158     if (SB_GetString (B, &S)) {
159
160         /* Get the string */
161         const char* Name = SB_GetConstBuf (&S);
162
163         /* Check if the name is valid */
164         if (ValidSegName (Name)) {
165
166             /* Set the new name */
167             g_segname (Seg, Name);
168
169         } else {
170
171             /* Segment name is invalid */
172             Error ("Illegal segment name: `%s'", Name);
173
174         }
175
176     } else {
177         Error ("String literal expected");
178     }
179
180     /* Call the string buf destructor */
181     DoneStrBuf (&S);
182 }
183
184
185
186 static void CharMapPragma (StrBuf* B)
187 /* Change the character map */
188 {
189     long Index, C;
190
191     /* Read the character index */
192     if (!SB_GetNumber (B, &Index)) {
193         return;
194     }
195     if (Index < 1 || Index > 255) {
196         Error ("Character index out of range");
197         return;
198     }
199
200     /* Comma follows */
201     SB_SkipWhite (B);
202     if (SB_Get (B) != ',') {
203         Error ("Comma expected");
204         return;
205     }
206     SB_SkipWhite (B);
207
208     /* Read the character code */
209     if (!SB_GetNumber (B, &C)) {
210         return;
211     }
212     if (C < 1 || C > 255) {
213         Error ("Character code out of range");
214         return;
215     }
216
217     /* Remap the character */
218     TgtTranslateSet ((unsigned) Index, (unsigned char) C);
219 }
220
221
222
223 static void FlagPragma (StrBuf* B, unsigned char* Flag)
224 /* Handle a pragma that expects a boolean paramater */
225 {
226     ident Ident;
227     long  Val;
228
229     if (SB_GetSym (B, Ident)) {
230         if (strcmp (Ident, "true") == 0 || strcmp (Ident, "on") == 0) {
231             *Flag = 1;
232         } else if (strcmp (Ident, "false") == 0 || strcmp (Ident, "off") == 0) {
233             *Flag = 0;
234         } else {
235             Error ("Pragma argument must be one of `on', `off', `true' or `false'");
236         }
237     } else if (SB_GetNumber (B, &Val)) {
238         *Flag = (Val != 0);
239     } else {
240         Error ("Invalid pragma argument");
241     }
242 }
243
244
245
246 static void ParsePragma (void)
247 /* Parse the contents of the _Pragma statement */
248 {
249     pragma_t Pragma;
250     ident    Ident;
251
252     /* Create a string buffer from the string literal */
253     StrBuf B = AUTO_STRBUF_INITIALIZER;
254     GetLiteralStrBuf (&B, CurTok.IVal);
255
256     /* Reset the string pointer, effectivly clearing the string from the
257      * string table. Since we're working with one token lookahead, this
258      * will fail if the next token is also a string token, but that's a
259      * syntax error anyway, because we expect a right paren.
260      */
261     ResetLiteralPoolOffs (CurTok.IVal);
262
263     /* Skip the string token */
264     NextToken ();
265
266     /* Get the pragma name from the string */
267     SB_SkipWhite (&B);
268     if (!SB_GetSym (&B, Ident)) {
269         Error ("Invalid pragma");
270         return;
271     }
272
273     /* Search for the name */
274     Pragma = FindPragma (Ident);
275
276     /* Do we know this pragma? */
277     if (Pragma == PR_ILLEGAL) {
278         /* According to the ANSI standard, we're not allowed to generate errors
279          * for unknown pragmas, however, we're allowed to warn - and we will
280          * do so. Otherwise one typo may give you hours of bug hunting...
281          */
282         Warning ("Unknown pragma `%s'", Ident);
283         return;
284     }
285
286     /* Check for an open paren */
287     SB_SkipWhite (&B);
288     if (SB_Get (&B) != '(') {
289         Error ("'(' expected");
290         return;
291     }
292
293     /* Skip white space before the argument */
294     SB_SkipWhite (&B);
295
296     /* Switch for the different pragmas */
297     switch (Pragma) {
298
299         case PR_BSSSEG:
300             SegNamePragma (&B, SEG_BSS);
301             break;
302
303         case PR_CHARMAP:
304             CharMapPragma (&B);
305             break;
306
307         case PR_CHECKSTACK:
308             FlagPragma (&B, &CheckStack);
309             break;
310
311         case PR_CODESEG:
312             SegNamePragma (&B, SEG_CODE);
313             break;
314
315         case PR_DATASEG:
316             SegNamePragma (&B, SEG_DATA);
317             break;
318
319         case PR_REGVARADDR:
320             FlagPragma (&B, &AllowRegVarAddr);
321             break;
322
323         case PR_RODATASEG:
324             SegNamePragma (&B, SEG_RODATA);
325             break;
326
327         case PR_SIGNEDCHARS:
328             FlagPragma (&B, &SignedChars);
329             break;
330
331         case PR_STATICLOCALS:
332             FlagPragma (&B, &StaticLocals);
333             break;
334
335         case PR_ZPSYM:
336             StringPragma (&B, MakeZPSym);
337             break;
338
339         default:
340             Internal ("Invalid pragma");
341     }
342
343     /* Closing paren expected */
344     SB_SkipWhite (&B);
345     if (SB_Get (&B) != ')') {
346         Error ("')' expected");
347         return;
348     }
349     SB_SkipWhite (&B);
350
351     /* Allow an optional semicolon to be compatible with the old syntax */
352     if (SB_Peek (&B) == ';') {
353         SB_Skip (&B);
354         SB_SkipWhite (&B);
355     }
356
357     /* Make sure nothing follows */
358     if (SB_Peek (&B) != '\0') {
359         Error ("Unexpected input following pragma directive");
360     }
361
362     /* Release the StrBuf */
363     DoneStrBuf (&B);
364 }
365
366
367
368 void DoPragma (void)
369 /* Handle pragmas. These come always in form of the new C99 _Pragma() operator. */
370 {
371     /* Skip the token itself */
372     NextToken ();
373
374     /* We expect an opening paren */
375     if (!ConsumeLParen ()) {
376         return;
377     }
378
379     /* String literal */
380     if (CurTok.Tok != TOK_SCONST) {
381
382         /* Print a diagnostic */
383         Error ("String literal expected");
384
385         /* Try some smart error recovery: Skip tokens until we reach the
386          * enclosing paren, or a semicolon.
387          */
388         PragmaErrorSkip ();
389
390     } else {
391
392         /* Parse the _Pragma statement */
393         ParsePragma ();
394     }
395
396     /* Closing paren needed */
397     ConsumeRParen ();
398 }
399
400
401