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 * Licensed under the Open Software License version 1.1
14 #include <sys/types.h>
18 * This describes the pure lexical elements (tokens), with
19 * no semantic meaning. In other words, an identifier doesn't
20 * have a type or meaning, it is only a specific string in
23 * Semantic meaning is handled elsewhere.
27 CONSTANT_FILE_MAYBE
, // To be determined, not inside any #ifs in this file
28 CONSTANT_FILE_IFNDEF
, // To be determined, currently inside #ifndef
29 CONSTANT_FILE_NOPE
, // No
30 CONSTANT_FILE_YES
// Yes
33 extern const char *includepath
[];
38 const char *path
; // input-file path - see set_stream_include_path()
39 const char **next_path
;
41 /* Use these to check for "already parsed" */
42 enum constantfile constant
;
44 struct ident
*protect
;
49 extern int input_stream_nr
;
50 extern struct stream
*input_streams
;
51 extern unsigned int tabstop
;
54 struct ident
*next
; /* Hash chain of identifiers */
55 struct symbol
*symbols
; /* Pointer to semantic meaning list */
56 unsigned char len
; /* Length of identifier name */
57 unsigned char tainted
:1,
60 char name
[]; /* Actual identifier */
76 TOKEN_QUOTED_ARGUMENT
,
86 /* Combination tokens */
87 #define COMBINATION_STRINGS { \
99 "<<=", ">>=", "...", \
101 "<", ">", "<=", ">=" \
104 extern unsigned char combinations
[][4];
108 SPECIAL_ADD_ASSIGN
= SPECIAL_BASE
,
132 SPECIAL_ARG_SEPARATOR
,
135 SPECIAL_UNSIGNED_LTE
,
136 SPECIAL_UNSIGNED_GTE
,
144 /* will fit into 32 bits */
153 * This is a very common data structure, it should be kept
154 * as small as humanly possible. Big (rare) types go as
163 unsigned int special
;
164 struct string
*string
;
167 struct argcount count
;
171 #define MAX_STRING 4095
173 static inline struct token
*containing_token(struct token
**p
)
175 void *addr
= (char *)p
- ((char *)&((struct token
*)0)->next
- (char *)0);
179 #define token_type(x) ((x)->pos.type)
182 * Last token in the stream - points to itself.
183 * This allows us to not test for NULL pointers
184 * when following the token->next chain..
186 extern struct token eof_token_entry
;
187 #define eof_token(x) ((x) == &eof_token_entry)
189 extern int init_stream(const char *, int fd
, const char **next_path
);
190 extern const char *stream_name(int stream
);
191 extern struct ident
*hash_ident(struct ident
*);
192 extern struct ident
*built_in_ident(const char *);
193 extern struct token
*built_in_token(int, const char *);
194 extern const char *show_special(int);
195 extern const char *show_ident(const struct ident
*);
196 extern const char *show_string(const struct string
*string
);
197 extern const char *show_token(const struct token
*);
198 extern struct token
* tokenize(const char *, int, struct token
*, const char **next_path
);
199 extern struct token
* tokenize_buffer(void *, unsigned long, struct token
**);
201 extern void show_identifier_stats(void);
202 extern struct token
*preprocess(struct token
*);
204 static inline int match_op(struct token
*token
, int op
)
206 return token
->pos
.type
== TOKEN_SPECIAL
&& token
->special
== op
;
209 static inline int match_ident(struct token
*token
, struct ident
*id
)
211 return token
->pos
.type
== TOKEN_IDENT
&& token
->ident
== id
;