[PATCH] more sparse fixes (body parsing, beginning of ## handling)
[smatch.git] / token.h
blobd35ae74443334be04d489cd4c9e0cf2be4ec5093
1 #ifndef TOKEN_H
2 #define TOKEN_H
3 /*
4 * Basic tokenization structures. NOTE! Those tokens had better
5 * be pretty small, since we're going to keep them all in memory
6 * indefinitely.
8 * Copyright (C) 2003 Transmeta Corp.
9 * 2003 Linus Torvalds
11 * Licensed under the Open Software License version 1.1
14 #include <sys/types.h>
15 #include "lib.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
21 * the input stream.
23 * Semantic meaning is handled elsewhere.
26 struct stream {
27 int fd;
28 const char *name;
30 /* Use these to check for "already parsed" */
31 int constant, nesting;
32 struct ident *protect;
33 dev_t dev;
34 ino_t ino;
37 extern int input_stream_nr;
38 extern struct stream *input_streams;
40 extern int ident_hit, ident_miss;
42 struct ident {
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 unsigned char tainted;
47 char name[]; /* Actual identifier */
50 enum token_type {
51 TOKEN_EOF,
52 TOKEN_ERROR,
53 TOKEN_IDENT,
54 TOKEN_NUMBER,
55 TOKEN_CHAR,
56 TOKEN_STRING,
57 TOKEN_SPECIAL,
58 TOKEN_STREAMBEGIN,
59 TOKEN_STREAMEND,
60 TOKEN_MACRO_ARGUMENT,
61 TOKEN_STR_ARGUMENT,
62 TOKEN_QUOTED_ARGUMENT,
63 TOKEN_CONCAT,
64 TOKEN_UNTAINT,
67 /* Combination tokens */
68 #define COMBINATION_STRINGS { \
69 "+=", "++", \
70 "-=", "--", "->", \
71 "*=", \
72 "/=", "/*", "//", \
73 "%=", \
74 "..", "...", \
75 "<=", "<<", "<<=", \
76 ">=", ">>", ">>=", \
77 "==", "!=", \
78 "&&", "&=", \
79 "||", "|=", \
80 "^=", "##", \
81 " @ ", \
84 enum special_token {
85 SPECIAL_BASE = 256,
86 SPECIAL_ADD_ASSIGN = 256,
87 SPECIAL_INCREMENT,
88 SPECIAL_SUB_ASSIGN,
89 SPECIAL_DECREMENT,
90 SPECIAL_DEREFERENCE,
91 SPECIAL_MUL_ASSIGN,
92 SPECIAL_DIV_ASSIGN,
93 SPECIAL_COMMENT,
94 SPECIAL_CPPCOMMENT,
95 SPECIAL_MOD_ASSIGN,
96 SPECIAL_DOTDOT,
97 SPECIAL_ELLIPSIS,
98 SPECIAL_LTE,
99 SPECIAL_LEFTSHIFT,
100 SPECIAL_SHL_ASSIGN,
101 SPECIAL_GTE,
102 SPECIAL_RIGHTSHIFT,
103 SPECIAL_SHR_ASSIGN,
104 SPECIAL_EQUAL,
105 SPECIAL_NOTEQUAL,
106 SPECIAL_LOGICAL_AND,
107 SPECIAL_AND_ASSIGN,
108 SPECIAL_LOGICAL_OR,
109 SPECIAL_OR_ASSIGN,
110 SPECIAL_XOR_ASSIGN,
111 SPECIAL_HASHHASH,
112 SPECIAL_ARG_SEPARATOR
115 struct string {
116 unsigned int length;
117 char data[];
121 * This is a very common data structure, it should be kept
122 * as small as humanly possible. Big (rare) types go as
123 * pointers.
125 struct token {
126 struct position pos;
127 struct token *next;
128 union {
129 char *number;
130 struct ident *ident;
131 unsigned int special;
132 struct string *string;
133 int character;
134 int argnum;
138 #define token_type(x) ((x)->pos.type)
141 * Last token in the stream - points to itself.
142 * This allows us to not test for NULL pointers
143 * when following the token->next chain..
145 extern int preprocessing, verbose;
146 extern struct token eof_token_entry;
147 #define eof_token(x) ((x) == &eof_token_entry)
149 extern int init_stream(const char *, int fd);
150 extern struct ident *hash_ident(struct ident *);
151 extern struct ident *built_in_ident(const char *);
152 extern struct token *built_in_token(int, const char *);
153 extern const char *show_special(int);
154 extern const char *show_ident(const struct ident *);
155 extern const char *show_string(const struct string *string);
156 extern const char *show_token(const struct token *);
157 extern struct token * tokenize(const char *, int, struct token *);
158 extern struct token * tokenize_buffer(unsigned char *, unsigned long, struct token *);
160 extern void die(const char *, ...);
161 extern void show_identifier_stats(void);
162 extern struct token *preprocess(struct token *);
164 static inline int match_op(struct token *token, int op)
166 return token->pos.type == TOKEN_SPECIAL && token->special == op;
169 static inline int match_ident(struct token *token, struct ident *id)
171 return token->pos.type == TOKEN_IDENT && token->ident == id;
174 #endif