main: rework preprocessor invocation
[cparser] / token_t.h
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 #ifndef TOKEN_T_H
21 #define TOKEN_T_H
22
23 #include <stdio.h>
24 #include "string_rep.h"
25 #include "symbol.h"
26 #include "symbol_table.h"
27 #include "type.h"
28
29 typedef enum token_kind_tag_t {
30         T_NULL  =  0,
31 #define T(mode,x,str,val) x val,
32 #include "tokens.inc"
33 #undef T
34         T_LAST_TOKEN
35 } token_kind_tag_t;
36 typedef unsigned short token_kind_t;
37
38 typedef enum pp_token_kind_tag_t {
39         TP_NULL = 0,
40 #define T(token) TP_##token,
41 #include "tokens_preprocessor.inc"
42 #undef T
43         TP_LAST_TOKEN
44 } pp_token_kind_tag_t;
45 typedef unsigned short pp_token_kind_t;
46
47 typedef struct source_position_t source_position_t;
48 struct source_position_t {
49         const char *input_name;
50         unsigned    lineno;
51         unsigned    colno            : 31;
52         unsigned    is_system_header : 1;
53 };
54
55 extern symbol_t *token_symbols[];
56
57 /* position used for "builtin" declarations/types */
58 extern const source_position_t builtin_source_position;
59
60 typedef struct token_base_t      token_base_t;
61 typedef struct literal_t         literal_t;
62 typedef struct macro_parameter_t macro_parameter_t;
63 typedef union  token_t           token_t;
64
65 struct token_base_t {
66         token_kind_t      kind;
67         source_position_t source_position;
68         symbol_t         *symbol;
69 };
70
71 struct literal_t {
72         token_base_t base;
73         string_t     string;
74 };
75
76 struct macro_parameter_t {
77         token_base_t     base;
78         pp_definition_t *def;
79 };
80
81 union token_t {
82         unsigned          kind;
83         token_base_t      base;
84         literal_t         literal;
85         macro_parameter_t macro_parameter;
86 };
87
88 char const *get_string_encoding_prefix(string_encoding_t);
89
90 void init_tokens(void);
91 void exit_tokens(void);
92 void print_token_kind(FILE *out, token_kind_t token_kind);
93 void print_token(FILE *out, const token_t *token);
94
95 /**
96  * returns true if pasting 2 preprocessing tokens next to each other
97  * without a space in between would generate (an)other preprocessing token(s)
98  */
99 bool tokens_would_paste(token_kind_t token1, token_kind_t token2);
100
101 #endif