]> git.sur5r.net Git - cc65/blob - src/cc65/pragma.c
b26ef7bc81d7ea989fea8cee011f419f50beb097
[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 "tgttrans.h"
41
42 /* cc65 */
43 #include "codegen.h"
44 #include "error.h"
45 #include "expr.h"
46 #include "global.h"
47 #include "litpool.h"
48 #include "scanner.h"
49 #include "scanstrbuf.h"
50 #include "segments.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     unsigned Index, C;
190
191     ExprDesc Val;
192
193     /* Read the character index */
194     ConstIntExpr (&Val);
195     if (Val.ConstVal < 1 || Val.ConstVal > 255) {
196         Error ("Character index out of range");
197         Index = 'A';
198     } else {
199         Index = Val.ConstVal;
200     }
201
202     /* Comma follows */
203     ConsumeComma ();
204
205     /* Read the character code */
206     ConstIntExpr (&Val);
207     if (Val.ConstVal < 1 || Val.ConstVal > 255) {
208         Error ("Character code out of range");
209         C = 'A';
210     } else {
211         C = Val.ConstVal;
212     }
213
214     /* Remap the character */
215     TgtTranslateSet (Index, C);
216 }
217
218
219
220 static void FlagPragma (StrBuf* B, unsigned char* Flag)
221 /* Handle a pragma that expects a boolean paramater */
222 {
223     ident Ident;
224
225     if (SB_Peek (B) == '0') {
226         SB_Skip (B);
227         *Flag = 0;
228     } else if (SB_Peek (B) == '1') {
229         SB_Skip (B);
230         *Flag = 1;
231     } else if (SB_GetSym (B, Ident)) {
232         if (strcmp (Ident, "true") == 0 || strcmp (Ident, "on") == 0) {
233             *Flag = 1;
234         } else if (strcmp (Ident, "false") == 0 || strcmp (Ident, "off") == 0) {
235             *Flag = 0;
236         } else {
237             Error ("Pragma argument must be one of `on', `off', `true' or `false'");
238         }
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
350     /* Make sure nothing follows */
351     SB_SkipWhite (&B);
352     if (SB_Peek (&B) != '\0') {
353         Error ("Unexpected input following pragma directive");
354     }
355
356     /* Release the StrBuf */
357     DoneStrBuf (&B);
358 }
359
360
361
362 void DoPragma (void)
363 /* Handle pragmas. These come always in form of the new C99 _Pragma() operator. */
364 {
365     /* Skip the token itself */
366     NextToken ();
367
368     /* We expect an opening paren */
369     if (!ConsumeLParen ()) {
370         return;
371     }
372
373     /* String literal */
374     if (CurTok.Tok != TOK_SCONST) {
375
376         /* Print a diagnostic */
377         Error ("String literal expected");
378
379         /* Try some smart error recovery: Skip tokens until we reach the
380          * enclosing paren, or a semicolon.
381          */
382         PragmaErrorSkip ();
383
384     } else {
385
386         /* Parse the _Pragma statement */
387         ParsePragma ();
388     }
389
390     /* Closing paren needed */
391     ConsumeRParen ();
392 }
393
394
395