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.
30 /* Use these to check for "already parsed" */
31 int constant
, nesting
;
32 struct ident
*protect
;
37 extern int input_stream_nr
;
38 extern struct stream
*input_streams
;
40 extern int ident_hit
, ident_miss
;
43 struct ident
*next
; /* Hash chain of identifiers */
44 struct symbol
*symbols
; /* Pointer to semantic meaning list */
45 unsigned char len
; /* Length of identifier name */
46 char name
[]; /* Actual identifier */
62 /* Combination tokens */
63 #define COMBINATION_STRINGS { \
81 SPECIAL_ADD_ASSIGN
= 256,
107 SPECIAL_ARG_SEPARATOR
116 * This is a very common data structure, it should be kept
117 * as small as humanly possible. Big (rare) types go as
123 struct token
*parent
;
128 unsigned int special
;
129 struct string
*string
;
134 #define token_type(x) ((x)->pos.type)
137 * Last token in the stream - points to itself.
138 * This allows us to not test for NULL pointers
139 * when following the token->next chain..
141 extern int preprocessing
, verbose
;
142 extern struct token eof_token_entry
;
143 #define eof_token(x) ((x) == &eof_token_entry)
145 extern int init_stream(const char *, int fd
);
146 extern struct ident
*hash_ident(struct ident
*);
147 extern struct ident
*built_in_ident(const char *);
148 extern struct token
*built_in_token(int, const char *);
149 extern const char *show_special(int);
150 extern const char *show_ident(const struct ident
*);
151 extern const char *show_string(const struct string
*string
);
152 extern const char *show_token(const struct token
*);
153 extern struct token
* tokenize(const char *, int, struct token
*);
154 extern struct token
* tokenize_buffer(unsigned char *, unsigned long, struct token
*);
156 extern void die(const char *, ...);
157 extern void show_identifier_stats(void);
158 extern struct token
*preprocess(struct token
*);
160 static inline int match_op(struct token
*token
, int op
)
162 return token
->pos
.type
== TOKEN_SPECIAL
&& token
->special
== op
;
165 static inline int match_ident(struct token
*token
, struct ident
*id
)
167 return token
->pos
.type
== TOKEN_IDENT
&& token
->ident
== id
;