Update for ifdef for clang. Also fix a bad operation comparison.
[awesomized/libmemcached] / libmemcached / csl / scanner.h
1 #ifndef config_HEADER_H
2 #define config_HEADER_H 1
3 #define config_IN_HEADER 1
4
5 #line 6 "libmemcached/csl/scanner.h"
6 #line 39 "libmemcached/csl/scanner.l"
7
8 #include <libmemcached/csl/common.h>
9 #include <libmemcached/csl/context.h>
10 #include <libmemcached/csl/parser.h>
11 #include <libmemcached/csl/symbol.h>
12
13 #ifndef __INTEL_COMPILER
14 #pragma GCC diagnostic ignored "-Wold-style-cast"
15 #pragma GCC diagnostic ignored "-Wsign-compare"
16 #pragma GCC diagnostic ignored "-Wunused-parameter"
17 #pragma GCC diagnostic ignored "-Wmissing-declarations"
18 #pragma GCC diagnostic ignored "-Wunused-result"
19 #pragma GCC diagnostic ignored "-Wmissing-noreturn"
20 #endif
21
22 #ifdef __clang__
23 #pragma GCC diagnostic ignored "-Wshorten-64-to-32"
24 #endif
25
26 #define YY_EXTRA_TYPE Context*
27
28
29
30
31 #line 32 "libmemcached/csl/scanner.h"
32
33 #define YY_INT_ALIGNED short int
34
35 /* A lexical scanner generated by flex */
36
37 #define FLEX_SCANNER
38 #define YY_FLEX_MAJOR_VERSION 2
39 #define YY_FLEX_MINOR_VERSION 5
40 #define YY_FLEX_SUBMINOR_VERSION 35
41 #if YY_FLEX_SUBMINOR_VERSION > 0
42 #define FLEX_BETA
43 #endif
44
45 /* First, we deal with platform-specific or compiler-specific issues. */
46
47 /* begin standard C headers. */
48 #include <stdio.h>
49 #include <string.h>
50 #include <errno.h>
51 #include <stdlib.h>
52
53 /* end standard C headers. */
54
55 /* flex integer type definitions */
56
57 #ifndef FLEXINT_H
58 #define FLEXINT_H
59
60 /* C99 systems have <inttypes.h>. Non-C99 systems may or may not. */
61
62 #if defined (__STDC_VERSION__) && __STDC_VERSION__ >= 199901L
63
64 /* C99 says to define __STDC_LIMIT_MACROS before including stdint.h,
65 * if you want the limit (max/min) macros for int types.
66 */
67 #ifndef __STDC_LIMIT_MACROS
68 #define __STDC_LIMIT_MACROS 1
69 #endif
70
71 #include <inttypes.h>
72 typedef int8_t flex_int8_t;
73 typedef uint8_t flex_uint8_t;
74 typedef int16_t flex_int16_t;
75 typedef uint16_t flex_uint16_t;
76 typedef int32_t flex_int32_t;
77 typedef uint32_t flex_uint32_t;
78 #else
79 typedef signed char flex_int8_t;
80 typedef short int flex_int16_t;
81 typedef int flex_int32_t;
82 typedef unsigned char flex_uint8_t;
83 typedef unsigned short int flex_uint16_t;
84 typedef unsigned int flex_uint32_t;
85 #endif /* ! C99 */
86
87 /* Limits of integral types. */
88 #ifndef INT8_MIN
89 #define INT8_MIN (-128)
90 #endif
91 #ifndef INT16_MIN
92 #define INT16_MIN (-32767-1)
93 #endif
94 #ifndef INT32_MIN
95 #define INT32_MIN (-2147483647-1)
96 #endif
97 #ifndef INT8_MAX
98 #define INT8_MAX (127)
99 #endif
100 #ifndef INT16_MAX
101 #define INT16_MAX (32767)
102 #endif
103 #ifndef INT32_MAX
104 #define INT32_MAX (2147483647)
105 #endif
106 #ifndef UINT8_MAX
107 #define UINT8_MAX (255U)
108 #endif
109 #ifndef UINT16_MAX
110 #define UINT16_MAX (65535U)
111 #endif
112 #ifndef UINT32_MAX
113 #define UINT32_MAX (4294967295U)
114 #endif
115
116 #endif /* ! FLEXINT_H */
117
118 #ifdef __cplusplus
119
120 /* The "const" storage-class-modifier is valid. */
121 #define YY_USE_CONST
122
123 #else /* ! __cplusplus */
124
125 /* C99 requires __STDC__ to be defined as 1. */
126 #if defined (__STDC__)
127
128 #define YY_USE_CONST
129
130 #endif /* defined (__STDC__) */
131 #endif /* ! __cplusplus */
132
133 #ifdef YY_USE_CONST
134 #define yyconst const
135 #else
136 #define yyconst
137 #endif
138
139 /* An opaque pointer. */
140 #ifndef YY_TYPEDEF_YY_SCANNER_T
141 #define YY_TYPEDEF_YY_SCANNER_T
142 typedef void* yyscan_t;
143 #endif
144
145 /* For convenience, these vars (plus the bison vars far below)
146 are macros in the reentrant scanner. */
147 #define yyin yyg->yyin_r
148 #define yyout yyg->yyout_r
149 #define yyextra yyg->yyextra_r
150 #define yyleng yyg->yyleng_r
151 #define yytext yyg->yytext_r
152 #define yylineno (YY_CURRENT_BUFFER_LVALUE->yy_bs_lineno)
153 #define yycolumn (YY_CURRENT_BUFFER_LVALUE->yy_bs_column)
154 #define yy_flex_debug yyg->yy_flex_debug_r
155
156 /* Size of default input buffer. */
157 #ifndef YY_BUF_SIZE
158 #define YY_BUF_SIZE 16384
159 #endif
160
161 #ifndef YY_TYPEDEF_YY_BUFFER_STATE
162 #define YY_TYPEDEF_YY_BUFFER_STATE
163 typedef struct yy_buffer_state *YY_BUFFER_STATE;
164 #endif
165
166 #ifndef YY_TYPEDEF_YY_SIZE_T
167 #define YY_TYPEDEF_YY_SIZE_T
168 typedef size_t yy_size_t;
169 #endif
170
171 #ifndef YY_STRUCT_YY_BUFFER_STATE
172 #define YY_STRUCT_YY_BUFFER_STATE
173 struct yy_buffer_state
174 {
175 FILE *yy_input_file;
176
177 char *yy_ch_buf; /* input buffer */
178 char *yy_buf_pos; /* current position in input buffer */
179
180 /* Size of input buffer in bytes, not including room for EOB
181 * characters.
182 */
183 yy_size_t yy_buf_size;
184
185 /* Number of characters read into yy_ch_buf, not including EOB
186 * characters.
187 */
188 int yy_n_chars;
189
190 /* Whether we "own" the buffer - i.e., we know we created it,
191 * and can realloc() it to grow it, and should free() it to
192 * delete it.
193 */
194 int yy_is_our_buffer;
195
196 /* Whether this is an "interactive" input source; if so, and
197 * if we're using stdio for input, then we want to use getc()
198 * instead of fread(), to make sure we stop fetching input after
199 * each newline.
200 */
201 int yy_is_interactive;
202
203 /* Whether we're considered to be at the beginning of a line.
204 * If so, '^' rules will be active on the next match, otherwise
205 * not.
206 */
207 int yy_at_bol;
208
209 int yy_bs_lineno; /**< The line count. */
210 int yy_bs_column; /**< The column count. */
211
212 /* Whether to try to fill the input buffer when we reach the
213 * end of it.
214 */
215 int yy_fill_buffer;
216
217 int yy_buffer_status;
218
219 };
220 #endif /* !YY_STRUCT_YY_BUFFER_STATE */
221
222 void config_restart (FILE *input_file ,yyscan_t yyscanner );
223 void config__switch_to_buffer (YY_BUFFER_STATE new_buffer ,yyscan_t yyscanner );
224 YY_BUFFER_STATE config__create_buffer (FILE *file,int size ,yyscan_t yyscanner );
225 void config__delete_buffer (YY_BUFFER_STATE b ,yyscan_t yyscanner );
226 void config__flush_buffer (YY_BUFFER_STATE b ,yyscan_t yyscanner );
227 void config_push_buffer_state (YY_BUFFER_STATE new_buffer ,yyscan_t yyscanner );
228 void config_pop_buffer_state (yyscan_t yyscanner );
229
230 YY_BUFFER_STATE config__scan_buffer (char *base,yy_size_t size ,yyscan_t yyscanner );
231 YY_BUFFER_STATE config__scan_string (yyconst char *yy_str ,yyscan_t yyscanner );
232 YY_BUFFER_STATE config__scan_bytes (yyconst char *bytes,int len ,yyscan_t yyscanner );
233
234 void *config_alloc (yy_size_t ,yyscan_t yyscanner );
235 void *config_realloc (void *,yy_size_t ,yyscan_t yyscanner );
236 void config_free (void * ,yyscan_t yyscanner );
237
238 /* Begin user sect3 */
239
240 #define config_wrap(n) 1
241 #define YY_SKIP_YYWRAP
242
243 #define yytext_ptr yytext_r
244
245 #ifdef YY_HEADER_EXPORT_START_CONDITIONS
246 #define INITIAL 0
247
248 #endif
249
250 #ifndef YY_NO_UNISTD_H
251 /* Special case for "unistd.h", since it is non-ANSI. We include it way
252 * down here because we want the user's section 1 to have been scanned first.
253 * The user has a chance to override it with an option.
254 */
255 #include <unistd.h>
256 #endif
257
258 #ifndef YY_EXTRA_TYPE
259 #define YY_EXTRA_TYPE void *
260 #endif
261
262 int config_lex_init (yyscan_t* scanner);
263
264 int config_lex_init_extra (YY_EXTRA_TYPE user_defined,yyscan_t* scanner);
265
266 /* Accessor methods to globals.
267 These are made visible to non-reentrant scanners for convenience. */
268
269 int config_lex_destroy (yyscan_t yyscanner );
270
271 int config_get_debug (yyscan_t yyscanner );
272
273 void config_set_debug (int debug_flag ,yyscan_t yyscanner );
274
275 YY_EXTRA_TYPE config_get_extra (yyscan_t yyscanner );
276
277 void config_set_extra (YY_EXTRA_TYPE user_defined ,yyscan_t yyscanner );
278
279 FILE *config_get_in (yyscan_t yyscanner );
280
281 void config_set_in (FILE * in_str ,yyscan_t yyscanner );
282
283 FILE *config_get_out (yyscan_t yyscanner );
284
285 void config_set_out (FILE * out_str ,yyscan_t yyscanner );
286
287 int config_get_leng (yyscan_t yyscanner );
288
289 char *config_get_text (yyscan_t yyscanner );
290
291 int config_get_lineno (yyscan_t yyscanner );
292
293 void config_set_lineno (int line_number ,yyscan_t yyscanner );
294
295 int config_get_column (yyscan_t yyscanner );
296
297 void config_set_column (int column_no ,yyscan_t yyscanner );
298
299 YYSTYPE * config_get_lval (yyscan_t yyscanner );
300
301 void config_set_lval (YYSTYPE * yylval_param ,yyscan_t yyscanner );
302
303 /* Macros after this point can all be overridden by user definitions in
304 * section 1.
305 */
306
307 #ifndef YY_SKIP_YYWRAP
308 #ifdef __cplusplus
309 extern "C" int config_wrap (yyscan_t yyscanner );
310 #else
311 extern int config_wrap (yyscan_t yyscanner );
312 #endif
313 #endif
314
315 #ifndef yytext_ptr
316 static void yy_flex_strncpy (char *,yyconst char *,int ,yyscan_t yyscanner);
317 #endif
318
319 #ifdef YY_NEED_STRLEN
320 static int yy_flex_strlen (yyconst char * ,yyscan_t yyscanner);
321 #endif
322
323 #ifndef YY_NO_INPUT
324
325 #endif
326
327 /* Amount of stuff to slurp up with each read. */
328 #ifndef YY_READ_BUF_SIZE
329 #define YY_READ_BUF_SIZE 8192
330 #endif
331
332 /* Number of entries by which start-condition stack grows. */
333 #ifndef YY_START_STACK_INCR
334 #define YY_START_STACK_INCR 25
335 #endif
336
337 /* Default declaration of generated scanner - a define so the user can
338 * easily add parameters.
339 */
340 #ifndef YY_DECL
341 #define YY_DECL_IS_OURS 1
342
343 extern int config_lex \
344 (YYSTYPE * yylval_param ,yyscan_t yyscanner);
345
346 #define YY_DECL int config_lex \
347 (YYSTYPE * yylval_param , yyscan_t yyscanner)
348 #endif /* !YY_DECL */
349
350 /* yy_get_previous_state - get the state just before the EOB char was reached */
351
352 #undef YY_NEW_FILE
353 #undef YY_FLUSH_BUFFER
354 #undef yy_set_bol
355 #undef yy_new_buffer
356 #undef yy_set_interactive
357 #undef YY_DO_BEFORE_ACTION
358
359 #ifdef YY_DECL_IS_OURS
360 #undef YY_DECL_IS_OURS
361 #undef YY_DECL
362 #endif
363
364 #line 223 "libmemcached/csl/scanner.l"
365
366
367 #line 368 "libmemcached/csl/scanner.h"
368 #undef config_IN_HEADER
369 #endif /* config_HEADER_H */