typedef token_kind_t as int
[cparser] / token.c
1 /*
2  * This file is part of cparser.
3  * Copyright (C) 2007-2009 Matthias Braun <matze@braunis.de>
4  *
5  * This program is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU General Public License
7  * as published by the Free Software Foundation; either version 2
8  * of the License, or (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program; if not, write to the Free Software
17  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
18  * 02111-1307, USA.
19  */
20 #include <config.h>
21
22 #include "token_t.h"
23 #include "symbol_t.h"
24
25 #include <assert.h>
26 #include <stdio.h>
27
28 #include "symbol.h"
29 #include "lang_features.h"
30 #include "adt/array.h"
31 #include "adt/error.h"
32 #include "adt/util.h"
33
34 static symbol_t *token_symbols[T_LAST_TOKEN];
35 static symbol_t *pp_token_symbols[TP_LAST_TOKEN];
36
37 const source_position_t builtin_source_position = { "<built-in>", 0, 0, true };
38
39 static token_kind_t last_id;
40
41 static symbol_t *intern_register_token(token_kind_t id, const char *string)
42 {
43         assert(id < T_LAST_TOKEN);
44         symbol_t *symbol = symbol_table_insert(string);
45         if (token_symbols[id] == NULL)
46                 token_symbols[id] = symbol;
47         return symbol;
48 }
49
50 static symbol_t *intern_register_pp_token(token_kind_t id, const char *string)
51 {
52         assert(id < TP_LAST_TOKEN);
53         symbol_t *symbol = symbol_table_insert(string);
54         if (pp_token_symbols[id] == NULL)
55                 pp_token_symbols[id] = symbol;
56         return symbol;
57 }
58
59 static void register_token(unsigned mode, token_kind_t id, const char *string)
60 {
61         if (id > 255) {
62                 assert(id >= last_id);
63                 last_id = id;
64         }
65         if (c_mode & mode) {
66                 symbol_t *symbol = intern_register_token(id, string);
67                 symbol->ID = id;
68         }
69 }
70
71 static void register_pp_token(unsigned mode, token_kind_t id,
72                               const char *string)
73 {
74         if (! (c_mode & mode))
75                 return;
76
77         symbol_t *symbol = intern_register_pp_token(id, string);
78         symbol->pp_ID = id;
79 }
80
81 void init_tokens(void)
82 {
83         memset(token_symbols, 0, T_LAST_TOKEN * sizeof(token_symbols[0]));
84         memset(pp_token_symbols, 0, TP_LAST_TOKEN * sizeof(pp_token_symbols[0]));
85
86 #define T(mode,x,str,val)  register_token(mode, T_##x, str);
87 #define TS(x,str,val)      intern_register_token(T_##x, str);
88 #include "tokens.inc"
89 #undef TS
90 #undef T
91
92 #define T(mode,x,str,val)  register_pp_token(mode, TP_##x, str);
93 #define TS(x,str,val)      intern_register_pp_token(TP_##x, str);
94 #include "tokens_preprocessor.inc"
95 #undef TS
96 #undef T
97 }
98
99 void exit_tokens(void)
100 {
101 }
102
103 void print_token_kind(FILE *f, token_kind_t token_kind)
104 {
105         if(token_kind == T_EOF) {
106                 fputs("end of file", f);
107                 return;
108         }
109
110         if (token_kind >= lengthof(token_symbols)) {
111                 fputs("invalid token", f);
112                 return;
113         }
114
115         const symbol_t *symbol = token_symbols[token_kind];
116         if(symbol != NULL) {
117                 fputs(symbol->string, f);
118         } else {
119                 if (token_kind < 256) {
120                         fputc(token_kind, f);
121                         return;
122                 }
123                 fputs("unknown token", f);
124         }
125 }
126
127 char const *get_string_encoding_prefix(string_encoding_t const enc)
128 {
129         switch (enc) {
130         case STRING_ENCODING_CHAR: return "";
131         case STRING_ENCODING_WIDE: return "L";
132         }
133         panic("invalid string encoding");
134 }
135
136 static void print_stringrep(const string_t *string, FILE *f)
137 {
138         for (size_t i = 0; i < string->size; ++i) {
139                 fputc(string->begin[i], f);
140         }
141 }
142
143 void print_token(FILE *f, const token_t *token)
144 {
145         switch(token->kind) {
146         case T_IDENTIFIER:
147                 fprintf(f, "identifier '%s'", token->base.symbol->string);
148                 break;
149
150         case T_NUMBER:
151                 fprintf(f, "number '%s'", token->literal.string.begin);
152                 break;
153
154                 char delim;
155         case T_STRING_LITERAL:     delim = '"';  goto print_string;
156         case T_CHARACTER_CONSTANT: delim = '\''; goto print_string;
157 print_string:
158                 print_token_kind(f, (token_kind_t)token->kind);
159                 fprintf(f, " %s%c", get_string_encoding_prefix(token->literal.string.encoding), delim);
160                 print_stringrep(&token->literal.string, f);
161                 fputc(delim, f);
162                 break;
163
164         default:
165                 if (token->base.symbol) {
166                         fprintf(f, "'%s'", token->base.symbol->string);
167                 } else {
168                         fputc('\'', f);
169                         print_token_kind(f, (token_kind_t)token->kind);
170                         fputc('\'', f);
171                 }
172                 break;
173         }
174 }
175
176 void print_pp_token_kind(FILE *f, int token_kind)
177 {
178         if (token_kind == TP_EOF) {
179                 fputs("end of file", f);
180                 return;
181         }
182
183         int token_symbols_len = TP_LAST_TOKEN;
184         if (token_kind < 0 || token_kind >= token_symbols_len) {
185                 fputs("invalid token", f);
186                 return;
187         }
188
189         const symbol_t *symbol = pp_token_symbols[token_kind];
190         if (symbol != NULL) {
191                 fputs(symbol->string, f);
192         } else {
193                 if(token_kind >= 0 && token_kind < 256) {
194                         fputc(token_kind, f);
195                         return;
196                 }
197                 fputs("unknown token", f);
198         }
199 }
200
201 void print_pp_token(FILE *f, const token_t *token)
202 {
203         switch ((token_kind_t)token->kind) {
204         case TP_IDENTIFIER:
205                 fprintf(f, "identifier '%s'", token->base.symbol->string);
206                 break;
207         case TP_NUMBER:
208                 fprintf(f, "number '%s'", token->literal.string.begin);
209                 break;
210         case TP_STRING_LITERAL:
211                 fprintf(f, "string \"%s\"", token->literal.string.begin);
212                 break;
213         default:
214                 print_pp_token_kind(f, (token_kind_t) token->kind);
215                 break;
216         }
217 }
218
219 bool tokens_would_paste(token_kind_t token1, token_kind_t token2)
220 {
221         char c = token2 < 256 ? (char) token2 : pp_token_symbols[token2]->string[0];
222
223         switch (token1) {
224         case '>': return c == '>' || c == '=';
225         case '<': return c == '<' || c == '=' || c == '%' || c == ':';
226         case '+': return c == '+' || c == '=';
227         case '-': return c == '-' || c == '>';
228         case '/': return c == '/' || c == '=' || c == '*';
229         case '%': return c == ':' || c == '=' || c == '>';
230         case '&': return c == '&' || c == '=';
231         case '|': return c == '|' || c == '=';
232         case ':': return c == ':' || c == '>';
233         case '*': return c == '*' || c == '=';
234         case '.': return c == '.' || c == '%' || token2 == TP_NUMBER;
235         case '#': return c == '#' || c == '%';
236         case TP_GREATERGREATER: return c == '=';
237         case TP_LESSLESS:       return c == '=';
238         case '^':               return c == '=';
239         case '!':               return c == '=';
240         case TP_IDENTIFIER:
241                 return token2 == TP_IDENTIFIER || token2 == TP_NUMBER ||
242                        token2 == TP_CHARACTER_CONSTANT ||
243                        token2 == TP_STRING_LITERAL; /* L */
244         case TP_NUMBER:
245                 return token2 == TP_NUMBER || token2 == TP_IDENTIFIER ||
246                        token2 == '.' || token2 == '+' || token2 == '-';
247         default:
248                 return false;
249         }
250 }