Reid Spencer | e7c3c60 | 2006-11-30 06:36:44 +0000 | [diff] [blame] | 1 | #define yy_create_buffer Upgrade_create_buffer |
| 2 | #define yy_delete_buffer Upgrade_delete_buffer |
| 3 | #define yy_scan_buffer Upgrade_scan_buffer |
| 4 | #define yy_scan_string Upgrade_scan_string |
| 5 | #define yy_scan_bytes Upgrade_scan_bytes |
| 6 | #define yy_flex_debug Upgrade_flex_debug |
| 7 | #define yy_init_buffer Upgrade_init_buffer |
| 8 | #define yy_flush_buffer Upgrade_flush_buffer |
| 9 | #define yy_load_buffer_state Upgrade_load_buffer_state |
| 10 | #define yy_switch_to_buffer Upgrade_switch_to_buffer |
| 11 | #define yyin Upgradein |
| 12 | #define yyleng Upgradeleng |
| 13 | #define yylex Upgradelex |
| 14 | #define yyout Upgradeout |
| 15 | #define yyrestart Upgraderestart |
| 16 | #define yytext Upgradetext |
| 17 | #define yylineno Upgradelineno |
| 18 | |
| 19 | #line 20 "UpgradeLexer.cpp" |
| 20 | /* A lexical scanner generated by flex*/ |
| 21 | |
| 22 | /* Scanner skeleton version: |
| 23 | * $Header$ |
| 24 | */ |
| 25 | |
| 26 | #define FLEX_SCANNER |
| 27 | #define YY_FLEX_MAJOR_VERSION 2 |
| 28 | #define YY_FLEX_MINOR_VERSION 5 |
| 29 | |
| 30 | #include <stdio.h> |
| 31 | #include <unistd.h> |
| 32 | |
| 33 | |
| 34 | /* cfront 1.2 defines "c_plusplus" instead of "__cplusplus" */ |
| 35 | #ifdef c_plusplus |
| 36 | #ifndef __cplusplus |
| 37 | #define __cplusplus |
| 38 | #endif |
| 39 | #endif |
| 40 | |
| 41 | |
| 42 | #ifdef __cplusplus |
| 43 | |
| 44 | #include <stdlib.h> |
| 45 | |
| 46 | /* Use prototypes in function declarations. */ |
| 47 | #define YY_USE_PROTOS |
| 48 | |
| 49 | /* The "const" storage-class-modifier is valid. */ |
| 50 | #define YY_USE_CONST |
| 51 | |
| 52 | #else /* ! __cplusplus */ |
| 53 | |
| 54 | #if __STDC__ |
| 55 | |
| 56 | #define YY_USE_PROTOS |
| 57 | #define YY_USE_CONST |
| 58 | |
| 59 | #endif /* __STDC__ */ |
| 60 | #endif /* ! __cplusplus */ |
| 61 | |
| 62 | #ifdef __TURBOC__ |
| 63 | #pragma warn -rch |
| 64 | #pragma warn -use |
| 65 | #include <io.h> |
| 66 | #include <stdlib.h> |
| 67 | #define YY_USE_CONST |
| 68 | #define YY_USE_PROTOS |
| 69 | #endif |
| 70 | |
| 71 | #ifdef YY_USE_CONST |
| 72 | #define yyconst const |
| 73 | #else |
| 74 | #define yyconst |
| 75 | #endif |
| 76 | |
| 77 | |
| 78 | #ifdef YY_USE_PROTOS |
| 79 | #define YY_PROTO(proto) proto |
| 80 | #else |
| 81 | #define YY_PROTO(proto) () |
| 82 | #endif |
| 83 | |
| 84 | /* Returned upon end-of-file. */ |
| 85 | #define YY_NULL 0 |
| 86 | |
| 87 | /* Promotes a possibly negative, possibly signed char to an unsigned |
| 88 | * integer for use as an array index. If the signed char is negative, |
| 89 | * we want to instead treat it as an 8-bit unsigned char, hence the |
| 90 | * double cast. |
| 91 | */ |
| 92 | #define YY_SC_TO_UI(c) ((unsigned int) (unsigned char) c) |
| 93 | |
| 94 | /* Enter a start condition. This macro really ought to take a parameter, |
| 95 | * but we do it the disgusting crufty way forced on us by the ()-less |
| 96 | * definition of BEGIN. |
| 97 | */ |
| 98 | #define BEGIN yy_start = 1 + 2 * |
| 99 | |
| 100 | /* Translate the current start state into a value that can be later handed |
| 101 | * to BEGIN to return to the state. The YYSTATE alias is for lex |
| 102 | * compatibility. |
| 103 | */ |
| 104 | #define YY_START ((yy_start - 1) / 2) |
| 105 | #define YYSTATE YY_START |
| 106 | |
| 107 | /* Action number for EOF rule of a given start state. */ |
| 108 | #define YY_STATE_EOF(state) (YY_END_OF_BUFFER + state + 1) |
| 109 | |
| 110 | /* Special action meaning "start processing a new file". */ |
| 111 | #define YY_NEW_FILE yyrestart( yyin ) |
| 112 | |
| 113 | #define YY_END_OF_BUFFER_CHAR 0 |
| 114 | |
| 115 | /* Size of default input buffer. */ |
| 116 | #define YY_BUF_SIZE (16384*64) |
| 117 | |
| 118 | typedef struct yy_buffer_state *YY_BUFFER_STATE; |
| 119 | |
| 120 | extern int yyleng; |
| 121 | extern FILE *yyin, *yyout; |
| 122 | |
| 123 | #define EOB_ACT_CONTINUE_SCAN 0 |
| 124 | #define EOB_ACT_END_OF_FILE 1 |
| 125 | #define EOB_ACT_LAST_MATCH 2 |
| 126 | |
| 127 | /* The funky do-while in the following #define is used to turn the definition |
| 128 | * int a single C statement (which needs a semi-colon terminator). This |
| 129 | * avoids problems with code like: |
| 130 | * |
| 131 | * if ( condition_holds ) |
| 132 | * yyless( 5 ); |
| 133 | * else |
| 134 | * do_something_else(); |
| 135 | * |
| 136 | * Prior to using the do-while the compiler would get upset at the |
| 137 | * "else" because it interpreted the "if" statement as being all |
| 138 | * done when it reached the ';' after the yyless() call. |
| 139 | */ |
| 140 | |
| 141 | /* Return all but the first 'n' matched characters back to the input stream. */ |
| 142 | |
| 143 | #define yyless(n) \ |
| 144 | do \ |
| 145 | { \ |
| 146 | /* Undo effects of setting up yytext. */ \ |
| 147 | *yy_cp = yy_hold_char; \ |
| 148 | YY_RESTORE_YY_MORE_OFFSET \ |
| 149 | yy_c_buf_p = yy_cp = yy_bp + n - YY_MORE_ADJ; \ |
| 150 | YY_DO_BEFORE_ACTION; /* set up yytext again */ \ |
| 151 | } \ |
| 152 | while ( 0 ) |
| 153 | |
| 154 | #define unput(c) yyunput( c, yytext_ptr ) |
| 155 | |
| 156 | /* Some routines like yy_flex_realloc() are emitted as static but are |
| 157 | not called by all lexers. This generates warnings in some compilers, |
| 158 | notably GCC. Arrange to suppress these. */ |
| 159 | #ifdef __GNUC__ |
| 160 | #define YY_MAY_BE_UNUSED __attribute__((unused)) |
| 161 | #else |
| 162 | #define YY_MAY_BE_UNUSED |
| 163 | #endif |
| 164 | |
| 165 | /* The following is because we cannot portably get our hands on size_t |
| 166 | * (without autoconf's help, which isn't available because we want |
| 167 | * flex-generated scanners to compile on their own). |
| 168 | */ |
| 169 | typedef unsigned int yy_size_t; |
| 170 | |
| 171 | |
| 172 | struct yy_buffer_state |
| 173 | { |
| 174 | FILE *yy_input_file; |
| 175 | |
| 176 | char *yy_ch_buf; /* input buffer */ |
| 177 | char *yy_buf_pos; /* current position in input buffer */ |
| 178 | |
| 179 | /* Size of input buffer in bytes, not including room for EOB |
| 180 | * characters. |
| 181 | */ |
| 182 | yy_size_t yy_buf_size; |
| 183 | |
| 184 | /* Number of characters read into yy_ch_buf, not including EOB |
| 185 | * characters. |
| 186 | */ |
| 187 | int yy_n_chars; |
| 188 | |
| 189 | /* Whether we "own" the buffer - i.e., we know we created it, |
| 190 | * and can realloc() it to grow it, and should free() it to |
| 191 | * delete it. |
| 192 | */ |
| 193 | int yy_is_our_buffer; |
| 194 | |
| 195 | /* Whether this is an "interactive" input source; if so, and |
| 196 | * if we're using stdio for input, then we want to use getc() |
| 197 | * instead of fread(), to make sure we stop fetching input after |
| 198 | * each newline. |
| 199 | */ |
| 200 | int yy_is_interactive; |
| 201 | |
| 202 | /* Whether we're considered to be at the beginning of a line. |
| 203 | * If so, '^' rules will be active on the next match, otherwise |
| 204 | * not. |
| 205 | */ |
| 206 | int yy_at_bol; |
| 207 | |
| 208 | /* Whether to try to fill the input buffer when we reach the |
| 209 | * end of it. |
| 210 | */ |
| 211 | int yy_fill_buffer; |
| 212 | |
| 213 | int yy_buffer_status; |
| 214 | #define YY_BUFFER_NEW 0 |
| 215 | #define YY_BUFFER_NORMAL 1 |
| 216 | /* When an EOF's been seen but there's still some text to process |
| 217 | * then we mark the buffer as YY_EOF_PENDING, to indicate that we |
| 218 | * shouldn't try reading from the input source any more. We might |
| 219 | * still have a bunch of tokens to match, though, because of |
| 220 | * possible backing-up. |
| 221 | * |
| 222 | * When we actually see the EOF, we change the status to "new" |
| 223 | * (via yyrestart()), so that the user can continue scanning by |
| 224 | * just pointing yyin at a new input file. |
| 225 | */ |
| 226 | #define YY_BUFFER_EOF_PENDING 2 |
| 227 | }; |
| 228 | |
| 229 | static YY_BUFFER_STATE yy_current_buffer = 0; |
| 230 | |
| 231 | /* We provide macros for accessing buffer states in case in the |
| 232 | * future we want to put the buffer states in a more general |
| 233 | * "scanner state". |
| 234 | */ |
| 235 | #define YY_CURRENT_BUFFER yy_current_buffer |
| 236 | |
| 237 | |
| 238 | /* yy_hold_char holds the character lost when yytext is formed. */ |
| 239 | static char yy_hold_char; |
| 240 | |
| 241 | static int yy_n_chars; /* number of characters read into yy_ch_buf */ |
| 242 | |
| 243 | |
| 244 | int yyleng; |
| 245 | |
| 246 | /* Points to current character in buffer. */ |
| 247 | static char *yy_c_buf_p = (char *) 0; |
| 248 | static int yy_init = 1; /* whether we need to initialize */ |
| 249 | static int yy_start = 0; /* start state number */ |
| 250 | |
| 251 | /* Flag which is used to allow yywrap()'s to do buffer switches |
| 252 | * instead of setting up a fresh yyin. A bit of a hack ... |
| 253 | */ |
| 254 | static int yy_did_buffer_switch_on_eof; |
| 255 | |
| 256 | void yyrestart YY_PROTO(( FILE *input_file )); |
| 257 | |
| 258 | void yy_switch_to_buffer YY_PROTO(( YY_BUFFER_STATE new_buffer )); |
| 259 | void yy_load_buffer_state YY_PROTO(( void )); |
| 260 | YY_BUFFER_STATE yy_create_buffer YY_PROTO(( FILE *file, int size )); |
| 261 | void yy_delete_buffer YY_PROTO(( YY_BUFFER_STATE b )); |
| 262 | void yy_init_buffer YY_PROTO(( YY_BUFFER_STATE b, FILE *file )); |
| 263 | void yy_flush_buffer YY_PROTO(( YY_BUFFER_STATE b )); |
| 264 | #define YY_FLUSH_BUFFER yy_flush_buffer( yy_current_buffer ) |
| 265 | |
| 266 | YY_BUFFER_STATE yy_scan_buffer YY_PROTO(( char *base, yy_size_t size )); |
| 267 | YY_BUFFER_STATE yy_scan_string YY_PROTO(( yyconst char *yy_str )); |
| 268 | YY_BUFFER_STATE yy_scan_bytes YY_PROTO(( yyconst char *bytes, int len )); |
| 269 | |
| 270 | static void *yy_flex_alloc YY_PROTO(( yy_size_t )); |
| 271 | static inline void *yy_flex_realloc YY_PROTO(( void *, yy_size_t )) YY_MAY_BE_UNUSED; |
| 272 | static void yy_flex_free YY_PROTO(( void * )); |
| 273 | |
| 274 | #define yy_new_buffer yy_create_buffer |
| 275 | |
| 276 | #define yy_set_interactive(is_interactive) \ |
| 277 | { \ |
| 278 | if ( ! yy_current_buffer ) \ |
| 279 | yy_current_buffer = yy_create_buffer( yyin, YY_BUF_SIZE ); \ |
| 280 | yy_current_buffer->yy_is_interactive = is_interactive; \ |
| 281 | } |
| 282 | |
| 283 | #define yy_set_bol(at_bol) \ |
| 284 | { \ |
| 285 | if ( ! yy_current_buffer ) \ |
| 286 | yy_current_buffer = yy_create_buffer( yyin, YY_BUF_SIZE ); \ |
| 287 | yy_current_buffer->yy_at_bol = at_bol; \ |
| 288 | } |
| 289 | |
| 290 | #define YY_AT_BOL() (yy_current_buffer->yy_at_bol) |
| 291 | |
| 292 | |
| 293 | #define YY_USES_REJECT |
| 294 | |
| 295 | #define yywrap() 1 |
| 296 | #define YY_SKIP_YYWRAP |
| 297 | typedef unsigned char YY_CHAR; |
| 298 | FILE *yyin = (FILE *) 0, *yyout = (FILE *) 0; |
| 299 | typedef int yy_state_type; |
| 300 | extern int yylineno; |
| 301 | int yylineno = 1; |
| 302 | extern char *yytext; |
| 303 | #define yytext_ptr yytext |
| 304 | |
| 305 | static yy_state_type yy_get_previous_state YY_PROTO(( void )); |
| 306 | static yy_state_type yy_try_NUL_trans YY_PROTO(( yy_state_type current_state )); |
| 307 | static int yy_get_next_buffer YY_PROTO(( void )); |
| 308 | static void yy_fatal_error YY_PROTO(( yyconst char msg[] )); |
| 309 | |
| 310 | /* Done after the current pattern has been matched and before the |
| 311 | * corresponding action - sets up yytext. |
| 312 | */ |
| 313 | #define YY_DO_BEFORE_ACTION \ |
| 314 | yytext_ptr = yy_bp; \ |
| 315 | yyleng = (int) (yy_cp - yy_bp); \ |
| 316 | yy_hold_char = *yy_cp; \ |
| 317 | *yy_cp = '\0'; \ |
| 318 | yy_c_buf_p = yy_cp; |
| 319 | |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 320 | #define YY_NUM_RULES 156 |
| 321 | #define YY_END_OF_BUFFER 157 |
| 322 | static yyconst short int yy_acclist[234] = |
Reid Spencer | e7c3c60 | 2006-11-30 06:36:44 +0000 | [diff] [blame] | 323 | { 0, |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 324 | 157, 155, 156, 154, 155, 156, 154, 156, 155, 156, |
| 325 | 155, 156, 155, 156, 155, 156, 155, 156, 155, 156, |
| 326 | 147, 155, 156, 147, 155, 156, 1, 155, 156, 155, |
| 327 | 156, 155, 156, 155, 156, 155, 156, 155, 156, 155, |
| 328 | 156, 155, 156, 155, 156, 155, 156, 155, 156, 155, |
| 329 | 156, 155, 156, 155, 156, 155, 156, 155, 156, 155, |
| 330 | 156, 155, 156, 155, 156, 155, 156, 155, 156, 155, |
| 331 | 156, 146, 144, 143, 143, 150, 148, 152, 147, 1, |
| 332 | 129, 41, 85, 86, 75, 23, 146, 143, 143, 151, |
| 333 | 152, 20, 152, 153, 63, 74, 39, 34, 42, 66, |
Reid Spencer | e7c3c60 | 2006-11-30 06:36:44 +0000 | [diff] [blame] | 334 | |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 335 | 3, 52, 65, 25, 95, 100, 98, 99, 97, 96, |
| 336 | 101, 105, 70, 128, 90, 88, 121, 122, 89, 87, |
| 337 | 64, 103, 94, 92, 93, 91, 104, 102, 76, 145, |
| 338 | 152, 152, 124, 57, 106, 107, 84, 69, 136, 73, |
| 339 | 83, 137, 54, 123, 22, 149, 68, 110, 72, 26, |
| 340 | 4, 61, 67, 53, 71, 56, 11, 109, 152, 36, |
| 341 | 2, 5, 58, 112, 60, 48, 78, 82, 80, 81, |
| 342 | 79, 77, 50, 138, 108, 49, 55, 21, 126, 135, |
| 343 | 45, 59, 30, 24, 44, 114, 113, 7, 131, 33, |
| 344 | 134, 38, 62, 120, 116, 130, 27, 28, 115, 132, |
Reid Spencer | e7c3c60 | 2006-11-30 06:36:44 +0000 | [diff] [blame] | 345 | |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 346 | 51, 127, 125, 119, 43, 6, 29, 111, 37, 8, |
| 347 | 17, 9, 118, 10, 117, 35, 12, 14, 13, 32, |
| 348 | 40, 15, 31, 133, 139, 141, 142, 16, 46, 140, |
| 349 | 18, 47, 19 |
Reid Spencer | e7c3c60 | 2006-11-30 06:36:44 +0000 | [diff] [blame] | 350 | } ; |
| 351 | |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 352 | static yyconst short int yy_accept[611] = |
Reid Spencer | e7c3c60 | 2006-11-30 06:36:44 +0000 | [diff] [blame] | 353 | { 0, |
| 354 | 1, 1, 1, 2, 4, 7, 9, 11, 13, 15, |
| 355 | 17, 19, 21, 24, 27, 30, 32, 34, 36, 38, |
| 356 | 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, |
| 357 | 60, 62, 64, 66, 68, 70, 72, 72, 73, 73, |
| 358 | 74, 75, 76, 77, 77, 78, 78, 79, 80, 80, |
| 359 | 81, 81, 81, 81, 81, 81, 81, 81, 81, 82, |
| 360 | 82, 83, 83, 83, 83, 83, 83, 83, 83, 83, |
Reid Spencer | e7c3c60 | 2006-11-30 06:36:44 +0000 | [diff] [blame] | 361 | 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 362 | 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, |
| 363 | 85, 85, 85, 85, 85, 85, 85, 85, 86, 86, |
Reid Spencer | e7c3c60 | 2006-11-30 06:36:44 +0000 | [diff] [blame] | 364 | |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 365 | 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, |
| 366 | 86, 86, 86, 86, 86, 86, 87, 87, 87, 87, |
| 367 | 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, |
| 368 | 87, 87, 87, 87, 88, 89, 91, 92, 93, 94, |
| 369 | 94, 95, 96, 96, 96, 97, 97, 97, 98, 98, |
| 370 | 99, 99, 99, 99, 99, 100, 100, 100, 100, 100, |
| 371 | 100, 100, 101, 101, 101, 102, 102, 102, 102, 102, |
| 372 | 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, |
| 373 | 102, 103, 103, 103, 103, 103, 103, 103, 103, 103, |
| 374 | 103, 104, 105, 105, 106, 107, 108, 109, 110, 111, |
Reid Spencer | e7c3c60 | 2006-11-30 06:36:44 +0000 | [diff] [blame] | 375 | |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 376 | 111, 112, 113, 113, 113, 114, 115, 115, 115, 115, |
| 377 | 115, 115, 115, 115, 116, 117, 118, 118, 119, 119, |
| 378 | 119, 119, 120, 121, 121, 121, 122, 122, 122, 122, |
| 379 | 122, 122, 122, 122, 122, 123, 124, 125, 125, 125, |
| 380 | 126, 126, 127, 127, 128, 128, 129, 129, 129, 129, |
| 381 | 129, 129, 129, 129, 129, 129, 129, 129, 130, 130, |
| 382 | 130, 131, 132, 132, 132, 132, 133, 133, 133, 133, |
| 383 | 134, 134, 134, 135, 136, 137, 137, 137, 137, 137, |
| 384 | 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, |
| 385 | 137, 138, 139, 139, 139, 139, 139, 140, 141, 141, |
Reid Spencer | e7c3c60 | 2006-11-30 06:36:44 +0000 | [diff] [blame] | 386 | |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 387 | 141, 142, 142, 142, 142, 142, 142, 142, 142, 142, |
| 388 | 143, 144, 145, 145, 145, 146, 146, 146, 146, 147, |
| 389 | 147, 148, 148, 148, 148, 148, 148, 148, 149, 149, |
| 390 | 149, 149, 149, 150, 150, 150, 151, 151, 151, 152, |
| 391 | 152, 153, 153, 154, 155, 155, 155, 155, 155, 155, |
| 392 | 155, 156, 156, 156, 156, 156, 157, 157, 158, 158, |
| 393 | 158, 159, 160, 161, 161, 161, 162, 162, 162, 162, |
| 394 | 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, |
| 395 | 162, 163, 163, 164, 165, 165, 165, 165, 165, 165, |
| 396 | 165, 165, 165, 165, 165, 166, 166, 166, 166, 166, |
Reid Spencer | e7c3c60 | 2006-11-30 06:36:44 +0000 | [diff] [blame] | 397 | |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 398 | 166, 166, 166, 167, 167, 167, 168, 169, 170, 171, |
| 399 | 172, 173, 174, 174, 174, 174, 175, 175, 175, 175, |
| 400 | 176, 177, 177, 178, 179, 179, 179, 179, 179, 179, |
| 401 | 180, 180, 180, 180, 180, 180, 181, 181, 181, 182, |
| 402 | 182, 182, 182, 182, 182, 182, 182, 183, 184, 185, |
| 403 | 185, 185, 186, 187, 188, 188, 188, 189, 189, 189, |
| 404 | 189, 189, 190, 190, 191, 192, 193, 194, 194, 194, |
| 405 | 194, 195, 195, 195, 196, 197, 198, 199, 200, 200, |
| 406 | 200, 201, 202, 203, 204, 204, 204, 204, 204, 204, |
| 407 | 205, 205, 206, 206, 207, 208, 208, 208, 208, 208, |
Reid Spencer | e7c3c60 | 2006-11-30 06:36:44 +0000 | [diff] [blame] | 408 | |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 409 | 208, 209, 209, 209, 209, 209, 209, 209, 209, 209, |
| 410 | 210, 210, 210, 210, 210, 210, 210, 210, 210, 210, |
| 411 | 211, 211, 211, 211, 211, 212, 212, 212, 212, 212, |
| 412 | 213, 214, 215, 215, 216, 216, 216, 216, 216, 217, |
| 413 | 217, 217, 217, 218, 218, 219, 220, 220, 220, 220, |
| 414 | 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, |
Reid Spencer | 71d2ec9 | 2006-12-31 06:02:26 +0000 | [diff] [blame] | 415 | 221, 221, 221, 221, 221, 221, 221, 221, 222, 222, |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 416 | 222, 222, 222, 222, 223, 223, 223, 223, 223, 224, |
| 417 | 224, 224, 225, 225, 225, 225, 225, 225, 225, 225, |
| 418 | 225, 225, 225, 225, 225, 225, 226, 226, 227, 228, |
Reid Spencer | 229e936 | 2006-12-02 22:14:11 +0000 | [diff] [blame] | 419 | |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 420 | 229, 229, 230, 230, 231, 232, 233, 233, 234, 234 |
Reid Spencer | e7c3c60 | 2006-11-30 06:36:44 +0000 | [diff] [blame] | 421 | } ; |
| 422 | |
| 423 | static yyconst int yy_ec[256] = |
| 424 | { 0, |
| 425 | 1, 1, 1, 1, 1, 1, 1, 1, 2, 3, |
| 426 | 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, |
| 427 | 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, |
| 428 | 1, 2, 1, 4, 1, 5, 6, 1, 1, 1, |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 429 | 1, 1, 7, 1, 8, 9, 1, 10, 11, 11, |
| 430 | 11, 11, 11, 12, 11, 13, 11, 14, 15, 1, |
| 431 | 1, 1, 1, 1, 16, 16, 16, 16, 17, 16, |
Reid Spencer | e7c3c60 | 2006-11-30 06:36:44 +0000 | [diff] [blame] | 432 | 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, |
| 433 | 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 434 | 1, 1, 1, 1, 18, 1, 19, 20, 21, 22, |
Reid Spencer | e7c3c60 | 2006-11-30 06:36:44 +0000 | [diff] [blame] | 435 | |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 436 | 23, 24, 25, 26, 27, 5, 28, 29, 30, 31, |
| 437 | 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, |
| 438 | 42, 43, 1, 1, 1, 1, 1, 1, 1, 1, |
Reid Spencer | e7c3c60 | 2006-11-30 06:36:44 +0000 | [diff] [blame] | 439 | 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, |
| 440 | 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, |
| 441 | 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, |
| 442 | 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, |
| 443 | 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, |
| 444 | 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, |
| 445 | 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, |
| 446 | |
| 447 | 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, |
| 448 | 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, |
| 449 | 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, |
| 450 | 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, |
| 451 | 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, |
| 452 | 1, 1, 1, 1, 1 |
| 453 | } ; |
| 454 | |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 455 | static yyconst int yy_meta[44] = |
Reid Spencer | e7c3c60 | 2006-11-30 06:36:44 +0000 | [diff] [blame] | 456 | { 0, |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 457 | 1, 1, 2, 1, 3, 1, 1, 3, 3, 3, |
| 458 | 3, 3, 3, 4, 1, 3, 3, 3, 3, 3, |
Reid Spencer | e7c3c60 | 2006-11-30 06:36:44 +0000 | [diff] [blame] | 459 | 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 460 | 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, |
| 461 | 3, 3, 3 |
Reid Spencer | e7c3c60 | 2006-11-30 06:36:44 +0000 | [diff] [blame] | 462 | } ; |
| 463 | |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 464 | static yyconst short int yy_base[615] = |
Reid Spencer | e7c3c60 | 2006-11-30 06:36:44 +0000 | [diff] [blame] | 465 | { 0, |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 466 | 0, 0, 1308, 1309, 1309, 1309, 1303, 1292, 36, 40, |
| 467 | 44, 50, 56, 62, 0, 63, 66, 81, 89, 47, |
| 468 | 108, 91, 105, 96, 119, 117, 144, 128, 68, 170, |
| 469 | 169, 202, 92, 111, 131, 125, 1301, 1309, 1290, 1309, |
| 470 | 0, 207, 229, 234, 239, 70, 244, 259, 264, 0, |
| 471 | 139, 145, 142, 76, 136, 156, 157, 31, 1289, 162, |
| 472 | 164, 192, 48, 172, 268, 175, 173, 221, 212, 1288, |
| 473 | 276, 278, 138, 186, 72, 279, 277, 280, 289, 249, |
| 474 | 282, 290, 216, 281, 291, 189, 294, 284, 295, 1287, |
| 475 | 297, 306, 73, 305, 316, 317, 246, 311, 318, 322, |
Reid Spencer | e7c3c60 | 2006-11-30 06:36:44 +0000 | [diff] [blame] | 476 | |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 477 | 323, 324, 327, 329, 330, 338, 332, 348, 350, 333, |
| 478 | 337, 334, 362, 336, 364, 1286, 367, 351, 359, 371, |
| 479 | 374, 379, 375, 381, 405, 386, 389, 403, 396, 378, |
| 480 | 250, 376, 400, 1285, 0, 436, 440, 1284, 454, 471, |
| 481 | 0, 1283, 382, 406, 1282, 410, 425, 1281, 415, 1280, |
| 482 | 422, 430, 440, 456, 1279, 458, 459, 473, 412, 447, |
| 483 | 460, 1278, 474, 442, 472, 477, 480, 476, 461, 478, |
| 484 | 416, 488, 490, 491, 494, 495, 496, 492, 499, 506, |
| 485 | 507, 500, 513, 505, 508, 520, 521, 523, 524, 525, |
| 486 | 1277, 1276, 526, 1275, 1274, 1273, 1272, 1271, 1270, 527, |
Reid Spencer | e7c3c60 | 2006-11-30 06:36:44 +0000 | [diff] [blame] | 487 | |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 488 | 1269, 1268, 529, 533, 1267, 1266, 561, 538, 537, 542, |
| 489 | 534, 572, 550, 1265, 1264, 1263, 553, 1262, 535, 575, |
| 490 | 536, 1261, 1260, 576, 577, 1259, 555, 579, 540, 580, |
| 491 | 586, 582, 585, 588, 1258, 1257, 1256, 593, 596, 1255, |
| 492 | 590, 1254, 597, 1253, 600, 1252, 601, 602, 604, 605, |
| 493 | 619, 609, 612, 618, 622, 611, 214, 1251, 628, 629, |
| 494 | 1309, 635, 643, 651, 657, 662, 651, 663, 664, 1250, |
| 495 | 665, 666, 1249, 1248, 1247, 667, 669, 672, 673, 675, |
| 496 | 676, 677, 678, 683, 679, 686, 685, 691, 690, 693, |
| 497 | 1246, 1245, 687, 697, 701, 702, 1244, 1243, 703, 707, |
Reid Spencer | e7c3c60 | 2006-11-30 06:36:44 +0000 | [diff] [blame] | 498 | |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 499 | 1242, 708, 709, 711, 713, 714, 719, 715, 721, 1241, |
| 500 | 1240, 1239, 722, 724, 1238, 727, 729, 735, 0, 737, |
| 501 | 1237, 741, 738, 742, 747, 748, 749, 1236, 743, 635, |
| 502 | 750, 755, 1235, 760, 761, 1234, 763, 764, 1233, 767, |
| 503 | 1232, 773, 1231, 1230, 775, 776, 778, 777, 781, 780, |
| 504 | 1229, 783, 784, 789, 791, 1228, 792, 1227, 798, 793, |
| 505 | 1226, 813, 1225, 794, 795, 1224, 801, 807, 816, 817, |
| 506 | 822, 813, 796, 819, 825, 826, 828, 829, 830, 832, |
| 507 | 1223, 833, 1222, 1221, 836, 837, 831, 842, 841, 843, |
| 508 | 846, 853, 854, 855, 1220, 857, 858, 861, 862, 863, |
Reid Spencer | e7c3c60 | 2006-11-30 06:36:44 +0000 | [diff] [blame] | 509 | |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 510 | 866, 865, 1219, 876, 860, 1218, 1217, 1216, 1215, 1214, |
| 511 | 1213, 1212, 877, 879, 880, 1211, 881, 882, 886, 1210, |
| 512 | 1209, 884, 1208, 1207, 885, 890, 888, 887, 891, 1206, |
| 513 | 898, 900, 901, 904, 907, 1205, 909, 911, 1204, 912, |
| 514 | 916, 716, 917, 914, 915, 919, 1203, 1202, 1201, 935, |
| 515 | 918, 1200, 1199, 1198, 925, 928, 1197, 938, 942, 943, |
| 516 | 930, 1196, 945, 1195, 1194, 1193, 1192, 946, 949, 954, |
| 517 | 1191, 950, 955, 1190, 1189, 1188, 1187, 1186, 956, 958, |
| 518 | 1185, 1184, 1183, 1182, 957, 960, 968, 961, 962, 1181, |
| 519 | 963, 1180, 973, 1179, 1178, 964, 975, 977, 978, 980, |
Reid Spencer | e7c3c60 | 2006-11-30 06:36:44 +0000 | [diff] [blame] | 520 | |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 521 | 1177, 981, 983, 984, 987, 988, 992, 994, 995, 1176, |
| 522 | 997, 998, 1005, 1006, 1004, 1008, 1012, 1014, 920, 1175, |
| 523 | 1015, 1017, 1020, 1021, 1174, 1023, 1024, 1025, 1026, 1171, |
| 524 | 1162, 1160, 1029, 1159, 1027, 1044, 1032, 1028, 1158, 1045, |
| 525 | 1049, 1033, 1157, 1050, 1155, 1154, 1053, 1055, 1056, 1057, |
| 526 | 1059, 1060, 1061, 1063, 1065, 1066, 1067, 1069, 1071, 1152, |
| 527 | 1074, 1077, 1080, 1082, 1083, 1085, 1087, 1148, 1090, 1091, |
| 528 | 1096, 1097, 1098, 1147, 1095, 1101, 1102, 1103, 1145, 1107, |
| 529 | 1108, 1140, 1106, 1109, 1114, 1118, 1122, 1123, 1126, 1129, |
| 530 | 1128, 1130, 1131, 1132, 1133, 1070, 1134, 643, 552, 548, |
Reid Spencer | 229e936 | 2006-12-02 22:14:11 +0000 | [diff] [blame] | 531 | |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 532 | 1139, 444, 1144, 360, 285, 252, 1142, 133, 1309, 1177, |
| 533 | 1179, 143, 1183, 57 |
Reid Spencer | e7c3c60 | 2006-11-30 06:36:44 +0000 | [diff] [blame] | 534 | } ; |
| 535 | |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 536 | static yyconst short int yy_def[615] = |
Reid Spencer | e7c3c60 | 2006-11-30 06:36:44 +0000 | [diff] [blame] | 537 | { 0, |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 538 | 609, 1, 609, 609, 609, 609, 610, 611, 612, 609, |
| 539 | 611, 611, 611, 611, 613, 611, 611, 611, 611, 611, |
| 540 | 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, |
| 541 | 611, 611, 611, 611, 611, 611, 610, 609, 611, 609, |
| 542 | 614, 614, 609, 609, 611, 611, 611, 611, 611, 613, |
| 543 | 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, |
| 544 | 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, |
| 545 | 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, |
| 546 | 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, |
| 547 | 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, |
Reid Spencer | e7c3c60 | 2006-11-30 06:36:44 +0000 | [diff] [blame] | 548 | |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 549 | 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, |
| 550 | 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, |
| 551 | 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, |
| 552 | 611, 611, 611, 609, 614, 614, 609, 611, 611, 611, |
| 553 | 49, 611, 611, 611, 611, 611, 611, 611, 611, 611, |
| 554 | 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, |
| 555 | 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, |
| 556 | 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, |
| 557 | 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, |
| 558 | 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, |
Reid Spencer | e7c3c60 | 2006-11-30 06:36:44 +0000 | [diff] [blame] | 559 | |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 560 | 611, 611, 611, 611, 611, 611, 49, 611, 611, 611, |
| 561 | 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, |
| 562 | 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, |
| 563 | 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, |
| 564 | 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, |
| 565 | 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, |
| 566 | 609, 609, 609, 609, 611, 611, 611, 611, 611, 611, |
| 567 | 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, |
| 568 | 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, |
| 569 | 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, |
Reid Spencer | e7c3c60 | 2006-11-30 06:36:44 +0000 | [diff] [blame] | 570 | |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 571 | 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, |
| 572 | 611, 611, 611, 611, 611, 611, 611, 611, 207, 611, |
| 573 | 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, |
| 574 | 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, |
| 575 | 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, |
| 576 | 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, |
| 577 | 611, 609, 611, 611, 611, 611, 611, 611, 611, 611, |
| 578 | 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, |
| 579 | 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, |
| 580 | 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, |
Reid Spencer | e7c3c60 | 2006-11-30 06:36:44 +0000 | [diff] [blame] | 581 | |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 582 | 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, |
| 583 | 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, |
| 584 | 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, |
| 585 | 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, |
| 586 | 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, |
| 587 | 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, |
| 588 | 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, |
| 589 | 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, |
| 590 | 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, |
| 591 | 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, |
Reid Spencer | e7c3c60 | 2006-11-30 06:36:44 +0000 | [diff] [blame] | 592 | |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 593 | 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, |
| 594 | 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, |
| 595 | 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, |
| 596 | 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, |
| 597 | 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, |
| 598 | 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, |
| 599 | 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, |
| 600 | 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, |
| 601 | 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, |
| 602 | 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, |
Reid Spencer | 229e936 | 2006-12-02 22:14:11 +0000 | [diff] [blame] | 603 | |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 604 | 611, 611, 611, 611, 611, 611, 611, 611, 0, 609, |
| 605 | 609, 609, 609, 609 |
Reid Spencer | e7c3c60 | 2006-11-30 06:36:44 +0000 | [diff] [blame] | 606 | } ; |
| 607 | |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 608 | static yyconst short int yy_nxt[1353] = |
Reid Spencer | e7c3c60 | 2006-11-30 06:36:44 +0000 | [diff] [blame] | 609 | { 0, |
| 610 | 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 611 | 14, 14, 14, 4, 15, 8, 8, 8, 16, 17, |
| 612 | 18, 19, 20, 21, 22, 8, 23, 8, 24, 25, |
| 613 | 26, 27, 28, 8, 29, 30, 31, 32, 33, 34, |
| 614 | 35, 8, 36, 42, 40, 43, 43, 43, 43, 44, |
| 615 | 44, 44, 44, 45, 45, 45, 45, 40, 46, 135, |
| 616 | 40, 40, 152, 40, 47, 48, 48, 48, 48, 40, |
| 617 | 47, 48, 48, 48, 48, 40, 40, 69, 138, 40, |
| 618 | 70, 40, 158, 40, 51, 40, 40, 71, 56, 40, |
| 619 | 102, 52, 57, 53, 40, 54, 49, 58, 55, 60, |
Reid Spencer | e7c3c60 | 2006-11-30 06:36:44 +0000 | [diff] [blame] | 620 | |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 621 | 59, 61, 40, 172, 40, 40, 194, 64, 146, 40, |
| 622 | 128, 65, 62, 78, 83, 66, 63, 67, 40, 79, |
| 623 | 68, 40, 84, 129, 40, 80, 72, 85, 73, 74, |
| 624 | 40, 86, 40, 130, 81, 82, 75, 87, 40, 90, |
| 625 | 76, 40, 77, 131, 40, 41, 40, 133, 91, 40, |
| 626 | 88, 40, 40, 99, 92, 40, 89, 40, 40, 100, |
| 627 | 142, 147, 132, 145, 101, 148, 93, 170, 94, 40, |
| 628 | 40, 143, 95, 144, 96, 40, 97, 40, 98, 103, |
| 629 | 149, 150, 40, 40, 155, 40, 40, 115, 40, 104, |
| 630 | 153, 105, 106, 151, 107, 108, 109, 154, 110, 40, |
Reid Spencer | e7c3c60 | 2006-11-30 06:36:44 +0000 | [diff] [blame] | 631 | |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 632 | 116, 163, 40, 117, 111, 40, 112, 113, 159, 114, |
| 633 | 118, 103, 171, 162, 188, 40, 136, 136, 136, 136, |
| 634 | 156, 119, 157, 120, 121, 40, 122, 40, 123, 40, |
| 635 | 124, 359, 125, 165, 40, 183, 126, 127, 43, 43, |
| 636 | 43, 43, 137, 44, 44, 44, 44, 47, 45, 45, |
| 637 | 45, 45, 40, 139, 139, 139, 139, 40, 164, 40, |
| 638 | 140, 257, 40, 40, 200, 40, 140, 47, 48, 48, |
| 639 | 48, 48, 40, 141, 141, 141, 141, 40, 178, 141, |
| 640 | 141, 40, 141, 141, 141, 141, 141, 141, 160, 40, |
| 641 | 40, 40, 40, 40, 40, 40, 166, 40, 40, 175, |
Reid Spencer | e7c3c60 | 2006-11-30 06:36:44 +0000 | [diff] [blame] | 642 | |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 643 | 161, 173, 40, 40, 40, 190, 168, 40, 40, 186, |
| 644 | 40, 184, 167, 169, 179, 174, 176, 185, 40, 40, |
| 645 | 177, 187, 189, 191, 40, 180, 181, 195, 182, 40, |
| 646 | 40, 40, 201, 192, 193, 40, 40, 40, 197, 199, |
| 647 | 40, 196, 40, 40, 202, 40, 40, 40, 203, 40, |
| 648 | 40, 40, 198, 205, 214, 222, 209, 204, 210, 224, |
| 649 | 206, 40, 227, 40, 40, 225, 211, 207, 215, 223, |
| 650 | 208, 220, 40, 40, 212, 40, 216, 40, 213, 217, |
| 651 | 40, 226, 218, 232, 40, 219, 221, 40, 40, 40, |
| 652 | 228, 40, 40, 230, 40, 40, 256, 234, 229, 40, |
Reid Spencer | e7c3c60 | 2006-11-30 06:36:44 +0000 | [diff] [blame] | 653 | |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 654 | 233, 236, 40, 240, 231, 238, 267, 235, 249, 40, |
| 655 | 258, 239, 241, 40, 250, 237, 40, 242, 40, 40, |
| 656 | 251, 252, 254, 40, 255, 40, 243, 244, 40, 40, |
| 657 | 279, 245, 269, 253, 259, 40, 246, 268, 40, 247, |
| 658 | 260, 271, 272, 40, 248, 136, 136, 136, 136, 262, |
| 659 | 262, 262, 262, 40, 292, 40, 263, 40, 273, 270, |
| 660 | 40, 284, 263, 139, 139, 139, 139, 40, 274, 40, |
| 661 | 140, 40, 40, 40, 40, 280, 140, 264, 265, 276, |
| 662 | 266, 266, 266, 266, 40, 40, 40, 40, 281, 40, |
| 663 | 40, 40, 275, 40, 277, 278, 282, 290, 285, 286, |
Reid Spencer | e7c3c60 | 2006-11-30 06:36:44 +0000 | [diff] [blame] | 664 | |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 665 | 283, 40, 287, 40, 40, 40, 293, 40, 40, 40, |
| 666 | 291, 289, 40, 40, 288, 300, 297, 299, 40, 40, |
| 667 | 40, 40, 295, 298, 301, 296, 40, 302, 303, 304, |
| 668 | 294, 306, 308, 40, 40, 307, 40, 40, 40, 40, |
| 669 | 40, 310, 40, 305, 309, 311, 40, 40, 40, 40, |
| 670 | 40, 40, 313, 40, 315, 40, 323, 312, 330, 317, |
| 671 | 316, 40, 314, 40, 337, 40, 40, 332, 40, 318, |
| 672 | 319, 319, 319, 319, 320, 321, 319, 319, 322, 319, |
| 673 | 319, 319, 319, 319, 319, 40, 328, 329, 40, 40, |
| 674 | 40, 335, 40, 40, 324, 40, 325, 331, 40, 40, |
Reid Spencer | e7c3c60 | 2006-11-30 06:36:44 +0000 | [diff] [blame] | 675 | |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 676 | 326, 40, 327, 40, 341, 333, 40, 336, 339, 40, |
| 677 | 40, 334, 338, 40, 40, 40, 340, 40, 40, 347, |
| 678 | 346, 342, 40, 349, 40, 40, 343, 345, 350, 344, |
| 679 | 348, 40, 40, 351, 355, 40, 352, 353, 358, 356, |
| 680 | 357, 40, 40, 354, 262, 262, 262, 262, 40, 264, |
| 681 | 264, 263, 362, 362, 362, 362, 40, 263, 413, 360, |
| 682 | 362, 362, 362, 362, 40, 361, 266, 266, 266, 266, |
| 683 | 40, 266, 266, 266, 266, 40, 40, 40, 40, 40, |
| 684 | 40, 363, 40, 364, 367, 40, 40, 368, 40, 40, |
| 685 | 40, 40, 40, 372, 365, 366, 40, 377, 40, 40, |
Reid Spencer | e7c3c60 | 2006-11-30 06:36:44 +0000 | [diff] [blame] | 686 | |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 687 | 40, 371, 373, 40, 40, 369, 40, 375, 370, 380, |
| 688 | 40, 376, 381, 382, 40, 40, 40, 374, 378, 379, |
| 689 | 40, 40, 40, 383, 40, 389, 40, 40, 40, 40, |
| 690 | 390, 388, 40, 384, 40, 40, 385, 40, 386, 387, |
| 691 | 40, 394, 40, 391, 393, 392, 396, 395, 40, 397, |
| 692 | 40, 40, 399, 398, 40, 40, 40, 493, 405, 403, |
| 693 | 40, 40, 40, 40, 400, 401, 402, 404, 40, 407, |
| 694 | 409, 411, 414, 40, 40, 406, 40, 40, 415, 412, |
| 695 | 40, 417, 416, 408, 410, 418, 40, 420, 40, 40, |
| 696 | 40, 40, 419, 40, 40, 421, 40, 40, 422, 426, |
Reid Spencer | e7c3c60 | 2006-11-30 06:36:44 +0000 | [diff] [blame] | 697 | |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 698 | 423, 424, 40, 425, 40, 40, 40, 40, 40, 40, |
| 699 | 427, 40, 436, 430, 40, 444, 437, 428, 429, 435, |
| 700 | 40, 433, 362, 362, 362, 362, 40, 439, 432, 40, |
| 701 | 40, 431, 40, 434, 440, 40, 438, 441, 40, 40, |
| 702 | 442, 40, 40, 40, 40, 40, 40, 443, 447, 40, |
| 703 | 40, 445, 451, 452, 40, 40, 40, 446, 448, 40, |
| 704 | 450, 455, 453, 454, 456, 449, 40, 40, 40, 457, |
| 705 | 40, 40, 458, 40, 40, 40, 40, 462, 40, 40, |
| 706 | 464, 465, 459, 460, 466, 467, 461, 463, 468, 40, |
| 707 | 40, 469, 40, 40, 40, 40, 471, 40, 40, 40, |
Reid Spencer | 7872074 | 2006-12-02 20:21:22 +0000 | [diff] [blame] | 708 | |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 709 | 40, 40, 473, 40, 40, 472, 475, 470, 477, 481, |
| 710 | 480, 40, 474, 40, 40, 483, 478, 40, 476, 486, |
| 711 | 40, 479, 40, 482, 40, 40, 485, 40, 40, 40, |
| 712 | 40, 40, 40, 40, 484, 489, 492, 488, 40, 494, |
| 713 | 487, 40, 491, 40, 543, 501, 496, 490, 40, 495, |
| 714 | 497, 40, 498, 499, 500, 40, 40, 502, 40, 40, |
| 715 | 503, 505, 40, 40, 504, 507, 506, 40, 40, 40, |
| 716 | 40, 40, 511, 40, 40, 40, 40, 40, 512, 509, |
| 717 | 508, 40, 513, 514, 510, 515, 40, 518, 40, 517, |
| 718 | 40, 40, 519, 40, 40, 516, 40, 40, 522, 520, |
Reid Spencer | 7872074 | 2006-12-02 20:21:22 +0000 | [diff] [blame] | 719 | |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 720 | 40, 40, 526, 527, 521, 40, 525, 40, 40, 523, |
| 721 | 40, 40, 529, 528, 532, 530, 524, 40, 40, 40, |
| 722 | 536, 40, 531, 537, 538, 40, 539, 40, 40, 533, |
| 723 | 40, 534, 541, 40, 40, 535, 40, 40, 40, 40, |
| 724 | 40, 40, 40, 547, 540, 40, 40, 556, 551, 553, |
| 725 | 542, 548, 544, 545, 549, 552, 546, 40, 40, 559, |
| 726 | 555, 550, 40, 40, 554, 557, 40, 558, 40, 40, |
| 727 | 40, 561, 40, 40, 40, 564, 40, 562, 40, 40, |
| 728 | 40, 567, 40, 40, 40, 571, 560, 40, 565, 573, |
| 729 | 40, 569, 563, 40, 570, 40, 40, 572, 40, 568, |
Reid Spencer | 7872074 | 2006-12-02 20:21:22 +0000 | [diff] [blame] | 730 | |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 731 | 40, 574, 566, 40, 40, 578, 575, 579, 40, 40, |
| 732 | 40, 40, 576, 582, 40, 40, 40, 586, 577, 40, |
| 733 | 40, 40, 40, 580, 583, 584, 585, 40, 588, 593, |
| 734 | 591, 40, 581, 589, 592, 40, 40, 587, 590, 40, |
| 735 | 594, 40, 40, 40, 40, 40, 40, 40, 595, 600, |
| 736 | 601, 602, 40, 40, 597, 40, 596, 40, 40, 606, |
| 737 | 40, 40, 598, 599, 605, 40, 607, 40, 40, 604, |
| 738 | 40, 40, 40, 40, 603, 40, 608, 37, 37, 37, |
| 739 | 37, 39, 39, 50, 40, 50, 50, 40, 40, 40, |
Reid Spencer | 229e936 | 2006-12-02 22:14:11 +0000 | [diff] [blame] | 740 | 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, |
| 741 | |
Reid Spencer | 7872074 | 2006-12-02 20:21:22 +0000 | [diff] [blame] | 742 | 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, |
| 743 | 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, |
| 744 | 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, |
| 745 | 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, |
| 746 | 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, |
| 747 | 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, |
Reid Spencer | fcb5df8 | 2006-12-01 22:34:43 +0000 | [diff] [blame] | 748 | 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, |
Reid Spencer | e7c3c60 | 2006-11-30 06:36:44 +0000 | [diff] [blame] | 749 | 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 750 | 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, |
| 751 | 40, 40, 40, 40, 40, 40, 40, 40, 261, 40, |
Reid Spencer | 229e936 | 2006-12-02 22:14:11 +0000 | [diff] [blame] | 752 | |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 753 | 40, 40, 40, 40, 134, 40, 38, 609, 3, 609, |
| 754 | 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, |
| 755 | 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, |
| 756 | 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, |
| 757 | 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, |
| 758 | 609, 609 |
Reid Spencer | e7c3c60 | 2006-11-30 06:36:44 +0000 | [diff] [blame] | 759 | } ; |
| 760 | |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 761 | static yyconst short int yy_chk[1353] = |
Reid Spencer | e7c3c60 | 2006-11-30 06:36:44 +0000 | [diff] [blame] | 762 | { 0, |
| 763 | 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, |
| 764 | 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, |
| 765 | 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, |
| 766 | 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 767 | 1, 1, 1, 9, 58, 9, 9, 9, 9, 10, |
| 768 | 10, 10, 10, 11, 11, 11, 11, 11, 12, 614, |
| 769 | 20, 63, 58, 12, 13, 13, 13, 13, 13, 13, |
| 770 | 14, 14, 14, 14, 14, 14, 16, 20, 46, 17, |
| 771 | 20, 29, 63, 46, 16, 75, 93, 20, 17, 54, |
| 772 | 29, 16, 17, 16, 18, 16, 13, 17, 16, 18, |
Reid Spencer | e7c3c60 | 2006-11-30 06:36:44 +0000 | [diff] [blame] | 773 | |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 774 | 17, 18, 19, 75, 22, 33, 93, 19, 54, 24, |
| 775 | 33, 19, 18, 22, 24, 19, 18, 19, 23, 22, |
| 776 | 19, 21, 24, 33, 34, 23, 21, 24, 21, 21, |
| 777 | 26, 24, 25, 34, 23, 23, 21, 25, 36, 26, |
| 778 | 21, 28, 21, 35, 35, 612, 608, 36, 26, 55, |
| 779 | 25, 73, 51, 28, 26, 53, 25, 27, 52, 28, |
| 780 | 51, 55, 35, 53, 28, 55, 27, 73, 27, 56, |
| 781 | 57, 52, 27, 52, 27, 60, 27, 61, 27, 30, |
| 782 | 56, 57, 31, 30, 61, 64, 67, 31, 66, 30, |
| 783 | 60, 30, 30, 57, 30, 30, 30, 60, 30, 74, |
Reid Spencer | e7c3c60 | 2006-11-30 06:36:44 +0000 | [diff] [blame] | 784 | |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 785 | 31, 67, 86, 31, 30, 62, 30, 30, 64, 30, |
| 786 | 31, 32, 74, 66, 86, 32, 42, 42, 42, 42, |
| 787 | 62, 32, 62, 32, 32, 69, 32, 257, 32, 83, |
| 788 | 32, 257, 32, 69, 68, 83, 32, 32, 43, 43, |
| 789 | 43, 43, 44, 44, 44, 44, 44, 45, 45, 45, |
| 790 | 45, 45, 45, 47, 47, 47, 47, 47, 68, 97, |
| 791 | 47, 131, 80, 131, 97, 606, 47, 48, 48, 48, |
| 792 | 48, 48, 48, 49, 49, 49, 49, 49, 80, 49, |
| 793 | 49, 65, 49, 49, 49, 49, 49, 49, 65, 71, |
| 794 | 77, 72, 76, 78, 84, 81, 71, 88, 605, 77, |
Reid Spencer | e7c3c60 | 2006-11-30 06:36:44 +0000 | [diff] [blame] | 795 | |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 796 | 65, 76, 79, 82, 85, 88, 72, 87, 89, 85, |
| 797 | 91, 84, 71, 72, 81, 76, 78, 84, 94, 92, |
| 798 | 79, 85, 87, 89, 98, 82, 82, 94, 82, 95, |
| 799 | 96, 99, 98, 91, 92, 100, 101, 102, 95, 96, |
| 800 | 103, 94, 104, 105, 99, 107, 110, 112, 100, 114, |
| 801 | 111, 106, 95, 102, 107, 110, 105, 101, 106, 111, |
| 802 | 102, 108, 114, 109, 118, 112, 106, 103, 107, 110, |
| 803 | 104, 109, 119, 604, 106, 113, 108, 115, 106, 108, |
| 804 | 117, 113, 108, 118, 120, 108, 109, 121, 123, 132, |
| 805 | 115, 130, 122, 117, 124, 143, 130, 120, 115, 126, |
Reid Spencer | e7c3c60 | 2006-11-30 06:36:44 +0000 | [diff] [blame] | 806 | |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 807 | 119, 122, 127, 124, 117, 123, 143, 121, 126, 129, |
| 808 | 132, 123, 124, 133, 127, 122, 128, 124, 125, 144, |
| 809 | 128, 128, 129, 146, 129, 159, 125, 125, 149, 171, |
| 810 | 159, 125, 146, 128, 133, 151, 125, 144, 147, 125, |
| 811 | 133, 149, 151, 152, 125, 136, 136, 136, 136, 137, |
| 812 | 137, 137, 137, 153, 171, 164, 137, 602, 152, 147, |
| 813 | 160, 164, 137, 139, 139, 139, 139, 139, 153, 154, |
| 814 | 139, 156, 157, 161, 169, 160, 139, 140, 140, 156, |
| 815 | 140, 140, 140, 140, 140, 165, 158, 163, 161, 168, |
| 816 | 166, 170, 154, 167, 157, 158, 163, 169, 165, 166, |
Reid Spencer | e7c3c60 | 2006-11-30 06:36:44 +0000 | [diff] [blame] | 817 | |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 818 | 163, 172, 167, 173, 174, 178, 172, 175, 176, 177, |
| 819 | 170, 168, 179, 182, 167, 177, 175, 176, 184, 180, |
| 820 | 181, 185, 174, 175, 178, 174, 183, 179, 180, 181, |
| 821 | 173, 182, 184, 186, 187, 183, 188, 189, 190, 193, |
| 822 | 200, 186, 203, 181, 185, 187, 204, 211, 219, 221, |
| 823 | 209, 208, 189, 229, 193, 210, 211, 188, 219, 203, |
| 824 | 200, 600, 190, 213, 229, 599, 217, 221, 227, 204, |
| 825 | 207, 207, 207, 207, 208, 209, 207, 207, 210, 207, |
| 826 | 207, 207, 207, 207, 207, 212, 213, 217, 220, 224, |
| 827 | 225, 227, 228, 230, 212, 232, 212, 220, 233, 231, |
Reid Spencer | e7c3c60 | 2006-11-30 06:36:44 +0000 | [diff] [blame] | 828 | |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 829 | 212, 234, 212, 241, 232, 224, 238, 228, 231, 239, |
| 830 | 243, 225, 230, 245, 247, 248, 231, 249, 250, 243, |
| 831 | 241, 233, 252, 247, 256, 253, 234, 239, 248, 238, |
| 832 | 245, 254, 251, 249, 253, 255, 250, 251, 256, 254, |
| 833 | 255, 259, 260, 252, 262, 262, 262, 262, 330, 263, |
| 834 | 263, 262, 263, 263, 263, 263, 598, 262, 330, 259, |
| 835 | 264, 264, 264, 264, 267, 260, 265, 265, 265, 265, |
| 836 | 265, 266, 266, 266, 266, 266, 268, 269, 271, 272, |
| 837 | 276, 267, 277, 268, 272, 278, 279, 276, 280, 281, |
| 838 | 282, 283, 285, 280, 269, 271, 284, 285, 287, 286, |
Reid Spencer | e7c3c60 | 2006-11-30 06:36:44 +0000 | [diff] [blame] | 839 | |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 840 | 293, 279, 281, 289, 288, 277, 290, 283, 278, 288, |
| 841 | 294, 284, 289, 290, 295, 296, 299, 282, 286, 287, |
| 842 | 300, 302, 303, 293, 304, 300, 305, 306, 308, 442, |
| 843 | 302, 299, 307, 294, 309, 313, 295, 314, 295, 296, |
| 844 | 316, 306, 317, 303, 305, 304, 308, 307, 318, 309, |
| 845 | 320, 323, 314, 313, 322, 324, 329, 442, 323, 320, |
| 846 | 325, 326, 327, 331, 316, 317, 318, 322, 332, 325, |
| 847 | 326, 327, 331, 334, 335, 324, 337, 338, 332, 329, |
| 848 | 340, 335, 334, 325, 326, 337, 342, 340, 345, 346, |
| 849 | 348, 347, 338, 350, 349, 342, 352, 353, 345, 349, |
Reid Spencer | e7c3c60 | 2006-11-30 06:36:44 +0000 | [diff] [blame] | 850 | |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 851 | 346, 347, 354, 348, 355, 357, 360, 364, 365, 373, |
| 852 | 350, 359, 364, 354, 367, 373, 365, 352, 353, 360, |
| 853 | 368, 359, 362, 362, 362, 362, 372, 368, 357, 369, |
| 854 | 370, 355, 374, 359, 369, 371, 367, 370, 375, 376, |
| 855 | 371, 377, 378, 379, 387, 380, 382, 372, 376, 385, |
| 856 | 386, 374, 380, 382, 389, 388, 390, 375, 377, 391, |
| 857 | 379, 387, 385, 386, 388, 378, 392, 393, 394, 389, |
| 858 | 396, 397, 390, 405, 398, 399, 400, 394, 402, 401, |
| 859 | 397, 398, 391, 392, 399, 400, 393, 396, 401, 404, |
| 860 | 413, 402, 414, 415, 417, 418, 405, 422, 425, 419, |
Reid Spencer | e7c3c60 | 2006-11-30 06:36:44 +0000 | [diff] [blame] | 861 | |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 862 | 428, 427, 414, 426, 429, 413, 417, 404, 419, 427, |
| 863 | 426, 431, 415, 432, 433, 429, 422, 434, 418, 433, |
| 864 | 435, 425, 437, 428, 438, 440, 432, 444, 445, 441, |
| 865 | 443, 451, 446, 519, 431, 437, 441, 435, 455, 443, |
| 866 | 434, 456, 440, 461, 519, 455, 445, 438, 450, 444, |
| 867 | 446, 458, 450, 450, 451, 459, 460, 456, 463, 468, |
| 868 | 458, 460, 469, 472, 459, 463, 461, 470, 473, 479, |
| 869 | 485, 480, 472, 486, 488, 489, 491, 496, 473, 469, |
| 870 | 468, 487, 479, 480, 470, 485, 493, 488, 497, 487, |
| 871 | 498, 499, 489, 500, 502, 486, 503, 504, 496, 491, |
Reid Spencer | e7c3c60 | 2006-11-30 06:36:44 +0000 | [diff] [blame] | 872 | |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 873 | 505, 506, 500, 502, 493, 507, 499, 508, 509, 497, |
| 874 | 511, 512, 504, 503, 507, 505, 498, 515, 513, 514, |
| 875 | 512, 516, 506, 513, 514, 517, 515, 518, 521, 508, |
| 876 | 522, 509, 517, 523, 524, 511, 526, 527, 528, 529, |
| 877 | 535, 538, 533, 524, 516, 537, 542, 538, 529, 535, |
| 878 | 518, 526, 521, 522, 527, 533, 523, 536, 540, 542, |
| 879 | 537, 528, 541, 544, 536, 540, 547, 541, 548, 549, |
| 880 | 550, 547, 551, 552, 553, 550, 554, 548, 555, 556, |
| 881 | 557, 553, 558, 596, 559, 557, 544, 561, 551, 559, |
| 882 | 562, 555, 549, 563, 556, 564, 565, 558, 566, 554, |
Reid Spencer | e7c3c60 | 2006-11-30 06:36:44 +0000 | [diff] [blame] | 883 | |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 884 | 567, 561, 552, 569, 570, 565, 562, 566, 575, 571, |
| 885 | 572, 573, 563, 570, 576, 577, 578, 575, 564, 583, |
| 886 | 580, 581, 584, 567, 571, 572, 573, 585, 577, 584, |
| 887 | 581, 586, 569, 578, 583, 587, 588, 576, 580, 589, |
| 888 | 585, 591, 590, 592, 593, 594, 595, 597, 586, 591, |
| 889 | 592, 593, 601, 582, 588, 607, 587, 603, 579, 601, |
| 890 | 574, 568, 589, 590, 597, 560, 603, 546, 545, 595, |
| 891 | 543, 539, 534, 532, 594, 531, 607, 610, 610, 610, |
| 892 | 610, 611, 611, 613, 530, 613, 613, 525, 520, 510, |
| 893 | 501, 495, 494, 492, 490, 484, 483, 482, 481, 478, |
Reid Spencer | fcb5df8 | 2006-12-01 22:34:43 +0000 | [diff] [blame] | 894 | |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 895 | 477, 476, 475, 474, 471, 467, 466, 465, 464, 462, |
| 896 | 457, 454, 453, 452, 449, 448, 447, 439, 436, 430, |
| 897 | 424, 423, 421, 420, 416, 412, 411, 410, 409, 408, |
| 898 | 407, 406, 403, 395, 384, 383, 381, 366, 363, 361, |
| 899 | 358, 356, 351, 344, 343, 341, 339, 336, 333, 328, |
| 900 | 321, 315, 312, 311, 310, 301, 298, 297, 292, 291, |
| 901 | 275, 274, 273, 270, 258, 246, 244, 242, 240, 237, |
| 902 | 236, 235, 226, 223, 222, 218, 216, 215, 214, 206, |
| 903 | 205, 202, 201, 199, 198, 197, 196, 195, 194, 192, |
| 904 | 191, 162, 155, 150, 148, 145, 142, 138, 134, 116, |
Reid Spencer | 229e936 | 2006-12-02 22:14:11 +0000 | [diff] [blame] | 905 | |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 906 | 90, 70, 59, 39, 37, 8, 7, 3, 609, 609, |
| 907 | 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, |
| 908 | 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, |
| 909 | 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, |
| 910 | 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, |
| 911 | 609, 609 |
Reid Spencer | e7c3c60 | 2006-11-30 06:36:44 +0000 | [diff] [blame] | 912 | } ; |
| 913 | |
| 914 | static yy_state_type yy_state_buf[YY_BUF_SIZE + 2], *yy_state_ptr; |
| 915 | static char *yy_full_match; |
| 916 | static int yy_lp; |
| 917 | #define REJECT \ |
| 918 | { \ |
| 919 | *yy_cp = yy_hold_char; /* undo effects of setting up yytext */ \ |
| 920 | yy_cp = yy_full_match; /* restore poss. backed-over text */ \ |
| 921 | ++yy_lp; \ |
| 922 | goto find_rule; \ |
| 923 | } |
| 924 | #define yymore() yymore_used_but_not_detected |
| 925 | #define YY_MORE_ADJ 0 |
| 926 | #define YY_RESTORE_YY_MORE_OFFSET |
| 927 | char *yytext; |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 928 | #line 1 "/proj/llvm/llvm-1/tools/llvm-upgrade/UpgradeLexer.l" |
Reid Spencer | e7c3c60 | 2006-11-30 06:36:44 +0000 | [diff] [blame] | 929 | #define INITIAL 0 |
Reid Spencer | 96839be | 2006-11-30 16:50:26 +0000 | [diff] [blame] | 930 | /*===-- UpgradeLexer.l - Scanner for 1.9 assembly files --------*- C++ -*--===// |
Reid Spencer | e7c3c60 | 2006-11-30 06:36:44 +0000 | [diff] [blame] | 931 | // |
| 932 | // The LLVM Compiler Infrastructure |
| 933 | // |
Reid Spencer | 96839be | 2006-11-30 16:50:26 +0000 | [diff] [blame] | 934 | // This file was developed by Reid Spencer and is distributed under the |
| 935 | // University of Illinois Open Source License. See LICENSE.TXT for details. |
Reid Spencer | e7c3c60 | 2006-11-30 06:36:44 +0000 | [diff] [blame] | 936 | // |
| 937 | //===----------------------------------------------------------------------===// |
| 938 | // |
Reid Spencer | 96839be | 2006-11-30 16:50:26 +0000 | [diff] [blame] | 939 | // This file implements the flex scanner for LLVM 1.9 assembly languages files. |
Reid Spencer | e7c3c60 | 2006-11-30 06:36:44 +0000 | [diff] [blame] | 940 | // |
| 941 | //===----------------------------------------------------------------------===*/ |
| 942 | #define YY_NEVER_INTERACTIVE 1 |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 943 | #line 28 "/proj/llvm/llvm-1/tools/llvm-upgrade/UpgradeLexer.l" |
Reid Spencer | 319a730 | 2007-01-05 17:20:02 +0000 | [diff] [blame] | 944 | #include "UpgradeInternals.h" |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 945 | #include "llvm/Module.h" |
| 946 | #include <list> |
Reid Spencer | e7c3c60 | 2006-11-30 06:36:44 +0000 | [diff] [blame] | 947 | #include "UpgradeParser.h" |
| 948 | #include <cctype> |
| 949 | #include <cstdlib> |
| 950 | |
Reid Spencer | 96839be | 2006-11-30 16:50:26 +0000 | [diff] [blame] | 951 | #define YY_INPUT(buf,result,max_size) \ |
| 952 | { \ |
| 953 | if (LexInput->good() && !LexInput->eof()) { \ |
| 954 | LexInput->read(buf,max_size); \ |
| 955 | result = LexInput->gcount(); \ |
| 956 | } else {\ |
| 957 | result = YY_NULL; \ |
| 958 | } \ |
| 959 | } |
| 960 | |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 961 | #define YY_NEVER_INTERACTIVE 1 |
Reid Spencer | 96839be | 2006-11-30 16:50:26 +0000 | [diff] [blame] | 962 | |
Reid Spencer | e7c3c60 | 2006-11-30 06:36:44 +0000 | [diff] [blame] | 963 | // Construct a token value for a non-obsolete token |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 964 | #define RET_TOK(type, Enum, sym) \ |
| 965 | Upgradelval.type = Enum; \ |
Reid Spencer | e77e35e | 2006-12-01 20:26:20 +0000 | [diff] [blame] | 966 | return sym |
| 967 | |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 968 | #define RET_TY(sym,NewTY,sign) \ |
| 969 | Upgradelval.PrimType.T = NewTY; \ |
| 970 | Upgradelval.PrimType.S = sign; \ |
Reid Spencer | e7c3c60 | 2006-11-30 06:36:44 +0000 | [diff] [blame] | 971 | return sym |
| 972 | |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 973 | namespace llvm { |
| 974 | |
| 975 | // TODO: All of the static identifiers are figured out by the lexer, |
| 976 | // these should be hashed to reduce the lexer size |
| 977 | |
| 978 | // UnEscapeLexed - Run through the specified buffer and change \xx codes to the |
| 979 | // appropriate character. If AllowNull is set to false, a \00 value will cause |
| 980 | // an exception to be thrown. |
| 981 | // |
| 982 | // If AllowNull is set to true, the return value of the function points to the |
| 983 | // last character of the string in memory. |
| 984 | // |
| 985 | char *UnEscapeLexed(char *Buffer, bool AllowNull) { |
| 986 | char *BOut = Buffer; |
| 987 | for (char *BIn = Buffer; *BIn; ) { |
| 988 | if (BIn[0] == '\\' && isxdigit(BIn[1]) && isxdigit(BIn[2])) { |
| 989 | char Tmp = BIn[3]; BIn[3] = 0; // Terminate string |
| 990 | *BOut = (char)strtol(BIn+1, 0, 16); // Convert to number |
| 991 | if (!AllowNull && !*BOut) |
| 992 | error("String literal cannot accept \\00 escape!"); |
| 993 | |
| 994 | BIn[3] = Tmp; // Restore character |
| 995 | BIn += 3; // Skip over handled chars |
| 996 | ++BOut; |
| 997 | } else { |
| 998 | *BOut++ = *BIn++; |
| 999 | } |
| 1000 | } |
| 1001 | |
| 1002 | return BOut; |
| 1003 | } |
| 1004 | |
| 1005 | // atoull - Convert an ascii string of decimal digits into the unsigned long |
| 1006 | // long representation... this does not have to do input error checking, |
| 1007 | // because we know that the input will be matched by a suitable regex... |
| 1008 | // |
| 1009 | static uint64_t atoull(const char *Buffer) { |
| 1010 | uint64_t Result = 0; |
| 1011 | for (; *Buffer; Buffer++) { |
| 1012 | uint64_t OldRes = Result; |
| 1013 | Result *= 10; |
| 1014 | Result += *Buffer-'0'; |
| 1015 | if (Result < OldRes) // Uh, oh, overflow detected!!! |
| 1016 | error("constant bigger than 64 bits detected!"); |
| 1017 | } |
| 1018 | return Result; |
| 1019 | } |
| 1020 | |
| 1021 | static uint64_t HexIntToVal(const char *Buffer) { |
| 1022 | uint64_t Result = 0; |
| 1023 | for (; *Buffer; ++Buffer) { |
| 1024 | uint64_t OldRes = Result; |
| 1025 | Result *= 16; |
| 1026 | char C = *Buffer; |
| 1027 | if (C >= '0' && C <= '9') |
| 1028 | Result += C-'0'; |
| 1029 | else if (C >= 'A' && C <= 'F') |
| 1030 | Result += C-'A'+10; |
| 1031 | else if (C >= 'a' && C <= 'f') |
| 1032 | Result += C-'a'+10; |
| 1033 | |
| 1034 | if (Result < OldRes) // Uh, oh, overflow detected!!! |
| 1035 | error("constant bigger than 64 bits detected!"); |
| 1036 | } |
| 1037 | return Result; |
| 1038 | } |
| 1039 | |
| 1040 | |
| 1041 | // HexToFP - Convert the ascii string in hexidecimal format to the floating |
| 1042 | // point representation of it. |
| 1043 | // |
| 1044 | static double HexToFP(const char *Buffer) { |
| 1045 | // Behave nicely in the face of C TBAA rules... see: |
| 1046 | // http://www.nullstone.com/htmls/category/aliastyp.htm |
| 1047 | union { |
| 1048 | uint64_t UI; |
| 1049 | double FP; |
| 1050 | } UIntToFP; |
| 1051 | UIntToFP.UI = HexIntToVal(Buffer); |
| 1052 | |
| 1053 | assert(sizeof(double) == sizeof(uint64_t) && |
| 1054 | "Data sizes incompatible on this target!"); |
| 1055 | return UIntToFP.FP; // Cast Hex constant to double |
| 1056 | } |
| 1057 | |
| 1058 | |
| 1059 | } // End llvm namespace |
| 1060 | |
| 1061 | using namespace llvm; |
| 1062 | |
Reid Spencer | e7c3c60 | 2006-11-30 06:36:44 +0000 | [diff] [blame] | 1063 | /* Comments start with a ; and go till end of line */ |
| 1064 | /* Variable(Value) identifiers start with a % sign */ |
| 1065 | /* Label identifiers end with a colon */ |
| 1066 | /* Quoted names can contain any character except " and \ */ |
| 1067 | /* [PN]Integer: match positive and negative literal integer values that |
| 1068 | * are preceeded by a '%' character. These represent unnamed variable slots. |
| 1069 | */ |
| 1070 | /* E[PN]Integer: match positive and negative literal integer values */ |
| 1071 | /* FPConstant - A Floating point constant. |
| 1072 | */ |
| 1073 | /* HexFPConstant - Floating point constant represented in IEEE format as a |
| 1074 | * hexadecimal number for when exponential notation is not precise enough. |
| 1075 | */ |
| 1076 | /* HexIntConstant - Hexadecimal constant generated by the CFE to avoid forcing |
| 1077 | * it to deal with 64 bit numbers. |
| 1078 | */ |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 1079 | #line 1080 "UpgradeLexer.cpp" |
Reid Spencer | e7c3c60 | 2006-11-30 06:36:44 +0000 | [diff] [blame] | 1080 | |
| 1081 | /* Macros after this point can all be overridden by user definitions in |
| 1082 | * section 1. |
| 1083 | */ |
| 1084 | |
| 1085 | #ifndef YY_SKIP_YYWRAP |
| 1086 | #ifdef __cplusplus |
| 1087 | extern "C" int yywrap YY_PROTO(( void )); |
| 1088 | #else |
| 1089 | extern int yywrap YY_PROTO(( void )); |
| 1090 | #endif |
| 1091 | #endif |
| 1092 | |
| 1093 | #ifndef YY_NO_UNPUT |
| 1094 | static inline void yyunput YY_PROTO(( int c, char *buf_ptr )); |
| 1095 | #endif |
| 1096 | |
| 1097 | #ifndef yytext_ptr |
| 1098 | static void yy_flex_strncpy YY_PROTO(( char *, yyconst char *, int )); |
| 1099 | #endif |
| 1100 | |
| 1101 | #ifdef YY_NEED_STRLEN |
| 1102 | static int yy_flex_strlen YY_PROTO(( yyconst char * )); |
| 1103 | #endif |
| 1104 | |
| 1105 | #ifndef YY_NO_INPUT |
| 1106 | #ifdef __cplusplus |
| 1107 | static int yyinput YY_PROTO(( void )); |
| 1108 | #else |
| 1109 | static int input YY_PROTO(( void )); |
| 1110 | #endif |
| 1111 | #endif |
| 1112 | |
| 1113 | #if YY_STACK_USED |
| 1114 | static int yy_start_stack_ptr = 0; |
| 1115 | static int yy_start_stack_depth = 0; |
| 1116 | static int *yy_start_stack = 0; |
| 1117 | #ifndef YY_NO_PUSH_STATE |
| 1118 | static void yy_push_state YY_PROTO(( int new_state )); |
| 1119 | #endif |
| 1120 | #ifndef YY_NO_POP_STATE |
| 1121 | static void yy_pop_state YY_PROTO(( void )); |
| 1122 | #endif |
| 1123 | #ifndef YY_NO_TOP_STATE |
| 1124 | static int yy_top_state YY_PROTO(( void )); |
| 1125 | #endif |
| 1126 | |
| 1127 | #else |
| 1128 | #define YY_NO_PUSH_STATE 1 |
| 1129 | #define YY_NO_POP_STATE 1 |
| 1130 | #define YY_NO_TOP_STATE 1 |
| 1131 | #endif |
| 1132 | |
| 1133 | #ifdef YY_MALLOC_DECL |
| 1134 | YY_MALLOC_DECL |
| 1135 | #else |
| 1136 | #if __STDC__ |
| 1137 | #ifndef __cplusplus |
| 1138 | #include <stdlib.h> |
| 1139 | #endif |
| 1140 | #else |
| 1141 | /* Just try to get by without declaring the routines. This will fail |
| 1142 | * miserably on non-ANSI systems for which sizeof(size_t) != sizeof(int) |
| 1143 | * or sizeof(void*) != sizeof(int). |
| 1144 | */ |
| 1145 | #endif |
| 1146 | #endif |
| 1147 | |
| 1148 | /* Amount of stuff to slurp up with each read. */ |
| 1149 | #ifndef YY_READ_BUF_SIZE |
| 1150 | #define YY_READ_BUF_SIZE 8192 |
| 1151 | #endif |
| 1152 | |
| 1153 | /* Copy whatever the last rule matched to the standard output. */ |
| 1154 | |
| 1155 | #ifndef ECHO |
| 1156 | /* This used to be an fputs(), but since the string might contain NUL's, |
| 1157 | * we now use fwrite(). |
| 1158 | */ |
| 1159 | #define ECHO (void) fwrite( yytext, yyleng, 1, yyout ) |
| 1160 | #endif |
| 1161 | |
| 1162 | /* Gets input and stuffs it into "buf". number of characters read, or YY_NULL, |
| 1163 | * is returned in "result". |
| 1164 | */ |
| 1165 | #ifndef YY_INPUT |
| 1166 | #define YY_INPUT(buf,result,max_size) \ |
| 1167 | if ( yy_current_buffer->yy_is_interactive ) \ |
| 1168 | { \ |
| 1169 | int c = '*', n; \ |
| 1170 | for ( n = 0; n < max_size && \ |
| 1171 | (c = getc( yyin )) != EOF && c != '\n'; ++n ) \ |
| 1172 | buf[n] = (char) c; \ |
| 1173 | if ( c == '\n' ) \ |
| 1174 | buf[n++] = (char) c; \ |
| 1175 | if ( c == EOF && ferror( yyin ) ) \ |
| 1176 | YY_FATAL_ERROR( "input in flex scanner failed" ); \ |
| 1177 | result = n; \ |
| 1178 | } \ |
| 1179 | else if ( ((result = fread( buf, 1, max_size, yyin )) == 0) \ |
| 1180 | && ferror( yyin ) ) \ |
| 1181 | YY_FATAL_ERROR( "input in flex scanner failed" ); |
| 1182 | #endif |
| 1183 | |
| 1184 | /* No semi-colon after return; correct usage is to write "yyterminate();" - |
| 1185 | * we don't want an extra ';' after the "return" because that will cause |
| 1186 | * some compilers to complain about unreachable statements. |
| 1187 | */ |
| 1188 | #ifndef yyterminate |
| 1189 | #define yyterminate() return YY_NULL |
| 1190 | #endif |
| 1191 | |
| 1192 | /* Number of entries by which start-condition stack grows. */ |
| 1193 | #ifndef YY_START_STACK_INCR |
| 1194 | #define YY_START_STACK_INCR 25 |
| 1195 | #endif |
| 1196 | |
| 1197 | /* Report a fatal error. */ |
| 1198 | #ifndef YY_FATAL_ERROR |
| 1199 | #define YY_FATAL_ERROR(msg) yy_fatal_error( msg ) |
| 1200 | #endif |
| 1201 | |
| 1202 | /* Default declaration of generated scanner - a define so the user can |
| 1203 | * easily add parameters. |
| 1204 | */ |
| 1205 | #ifndef YY_DECL |
| 1206 | #define YY_DECL int yylex YY_PROTO(( void )) |
| 1207 | #endif |
| 1208 | |
| 1209 | /* Code executed at the beginning of each rule, after yytext and yyleng |
| 1210 | * have been set up. |
| 1211 | */ |
| 1212 | #ifndef YY_USER_ACTION |
| 1213 | #define YY_USER_ACTION |
| 1214 | #endif |
| 1215 | |
| 1216 | /* Code executed at the end of each rule. */ |
| 1217 | #ifndef YY_BREAK |
| 1218 | #define YY_BREAK break; |
| 1219 | #endif |
| 1220 | |
| 1221 | #define YY_RULE_SETUP \ |
| 1222 | YY_USER_ACTION |
| 1223 | |
| 1224 | YY_DECL |
| 1225 | { |
| 1226 | register yy_state_type yy_current_state; |
| 1227 | register char *yy_cp = NULL, *yy_bp = NULL; |
| 1228 | register int yy_act; |
| 1229 | |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 1230 | #line 189 "/proj/llvm/llvm-1/tools/llvm-upgrade/UpgradeLexer.l" |
Reid Spencer | e7c3c60 | 2006-11-30 06:36:44 +0000 | [diff] [blame] | 1231 | |
| 1232 | |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 1233 | #line 1234 "UpgradeLexer.cpp" |
Reid Spencer | e7c3c60 | 2006-11-30 06:36:44 +0000 | [diff] [blame] | 1234 | |
| 1235 | if ( yy_init ) |
| 1236 | { |
| 1237 | yy_init = 0; |
| 1238 | |
| 1239 | #ifdef YY_USER_INIT |
| 1240 | YY_USER_INIT; |
| 1241 | #endif |
| 1242 | |
| 1243 | if ( ! yy_start ) |
| 1244 | yy_start = 1; /* first start state */ |
| 1245 | |
| 1246 | if ( ! yyin ) |
| 1247 | yyin = stdin; |
| 1248 | |
| 1249 | if ( ! yyout ) |
| 1250 | yyout = stdout; |
| 1251 | |
| 1252 | if ( ! yy_current_buffer ) |
| 1253 | yy_current_buffer = |
| 1254 | yy_create_buffer( yyin, YY_BUF_SIZE ); |
| 1255 | |
| 1256 | yy_load_buffer_state(); |
| 1257 | } |
| 1258 | |
| 1259 | while ( 1 ) /* loops until end-of-file is reached */ |
| 1260 | { |
| 1261 | yy_cp = yy_c_buf_p; |
| 1262 | |
| 1263 | /* Support of yytext. */ |
| 1264 | *yy_cp = yy_hold_char; |
| 1265 | |
| 1266 | /* yy_bp points to the position in yy_ch_buf of the start of |
| 1267 | * the current run. |
| 1268 | */ |
| 1269 | yy_bp = yy_cp; |
| 1270 | |
| 1271 | yy_current_state = yy_start; |
| 1272 | yy_state_ptr = yy_state_buf; |
| 1273 | *yy_state_ptr++ = yy_current_state; |
| 1274 | yy_match: |
| 1275 | do |
| 1276 | { |
| 1277 | register YY_CHAR yy_c = yy_ec[YY_SC_TO_UI(*yy_cp)]; |
| 1278 | while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state ) |
| 1279 | { |
| 1280 | yy_current_state = (int) yy_def[yy_current_state]; |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 1281 | if ( yy_current_state >= 610 ) |
Reid Spencer | e7c3c60 | 2006-11-30 06:36:44 +0000 | [diff] [blame] | 1282 | yy_c = yy_meta[(unsigned int) yy_c]; |
| 1283 | } |
| 1284 | yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c]; |
| 1285 | *yy_state_ptr++ = yy_current_state; |
| 1286 | ++yy_cp; |
| 1287 | } |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 1288 | while ( yy_current_state != 609 ); |
Reid Spencer | e7c3c60 | 2006-11-30 06:36:44 +0000 | [diff] [blame] | 1289 | |
| 1290 | yy_find_action: |
| 1291 | yy_current_state = *--yy_state_ptr; |
| 1292 | yy_lp = yy_accept[yy_current_state]; |
Reid Spencer | 195a32e5 | 2007-01-13 04:40:16 +0000 | [diff] [blame] | 1293 | find_rule: /* we branch to this label when backing up */ |
Reid Spencer | e7c3c60 | 2006-11-30 06:36:44 +0000 | [diff] [blame] | 1294 | for ( ; ; ) /* until we find what rule we matched */ |
| 1295 | { |
| 1296 | if ( yy_lp && yy_lp < yy_accept[yy_current_state + 1] ) |
| 1297 | { |
| 1298 | yy_act = yy_acclist[yy_lp]; |
| 1299 | { |
| 1300 | yy_full_match = yy_cp; |
| 1301 | break; |
| 1302 | } |
| 1303 | } |
| 1304 | --yy_cp; |
| 1305 | yy_current_state = *--yy_state_ptr; |
| 1306 | yy_lp = yy_accept[yy_current_state]; |
| 1307 | } |
| 1308 | |
| 1309 | YY_DO_BEFORE_ACTION; |
| 1310 | |
| 1311 | if ( yy_act != YY_END_OF_BUFFER ) |
| 1312 | { |
| 1313 | int yyl; |
| 1314 | for ( yyl = 0; yyl < yyleng; ++yyl ) |
| 1315 | if ( yytext[yyl] == '\n' ) |
| 1316 | ++yylineno; |
| 1317 | } |
| 1318 | |
| 1319 | do_action: /* This label is used only to access EOF actions. */ |
| 1320 | |
| 1321 | |
| 1322 | switch ( yy_act ) |
| 1323 | { /* beginning of action switch */ |
| 1324 | case 1: |
| 1325 | YY_RULE_SETUP |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 1326 | #line 191 "/proj/llvm/llvm-1/tools/llvm-upgrade/UpgradeLexer.l" |
Reid Spencer | e7c3c60 | 2006-11-30 06:36:44 +0000 | [diff] [blame] | 1327 | { /* Ignore comments for now */ } |
| 1328 | YY_BREAK |
| 1329 | case 2: |
| 1330 | YY_RULE_SETUP |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 1331 | #line 193 "/proj/llvm/llvm-1/tools/llvm-upgrade/UpgradeLexer.l" |
| 1332 | { return BEGINTOK; } |
Reid Spencer | e7c3c60 | 2006-11-30 06:36:44 +0000 | [diff] [blame] | 1333 | YY_BREAK |
| 1334 | case 3: |
| 1335 | YY_RULE_SETUP |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 1336 | #line 194 "/proj/llvm/llvm-1/tools/llvm-upgrade/UpgradeLexer.l" |
| 1337 | { return ENDTOK; } |
Reid Spencer | e7c3c60 | 2006-11-30 06:36:44 +0000 | [diff] [blame] | 1338 | YY_BREAK |
| 1339 | case 4: |
| 1340 | YY_RULE_SETUP |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 1341 | #line 195 "/proj/llvm/llvm-1/tools/llvm-upgrade/UpgradeLexer.l" |
| 1342 | { return TRUETOK; } |
Reid Spencer | e7c3c60 | 2006-11-30 06:36:44 +0000 | [diff] [blame] | 1343 | YY_BREAK |
| 1344 | case 5: |
| 1345 | YY_RULE_SETUP |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 1346 | #line 196 "/proj/llvm/llvm-1/tools/llvm-upgrade/UpgradeLexer.l" |
| 1347 | { return FALSETOK; } |
Reid Spencer | e7c3c60 | 2006-11-30 06:36:44 +0000 | [diff] [blame] | 1348 | YY_BREAK |
| 1349 | case 6: |
| 1350 | YY_RULE_SETUP |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 1351 | #line 197 "/proj/llvm/llvm-1/tools/llvm-upgrade/UpgradeLexer.l" |
| 1352 | { return DECLARE; } |
Reid Spencer | e7c3c60 | 2006-11-30 06:36:44 +0000 | [diff] [blame] | 1353 | YY_BREAK |
| 1354 | case 7: |
| 1355 | YY_RULE_SETUP |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 1356 | #line 198 "/proj/llvm/llvm-1/tools/llvm-upgrade/UpgradeLexer.l" |
| 1357 | { return GLOBAL; } |
Reid Spencer | e7c3c60 | 2006-11-30 06:36:44 +0000 | [diff] [blame] | 1358 | YY_BREAK |
| 1359 | case 8: |
| 1360 | YY_RULE_SETUP |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 1361 | #line 199 "/proj/llvm/llvm-1/tools/llvm-upgrade/UpgradeLexer.l" |
| 1362 | { return CONSTANT; } |
Reid Spencer | e7c3c60 | 2006-11-30 06:36:44 +0000 | [diff] [blame] | 1363 | YY_BREAK |
| 1364 | case 9: |
| 1365 | YY_RULE_SETUP |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 1366 | #line 200 "/proj/llvm/llvm-1/tools/llvm-upgrade/UpgradeLexer.l" |
| 1367 | { return INTERNAL; } |
Reid Spencer | e7c3c60 | 2006-11-30 06:36:44 +0000 | [diff] [blame] | 1368 | YY_BREAK |
| 1369 | case 10: |
| 1370 | YY_RULE_SETUP |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 1371 | #line 201 "/proj/llvm/llvm-1/tools/llvm-upgrade/UpgradeLexer.l" |
| 1372 | { return LINKONCE; } |
Reid Spencer | e7c3c60 | 2006-11-30 06:36:44 +0000 | [diff] [blame] | 1373 | YY_BREAK |
| 1374 | case 11: |
| 1375 | YY_RULE_SETUP |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 1376 | #line 202 "/proj/llvm/llvm-1/tools/llvm-upgrade/UpgradeLexer.l" |
| 1377 | { return WEAK; } |
Reid Spencer | e7c3c60 | 2006-11-30 06:36:44 +0000 | [diff] [blame] | 1378 | YY_BREAK |
| 1379 | case 12: |
| 1380 | YY_RULE_SETUP |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 1381 | #line 203 "/proj/llvm/llvm-1/tools/llvm-upgrade/UpgradeLexer.l" |
| 1382 | { return APPENDING; } |
Reid Spencer | e7c3c60 | 2006-11-30 06:36:44 +0000 | [diff] [blame] | 1383 | YY_BREAK |
| 1384 | case 13: |
| 1385 | YY_RULE_SETUP |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 1386 | #line 204 "/proj/llvm/llvm-1/tools/llvm-upgrade/UpgradeLexer.l" |
| 1387 | { return DLLIMPORT; } |
Reid Spencer | e7c3c60 | 2006-11-30 06:36:44 +0000 | [diff] [blame] | 1388 | YY_BREAK |
| 1389 | case 14: |
| 1390 | YY_RULE_SETUP |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 1391 | #line 205 "/proj/llvm/llvm-1/tools/llvm-upgrade/UpgradeLexer.l" |
| 1392 | { return DLLEXPORT; } |
Reid Spencer | e7c3c60 | 2006-11-30 06:36:44 +0000 | [diff] [blame] | 1393 | YY_BREAK |
| 1394 | case 15: |
| 1395 | YY_RULE_SETUP |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 1396 | #line 206 "/proj/llvm/llvm-1/tools/llvm-upgrade/UpgradeLexer.l" |
| 1397 | { return EXTERN_WEAK; } |
Reid Spencer | e7c3c60 | 2006-11-30 06:36:44 +0000 | [diff] [blame] | 1398 | YY_BREAK |
| 1399 | case 16: |
| 1400 | YY_RULE_SETUP |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 1401 | #line 207 "/proj/llvm/llvm-1/tools/llvm-upgrade/UpgradeLexer.l" |
| 1402 | { return EXTERNAL; } /* Deprecated, turn into external */ |
Reid Spencer | e7c3c60 | 2006-11-30 06:36:44 +0000 | [diff] [blame] | 1403 | YY_BREAK |
| 1404 | case 17: |
| 1405 | YY_RULE_SETUP |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 1406 | #line 208 "/proj/llvm/llvm-1/tools/llvm-upgrade/UpgradeLexer.l" |
| 1407 | { return EXTERNAL; } |
Reid Spencer | e7c3c60 | 2006-11-30 06:36:44 +0000 | [diff] [blame] | 1408 | YY_BREAK |
| 1409 | case 18: |
| 1410 | YY_RULE_SETUP |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 1411 | #line 209 "/proj/llvm/llvm-1/tools/llvm-upgrade/UpgradeLexer.l" |
| 1412 | { return IMPLEMENTATION; } |
Reid Spencer | e7c3c60 | 2006-11-30 06:36:44 +0000 | [diff] [blame] | 1413 | YY_BREAK |
| 1414 | case 19: |
| 1415 | YY_RULE_SETUP |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 1416 | #line 210 "/proj/llvm/llvm-1/tools/llvm-upgrade/UpgradeLexer.l" |
| 1417 | { return ZEROINITIALIZER; } |
Reid Spencer | e7c3c60 | 2006-11-30 06:36:44 +0000 | [diff] [blame] | 1418 | YY_BREAK |
| 1419 | case 20: |
| 1420 | YY_RULE_SETUP |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 1421 | #line 211 "/proj/llvm/llvm-1/tools/llvm-upgrade/UpgradeLexer.l" |
| 1422 | { return DOTDOTDOT; } |
Reid Spencer | e7c3c60 | 2006-11-30 06:36:44 +0000 | [diff] [blame] | 1423 | YY_BREAK |
| 1424 | case 21: |
| 1425 | YY_RULE_SETUP |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 1426 | #line 212 "/proj/llvm/llvm-1/tools/llvm-upgrade/UpgradeLexer.l" |
| 1427 | { return UNDEF; } |
Reid Spencer | e7c3c60 | 2006-11-30 06:36:44 +0000 | [diff] [blame] | 1428 | YY_BREAK |
| 1429 | case 22: |
| 1430 | YY_RULE_SETUP |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 1431 | #line 213 "/proj/llvm/llvm-1/tools/llvm-upgrade/UpgradeLexer.l" |
| 1432 | { return NULL_TOK; } |
Reid Spencer | e7c3c60 | 2006-11-30 06:36:44 +0000 | [diff] [blame] | 1433 | YY_BREAK |
| 1434 | case 23: |
| 1435 | YY_RULE_SETUP |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 1436 | #line 214 "/proj/llvm/llvm-1/tools/llvm-upgrade/UpgradeLexer.l" |
| 1437 | { return TO; } |
Reid Spencer | e7c3c60 | 2006-11-30 06:36:44 +0000 | [diff] [blame] | 1438 | YY_BREAK |
| 1439 | case 24: |
| 1440 | YY_RULE_SETUP |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 1441 | #line 215 "/proj/llvm/llvm-1/tools/llvm-upgrade/UpgradeLexer.l" |
| 1442 | { return EXCEPT; } |
Reid Spencer | e7c3c60 | 2006-11-30 06:36:44 +0000 | [diff] [blame] | 1443 | YY_BREAK |
| 1444 | case 25: |
| 1445 | YY_RULE_SETUP |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 1446 | #line 216 "/proj/llvm/llvm-1/tools/llvm-upgrade/UpgradeLexer.l" |
| 1447 | { return NOT; } /* Deprecated, turned into XOR */ |
Reid Spencer | e7c3c60 | 2006-11-30 06:36:44 +0000 | [diff] [blame] | 1448 | YY_BREAK |
| 1449 | case 26: |
| 1450 | YY_RULE_SETUP |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 1451 | #line 217 "/proj/llvm/llvm-1/tools/llvm-upgrade/UpgradeLexer.l" |
| 1452 | { return TAIL; } |
Reid Spencer | e7c3c60 | 2006-11-30 06:36:44 +0000 | [diff] [blame] | 1453 | YY_BREAK |
| 1454 | case 27: |
| 1455 | YY_RULE_SETUP |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 1456 | #line 218 "/proj/llvm/llvm-1/tools/llvm-upgrade/UpgradeLexer.l" |
| 1457 | { return TARGET; } |
Reid Spencer | e7c3c60 | 2006-11-30 06:36:44 +0000 | [diff] [blame] | 1458 | YY_BREAK |
| 1459 | case 28: |
| 1460 | YY_RULE_SETUP |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 1461 | #line 219 "/proj/llvm/llvm-1/tools/llvm-upgrade/UpgradeLexer.l" |
| 1462 | { return TRIPLE; } |
Reid Spencer | e7c3c60 | 2006-11-30 06:36:44 +0000 | [diff] [blame] | 1463 | YY_BREAK |
| 1464 | case 29: |
| 1465 | YY_RULE_SETUP |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 1466 | #line 220 "/proj/llvm/llvm-1/tools/llvm-upgrade/UpgradeLexer.l" |
| 1467 | { return DEPLIBS; } |
Reid Spencer | e7c3c60 | 2006-11-30 06:36:44 +0000 | [diff] [blame] | 1468 | YY_BREAK |
| 1469 | case 30: |
| 1470 | YY_RULE_SETUP |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 1471 | #line 221 "/proj/llvm/llvm-1/tools/llvm-upgrade/UpgradeLexer.l" |
| 1472 | { return ENDIAN; } |
Reid Spencer | e7c3c60 | 2006-11-30 06:36:44 +0000 | [diff] [blame] | 1473 | YY_BREAK |
| 1474 | case 31: |
| 1475 | YY_RULE_SETUP |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 1476 | #line 222 "/proj/llvm/llvm-1/tools/llvm-upgrade/UpgradeLexer.l" |
| 1477 | { return POINTERSIZE; } |
Reid Spencer | e7c3c60 | 2006-11-30 06:36:44 +0000 | [diff] [blame] | 1478 | YY_BREAK |
| 1479 | case 32: |
| 1480 | YY_RULE_SETUP |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 1481 | #line 223 "/proj/llvm/llvm-1/tools/llvm-upgrade/UpgradeLexer.l" |
| 1482 | { return DATALAYOUT; } |
Reid Spencer | e7c3c60 | 2006-11-30 06:36:44 +0000 | [diff] [blame] | 1483 | YY_BREAK |
| 1484 | case 33: |
| 1485 | YY_RULE_SETUP |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 1486 | #line 224 "/proj/llvm/llvm-1/tools/llvm-upgrade/UpgradeLexer.l" |
| 1487 | { return LITTLE; } |
Reid Spencer | e7c3c60 | 2006-11-30 06:36:44 +0000 | [diff] [blame] | 1488 | YY_BREAK |
| 1489 | case 34: |
| 1490 | YY_RULE_SETUP |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 1491 | #line 225 "/proj/llvm/llvm-1/tools/llvm-upgrade/UpgradeLexer.l" |
| 1492 | { return BIG; } |
Reid Spencer | e7c3c60 | 2006-11-30 06:36:44 +0000 | [diff] [blame] | 1493 | YY_BREAK |
| 1494 | case 35: |
| 1495 | YY_RULE_SETUP |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 1496 | #line 226 "/proj/llvm/llvm-1/tools/llvm-upgrade/UpgradeLexer.l" |
| 1497 | { return VOLATILE; } |
Reid Spencer | e7c3c60 | 2006-11-30 06:36:44 +0000 | [diff] [blame] | 1498 | YY_BREAK |
| 1499 | case 36: |
| 1500 | YY_RULE_SETUP |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 1501 | #line 227 "/proj/llvm/llvm-1/tools/llvm-upgrade/UpgradeLexer.l" |
| 1502 | { return ALIGN; } |
Reid Spencer | e7c3c60 | 2006-11-30 06:36:44 +0000 | [diff] [blame] | 1503 | YY_BREAK |
| 1504 | case 37: |
| 1505 | YY_RULE_SETUP |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 1506 | #line 228 "/proj/llvm/llvm-1/tools/llvm-upgrade/UpgradeLexer.l" |
| 1507 | { return SECTION; } |
Reid Spencer | e7c3c60 | 2006-11-30 06:36:44 +0000 | [diff] [blame] | 1508 | YY_BREAK |
| 1509 | case 38: |
| 1510 | YY_RULE_SETUP |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 1511 | #line 229 "/proj/llvm/llvm-1/tools/llvm-upgrade/UpgradeLexer.l" |
| 1512 | { return MODULE; } |
Reid Spencer | e7c3c60 | 2006-11-30 06:36:44 +0000 | [diff] [blame] | 1513 | YY_BREAK |
| 1514 | case 39: |
| 1515 | YY_RULE_SETUP |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 1516 | #line 230 "/proj/llvm/llvm-1/tools/llvm-upgrade/UpgradeLexer.l" |
| 1517 | { return ASM_TOK; } |
Reid Spencer | e7c3c60 | 2006-11-30 06:36:44 +0000 | [diff] [blame] | 1518 | YY_BREAK |
| 1519 | case 40: |
| 1520 | YY_RULE_SETUP |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 1521 | #line 231 "/proj/llvm/llvm-1/tools/llvm-upgrade/UpgradeLexer.l" |
| 1522 | { return SIDEEFFECT; } |
Reid Spencer | e7c3c60 | 2006-11-30 06:36:44 +0000 | [diff] [blame] | 1523 | YY_BREAK |
| 1524 | case 41: |
| 1525 | YY_RULE_SETUP |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 1526 | #line 233 "/proj/llvm/llvm-1/tools/llvm-upgrade/UpgradeLexer.l" |
| 1527 | { return CC_TOK; } |
Reid Spencer | e7c3c60 | 2006-11-30 06:36:44 +0000 | [diff] [blame] | 1528 | YY_BREAK |
| 1529 | case 42: |
| 1530 | YY_RULE_SETUP |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 1531 | #line 234 "/proj/llvm/llvm-1/tools/llvm-upgrade/UpgradeLexer.l" |
| 1532 | { return CCC_TOK; } |
Reid Spencer | e7c3c60 | 2006-11-30 06:36:44 +0000 | [diff] [blame] | 1533 | YY_BREAK |
| 1534 | case 43: |
| 1535 | YY_RULE_SETUP |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 1536 | #line 235 "/proj/llvm/llvm-1/tools/llvm-upgrade/UpgradeLexer.l" |
| 1537 | { return CSRETCC_TOK; } |
Reid Spencer | e7c3c60 | 2006-11-30 06:36:44 +0000 | [diff] [blame] | 1538 | YY_BREAK |
| 1539 | case 44: |
| 1540 | YY_RULE_SETUP |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 1541 | #line 236 "/proj/llvm/llvm-1/tools/llvm-upgrade/UpgradeLexer.l" |
| 1542 | { return FASTCC_TOK; } |
Reid Spencer | e7c3c60 | 2006-11-30 06:36:44 +0000 | [diff] [blame] | 1543 | YY_BREAK |
| 1544 | case 45: |
| 1545 | YY_RULE_SETUP |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 1546 | #line 237 "/proj/llvm/llvm-1/tools/llvm-upgrade/UpgradeLexer.l" |
| 1547 | { return COLDCC_TOK; } |
Reid Spencer | e7c3c60 | 2006-11-30 06:36:44 +0000 | [diff] [blame] | 1548 | YY_BREAK |
| 1549 | case 46: |
| 1550 | YY_RULE_SETUP |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 1551 | #line 238 "/proj/llvm/llvm-1/tools/llvm-upgrade/UpgradeLexer.l" |
| 1552 | { return X86_STDCALLCC_TOK; } |
Reid Spencer | e7c3c60 | 2006-11-30 06:36:44 +0000 | [diff] [blame] | 1553 | YY_BREAK |
| 1554 | case 47: |
| 1555 | YY_RULE_SETUP |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 1556 | #line 239 "/proj/llvm/llvm-1/tools/llvm-upgrade/UpgradeLexer.l" |
| 1557 | { return X86_FASTCALLCC_TOK; } |
Reid Spencer | e7c3c60 | 2006-11-30 06:36:44 +0000 | [diff] [blame] | 1558 | YY_BREAK |
| 1559 | case 48: |
| 1560 | YY_RULE_SETUP |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 1561 | #line 241 "/proj/llvm/llvm-1/tools/llvm-upgrade/UpgradeLexer.l" |
| 1562 | { RET_TY(SBYTE, Type::Int8Ty, Signed); } |
Reid Spencer | e7c3c60 | 2006-11-30 06:36:44 +0000 | [diff] [blame] | 1563 | YY_BREAK |
| 1564 | case 49: |
| 1565 | YY_RULE_SETUP |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 1566 | #line 242 "/proj/llvm/llvm-1/tools/llvm-upgrade/UpgradeLexer.l" |
| 1567 | { RET_TY(UBYTE, Type::Int8Ty, Unsigned); } |
Reid Spencer | e7c3c60 | 2006-11-30 06:36:44 +0000 | [diff] [blame] | 1568 | YY_BREAK |
| 1569 | case 50: |
| 1570 | YY_RULE_SETUP |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 1571 | #line 243 "/proj/llvm/llvm-1/tools/llvm-upgrade/UpgradeLexer.l" |
| 1572 | { RET_TY(SHORT, Type::Int16Ty, Signed); } |
Reid Spencer | e7c3c60 | 2006-11-30 06:36:44 +0000 | [diff] [blame] | 1573 | YY_BREAK |
| 1574 | case 51: |
| 1575 | YY_RULE_SETUP |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 1576 | #line 244 "/proj/llvm/llvm-1/tools/llvm-upgrade/UpgradeLexer.l" |
| 1577 | { RET_TY(USHORT, Type::Int16Ty, Unsigned); } |
Reid Spencer | e7c3c60 | 2006-11-30 06:36:44 +0000 | [diff] [blame] | 1578 | YY_BREAK |
| 1579 | case 52: |
| 1580 | YY_RULE_SETUP |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 1581 | #line 245 "/proj/llvm/llvm-1/tools/llvm-upgrade/UpgradeLexer.l" |
| 1582 | { RET_TY(INT, Type::Int32Ty, Signed); } |
Reid Spencer | e7c3c60 | 2006-11-30 06:36:44 +0000 | [diff] [blame] | 1583 | YY_BREAK |
| 1584 | case 53: |
| 1585 | YY_RULE_SETUP |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 1586 | #line 246 "/proj/llvm/llvm-1/tools/llvm-upgrade/UpgradeLexer.l" |
| 1587 | { RET_TY(UINT, Type::Int32Ty, Unsigned); } |
Reid Spencer | e7c3c60 | 2006-11-30 06:36:44 +0000 | [diff] [blame] | 1588 | YY_BREAK |
| 1589 | case 54: |
| 1590 | YY_RULE_SETUP |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 1591 | #line 247 "/proj/llvm/llvm-1/tools/llvm-upgrade/UpgradeLexer.l" |
| 1592 | { RET_TY(LONG, Type::Int64Ty, Signed); } |
Reid Spencer | e7c3c60 | 2006-11-30 06:36:44 +0000 | [diff] [blame] | 1593 | YY_BREAK |
| 1594 | case 55: |
| 1595 | YY_RULE_SETUP |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 1596 | #line 248 "/proj/llvm/llvm-1/tools/llvm-upgrade/UpgradeLexer.l" |
| 1597 | { RET_TY(ULONG, Type::Int64Ty, Unsigned); } |
Reid Spencer | e7c3c60 | 2006-11-30 06:36:44 +0000 | [diff] [blame] | 1598 | YY_BREAK |
| 1599 | case 56: |
| 1600 | YY_RULE_SETUP |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 1601 | #line 249 "/proj/llvm/llvm-1/tools/llvm-upgrade/UpgradeLexer.l" |
| 1602 | { RET_TY(VOID, Type::VoidTy, Signless ); } |
Reid Spencer | e7c3c60 | 2006-11-30 06:36:44 +0000 | [diff] [blame] | 1603 | YY_BREAK |
| 1604 | case 57: |
| 1605 | YY_RULE_SETUP |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 1606 | #line 250 "/proj/llvm/llvm-1/tools/llvm-upgrade/UpgradeLexer.l" |
| 1607 | { RET_TY(BOOL, Type::Int1Ty, Unsigned ); } |
Reid Spencer | e7c3c60 | 2006-11-30 06:36:44 +0000 | [diff] [blame] | 1608 | YY_BREAK |
| 1609 | case 58: |
| 1610 | YY_RULE_SETUP |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 1611 | #line 251 "/proj/llvm/llvm-1/tools/llvm-upgrade/UpgradeLexer.l" |
| 1612 | { RET_TY(FLOAT, Type::FloatTy, Signless ); } |
Reid Spencer | e7c3c60 | 2006-11-30 06:36:44 +0000 | [diff] [blame] | 1613 | YY_BREAK |
| 1614 | case 59: |
| 1615 | YY_RULE_SETUP |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 1616 | #line 252 "/proj/llvm/llvm-1/tools/llvm-upgrade/UpgradeLexer.l" |
| 1617 | { RET_TY(DOUBLE, Type::DoubleTy,Signless); } |
Reid Spencer | e7c3c60 | 2006-11-30 06:36:44 +0000 | [diff] [blame] | 1618 | YY_BREAK |
| 1619 | case 60: |
| 1620 | YY_RULE_SETUP |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 1621 | #line 253 "/proj/llvm/llvm-1/tools/llvm-upgrade/UpgradeLexer.l" |
| 1622 | { RET_TY(LABEL, Type::LabelTy, Signless ); } |
Reid Spencer | e7c3c60 | 2006-11-30 06:36:44 +0000 | [diff] [blame] | 1623 | YY_BREAK |
| 1624 | case 61: |
| 1625 | YY_RULE_SETUP |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 1626 | #line 254 "/proj/llvm/llvm-1/tools/llvm-upgrade/UpgradeLexer.l" |
| 1627 | { return TYPE; } |
Reid Spencer | e7c3c60 | 2006-11-30 06:36:44 +0000 | [diff] [blame] | 1628 | YY_BREAK |
| 1629 | case 62: |
| 1630 | YY_RULE_SETUP |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 1631 | #line 255 "/proj/llvm/llvm-1/tools/llvm-upgrade/UpgradeLexer.l" |
| 1632 | { return OPAQUE; } |
Reid Spencer | e7c3c60 | 2006-11-30 06:36:44 +0000 | [diff] [blame] | 1633 | YY_BREAK |
| 1634 | case 63: |
| 1635 | YY_RULE_SETUP |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 1636 | #line 257 "/proj/llvm/llvm-1/tools/llvm-upgrade/UpgradeLexer.l" |
| 1637 | { RET_TOK(BinaryOpVal, AddOp, ADD); } |
Reid Spencer | e7c3c60 | 2006-11-30 06:36:44 +0000 | [diff] [blame] | 1638 | YY_BREAK |
| 1639 | case 64: |
| 1640 | YY_RULE_SETUP |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 1641 | #line 258 "/proj/llvm/llvm-1/tools/llvm-upgrade/UpgradeLexer.l" |
| 1642 | { RET_TOK(BinaryOpVal, SubOp, SUB); } |
Reid Spencer | e7c3c60 | 2006-11-30 06:36:44 +0000 | [diff] [blame] | 1643 | YY_BREAK |
| 1644 | case 65: |
| 1645 | YY_RULE_SETUP |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 1646 | #line 259 "/proj/llvm/llvm-1/tools/llvm-upgrade/UpgradeLexer.l" |
| 1647 | { RET_TOK(BinaryOpVal, MulOp, MUL); } |
Reid Spencer | e7c3c60 | 2006-11-30 06:36:44 +0000 | [diff] [blame] | 1648 | YY_BREAK |
| 1649 | case 66: |
| 1650 | YY_RULE_SETUP |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 1651 | #line 260 "/proj/llvm/llvm-1/tools/llvm-upgrade/UpgradeLexer.l" |
| 1652 | { RET_TOK(BinaryOpVal, DivOp, DIV); } |
Reid Spencer | e7c3c60 | 2006-11-30 06:36:44 +0000 | [diff] [blame] | 1653 | YY_BREAK |
| 1654 | case 67: |
| 1655 | YY_RULE_SETUP |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 1656 | #line 261 "/proj/llvm/llvm-1/tools/llvm-upgrade/UpgradeLexer.l" |
| 1657 | { RET_TOK(BinaryOpVal, UDivOp, UDIV); } |
Reid Spencer | e7c3c60 | 2006-11-30 06:36:44 +0000 | [diff] [blame] | 1658 | YY_BREAK |
| 1659 | case 68: |
| 1660 | YY_RULE_SETUP |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 1661 | #line 262 "/proj/llvm/llvm-1/tools/llvm-upgrade/UpgradeLexer.l" |
| 1662 | { RET_TOK(BinaryOpVal, SDivOp, SDIV); } |
Reid Spencer | e7c3c60 | 2006-11-30 06:36:44 +0000 | [diff] [blame] | 1663 | YY_BREAK |
| 1664 | case 69: |
| 1665 | YY_RULE_SETUP |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 1666 | #line 263 "/proj/llvm/llvm-1/tools/llvm-upgrade/UpgradeLexer.l" |
| 1667 | { RET_TOK(BinaryOpVal, FDivOp, FDIV); } |
Reid Spencer | e7c3c60 | 2006-11-30 06:36:44 +0000 | [diff] [blame] | 1668 | YY_BREAK |
| 1669 | case 70: |
| 1670 | YY_RULE_SETUP |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 1671 | #line 264 "/proj/llvm/llvm-1/tools/llvm-upgrade/UpgradeLexer.l" |
| 1672 | { RET_TOK(BinaryOpVal, RemOp, REM); } |
Reid Spencer | e7c3c60 | 2006-11-30 06:36:44 +0000 | [diff] [blame] | 1673 | YY_BREAK |
| 1674 | case 71: |
| 1675 | YY_RULE_SETUP |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 1676 | #line 265 "/proj/llvm/llvm-1/tools/llvm-upgrade/UpgradeLexer.l" |
| 1677 | { RET_TOK(BinaryOpVal, URemOp, UREM); } |
Reid Spencer | e7c3c60 | 2006-11-30 06:36:44 +0000 | [diff] [blame] | 1678 | YY_BREAK |
| 1679 | case 72: |
| 1680 | YY_RULE_SETUP |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 1681 | #line 266 "/proj/llvm/llvm-1/tools/llvm-upgrade/UpgradeLexer.l" |
| 1682 | { RET_TOK(BinaryOpVal, SRemOp, SREM); } |
Reid Spencer | e7c3c60 | 2006-11-30 06:36:44 +0000 | [diff] [blame] | 1683 | YY_BREAK |
| 1684 | case 73: |
| 1685 | YY_RULE_SETUP |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 1686 | #line 267 "/proj/llvm/llvm-1/tools/llvm-upgrade/UpgradeLexer.l" |
| 1687 | { RET_TOK(BinaryOpVal, FRemOp, FREM); } |
Reid Spencer | e7c3c60 | 2006-11-30 06:36:44 +0000 | [diff] [blame] | 1688 | YY_BREAK |
| 1689 | case 74: |
| 1690 | YY_RULE_SETUP |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 1691 | #line 268 "/proj/llvm/llvm-1/tools/llvm-upgrade/UpgradeLexer.l" |
| 1692 | { RET_TOK(BinaryOpVal, AndOp, AND); } |
Reid Spencer | e7c3c60 | 2006-11-30 06:36:44 +0000 | [diff] [blame] | 1693 | YY_BREAK |
| 1694 | case 75: |
| 1695 | YY_RULE_SETUP |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 1696 | #line 269 "/proj/llvm/llvm-1/tools/llvm-upgrade/UpgradeLexer.l" |
| 1697 | { RET_TOK(BinaryOpVal, OrOp , OR ); } |
Reid Spencer | e7c3c60 | 2006-11-30 06:36:44 +0000 | [diff] [blame] | 1698 | YY_BREAK |
| 1699 | case 76: |
| 1700 | YY_RULE_SETUP |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 1701 | #line 270 "/proj/llvm/llvm-1/tools/llvm-upgrade/UpgradeLexer.l" |
| 1702 | { RET_TOK(BinaryOpVal, XorOp, XOR); } |
Reid Spencer | e7c3c60 | 2006-11-30 06:36:44 +0000 | [diff] [blame] | 1703 | YY_BREAK |
| 1704 | case 77: |
| 1705 | YY_RULE_SETUP |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 1706 | #line 271 "/proj/llvm/llvm-1/tools/llvm-upgrade/UpgradeLexer.l" |
| 1707 | { RET_TOK(BinaryOpVal, SetNE, SETNE); } |
Reid Spencer | e7c3c60 | 2006-11-30 06:36:44 +0000 | [diff] [blame] | 1708 | YY_BREAK |
| 1709 | case 78: |
| 1710 | YY_RULE_SETUP |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 1711 | #line 272 "/proj/llvm/llvm-1/tools/llvm-upgrade/UpgradeLexer.l" |
| 1712 | { RET_TOK(BinaryOpVal, SetEQ, SETEQ); } |
Reid Spencer | e7c3c60 | 2006-11-30 06:36:44 +0000 | [diff] [blame] | 1713 | YY_BREAK |
| 1714 | case 79: |
| 1715 | YY_RULE_SETUP |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 1716 | #line 273 "/proj/llvm/llvm-1/tools/llvm-upgrade/UpgradeLexer.l" |
| 1717 | { RET_TOK(BinaryOpVal, SetLT, SETLT); } |
Reid Spencer | e7c3c60 | 2006-11-30 06:36:44 +0000 | [diff] [blame] | 1718 | YY_BREAK |
| 1719 | case 80: |
| 1720 | YY_RULE_SETUP |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 1721 | #line 274 "/proj/llvm/llvm-1/tools/llvm-upgrade/UpgradeLexer.l" |
| 1722 | { RET_TOK(BinaryOpVal, SetGT, SETGT); } |
Reid Spencer | e7c3c60 | 2006-11-30 06:36:44 +0000 | [diff] [blame] | 1723 | YY_BREAK |
| 1724 | case 81: |
| 1725 | YY_RULE_SETUP |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 1726 | #line 275 "/proj/llvm/llvm-1/tools/llvm-upgrade/UpgradeLexer.l" |
| 1727 | { RET_TOK(BinaryOpVal, SetLE, SETLE); } |
Reid Spencer | e7c3c60 | 2006-11-30 06:36:44 +0000 | [diff] [blame] | 1728 | YY_BREAK |
| 1729 | case 82: |
| 1730 | YY_RULE_SETUP |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 1731 | #line 276 "/proj/llvm/llvm-1/tools/llvm-upgrade/UpgradeLexer.l" |
| 1732 | { RET_TOK(BinaryOpVal, SetGE, SETGE); } |
Reid Spencer | e7c3c60 | 2006-11-30 06:36:44 +0000 | [diff] [blame] | 1733 | YY_BREAK |
| 1734 | case 83: |
| 1735 | YY_RULE_SETUP |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 1736 | #line 277 "/proj/llvm/llvm-1/tools/llvm-upgrade/UpgradeLexer.l" |
| 1737 | { RET_TOK(OtherOpVal, ICmpOp, ICMP); } |
Reid Spencer | e7c3c60 | 2006-11-30 06:36:44 +0000 | [diff] [blame] | 1738 | YY_BREAK |
| 1739 | case 84: |
| 1740 | YY_RULE_SETUP |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 1741 | #line 278 "/proj/llvm/llvm-1/tools/llvm-upgrade/UpgradeLexer.l" |
| 1742 | { RET_TOK(OtherOpVal, FCmpOp, FCMP); } |
Reid Spencer | e7c3c60 | 2006-11-30 06:36:44 +0000 | [diff] [blame] | 1743 | YY_BREAK |
| 1744 | case 85: |
| 1745 | YY_RULE_SETUP |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 1746 | #line 280 "/proj/llvm/llvm-1/tools/llvm-upgrade/UpgradeLexer.l" |
| 1747 | { return EQ; } |
Reid Spencer | e7c3c60 | 2006-11-30 06:36:44 +0000 | [diff] [blame] | 1748 | YY_BREAK |
| 1749 | case 86: |
| 1750 | YY_RULE_SETUP |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 1751 | #line 281 "/proj/llvm/llvm-1/tools/llvm-upgrade/UpgradeLexer.l" |
| 1752 | { return NE; } |
Reid Spencer | e7c3c60 | 2006-11-30 06:36:44 +0000 | [diff] [blame] | 1753 | YY_BREAK |
| 1754 | case 87: |
| 1755 | YY_RULE_SETUP |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 1756 | #line 282 "/proj/llvm/llvm-1/tools/llvm-upgrade/UpgradeLexer.l" |
| 1757 | { return SLT; } |
Reid Spencer | e7c3c60 | 2006-11-30 06:36:44 +0000 | [diff] [blame] | 1758 | YY_BREAK |
| 1759 | case 88: |
| 1760 | YY_RULE_SETUP |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 1761 | #line 283 "/proj/llvm/llvm-1/tools/llvm-upgrade/UpgradeLexer.l" |
| 1762 | { return SGT; } |
Reid Spencer | e7c3c60 | 2006-11-30 06:36:44 +0000 | [diff] [blame] | 1763 | YY_BREAK |
| 1764 | case 89: |
| 1765 | YY_RULE_SETUP |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 1766 | #line 284 "/proj/llvm/llvm-1/tools/llvm-upgrade/UpgradeLexer.l" |
| 1767 | { return SLE; } |
Reid Spencer | e7c3c60 | 2006-11-30 06:36:44 +0000 | [diff] [blame] | 1768 | YY_BREAK |
| 1769 | case 90: |
| 1770 | YY_RULE_SETUP |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 1771 | #line 285 "/proj/llvm/llvm-1/tools/llvm-upgrade/UpgradeLexer.l" |
| 1772 | { return SGE; } |
Reid Spencer | e7c3c60 | 2006-11-30 06:36:44 +0000 | [diff] [blame] | 1773 | YY_BREAK |
| 1774 | case 91: |
| 1775 | YY_RULE_SETUP |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 1776 | #line 286 "/proj/llvm/llvm-1/tools/llvm-upgrade/UpgradeLexer.l" |
| 1777 | { return ULT; } |
Reid Spencer | e7c3c60 | 2006-11-30 06:36:44 +0000 | [diff] [blame] | 1778 | YY_BREAK |
| 1779 | case 92: |
| 1780 | YY_RULE_SETUP |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 1781 | #line 287 "/proj/llvm/llvm-1/tools/llvm-upgrade/UpgradeLexer.l" |
| 1782 | { return UGT; } |
Reid Spencer | e7c3c60 | 2006-11-30 06:36:44 +0000 | [diff] [blame] | 1783 | YY_BREAK |
| 1784 | case 93: |
| 1785 | YY_RULE_SETUP |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 1786 | #line 288 "/proj/llvm/llvm-1/tools/llvm-upgrade/UpgradeLexer.l" |
| 1787 | { return ULE; } |
Reid Spencer | e7c3c60 | 2006-11-30 06:36:44 +0000 | [diff] [blame] | 1788 | YY_BREAK |
| 1789 | case 94: |
| 1790 | YY_RULE_SETUP |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 1791 | #line 289 "/proj/llvm/llvm-1/tools/llvm-upgrade/UpgradeLexer.l" |
| 1792 | { return UGE; } |
Reid Spencer | e7c3c60 | 2006-11-30 06:36:44 +0000 | [diff] [blame] | 1793 | YY_BREAK |
| 1794 | case 95: |
| 1795 | YY_RULE_SETUP |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 1796 | #line 290 "/proj/llvm/llvm-1/tools/llvm-upgrade/UpgradeLexer.l" |
| 1797 | { return OEQ; } |
Reid Spencer | e7c3c60 | 2006-11-30 06:36:44 +0000 | [diff] [blame] | 1798 | YY_BREAK |
| 1799 | case 96: |
| 1800 | YY_RULE_SETUP |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 1801 | #line 291 "/proj/llvm/llvm-1/tools/llvm-upgrade/UpgradeLexer.l" |
| 1802 | { return ONE; } |
Reid Spencer | e7c3c60 | 2006-11-30 06:36:44 +0000 | [diff] [blame] | 1803 | YY_BREAK |
| 1804 | case 97: |
| 1805 | YY_RULE_SETUP |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 1806 | #line 292 "/proj/llvm/llvm-1/tools/llvm-upgrade/UpgradeLexer.l" |
| 1807 | { return OLT; } |
Reid Spencer | e7c3c60 | 2006-11-30 06:36:44 +0000 | [diff] [blame] | 1808 | YY_BREAK |
| 1809 | case 98: |
| 1810 | YY_RULE_SETUP |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 1811 | #line 293 "/proj/llvm/llvm-1/tools/llvm-upgrade/UpgradeLexer.l" |
| 1812 | { return OGT; } |
Reid Spencer | e7c3c60 | 2006-11-30 06:36:44 +0000 | [diff] [blame] | 1813 | YY_BREAK |
| 1814 | case 99: |
| 1815 | YY_RULE_SETUP |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 1816 | #line 294 "/proj/llvm/llvm-1/tools/llvm-upgrade/UpgradeLexer.l" |
| 1817 | { return OLE; } |
Reid Spencer | e7c3c60 | 2006-11-30 06:36:44 +0000 | [diff] [blame] | 1818 | YY_BREAK |
| 1819 | case 100: |
| 1820 | YY_RULE_SETUP |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 1821 | #line 295 "/proj/llvm/llvm-1/tools/llvm-upgrade/UpgradeLexer.l" |
| 1822 | { return OGE; } |
Reid Spencer | e7c3c60 | 2006-11-30 06:36:44 +0000 | [diff] [blame] | 1823 | YY_BREAK |
| 1824 | case 101: |
| 1825 | YY_RULE_SETUP |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 1826 | #line 296 "/proj/llvm/llvm-1/tools/llvm-upgrade/UpgradeLexer.l" |
| 1827 | { return ORD; } |
Reid Spencer | e7c3c60 | 2006-11-30 06:36:44 +0000 | [diff] [blame] | 1828 | YY_BREAK |
| 1829 | case 102: |
| 1830 | YY_RULE_SETUP |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 1831 | #line 297 "/proj/llvm/llvm-1/tools/llvm-upgrade/UpgradeLexer.l" |
| 1832 | { return UNO; } |
Reid Spencer | e7c3c60 | 2006-11-30 06:36:44 +0000 | [diff] [blame] | 1833 | YY_BREAK |
| 1834 | case 103: |
| 1835 | YY_RULE_SETUP |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 1836 | #line 298 "/proj/llvm/llvm-1/tools/llvm-upgrade/UpgradeLexer.l" |
| 1837 | { return UEQ; } |
Reid Spencer | e7c3c60 | 2006-11-30 06:36:44 +0000 | [diff] [blame] | 1838 | YY_BREAK |
| 1839 | case 104: |
| 1840 | YY_RULE_SETUP |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 1841 | #line 299 "/proj/llvm/llvm-1/tools/llvm-upgrade/UpgradeLexer.l" |
| 1842 | { return UNE; } |
Reid Spencer | e7c3c60 | 2006-11-30 06:36:44 +0000 | [diff] [blame] | 1843 | YY_BREAK |
| 1844 | case 105: |
| 1845 | YY_RULE_SETUP |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 1846 | #line 301 "/proj/llvm/llvm-1/tools/llvm-upgrade/UpgradeLexer.l" |
| 1847 | { RET_TOK(OtherOpVal, PHIOp, PHI_TOK); } |
Reid Spencer | e7c3c60 | 2006-11-30 06:36:44 +0000 | [diff] [blame] | 1848 | YY_BREAK |
| 1849 | case 106: |
| 1850 | YY_RULE_SETUP |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 1851 | #line 302 "/proj/llvm/llvm-1/tools/llvm-upgrade/UpgradeLexer.l" |
| 1852 | { RET_TOK(OtherOpVal, CallOp, CALL); } |
Reid Spencer | e7c3c60 | 2006-11-30 06:36:44 +0000 | [diff] [blame] | 1853 | YY_BREAK |
| 1854 | case 107: |
| 1855 | YY_RULE_SETUP |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 1856 | #line 303 "/proj/llvm/llvm-1/tools/llvm-upgrade/UpgradeLexer.l" |
| 1857 | { RET_TOK(CastOpVal, CastOp, CAST); } |
Reid Spencer | e7c3c60 | 2006-11-30 06:36:44 +0000 | [diff] [blame] | 1858 | YY_BREAK |
| 1859 | case 108: |
| 1860 | YY_RULE_SETUP |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 1861 | #line 304 "/proj/llvm/llvm-1/tools/llvm-upgrade/UpgradeLexer.l" |
| 1862 | { RET_TOK(CastOpVal, TruncOp, TRUNC); } |
Reid Spencer | e7c3c60 | 2006-11-30 06:36:44 +0000 | [diff] [blame] | 1863 | YY_BREAK |
| 1864 | case 109: |
| 1865 | YY_RULE_SETUP |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 1866 | #line 305 "/proj/llvm/llvm-1/tools/llvm-upgrade/UpgradeLexer.l" |
| 1867 | { RET_TOK(CastOpVal, ZExtOp , ZEXT); } |
Reid Spencer | e7c3c60 | 2006-11-30 06:36:44 +0000 | [diff] [blame] | 1868 | YY_BREAK |
| 1869 | case 110: |
| 1870 | YY_RULE_SETUP |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 1871 | #line 306 "/proj/llvm/llvm-1/tools/llvm-upgrade/UpgradeLexer.l" |
| 1872 | { RET_TOK(CastOpVal, SExtOp, SEXT); } |
Reid Spencer | e7c3c60 | 2006-11-30 06:36:44 +0000 | [diff] [blame] | 1873 | YY_BREAK |
| 1874 | case 111: |
| 1875 | YY_RULE_SETUP |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 1876 | #line 307 "/proj/llvm/llvm-1/tools/llvm-upgrade/UpgradeLexer.l" |
| 1877 | { RET_TOK(CastOpVal, FPTruncOp, FPTRUNC); } |
Reid Spencer | e7c3c60 | 2006-11-30 06:36:44 +0000 | [diff] [blame] | 1878 | YY_BREAK |
| 1879 | case 112: |
| 1880 | YY_RULE_SETUP |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 1881 | #line 308 "/proj/llvm/llvm-1/tools/llvm-upgrade/UpgradeLexer.l" |
| 1882 | { RET_TOK(CastOpVal, FPExtOp, FPEXT); } |
Reid Spencer | e7c3c60 | 2006-11-30 06:36:44 +0000 | [diff] [blame] | 1883 | YY_BREAK |
| 1884 | case 113: |
| 1885 | YY_RULE_SETUP |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 1886 | #line 309 "/proj/llvm/llvm-1/tools/llvm-upgrade/UpgradeLexer.l" |
| 1887 | { RET_TOK(CastOpVal, FPToUIOp, FPTOUI); } |
Reid Spencer | e7c3c60 | 2006-11-30 06:36:44 +0000 | [diff] [blame] | 1888 | YY_BREAK |
Reid Spencer | 16244f4 | 2006-12-01 21:10:07 +0000 | [diff] [blame] | 1889 | case 114: |
| 1890 | YY_RULE_SETUP |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 1891 | #line 310 "/proj/llvm/llvm-1/tools/llvm-upgrade/UpgradeLexer.l" |
| 1892 | { RET_TOK(CastOpVal, FPToSIOp, FPTOSI); } |
Reid Spencer | 16244f4 | 2006-12-01 21:10:07 +0000 | [diff] [blame] | 1893 | YY_BREAK |
Reid Spencer | f7bde22 | 2006-12-01 22:26:37 +0000 | [diff] [blame] | 1894 | case 115: |
| 1895 | YY_RULE_SETUP |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 1896 | #line 311 "/proj/llvm/llvm-1/tools/llvm-upgrade/UpgradeLexer.l" |
| 1897 | { RET_TOK(CastOpVal, UIToFPOp, UITOFP); } |
Reid Spencer | fcb5df8 | 2006-12-01 22:34:43 +0000 | [diff] [blame] | 1898 | YY_BREAK |
| 1899 | case 116: |
| 1900 | YY_RULE_SETUP |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 1901 | #line 312 "/proj/llvm/llvm-1/tools/llvm-upgrade/UpgradeLexer.l" |
| 1902 | { RET_TOK(CastOpVal, SIToFPOp, SITOFP); } |
Reid Spencer | fcb5df8 | 2006-12-01 22:34:43 +0000 | [diff] [blame] | 1903 | YY_BREAK |
| 1904 | case 117: |
| 1905 | YY_RULE_SETUP |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 1906 | #line 313 "/proj/llvm/llvm-1/tools/llvm-upgrade/UpgradeLexer.l" |
| 1907 | { RET_TOK(CastOpVal, PtrToIntOp, PTRTOINT); } |
Reid Spencer | fcb5df8 | 2006-12-01 22:34:43 +0000 | [diff] [blame] | 1908 | YY_BREAK |
| 1909 | case 118: |
| 1910 | YY_RULE_SETUP |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 1911 | #line 314 "/proj/llvm/llvm-1/tools/llvm-upgrade/UpgradeLexer.l" |
| 1912 | { RET_TOK(CastOpVal, IntToPtrOp, INTTOPTR); } |
Reid Spencer | fcb5df8 | 2006-12-01 22:34:43 +0000 | [diff] [blame] | 1913 | YY_BREAK |
| 1914 | case 119: |
| 1915 | YY_RULE_SETUP |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 1916 | #line 315 "/proj/llvm/llvm-1/tools/llvm-upgrade/UpgradeLexer.l" |
| 1917 | { RET_TOK(CastOpVal, BitCastOp, BITCAST); } |
Reid Spencer | fcb5df8 | 2006-12-01 22:34:43 +0000 | [diff] [blame] | 1918 | YY_BREAK |
| 1919 | case 120: |
| 1920 | YY_RULE_SETUP |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 1921 | #line 316 "/proj/llvm/llvm-1/tools/llvm-upgrade/UpgradeLexer.l" |
| 1922 | { RET_TOK(OtherOpVal, SelectOp, SELECT); } |
Reid Spencer | fcb5df8 | 2006-12-01 22:34:43 +0000 | [diff] [blame] | 1923 | YY_BREAK |
| 1924 | case 121: |
| 1925 | YY_RULE_SETUP |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 1926 | #line 317 "/proj/llvm/llvm-1/tools/llvm-upgrade/UpgradeLexer.l" |
| 1927 | { RET_TOK(OtherOpVal, ShlOp, SHL); } |
Reid Spencer | fcb5df8 | 2006-12-01 22:34:43 +0000 | [diff] [blame] | 1928 | YY_BREAK |
| 1929 | case 122: |
| 1930 | YY_RULE_SETUP |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 1931 | #line 318 "/proj/llvm/llvm-1/tools/llvm-upgrade/UpgradeLexer.l" |
| 1932 | { RET_TOK(OtherOpVal, ShrOp, SHR); } |
Reid Spencer | fcb5df8 | 2006-12-01 22:34:43 +0000 | [diff] [blame] | 1933 | YY_BREAK |
| 1934 | case 123: |
| 1935 | YY_RULE_SETUP |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 1936 | #line 319 "/proj/llvm/llvm-1/tools/llvm-upgrade/UpgradeLexer.l" |
| 1937 | { RET_TOK(OtherOpVal, LShrOp, LSHR); } |
Reid Spencer | fcb5df8 | 2006-12-01 22:34:43 +0000 | [diff] [blame] | 1938 | YY_BREAK |
| 1939 | case 124: |
| 1940 | YY_RULE_SETUP |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 1941 | #line 320 "/proj/llvm/llvm-1/tools/llvm-upgrade/UpgradeLexer.l" |
| 1942 | { RET_TOK(OtherOpVal, AShrOp, ASHR); } |
Reid Spencer | fcb5df8 | 2006-12-01 22:34:43 +0000 | [diff] [blame] | 1943 | YY_BREAK |
| 1944 | case 125: |
| 1945 | YY_RULE_SETUP |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 1946 | #line 321 "/proj/llvm/llvm-1/tools/llvm-upgrade/UpgradeLexer.l" |
| 1947 | { return VANEXT_old; } |
Reid Spencer | fcb5df8 | 2006-12-01 22:34:43 +0000 | [diff] [blame] | 1948 | YY_BREAK |
| 1949 | case 126: |
| 1950 | YY_RULE_SETUP |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 1951 | #line 322 "/proj/llvm/llvm-1/tools/llvm-upgrade/UpgradeLexer.l" |
| 1952 | { return VAARG_old; } |
Reid Spencer | fcb5df8 | 2006-12-01 22:34:43 +0000 | [diff] [blame] | 1953 | YY_BREAK |
| 1954 | case 127: |
| 1955 | YY_RULE_SETUP |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 1956 | #line 323 "/proj/llvm/llvm-1/tools/llvm-upgrade/UpgradeLexer.l" |
| 1957 | { RET_TOK(OtherOpVal, VAArg , VAARG); } |
Reid Spencer | 7872074 | 2006-12-02 20:21:22 +0000 | [diff] [blame] | 1958 | YY_BREAK |
| 1959 | case 128: |
| 1960 | YY_RULE_SETUP |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 1961 | #line 324 "/proj/llvm/llvm-1/tools/llvm-upgrade/UpgradeLexer.l" |
| 1962 | { RET_TOK(TermOpVal, RetOp, RET); } |
Reid Spencer | 229e936 | 2006-12-02 22:14:11 +0000 | [diff] [blame] | 1963 | YY_BREAK |
| 1964 | case 129: |
| 1965 | YY_RULE_SETUP |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 1966 | #line 325 "/proj/llvm/llvm-1/tools/llvm-upgrade/UpgradeLexer.l" |
| 1967 | { RET_TOK(TermOpVal, BrOp, BR); } |
Reid Spencer | 229e936 | 2006-12-02 22:14:11 +0000 | [diff] [blame] | 1968 | YY_BREAK |
| 1969 | case 130: |
| 1970 | YY_RULE_SETUP |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 1971 | #line 326 "/proj/llvm/llvm-1/tools/llvm-upgrade/UpgradeLexer.l" |
| 1972 | { RET_TOK(TermOpVal, SwitchOp, SWITCH); } |
Reid Spencer | 229e936 | 2006-12-02 22:14:11 +0000 | [diff] [blame] | 1973 | YY_BREAK |
| 1974 | case 131: |
| 1975 | YY_RULE_SETUP |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 1976 | #line 327 "/proj/llvm/llvm-1/tools/llvm-upgrade/UpgradeLexer.l" |
| 1977 | { RET_TOK(TermOpVal, InvokeOp, INVOKE); } |
Reid Spencer | 229e936 | 2006-12-02 22:14:11 +0000 | [diff] [blame] | 1978 | YY_BREAK |
| 1979 | case 132: |
| 1980 | YY_RULE_SETUP |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 1981 | #line 328 "/proj/llvm/llvm-1/tools/llvm-upgrade/UpgradeLexer.l" |
| 1982 | { return UNWIND; } |
Reid Spencer | 229e936 | 2006-12-02 22:14:11 +0000 | [diff] [blame] | 1983 | YY_BREAK |
| 1984 | case 133: |
| 1985 | YY_RULE_SETUP |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 1986 | #line 329 "/proj/llvm/llvm-1/tools/llvm-upgrade/UpgradeLexer.l" |
| 1987 | { RET_TOK(TermOpVal, UnreachableOp, UNREACHABLE); } |
Reid Spencer | 229e936 | 2006-12-02 22:14:11 +0000 | [diff] [blame] | 1988 | YY_BREAK |
| 1989 | case 134: |
| 1990 | YY_RULE_SETUP |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 1991 | #line 331 "/proj/llvm/llvm-1/tools/llvm-upgrade/UpgradeLexer.l" |
| 1992 | { RET_TOK(MemOpVal, MallocOp, MALLOC); } |
Reid Spencer | 229e936 | 2006-12-02 22:14:11 +0000 | [diff] [blame] | 1993 | YY_BREAK |
| 1994 | case 135: |
| 1995 | YY_RULE_SETUP |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 1996 | #line 332 "/proj/llvm/llvm-1/tools/llvm-upgrade/UpgradeLexer.l" |
| 1997 | { RET_TOK(MemOpVal, AllocaOp, ALLOCA); } |
Reid Spencer | 229e936 | 2006-12-02 22:14:11 +0000 | [diff] [blame] | 1998 | YY_BREAK |
| 1999 | case 136: |
| 2000 | YY_RULE_SETUP |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 2001 | #line 333 "/proj/llvm/llvm-1/tools/llvm-upgrade/UpgradeLexer.l" |
| 2002 | { RET_TOK(MemOpVal, FreeOp, FREE); } |
Reid Spencer | 229e936 | 2006-12-02 22:14:11 +0000 | [diff] [blame] | 2003 | YY_BREAK |
| 2004 | case 137: |
| 2005 | YY_RULE_SETUP |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 2006 | #line 334 "/proj/llvm/llvm-1/tools/llvm-upgrade/UpgradeLexer.l" |
| 2007 | { RET_TOK(MemOpVal, LoadOp, LOAD); } |
Reid Spencer | 229e936 | 2006-12-02 22:14:11 +0000 | [diff] [blame] | 2008 | YY_BREAK |
| 2009 | case 138: |
| 2010 | YY_RULE_SETUP |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 2011 | #line 335 "/proj/llvm/llvm-1/tools/llvm-upgrade/UpgradeLexer.l" |
| 2012 | { RET_TOK(MemOpVal, StoreOp, STORE); } |
Reid Spencer | 229e936 | 2006-12-02 22:14:11 +0000 | [diff] [blame] | 2013 | YY_BREAK |
| 2014 | case 139: |
| 2015 | YY_RULE_SETUP |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 2016 | #line 336 "/proj/llvm/llvm-1/tools/llvm-upgrade/UpgradeLexer.l" |
| 2017 | { RET_TOK(MemOpVal, GetElementPtrOp, GETELEMENTPTR); } |
Reid Spencer | 229e936 | 2006-12-02 22:14:11 +0000 | [diff] [blame] | 2018 | YY_BREAK |
| 2019 | case 140: |
| 2020 | YY_RULE_SETUP |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 2021 | #line 338 "/proj/llvm/llvm-1/tools/llvm-upgrade/UpgradeLexer.l" |
| 2022 | { RET_TOK(OtherOpVal, ExtractElementOp, EXTRACTELEMENT); } |
Reid Spencer | 229e936 | 2006-12-02 22:14:11 +0000 | [diff] [blame] | 2023 | YY_BREAK |
| 2024 | case 141: |
| 2025 | YY_RULE_SETUP |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 2026 | #line 339 "/proj/llvm/llvm-1/tools/llvm-upgrade/UpgradeLexer.l" |
| 2027 | { RET_TOK(OtherOpVal, InsertElementOp, INSERTELEMENT); } |
Reid Spencer | 229e936 | 2006-12-02 22:14:11 +0000 | [diff] [blame] | 2028 | YY_BREAK |
| 2029 | case 142: |
| 2030 | YY_RULE_SETUP |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 2031 | #line 340 "/proj/llvm/llvm-1/tools/llvm-upgrade/UpgradeLexer.l" |
| 2032 | { RET_TOK(OtherOpVal, ShuffleVectorOp, SHUFFLEVECTOR); } |
Reid Spencer | 229e936 | 2006-12-02 22:14:11 +0000 | [diff] [blame] | 2033 | YY_BREAK |
| 2034 | case 143: |
| 2035 | YY_RULE_SETUP |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 2036 | #line 343 "/proj/llvm/llvm-1/tools/llvm-upgrade/UpgradeLexer.l" |
| 2037 | { |
| 2038 | UnEscapeLexed(yytext+1); |
| 2039 | Upgradelval.StrVal = strdup(yytext+1); // Skip % |
| 2040 | return VAR_ID; |
| 2041 | } |
Reid Spencer | 229e936 | 2006-12-02 22:14:11 +0000 | [diff] [blame] | 2042 | YY_BREAK |
| 2043 | case 144: |
| 2044 | YY_RULE_SETUP |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 2045 | #line 348 "/proj/llvm/llvm-1/tools/llvm-upgrade/UpgradeLexer.l" |
| 2046 | { |
| 2047 | yytext[strlen(yytext)-1] = 0; // nuke colon |
| 2048 | UnEscapeLexed(yytext); |
| 2049 | Upgradelval.StrVal = strdup(yytext); |
| 2050 | return LABELSTR; |
| 2051 | } |
Reid Spencer | 229e936 | 2006-12-02 22:14:11 +0000 | [diff] [blame] | 2052 | YY_BREAK |
| 2053 | case 145: |
| 2054 | YY_RULE_SETUP |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 2055 | #line 354 "/proj/llvm/llvm-1/tools/llvm-upgrade/UpgradeLexer.l" |
| 2056 | { |
| 2057 | yytext[strlen(yytext)-2] = 0; // nuke colon, end quote |
| 2058 | UnEscapeLexed(yytext+1); |
| 2059 | Upgradelval.StrVal = strdup(yytext+1); |
| 2060 | return LABELSTR; |
| 2061 | } |
Reid Spencer | 229e936 | 2006-12-02 22:14:11 +0000 | [diff] [blame] | 2062 | YY_BREAK |
| 2063 | case 146: |
| 2064 | YY_RULE_SETUP |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 2065 | #line 361 "/proj/llvm/llvm-1/tools/llvm-upgrade/UpgradeLexer.l" |
| 2066 | { // Note that we cannot unescape a string constant here! The |
| 2067 | // string constant might contain a \00 which would not be |
| 2068 | // understood by the string stuff. It is valid to make a |
| 2069 | // [sbyte] c"Hello World\00" constant, for example. |
| 2070 | // |
| 2071 | yytext[strlen(yytext)-1] = 0; // nuke end quote |
| 2072 | Upgradelval.StrVal = strdup(yytext+1); // Nuke start quote |
| 2073 | return STRINGCONSTANT; |
| 2074 | } |
Reid Spencer | 229e936 | 2006-12-02 22:14:11 +0000 | [diff] [blame] | 2075 | YY_BREAK |
| 2076 | case 147: |
| 2077 | YY_RULE_SETUP |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 2078 | #line 372 "/proj/llvm/llvm-1/tools/llvm-upgrade/UpgradeLexer.l" |
| 2079 | { Upgradelval.UInt64Val = atoull(yytext); return EUINT64VAL; } |
Reid Spencer | 229e936 | 2006-12-02 22:14:11 +0000 | [diff] [blame] | 2080 | YY_BREAK |
| 2081 | case 148: |
| 2082 | YY_RULE_SETUP |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 2083 | #line 373 "/proj/llvm/llvm-1/tools/llvm-upgrade/UpgradeLexer.l" |
| 2084 | { |
| 2085 | uint64_t Val = atoull(yytext+1); |
| 2086 | // +1: we have bigger negative range |
| 2087 | if (Val > (uint64_t)INT64_MAX+1) |
| 2088 | error("Constant too large for signed 64 bits!"); |
| 2089 | Upgradelval.SInt64Val = -Val; |
| 2090 | return ESINT64VAL; |
| 2091 | } |
Reid Spencer | 229e936 | 2006-12-02 22:14:11 +0000 | [diff] [blame] | 2092 | YY_BREAK |
| 2093 | case 149: |
| 2094 | YY_RULE_SETUP |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 2095 | #line 381 "/proj/llvm/llvm-1/tools/llvm-upgrade/UpgradeLexer.l" |
| 2096 | { |
| 2097 | Upgradelval.UInt64Val = HexIntToVal(yytext+3); |
| 2098 | return yytext[0] == 's' ? ESINT64VAL : EUINT64VAL; |
| 2099 | } |
Reid Spencer | 229e936 | 2006-12-02 22:14:11 +0000 | [diff] [blame] | 2100 | YY_BREAK |
| 2101 | case 150: |
| 2102 | YY_RULE_SETUP |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 2103 | #line 386 "/proj/llvm/llvm-1/tools/llvm-upgrade/UpgradeLexer.l" |
| 2104 | { |
| 2105 | uint64_t Val = atoull(yytext+1); |
| 2106 | if ((unsigned)Val != Val) |
| 2107 | error("Invalid value number (too large)!"); |
| 2108 | Upgradelval.UIntVal = unsigned(Val); |
| 2109 | return UINTVAL; |
| 2110 | } |
Reid Spencer | 6fd36ab | 2006-12-29 20:35:03 +0000 | [diff] [blame] | 2111 | YY_BREAK |
| 2112 | case 151: |
| 2113 | YY_RULE_SETUP |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 2114 | #line 393 "/proj/llvm/llvm-1/tools/llvm-upgrade/UpgradeLexer.l" |
| 2115 | { |
| 2116 | uint64_t Val = atoull(yytext+2); |
| 2117 | // +1: we have bigger negative range |
| 2118 | if (Val > (uint64_t)INT32_MAX+1) |
| 2119 | error("Constant too large for signed 32 bits!"); |
| 2120 | Upgradelval.SIntVal = (int)-Val; |
| 2121 | return SINTVAL; |
| 2122 | } |
Reid Spencer | 71d2ec9 | 2006-12-31 06:02:26 +0000 | [diff] [blame] | 2123 | YY_BREAK |
| 2124 | case 152: |
| 2125 | YY_RULE_SETUP |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 2126 | #line 402 "/proj/llvm/llvm-1/tools/llvm-upgrade/UpgradeLexer.l" |
| 2127 | { Upgradelval.FPVal = atof(yytext); return FPVAL; } |
Reid Spencer | 71d2ec9 | 2006-12-31 06:02:26 +0000 | [diff] [blame] | 2128 | YY_BREAK |
| 2129 | case 153: |
| 2130 | YY_RULE_SETUP |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 2131 | #line 403 "/proj/llvm/llvm-1/tools/llvm-upgrade/UpgradeLexer.l" |
| 2132 | { Upgradelval.FPVal = HexToFP(yytext); return FPVAL; } |
Reid Spencer | f7bde22 | 2006-12-01 22:26:37 +0000 | [diff] [blame] | 2133 | YY_BREAK |
| 2134 | case YY_STATE_EOF(INITIAL): |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 2135 | #line 405 "/proj/llvm/llvm-1/tools/llvm-upgrade/UpgradeLexer.l" |
Reid Spencer | e7c3c60 | 2006-11-30 06:36:44 +0000 | [diff] [blame] | 2136 | { |
| 2137 | /* Make sure to free the internal buffers for flex when we are |
| 2138 | * done reading our input! |
| 2139 | */ |
| 2140 | yy_delete_buffer(YY_CURRENT_BUFFER); |
| 2141 | return EOF; |
| 2142 | } |
| 2143 | YY_BREAK |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 2144 | case 154: |
| 2145 | YY_RULE_SETUP |
| 2146 | #line 413 "/proj/llvm/llvm-1/tools/llvm-upgrade/UpgradeLexer.l" |
| 2147 | { /* Ignore whitespace */ } |
| 2148 | YY_BREAK |
Reid Spencer | 71d2ec9 | 2006-12-31 06:02:26 +0000 | [diff] [blame] | 2149 | case 155: |
Reid Spencer | f7bde22 | 2006-12-01 22:26:37 +0000 | [diff] [blame] | 2150 | YY_RULE_SETUP |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 2151 | #line 414 "/proj/llvm/llvm-1/tools/llvm-upgrade/UpgradeLexer.l" |
| 2152 | { return yytext[0]; } |
Reid Spencer | 7872074 | 2006-12-02 20:21:22 +0000 | [diff] [blame] | 2153 | YY_BREAK |
Reid Spencer | 71d2ec9 | 2006-12-31 06:02:26 +0000 | [diff] [blame] | 2154 | case 156: |
Reid Spencer | 7872074 | 2006-12-02 20:21:22 +0000 | [diff] [blame] | 2155 | YY_RULE_SETUP |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 2156 | #line 416 "/proj/llvm/llvm-1/tools/llvm-upgrade/UpgradeLexer.l" |
Reid Spencer | e7c3c60 | 2006-11-30 06:36:44 +0000 | [diff] [blame] | 2157 | YY_FATAL_ERROR( "flex scanner jammed" ); |
| 2158 | YY_BREAK |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 2159 | #line 2160 "UpgradeLexer.cpp" |
Reid Spencer | e7c3c60 | 2006-11-30 06:36:44 +0000 | [diff] [blame] | 2160 | |
| 2161 | case YY_END_OF_BUFFER: |
| 2162 | { |
| 2163 | /* Amount of text matched not including the EOB char. */ |
| 2164 | int yy_amount_of_matched_text = (int) (yy_cp - yytext_ptr) - 1; |
| 2165 | |
| 2166 | /* Undo the effects of YY_DO_BEFORE_ACTION. */ |
| 2167 | *yy_cp = yy_hold_char; |
| 2168 | YY_RESTORE_YY_MORE_OFFSET |
| 2169 | |
| 2170 | if ( yy_current_buffer->yy_buffer_status == YY_BUFFER_NEW ) |
| 2171 | { |
| 2172 | /* We're scanning a new file or input source. It's |
| 2173 | * possible that this happened because the user |
| 2174 | * just pointed yyin at a new source and called |
| 2175 | * yylex(). If so, then we have to assure |
| 2176 | * consistency between yy_current_buffer and our |
| 2177 | * globals. Here is the right place to do so, because |
| 2178 | * this is the first action (other than possibly a |
| 2179 | * back-up) that will match for the new input source. |
| 2180 | */ |
| 2181 | yy_n_chars = yy_current_buffer->yy_n_chars; |
| 2182 | yy_current_buffer->yy_input_file = yyin; |
| 2183 | yy_current_buffer->yy_buffer_status = YY_BUFFER_NORMAL; |
| 2184 | } |
| 2185 | |
| 2186 | /* Note that here we test for yy_c_buf_p "<=" to the position |
| 2187 | * of the first EOB in the buffer, since yy_c_buf_p will |
| 2188 | * already have been incremented past the NUL character |
| 2189 | * (since all states make transitions on EOB to the |
| 2190 | * end-of-buffer state). Contrast this with the test |
| 2191 | * in input(). |
| 2192 | */ |
| 2193 | if ( yy_c_buf_p <= &yy_current_buffer->yy_ch_buf[yy_n_chars] ) |
| 2194 | { /* This was really a NUL. */ |
| 2195 | yy_state_type yy_next_state; |
| 2196 | |
| 2197 | yy_c_buf_p = yytext_ptr + yy_amount_of_matched_text; |
| 2198 | |
| 2199 | yy_current_state = yy_get_previous_state(); |
| 2200 | |
| 2201 | /* Okay, we're now positioned to make the NUL |
| 2202 | * transition. We couldn't have |
| 2203 | * yy_get_previous_state() go ahead and do it |
| 2204 | * for us because it doesn't know how to deal |
| 2205 | * with the possibility of jamming (and we don't |
| 2206 | * want to build jamming into it because then it |
| 2207 | * will run more slowly). |
| 2208 | */ |
| 2209 | |
| 2210 | yy_next_state = yy_try_NUL_trans( yy_current_state ); |
| 2211 | |
| 2212 | yy_bp = yytext_ptr + YY_MORE_ADJ; |
| 2213 | |
| 2214 | if ( yy_next_state ) |
| 2215 | { |
| 2216 | /* Consume the NUL. */ |
| 2217 | yy_cp = ++yy_c_buf_p; |
| 2218 | yy_current_state = yy_next_state; |
| 2219 | goto yy_match; |
| 2220 | } |
| 2221 | |
| 2222 | else |
| 2223 | { |
| 2224 | yy_cp = yy_c_buf_p; |
| 2225 | goto yy_find_action; |
| 2226 | } |
| 2227 | } |
| 2228 | |
| 2229 | else switch ( yy_get_next_buffer() ) |
| 2230 | { |
| 2231 | case EOB_ACT_END_OF_FILE: |
| 2232 | { |
| 2233 | yy_did_buffer_switch_on_eof = 0; |
| 2234 | |
| 2235 | if ( yywrap() ) |
| 2236 | { |
| 2237 | /* Note: because we've taken care in |
| 2238 | * yy_get_next_buffer() to have set up |
| 2239 | * yytext, we can now set up |
| 2240 | * yy_c_buf_p so that if some total |
| 2241 | * hoser (like flex itself) wants to |
| 2242 | * call the scanner after we return the |
| 2243 | * YY_NULL, it'll still work - another |
| 2244 | * YY_NULL will get returned. |
| 2245 | */ |
| 2246 | yy_c_buf_p = yytext_ptr + YY_MORE_ADJ; |
| 2247 | |
| 2248 | yy_act = YY_STATE_EOF(YY_START); |
| 2249 | goto do_action; |
| 2250 | } |
| 2251 | |
| 2252 | else |
| 2253 | { |
| 2254 | if ( ! yy_did_buffer_switch_on_eof ) |
| 2255 | YY_NEW_FILE; |
| 2256 | } |
| 2257 | break; |
| 2258 | } |
| 2259 | |
| 2260 | case EOB_ACT_CONTINUE_SCAN: |
| 2261 | yy_c_buf_p = |
| 2262 | yytext_ptr + yy_amount_of_matched_text; |
| 2263 | |
| 2264 | yy_current_state = yy_get_previous_state(); |
| 2265 | |
| 2266 | yy_cp = yy_c_buf_p; |
| 2267 | yy_bp = yytext_ptr + YY_MORE_ADJ; |
| 2268 | goto yy_match; |
| 2269 | |
| 2270 | case EOB_ACT_LAST_MATCH: |
| 2271 | yy_c_buf_p = |
| 2272 | &yy_current_buffer->yy_ch_buf[yy_n_chars]; |
| 2273 | |
| 2274 | yy_current_state = yy_get_previous_state(); |
| 2275 | |
| 2276 | yy_cp = yy_c_buf_p; |
| 2277 | yy_bp = yytext_ptr + YY_MORE_ADJ; |
| 2278 | goto yy_find_action; |
| 2279 | } |
| 2280 | break; |
| 2281 | } |
| 2282 | |
| 2283 | default: |
| 2284 | YY_FATAL_ERROR( |
| 2285 | "fatal flex scanner internal error--no action found" ); |
| 2286 | } /* end of action switch */ |
| 2287 | } /* end of scanning one token */ |
| 2288 | } /* end of yylex */ |
| 2289 | |
| 2290 | |
| 2291 | /* yy_get_next_buffer - try to read in a new buffer |
| 2292 | * |
| 2293 | * Returns a code representing an action: |
| 2294 | * EOB_ACT_LAST_MATCH - |
| 2295 | * EOB_ACT_CONTINUE_SCAN - continue scanning from current position |
| 2296 | * EOB_ACT_END_OF_FILE - end of file |
| 2297 | */ |
| 2298 | |
| 2299 | static int yy_get_next_buffer() |
| 2300 | { |
| 2301 | register char *dest = yy_current_buffer->yy_ch_buf; |
| 2302 | register char *source = yytext_ptr; |
| 2303 | register int number_to_move, i; |
| 2304 | int ret_val; |
| 2305 | |
| 2306 | if ( yy_c_buf_p > &yy_current_buffer->yy_ch_buf[yy_n_chars + 1] ) |
| 2307 | YY_FATAL_ERROR( |
| 2308 | "fatal flex scanner internal error--end of buffer missed" ); |
| 2309 | |
| 2310 | if ( yy_current_buffer->yy_fill_buffer == 0 ) |
| 2311 | { /* Don't try to fill the buffer, so this is an EOF. */ |
| 2312 | if ( yy_c_buf_p - yytext_ptr - YY_MORE_ADJ == 1 ) |
| 2313 | { |
| 2314 | /* We matched a single character, the EOB, so |
| 2315 | * treat this as a final EOF. |
| 2316 | */ |
| 2317 | return EOB_ACT_END_OF_FILE; |
| 2318 | } |
| 2319 | |
| 2320 | else |
| 2321 | { |
| 2322 | /* We matched some text prior to the EOB, first |
| 2323 | * process it. |
| 2324 | */ |
| 2325 | return EOB_ACT_LAST_MATCH; |
| 2326 | } |
| 2327 | } |
| 2328 | |
| 2329 | /* Try to read more data. */ |
| 2330 | |
| 2331 | /* First move last chars to start of buffer. */ |
| 2332 | number_to_move = (int) (yy_c_buf_p - yytext_ptr) - 1; |
| 2333 | |
| 2334 | for ( i = 0; i < number_to_move; ++i ) |
| 2335 | *(dest++) = *(source++); |
| 2336 | |
| 2337 | if ( yy_current_buffer->yy_buffer_status == YY_BUFFER_EOF_PENDING ) |
| 2338 | /* don't do the read, it's not guaranteed to return an EOF, |
| 2339 | * just force an EOF |
| 2340 | */ |
| 2341 | yy_current_buffer->yy_n_chars = yy_n_chars = 0; |
| 2342 | |
| 2343 | else |
| 2344 | { |
| 2345 | int num_to_read = |
| 2346 | yy_current_buffer->yy_buf_size - number_to_move - 1; |
| 2347 | |
| 2348 | while ( num_to_read <= 0 ) |
| 2349 | { /* Not enough room in the buffer - grow it. */ |
| 2350 | #ifdef YY_USES_REJECT |
| 2351 | YY_FATAL_ERROR( |
| 2352 | "input buffer overflow, can't enlarge buffer because scanner uses REJECT" ); |
| 2353 | #else |
| 2354 | |
| 2355 | /* just a shorter name for the current buffer */ |
| 2356 | YY_BUFFER_STATE b = yy_current_buffer; |
| 2357 | |
| 2358 | int yy_c_buf_p_offset = |
| 2359 | (int) (yy_c_buf_p - b->yy_ch_buf); |
| 2360 | |
| 2361 | if ( b->yy_is_our_buffer ) |
| 2362 | { |
| 2363 | int new_size = b->yy_buf_size * 2; |
| 2364 | |
| 2365 | if ( new_size <= 0 ) |
| 2366 | b->yy_buf_size += b->yy_buf_size / 8; |
| 2367 | else |
| 2368 | b->yy_buf_size *= 2; |
| 2369 | |
| 2370 | b->yy_ch_buf = (char *) |
| 2371 | /* Include room in for 2 EOB chars. */ |
| 2372 | yy_flex_realloc( (void *) b->yy_ch_buf, |
| 2373 | b->yy_buf_size + 2 ); |
| 2374 | } |
| 2375 | else |
| 2376 | /* Can't grow it, we don't own it. */ |
| 2377 | b->yy_ch_buf = 0; |
| 2378 | |
| 2379 | if ( ! b->yy_ch_buf ) |
| 2380 | YY_FATAL_ERROR( |
| 2381 | "fatal error - scanner input buffer overflow" ); |
| 2382 | |
| 2383 | yy_c_buf_p = &b->yy_ch_buf[yy_c_buf_p_offset]; |
| 2384 | |
| 2385 | num_to_read = yy_current_buffer->yy_buf_size - |
| 2386 | number_to_move - 1; |
| 2387 | #endif |
| 2388 | } |
| 2389 | |
| 2390 | if ( num_to_read > YY_READ_BUF_SIZE ) |
| 2391 | num_to_read = YY_READ_BUF_SIZE; |
| 2392 | |
| 2393 | /* Read in more data. */ |
| 2394 | YY_INPUT( (&yy_current_buffer->yy_ch_buf[number_to_move]), |
| 2395 | yy_n_chars, num_to_read ); |
| 2396 | |
| 2397 | yy_current_buffer->yy_n_chars = yy_n_chars; |
| 2398 | } |
| 2399 | |
| 2400 | if ( yy_n_chars == 0 ) |
| 2401 | { |
| 2402 | if ( number_to_move == YY_MORE_ADJ ) |
| 2403 | { |
| 2404 | ret_val = EOB_ACT_END_OF_FILE; |
| 2405 | yyrestart( yyin ); |
| 2406 | } |
| 2407 | |
| 2408 | else |
| 2409 | { |
| 2410 | ret_val = EOB_ACT_LAST_MATCH; |
| 2411 | yy_current_buffer->yy_buffer_status = |
| 2412 | YY_BUFFER_EOF_PENDING; |
| 2413 | } |
| 2414 | } |
| 2415 | |
| 2416 | else |
| 2417 | ret_val = EOB_ACT_CONTINUE_SCAN; |
| 2418 | |
| 2419 | yy_n_chars += number_to_move; |
| 2420 | yy_current_buffer->yy_ch_buf[yy_n_chars] = YY_END_OF_BUFFER_CHAR; |
| 2421 | yy_current_buffer->yy_ch_buf[yy_n_chars + 1] = YY_END_OF_BUFFER_CHAR; |
| 2422 | |
| 2423 | yytext_ptr = &yy_current_buffer->yy_ch_buf[0]; |
| 2424 | |
| 2425 | return ret_val; |
| 2426 | } |
| 2427 | |
| 2428 | |
| 2429 | /* yy_get_previous_state - get the state just before the EOB char was reached */ |
| 2430 | |
| 2431 | static yy_state_type yy_get_previous_state() |
| 2432 | { |
| 2433 | register yy_state_type yy_current_state; |
| 2434 | register char *yy_cp; |
| 2435 | |
| 2436 | yy_current_state = yy_start; |
| 2437 | yy_state_ptr = yy_state_buf; |
| 2438 | *yy_state_ptr++ = yy_current_state; |
| 2439 | |
| 2440 | for ( yy_cp = yytext_ptr + YY_MORE_ADJ; yy_cp < yy_c_buf_p; ++yy_cp ) |
| 2441 | { |
| 2442 | register YY_CHAR yy_c = (*yy_cp ? yy_ec[YY_SC_TO_UI(*yy_cp)] : 1); |
| 2443 | while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state ) |
| 2444 | { |
| 2445 | yy_current_state = (int) yy_def[yy_current_state]; |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 2446 | if ( yy_current_state >= 610 ) |
Reid Spencer | e7c3c60 | 2006-11-30 06:36:44 +0000 | [diff] [blame] | 2447 | yy_c = yy_meta[(unsigned int) yy_c]; |
| 2448 | } |
| 2449 | yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c]; |
| 2450 | *yy_state_ptr++ = yy_current_state; |
| 2451 | } |
| 2452 | |
| 2453 | return yy_current_state; |
| 2454 | } |
| 2455 | |
| 2456 | |
| 2457 | /* yy_try_NUL_trans - try to make a transition on the NUL character |
| 2458 | * |
| 2459 | * synopsis |
| 2460 | * next_state = yy_try_NUL_trans( current_state ); |
| 2461 | */ |
| 2462 | |
| 2463 | #ifdef YY_USE_PROTOS |
| 2464 | static yy_state_type yy_try_NUL_trans( yy_state_type yy_current_state ) |
| 2465 | #else |
| 2466 | static yy_state_type yy_try_NUL_trans( yy_current_state ) |
| 2467 | yy_state_type yy_current_state; |
| 2468 | #endif |
| 2469 | { |
| 2470 | register int yy_is_jam; |
| 2471 | |
| 2472 | register YY_CHAR yy_c = 1; |
| 2473 | while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state ) |
| 2474 | { |
| 2475 | yy_current_state = (int) yy_def[yy_current_state]; |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 2476 | if ( yy_current_state >= 610 ) |
Reid Spencer | e7c3c60 | 2006-11-30 06:36:44 +0000 | [diff] [blame] | 2477 | yy_c = yy_meta[(unsigned int) yy_c]; |
| 2478 | } |
| 2479 | yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c]; |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 2480 | yy_is_jam = (yy_current_state == 609); |
Reid Spencer | e7c3c60 | 2006-11-30 06:36:44 +0000 | [diff] [blame] | 2481 | if ( ! yy_is_jam ) |
| 2482 | *yy_state_ptr++ = yy_current_state; |
| 2483 | |
| 2484 | return yy_is_jam ? 0 : yy_current_state; |
| 2485 | } |
| 2486 | |
| 2487 | |
| 2488 | #ifndef YY_NO_UNPUT |
| 2489 | #ifdef YY_USE_PROTOS |
| 2490 | static inline void yyunput( int c, register char *yy_bp ) |
| 2491 | #else |
| 2492 | static inline void yyunput( c, yy_bp ) |
| 2493 | int c; |
| 2494 | register char *yy_bp; |
| 2495 | #endif |
| 2496 | { |
| 2497 | register char *yy_cp = yy_c_buf_p; |
| 2498 | |
| 2499 | /* undo effects of setting up yytext */ |
| 2500 | *yy_cp = yy_hold_char; |
| 2501 | |
| 2502 | if ( yy_cp < yy_current_buffer->yy_ch_buf + 2 ) |
| 2503 | { /* need to shift things up to make room */ |
| 2504 | /* +2 for EOB chars. */ |
| 2505 | register int number_to_move = yy_n_chars + 2; |
| 2506 | register char *dest = &yy_current_buffer->yy_ch_buf[ |
| 2507 | yy_current_buffer->yy_buf_size + 2]; |
| 2508 | register char *source = |
| 2509 | &yy_current_buffer->yy_ch_buf[number_to_move]; |
| 2510 | |
| 2511 | while ( source > yy_current_buffer->yy_ch_buf ) |
| 2512 | *--dest = *--source; |
| 2513 | |
| 2514 | yy_cp += (int) (dest - source); |
| 2515 | yy_bp += (int) (dest - source); |
| 2516 | yy_current_buffer->yy_n_chars = |
| 2517 | yy_n_chars = yy_current_buffer->yy_buf_size; |
| 2518 | |
| 2519 | if ( yy_cp < yy_current_buffer->yy_ch_buf + 2 ) |
| 2520 | YY_FATAL_ERROR( "flex scanner push-back overflow" ); |
| 2521 | } |
| 2522 | |
| 2523 | *--yy_cp = (char) c; |
| 2524 | |
| 2525 | if ( c == '\n' ) |
| 2526 | --yylineno; |
| 2527 | |
| 2528 | yytext_ptr = yy_bp; |
| 2529 | yy_hold_char = *yy_cp; |
| 2530 | yy_c_buf_p = yy_cp; |
| 2531 | } |
| 2532 | #endif /* ifndef YY_NO_UNPUT */ |
| 2533 | |
| 2534 | |
| 2535 | #ifndef YY_NO_INPUT |
| 2536 | #ifdef __cplusplus |
| 2537 | static int yyinput() |
| 2538 | #else |
| 2539 | static int input() |
| 2540 | #endif |
| 2541 | { |
| 2542 | int c; |
| 2543 | |
| 2544 | *yy_c_buf_p = yy_hold_char; |
| 2545 | |
| 2546 | if ( *yy_c_buf_p == YY_END_OF_BUFFER_CHAR ) |
| 2547 | { |
| 2548 | /* yy_c_buf_p now points to the character we want to return. |
| 2549 | * If this occurs *before* the EOB characters, then it's a |
| 2550 | * valid NUL; if not, then we've hit the end of the buffer. |
| 2551 | */ |
| 2552 | if ( yy_c_buf_p < &yy_current_buffer->yy_ch_buf[yy_n_chars] ) |
| 2553 | /* This was really a NUL. */ |
| 2554 | *yy_c_buf_p = '\0'; |
| 2555 | |
| 2556 | else |
| 2557 | { /* need more input */ |
| 2558 | int offset = yy_c_buf_p - yytext_ptr; |
| 2559 | ++yy_c_buf_p; |
| 2560 | |
| 2561 | switch ( yy_get_next_buffer() ) |
| 2562 | { |
| 2563 | case EOB_ACT_LAST_MATCH: |
| 2564 | /* This happens because yy_g_n_b() |
| 2565 | * sees that we've accumulated a |
| 2566 | * token and flags that we need to |
| 2567 | * try matching the token before |
| 2568 | * proceeding. But for input(), |
| 2569 | * there's no matching to consider. |
| 2570 | * So convert the EOB_ACT_LAST_MATCH |
| 2571 | * to EOB_ACT_END_OF_FILE. |
| 2572 | */ |
| 2573 | |
| 2574 | /* Reset buffer status. */ |
| 2575 | yyrestart( yyin ); |
| 2576 | |
| 2577 | /* fall through */ |
| 2578 | |
| 2579 | case EOB_ACT_END_OF_FILE: |
| 2580 | { |
| 2581 | if ( yywrap() ) |
| 2582 | return EOF; |
| 2583 | |
| 2584 | if ( ! yy_did_buffer_switch_on_eof ) |
| 2585 | YY_NEW_FILE; |
| 2586 | #ifdef __cplusplus |
| 2587 | return yyinput(); |
| 2588 | #else |
| 2589 | return input(); |
| 2590 | #endif |
| 2591 | } |
| 2592 | |
| 2593 | case EOB_ACT_CONTINUE_SCAN: |
| 2594 | yy_c_buf_p = yytext_ptr + offset; |
| 2595 | break; |
| 2596 | } |
| 2597 | } |
| 2598 | } |
| 2599 | |
| 2600 | c = *(unsigned char *) yy_c_buf_p; /* cast for 8-bit char's */ |
| 2601 | *yy_c_buf_p = '\0'; /* preserve yytext */ |
| 2602 | yy_hold_char = *++yy_c_buf_p; |
| 2603 | |
| 2604 | if ( c == '\n' ) |
| 2605 | ++yylineno; |
| 2606 | |
| 2607 | return c; |
| 2608 | } |
| 2609 | #endif /* YY_NO_INPUT */ |
| 2610 | |
| 2611 | #ifdef YY_USE_PROTOS |
| 2612 | void yyrestart( FILE *input_file ) |
| 2613 | #else |
| 2614 | void yyrestart( input_file ) |
| 2615 | FILE *input_file; |
| 2616 | #endif |
| 2617 | { |
| 2618 | if ( ! yy_current_buffer ) |
| 2619 | yy_current_buffer = yy_create_buffer( yyin, YY_BUF_SIZE ); |
| 2620 | |
| 2621 | yy_init_buffer( yy_current_buffer, input_file ); |
| 2622 | yy_load_buffer_state(); |
| 2623 | } |
| 2624 | |
| 2625 | |
| 2626 | #ifdef YY_USE_PROTOS |
| 2627 | void yy_switch_to_buffer( YY_BUFFER_STATE new_buffer ) |
| 2628 | #else |
| 2629 | void yy_switch_to_buffer( new_buffer ) |
| 2630 | YY_BUFFER_STATE new_buffer; |
| 2631 | #endif |
| 2632 | { |
| 2633 | if ( yy_current_buffer == new_buffer ) |
| 2634 | return; |
| 2635 | |
| 2636 | if ( yy_current_buffer ) |
| 2637 | { |
| 2638 | /* Flush out information for old buffer. */ |
| 2639 | *yy_c_buf_p = yy_hold_char; |
| 2640 | yy_current_buffer->yy_buf_pos = yy_c_buf_p; |
| 2641 | yy_current_buffer->yy_n_chars = yy_n_chars; |
| 2642 | } |
| 2643 | |
| 2644 | yy_current_buffer = new_buffer; |
| 2645 | yy_load_buffer_state(); |
| 2646 | |
| 2647 | /* We don't actually know whether we did this switch during |
| 2648 | * EOF (yywrap()) processing, but the only time this flag |
| 2649 | * is looked at is after yywrap() is called, so it's safe |
| 2650 | * to go ahead and always set it. |
| 2651 | */ |
| 2652 | yy_did_buffer_switch_on_eof = 1; |
| 2653 | } |
| 2654 | |
| 2655 | |
| 2656 | #ifdef YY_USE_PROTOS |
| 2657 | void yy_load_buffer_state( void ) |
| 2658 | #else |
| 2659 | void yy_load_buffer_state() |
| 2660 | #endif |
| 2661 | { |
| 2662 | yy_n_chars = yy_current_buffer->yy_n_chars; |
| 2663 | yytext_ptr = yy_c_buf_p = yy_current_buffer->yy_buf_pos; |
| 2664 | yyin = yy_current_buffer->yy_input_file; |
| 2665 | yy_hold_char = *yy_c_buf_p; |
| 2666 | } |
| 2667 | |
| 2668 | |
| 2669 | #ifdef YY_USE_PROTOS |
| 2670 | YY_BUFFER_STATE yy_create_buffer( FILE *file, int size ) |
| 2671 | #else |
| 2672 | YY_BUFFER_STATE yy_create_buffer( file, size ) |
| 2673 | FILE *file; |
| 2674 | int size; |
| 2675 | #endif |
| 2676 | { |
| 2677 | YY_BUFFER_STATE b; |
| 2678 | |
| 2679 | b = (YY_BUFFER_STATE) yy_flex_alloc( sizeof( struct yy_buffer_state ) ); |
| 2680 | if ( ! b ) |
| 2681 | YY_FATAL_ERROR( "out of dynamic memory in yy_create_buffer()" ); |
| 2682 | |
| 2683 | b->yy_buf_size = size; |
| 2684 | |
| 2685 | /* yy_ch_buf has to be 2 characters longer than the size given because |
| 2686 | * we need to put in 2 end-of-buffer characters. |
| 2687 | */ |
| 2688 | b->yy_ch_buf = (char *) yy_flex_alloc( b->yy_buf_size + 2 ); |
| 2689 | if ( ! b->yy_ch_buf ) |
| 2690 | YY_FATAL_ERROR( "out of dynamic memory in yy_create_buffer()" ); |
| 2691 | |
| 2692 | b->yy_is_our_buffer = 1; |
| 2693 | |
| 2694 | yy_init_buffer( b, file ); |
| 2695 | |
| 2696 | return b; |
| 2697 | } |
| 2698 | |
| 2699 | |
| 2700 | #ifdef YY_USE_PROTOS |
| 2701 | void yy_delete_buffer( YY_BUFFER_STATE b ) |
| 2702 | #else |
| 2703 | void yy_delete_buffer( b ) |
| 2704 | YY_BUFFER_STATE b; |
| 2705 | #endif |
| 2706 | { |
| 2707 | if ( ! b ) |
| 2708 | return; |
| 2709 | |
| 2710 | if ( b == yy_current_buffer ) |
| 2711 | yy_current_buffer = (YY_BUFFER_STATE) 0; |
| 2712 | |
| 2713 | if ( b->yy_is_our_buffer ) |
| 2714 | yy_flex_free( (void *) b->yy_ch_buf ); |
| 2715 | |
| 2716 | yy_flex_free( (void *) b ); |
| 2717 | } |
| 2718 | |
| 2719 | |
| 2720 | |
| 2721 | #ifdef YY_USE_PROTOS |
| 2722 | void yy_init_buffer( YY_BUFFER_STATE b, FILE *file ) |
| 2723 | #else |
| 2724 | void yy_init_buffer( b, file ) |
| 2725 | YY_BUFFER_STATE b; |
| 2726 | FILE *file; |
| 2727 | #endif |
| 2728 | |
| 2729 | |
| 2730 | { |
| 2731 | yy_flush_buffer( b ); |
| 2732 | |
| 2733 | b->yy_input_file = file; |
| 2734 | b->yy_fill_buffer = 1; |
| 2735 | |
| 2736 | #if YY_ALWAYS_INTERACTIVE |
| 2737 | b->yy_is_interactive = 1; |
| 2738 | #else |
| 2739 | #if YY_NEVER_INTERACTIVE |
| 2740 | b->yy_is_interactive = 0; |
| 2741 | #else |
| 2742 | b->yy_is_interactive = file ? (isatty( fileno(file) ) > 0) : 0; |
| 2743 | #endif |
| 2744 | #endif |
| 2745 | } |
| 2746 | |
| 2747 | |
| 2748 | #ifdef YY_USE_PROTOS |
| 2749 | void yy_flush_buffer( YY_BUFFER_STATE b ) |
| 2750 | #else |
| 2751 | void yy_flush_buffer( b ) |
| 2752 | YY_BUFFER_STATE b; |
| 2753 | #endif |
| 2754 | |
| 2755 | { |
| 2756 | if ( ! b ) |
| 2757 | return; |
| 2758 | |
| 2759 | b->yy_n_chars = 0; |
| 2760 | |
| 2761 | /* We always need two end-of-buffer characters. The first causes |
| 2762 | * a transition to the end-of-buffer state. The second causes |
| 2763 | * a jam in that state. |
| 2764 | */ |
| 2765 | b->yy_ch_buf[0] = YY_END_OF_BUFFER_CHAR; |
| 2766 | b->yy_ch_buf[1] = YY_END_OF_BUFFER_CHAR; |
| 2767 | |
| 2768 | b->yy_buf_pos = &b->yy_ch_buf[0]; |
| 2769 | |
| 2770 | b->yy_at_bol = 1; |
| 2771 | b->yy_buffer_status = YY_BUFFER_NEW; |
| 2772 | |
| 2773 | if ( b == yy_current_buffer ) |
| 2774 | yy_load_buffer_state(); |
| 2775 | } |
| 2776 | |
| 2777 | |
| 2778 | #ifndef YY_NO_SCAN_BUFFER |
| 2779 | #ifdef YY_USE_PROTOS |
| 2780 | YY_BUFFER_STATE yy_scan_buffer( char *base, yy_size_t size ) |
| 2781 | #else |
| 2782 | YY_BUFFER_STATE yy_scan_buffer( base, size ) |
| 2783 | char *base; |
| 2784 | yy_size_t size; |
| 2785 | #endif |
| 2786 | { |
| 2787 | YY_BUFFER_STATE b; |
| 2788 | |
| 2789 | if ( size < 2 || |
| 2790 | base[size-2] != YY_END_OF_BUFFER_CHAR || |
| 2791 | base[size-1] != YY_END_OF_BUFFER_CHAR ) |
| 2792 | /* They forgot to leave room for the EOB's. */ |
| 2793 | return 0; |
| 2794 | |
| 2795 | b = (YY_BUFFER_STATE) yy_flex_alloc( sizeof( struct yy_buffer_state ) ); |
| 2796 | if ( ! b ) |
| 2797 | YY_FATAL_ERROR( "out of dynamic memory in yy_scan_buffer()" ); |
| 2798 | |
| 2799 | b->yy_buf_size = size - 2; /* "- 2" to take care of EOB's */ |
| 2800 | b->yy_buf_pos = b->yy_ch_buf = base; |
| 2801 | b->yy_is_our_buffer = 0; |
| 2802 | b->yy_input_file = 0; |
| 2803 | b->yy_n_chars = b->yy_buf_size; |
| 2804 | b->yy_is_interactive = 0; |
| 2805 | b->yy_at_bol = 1; |
| 2806 | b->yy_fill_buffer = 0; |
| 2807 | b->yy_buffer_status = YY_BUFFER_NEW; |
| 2808 | |
| 2809 | yy_switch_to_buffer( b ); |
| 2810 | |
| 2811 | return b; |
| 2812 | } |
| 2813 | #endif |
| 2814 | |
| 2815 | |
| 2816 | #ifndef YY_NO_SCAN_STRING |
| 2817 | #ifdef YY_USE_PROTOS |
| 2818 | YY_BUFFER_STATE yy_scan_string( yyconst char *yy_str ) |
| 2819 | #else |
| 2820 | YY_BUFFER_STATE yy_scan_string( yy_str ) |
| 2821 | yyconst char *yy_str; |
| 2822 | #endif |
| 2823 | { |
| 2824 | int len; |
| 2825 | for ( len = 0; yy_str[len]; ++len ) |
| 2826 | ; |
| 2827 | |
| 2828 | return yy_scan_bytes( yy_str, len ); |
| 2829 | } |
| 2830 | #endif |
| 2831 | |
| 2832 | |
| 2833 | #ifndef YY_NO_SCAN_BYTES |
| 2834 | #ifdef YY_USE_PROTOS |
| 2835 | YY_BUFFER_STATE yy_scan_bytes( yyconst char *bytes, int len ) |
| 2836 | #else |
| 2837 | YY_BUFFER_STATE yy_scan_bytes( bytes, len ) |
| 2838 | yyconst char *bytes; |
| 2839 | int len; |
| 2840 | #endif |
| 2841 | { |
| 2842 | YY_BUFFER_STATE b; |
| 2843 | char *buf; |
| 2844 | yy_size_t n; |
| 2845 | int i; |
| 2846 | |
| 2847 | /* Get memory for full buffer, including space for trailing EOB's. */ |
| 2848 | n = len + 2; |
| 2849 | buf = (char *) yy_flex_alloc( n ); |
| 2850 | if ( ! buf ) |
| 2851 | YY_FATAL_ERROR( "out of dynamic memory in yy_scan_bytes()" ); |
| 2852 | |
| 2853 | for ( i = 0; i < len; ++i ) |
| 2854 | buf[i] = bytes[i]; |
| 2855 | |
| 2856 | buf[len] = buf[len+1] = YY_END_OF_BUFFER_CHAR; |
| 2857 | |
| 2858 | b = yy_scan_buffer( buf, n ); |
| 2859 | if ( ! b ) |
| 2860 | YY_FATAL_ERROR( "bad buffer in yy_scan_bytes()" ); |
| 2861 | |
| 2862 | /* It's okay to grow etc. this buffer, and we should throw it |
| 2863 | * away when we're done. |
| 2864 | */ |
| 2865 | b->yy_is_our_buffer = 1; |
| 2866 | |
| 2867 | return b; |
| 2868 | } |
| 2869 | #endif |
| 2870 | |
| 2871 | |
| 2872 | #ifndef YY_NO_PUSH_STATE |
| 2873 | #ifdef YY_USE_PROTOS |
| 2874 | static void yy_push_state( int new_state ) |
| 2875 | #else |
| 2876 | static void yy_push_state( new_state ) |
| 2877 | int new_state; |
| 2878 | #endif |
| 2879 | { |
| 2880 | if ( yy_start_stack_ptr >= yy_start_stack_depth ) |
| 2881 | { |
| 2882 | yy_size_t new_size; |
| 2883 | |
| 2884 | yy_start_stack_depth += YY_START_STACK_INCR; |
| 2885 | new_size = yy_start_stack_depth * sizeof( int ); |
| 2886 | |
| 2887 | if ( ! yy_start_stack ) |
| 2888 | yy_start_stack = (int *) yy_flex_alloc( new_size ); |
| 2889 | |
| 2890 | else |
| 2891 | yy_start_stack = (int *) yy_flex_realloc( |
| 2892 | (void *) yy_start_stack, new_size ); |
| 2893 | |
| 2894 | if ( ! yy_start_stack ) |
| 2895 | YY_FATAL_ERROR( |
| 2896 | "out of memory expanding start-condition stack" ); |
| 2897 | } |
| 2898 | |
| 2899 | yy_start_stack[yy_start_stack_ptr++] = YY_START; |
| 2900 | |
| 2901 | BEGIN(new_state); |
| 2902 | } |
| 2903 | #endif |
| 2904 | |
| 2905 | |
| 2906 | #ifndef YY_NO_POP_STATE |
| 2907 | static void yy_pop_state() |
| 2908 | { |
| 2909 | if ( --yy_start_stack_ptr < 0 ) |
| 2910 | YY_FATAL_ERROR( "start-condition stack underflow" ); |
| 2911 | |
| 2912 | BEGIN(yy_start_stack[yy_start_stack_ptr]); |
| 2913 | } |
| 2914 | #endif |
| 2915 | |
| 2916 | |
| 2917 | #ifndef YY_NO_TOP_STATE |
| 2918 | static int yy_top_state() |
| 2919 | { |
| 2920 | return yy_start_stack[yy_start_stack_ptr - 1]; |
| 2921 | } |
| 2922 | #endif |
| 2923 | |
| 2924 | #ifndef YY_EXIT_FAILURE |
| 2925 | #define YY_EXIT_FAILURE 2 |
| 2926 | #endif |
| 2927 | |
| 2928 | #ifdef YY_USE_PROTOS |
| 2929 | static void yy_fatal_error( yyconst char msg[] ) |
| 2930 | #else |
| 2931 | static void yy_fatal_error( msg ) |
| 2932 | char msg[]; |
| 2933 | #endif |
| 2934 | { |
| 2935 | (void) fprintf( stderr, "%s\n", msg ); |
| 2936 | exit( YY_EXIT_FAILURE ); |
| 2937 | } |
| 2938 | |
| 2939 | |
| 2940 | |
| 2941 | /* Redefine yyless() so it works in section 3 code. */ |
| 2942 | |
| 2943 | #undef yyless |
| 2944 | #define yyless(n) \ |
| 2945 | do \ |
| 2946 | { \ |
| 2947 | /* Undo effects of setting up yytext. */ \ |
| 2948 | yytext[yyleng] = yy_hold_char; \ |
| 2949 | yy_c_buf_p = yytext + n; \ |
| 2950 | yy_hold_char = *yy_c_buf_p; \ |
| 2951 | *yy_c_buf_p = '\0'; \ |
| 2952 | yyleng = n; \ |
| 2953 | } \ |
| 2954 | while ( 0 ) |
| 2955 | |
| 2956 | |
| 2957 | /* Internal utility routines. */ |
| 2958 | |
| 2959 | #ifndef yytext_ptr |
| 2960 | #ifdef YY_USE_PROTOS |
| 2961 | static void yy_flex_strncpy( char *s1, yyconst char *s2, int n ) |
| 2962 | #else |
| 2963 | static void yy_flex_strncpy( s1, s2, n ) |
| 2964 | char *s1; |
| 2965 | yyconst char *s2; |
| 2966 | int n; |
| 2967 | #endif |
| 2968 | { |
| 2969 | register int i; |
| 2970 | for ( i = 0; i < n; ++i ) |
| 2971 | s1[i] = s2[i]; |
| 2972 | } |
| 2973 | #endif |
| 2974 | |
| 2975 | #ifdef YY_NEED_STRLEN |
| 2976 | #ifdef YY_USE_PROTOS |
| 2977 | static int yy_flex_strlen( yyconst char *s ) |
| 2978 | #else |
| 2979 | static int yy_flex_strlen( s ) |
| 2980 | yyconst char *s; |
| 2981 | #endif |
| 2982 | { |
| 2983 | register int n; |
| 2984 | for ( n = 0; s[n]; ++n ) |
| 2985 | ; |
| 2986 | |
| 2987 | return n; |
| 2988 | } |
| 2989 | #endif |
| 2990 | |
| 2991 | |
| 2992 | #ifdef YY_USE_PROTOS |
| 2993 | static void *yy_flex_alloc( yy_size_t size ) |
| 2994 | #else |
| 2995 | static void *yy_flex_alloc( size ) |
| 2996 | yy_size_t size; |
| 2997 | #endif |
| 2998 | { |
| 2999 | return (void *) malloc( size ); |
| 3000 | } |
| 3001 | |
| 3002 | #ifdef YY_USE_PROTOS |
| 3003 | static inline void *yy_flex_realloc( void *ptr, yy_size_t size ) |
| 3004 | #else |
| 3005 | static inline void *yy_flex_realloc( ptr, size ) |
| 3006 | void *ptr; |
| 3007 | yy_size_t size; |
| 3008 | #endif |
| 3009 | { |
| 3010 | /* The cast to (char *) in the following accommodates both |
| 3011 | * implementations that use char* generic pointers, and those |
| 3012 | * that use void* generic pointers. It works with the latter |
| 3013 | * because both ANSI C and C++ allow castless assignment from |
| 3014 | * any pointer type to void*, and deal with argument conversions |
| 3015 | * as though doing an assignment. |
| 3016 | */ |
| 3017 | return (void *) realloc( (char *) ptr, size ); |
| 3018 | } |
| 3019 | |
| 3020 | #ifdef YY_USE_PROTOS |
| 3021 | static void yy_flex_free( void *ptr ) |
| 3022 | #else |
| 3023 | static void yy_flex_free( ptr ) |
| 3024 | void *ptr; |
| 3025 | #endif |
| 3026 | { |
| 3027 | free( ptr ); |
| 3028 | } |
| 3029 | |
| 3030 | #if YY_MAIN |
| 3031 | int main() |
| 3032 | { |
| 3033 | yylex(); |
| 3034 | return 0; |
| 3035 | } |
| 3036 | #endif |
Reid Spencer | 950bf60 | 2007-01-26 08:19:09 +0000 | [diff] [blame^] | 3037 | #line 416 "/proj/llvm/llvm-1/tools/llvm-upgrade/UpgradeLexer.l" |
Reid Spencer | e7c3c60 | 2006-11-30 06:36:44 +0000 | [diff] [blame] | 3038 | |