4 * Basic tokenization structures. NOTE! Those tokens had better
5 * be pretty small, since we're going to keep them all in memory
8 * Copyright (C) 2003 Transmeta Corp.
11 * Permission is hereby granted, free of charge, to any person obtaining a copy
12 * of this software and associated documentation files (the "Software"), to deal
13 * in the Software without restriction, including without limitation the rights
14 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
15 * copies of the Software, and to permit persons to whom the Software is
16 * furnished to do so, subject to the following conditions:
18 * The above copyright notice and this permission notice shall be included in
19 * all copies or substantial portions of the Software.
21 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
22 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
23 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
24 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
25 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
26 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
30 #include <sys/types.h>
34 * This describes the pure lexical elements (tokens), with
35 * no semantic meaning. In other words, an identifier doesn't
36 * have a type or meaning, it is only a specific string in
39 * Semantic meaning is handled elsewhere.
43 CONSTANT_FILE_MAYBE
, // To be determined, not inside any #ifs in this file
44 CONSTANT_FILE_IFNDEF
, // To be determined, currently inside #ifndef
45 CONSTANT_FILE_NOPE
, // No
46 CONSTANT_FILE_YES
// Yes
49 extern const char *includepath
[];
54 const char *path
; // input-file path - see set_stream_include_path()
55 const char **next_path
;
57 /* Use these to check for "already parsed" */
58 enum constantfile constant
;
59 int dirty
, next_stream
, once
;
60 struct ident
*protect
;
65 extern int input_stream_nr
;
66 extern struct stream
*input_streams
;
67 extern unsigned int tabstop
;
69 extern int *hash_stream(const char *name
);
72 struct ident
*next
; /* Hash chain of identifiers */
73 struct symbol
*symbols
; /* Pointer to semantic meaning list */
74 unsigned char len
; /* Length of identifier name */
75 unsigned char tainted
:1,
78 char name
[]; /* Actual identifier */
88 TOKEN_CHAR_EMBEDDED_0
,
89 TOKEN_CHAR_EMBEDDED_1
,
90 TOKEN_CHAR_EMBEDDED_2
,
91 TOKEN_CHAR_EMBEDDED_3
,
93 TOKEN_WIDE_CHAR_EMBEDDED_0
,
94 TOKEN_WIDE_CHAR_EMBEDDED_1
,
95 TOKEN_WIDE_CHAR_EMBEDDED_2
,
96 TOKEN_WIDE_CHAR_EMBEDDED_3
,
102 TOKEN_MACRO_ARGUMENT
,
104 TOKEN_QUOTED_ARGUMENT
,
114 /* Combination tokens */
115 #define COMBINATION_STRINGS { \
127 "<<=", ">>=", "...", \
129 "<", ">", "<=", ">=" \
132 extern unsigned char combinations
[][4];
136 SPECIAL_ADD_ASSIGN
= SPECIAL_BASE
,
160 SPECIAL_ARG_SEPARATOR
,
163 SPECIAL_UNSIGNED_LTE
,
164 SPECIAL_UNSIGNED_GTE
,
172 /* will fit into 32 bits */
181 * This is a very common data structure, it should be kept
182 * as small as humanly possible. Big (rare) types go as
191 unsigned int special
;
192 struct string
*string
;
194 struct argcount count
;
199 #define MAX_STRING 8191
201 static inline struct token
*containing_token(struct token
**p
)
203 void *addr
= (char *)p
- ((char *)&((struct token
*)0)->next
- (char *)0);
207 #define token_type(x) ((x)->pos.type)
210 * Last token in the stream - points to itself.
211 * This allows us to not test for NULL pointers
212 * when following the token->next chain..
214 extern struct token eof_token_entry
;
215 #define eof_token(x) ((x) == &eof_token_entry)
217 extern int init_stream(const char *, int fd
, const char **next_path
);
218 extern const char *stream_name(int stream
);
219 extern struct ident
*hash_ident(struct ident
*);
220 extern struct ident
*built_in_ident(const char *);
221 extern struct token
*built_in_token(int, const char *);
222 extern const char *show_special(int);
223 extern const char *show_ident(const struct ident
*);
224 extern const char *show_string(const struct string
*string
);
225 extern const char *show_token(const struct token
*);
226 extern const char *quote_token(const struct token
*);
227 extern struct token
* tokenize(const char *, int, struct token
*, const char **next_path
);
228 extern struct token
* tokenize_buffer(void *, unsigned long, struct token
**);
230 extern void show_identifier_stats(void);
231 extern struct token
*preprocess(struct token
*);
233 extern void store_all_tokens(struct token
*token
);
234 extern struct token
*pos_get_token(struct position pos
);
235 extern char *pos_ident(struct position pos
);
237 extern void store_macro_pos(struct token
*);
238 extern char *get_macro_name(struct position pos
);
240 static inline int match_op(struct token
*token
, int op
)
242 return token
->pos
.type
== TOKEN_SPECIAL
&& token
->special
== op
;
245 static inline int match_ident(struct token
*token
, struct ident
*id
)
247 return token
->pos
.type
== TOKEN_IDENT
&& token
->ident
== id
;