Turn T_EOF into a properly registered token.
[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
36 const source_position_t builtin_source_position = { "<built-in>", 0, 0, true };
37
38 static token_kind_t last_id;
39
40 static symbol_t *intern_register_token(token_kind_t id, const char *string)
41 {
42         assert(id < T_LAST_TOKEN);
43         symbol_t *symbol = symbol_table_insert(string);
44         if (token_symbols[id] == NULL)
45                 token_symbols[id] = symbol;
46         return symbol;
47 }
48
49 static void register_token(unsigned mode, token_kind_t id, const char *string)
50 {
51         if (id > 255) {
52                 assert(id >= last_id);
53                 last_id = id;
54         }
55         if (c_mode & mode) {
56                 symbol_t *symbol = intern_register_token(id, string);
57                 symbol->ID = id;
58         }
59 }
60
61 static void register_pp_token(pp_token_kind_t const id, char const *const string)
62 {
63         assert(id < TP_LAST_TOKEN);
64         symbol_t *const symbol = symbol_table_insert(string);
65         symbol->pp_ID = id;
66 }
67
68 void init_tokens(void)
69 {
70         memset(token_symbols, 0, T_LAST_TOKEN * sizeof(token_symbols[0]));
71
72 #define T(mode,x,str,val)  register_token(mode, T_##x, str);
73 #define TS(x,str,val)      intern_register_token(T_##x, str);
74 #include "tokens.inc"
75 #undef TS
76 #undef T
77
78 #define T(token) register_pp_token(TP_##token, #token);
79 #include "tokens_preprocessor.inc"
80 #undef T
81 }
82
83 void exit_tokens(void)
84 {
85 }
86
87 void print_token_kind(FILE *f, token_kind_t token_kind)
88 {
89         if (token_kind >= lengthof(token_symbols)) {
90                 fputs("invalid token", f);
91                 return;
92         }
93
94         fputs(token_symbols[token_kind]->string, f);
95 }
96
97 char const *get_string_encoding_prefix(string_encoding_t const enc)
98 {
99         switch (enc) {
100         case STRING_ENCODING_CHAR: return "";
101         case STRING_ENCODING_WIDE: return "L";
102         }
103         panic("invalid string encoding");
104 }
105
106 void print_token(FILE *f, const token_t *token)
107 {
108         char        delim = '\'';
109         char const *enc   = "";
110         char const *val;
111         switch (token->kind) {
112         case T_IDENTIFIER:
113         case T_UNKNOWN_CHAR:
114                 val = token->base.symbol->string;
115                 break;
116
117         case T_HEADERNAME:
118         case T_STRING_LITERAL:
119                 delim = '"';
120                 /* FALLTHROUGH */
121         case T_CHARACTER_CONSTANT:
122                 enc = get_string_encoding_prefix(token->literal.string.encoding);
123                 /* FALLTHROUGH */
124         case T_NUMBER:
125                 val = token->literal.string.begin;
126                 break;
127
128         default: {
129                 char const *kind  = (token->base.symbol ? token->base.symbol : token_symbols[token->kind])->string;
130                 fprintf(f, "'%s'", kind);
131                 return;
132         }
133         }
134         fprintf(f, "%s %s%c%s%c", token_symbols[token->kind]->string, enc, delim, val, delim);
135 }
136
137 bool tokens_would_paste(token_kind_t token1, token_kind_t token2)
138 {
139         char const c = token_symbols[token2]->string[0];
140
141         switch (token1) {
142         case '>': return c == '>' || c == '=';
143         case '<': return c == '<' || c == '=' || c == '%' || c == ':';
144         case '+': return c == '+' || c == '=';
145         case '-': return c == '-' || c == '>';
146         case '/': return c == '/' || c == '=' || c == '*';
147         case '%': return c == ':' || c == '=' || c == '>';
148         case '&': return c == '&' || c == '=';
149         case '|': return c == '|' || c == '=';
150         case ':': return c == ':' || c == '>';
151         case '*': return c == '*' || c == '=';
152         case '.': return c == '.' || c == '%' || token2 == T_NUMBER;
153         case '#': return c == '#' || c == '%';
154         case T_GREATERGREATER: return c == '=';
155         case T_LESSLESS:       return c == '=';
156         case '^':              return c == '=';
157         case '!':              return c == '=';
158
159         case T_IDENTIFIER:
160                 return token2 == T_CHARACTER_CONSTANT ||
161                        token2 == T_IDENTIFIER         ||
162                        token2 == T_NUMBER             ||
163                        token2 == T_STRING_LITERAL; /* L */
164
165         case T_NUMBER:
166                 return token2 == T_IDENTIFIER || token2 == T_NUMBER ||
167                        token2 == '.' || token2 == '+' || token2 == '-';
168
169         default:
170                 return false;
171         }
172 }