diff options
author | Matthias Maennich <matthias@maennich.net> | 2017-08-24 21:48:48 (GMT) |
---|---|---|
committer | Matthias Maennich <matthias@maennich.net> | 2017-08-28 22:25:02 (GMT) |
commit | 59f78dcb2369aaab3db7fa5de9f48b25d801003d (patch) | |
tree | c31ecdc3b752edc9c76590d89c5db74378168f2e | |
parent | d2e8351a4dc4bf2255942eabf16d4376c4a48c50 (diff) | |
download | CMake-59f78dcb2369aaab3db7fa5de9f48b25d801003d.zip CMake-59f78dcb2369aaab3db7fa5de9f48b25d801003d.tar.gz CMake-59f78dcb2369aaab3db7fa5de9f48b25d801003d.tar.bz2 |
cmDependsJavaLexer: regenerate with flex 2.6.4 (previously 2.6.1)
flex 2.6.3 introduces symbol remapping through macro definitions. hence the
change appears bigger than one would expect from a minor version upgrade.
In addition some manual cleanup that had to be done previously is now
obsolete. namely:
- the size_t cast of _yybytes_len in yy_scan_bytes
(i is now also defined int and not size_t anymore)
- the redefinition of yyl within yy_find_action
(yyl is now already defined as int)
Line number preprocessor directives (#line) were previously generated into
the c source file. This actually breaks debugging as debuggers have a hard
time finding the original cmDependsJavaLexer.in.l and mapping the current
instruction to a meaningful location within that file.
The prefix "cmDependsJava_yy" can already be set as %option directly.
For convenience also provide a sed command for all the manual steps that
need to be done after generating.
Signed-off-by: Matthias Maennich <matthias@maennich.net>
-rw-r--r-- | Source/LexerParser/cmDependsJavaLexer.cxx | 767 | ||||
-rw-r--r-- | Source/LexerParser/cmDependsJavaLexer.h | 441 | ||||
-rw-r--r-- | Source/LexerParser/cmDependsJavaLexer.in.l | 11 |
3 files changed, 824 insertions, 395 deletions
diff --git a/Source/LexerParser/cmDependsJavaLexer.cxx b/Source/LexerParser/cmDependsJavaLexer.cxx index 8159f47..36cac61 100644 --- a/Source/LexerParser/cmDependsJavaLexer.cxx +++ b/Source/LexerParser/cmDependsJavaLexer.cxx @@ -1,7 +1,4 @@ #include "cmStandardLexer.h" -#line 2 "cmDependsJavaLexer.cxx" - -#line 4 "cmDependsJavaLexer.cxx" #define FLEXINT_H 1 #define YY_INT_ALIGNED short int @@ -11,11 +8,221 @@ #define FLEX_SCANNER #define YY_FLEX_MAJOR_VERSION 2 #define YY_FLEX_MINOR_VERSION 6 -#define YY_FLEX_SUBMINOR_VERSION 1 +#define YY_FLEX_SUBMINOR_VERSION 4 #if YY_FLEX_SUBMINOR_VERSION > 0 #define FLEX_BETA #endif +#ifdef yy_create_buffer +#define cmDependsJava_yy_create_buffer_ALREADY_DEFINED +#else +#define yy_create_buffer cmDependsJava_yy_create_buffer +#endif + +#ifdef yy_delete_buffer +#define cmDependsJava_yy_delete_buffer_ALREADY_DEFINED +#else +#define yy_delete_buffer cmDependsJava_yy_delete_buffer +#endif + +#ifdef yy_scan_buffer +#define cmDependsJava_yy_scan_buffer_ALREADY_DEFINED +#else +#define yy_scan_buffer cmDependsJava_yy_scan_buffer +#endif + +#ifdef yy_scan_string +#define cmDependsJava_yy_scan_string_ALREADY_DEFINED +#else +#define yy_scan_string cmDependsJava_yy_scan_string +#endif + +#ifdef yy_scan_bytes +#define cmDependsJava_yy_scan_bytes_ALREADY_DEFINED +#else +#define yy_scan_bytes cmDependsJava_yy_scan_bytes +#endif + +#ifdef yy_init_buffer +#define cmDependsJava_yy_init_buffer_ALREADY_DEFINED +#else +#define yy_init_buffer cmDependsJava_yy_init_buffer +#endif + +#ifdef yy_flush_buffer +#define cmDependsJava_yy_flush_buffer_ALREADY_DEFINED +#else +#define yy_flush_buffer cmDependsJava_yy_flush_buffer +#endif + +#ifdef yy_load_buffer_state +#define cmDependsJava_yy_load_buffer_state_ALREADY_DEFINED +#else +#define yy_load_buffer_state cmDependsJava_yy_load_buffer_state +#endif + +#ifdef yy_switch_to_buffer +#define cmDependsJava_yy_switch_to_buffer_ALREADY_DEFINED +#else +#define yy_switch_to_buffer cmDependsJava_yy_switch_to_buffer +#endif + +#ifdef yypush_buffer_state +#define cmDependsJava_yypush_buffer_state_ALREADY_DEFINED +#else +#define yypush_buffer_state cmDependsJava_yypush_buffer_state +#endif + +#ifdef yypop_buffer_state +#define cmDependsJava_yypop_buffer_state_ALREADY_DEFINED +#else +#define yypop_buffer_state cmDependsJava_yypop_buffer_state +#endif + +#ifdef yyensure_buffer_stack +#define cmDependsJava_yyensure_buffer_stack_ALREADY_DEFINED +#else +#define yyensure_buffer_stack cmDependsJava_yyensure_buffer_stack +#endif + +#ifdef yylex +#define cmDependsJava_yylex_ALREADY_DEFINED +#else +#define yylex cmDependsJava_yylex +#endif + +#ifdef yyrestart +#define cmDependsJava_yyrestart_ALREADY_DEFINED +#else +#define yyrestart cmDependsJava_yyrestart +#endif + +#ifdef yylex_init +#define cmDependsJava_yylex_init_ALREADY_DEFINED +#else +#define yylex_init cmDependsJava_yylex_init +#endif + +#ifdef yylex_init_extra +#define cmDependsJava_yylex_init_extra_ALREADY_DEFINED +#else +#define yylex_init_extra cmDependsJava_yylex_init_extra +#endif + +#ifdef yylex_destroy +#define cmDependsJava_yylex_destroy_ALREADY_DEFINED +#else +#define yylex_destroy cmDependsJava_yylex_destroy +#endif + +#ifdef yyget_debug +#define cmDependsJava_yyget_debug_ALREADY_DEFINED +#else +#define yyget_debug cmDependsJava_yyget_debug +#endif + +#ifdef yyset_debug +#define cmDependsJava_yyset_debug_ALREADY_DEFINED +#else +#define yyset_debug cmDependsJava_yyset_debug +#endif + +#ifdef yyget_extra +#define cmDependsJava_yyget_extra_ALREADY_DEFINED +#else +#define yyget_extra cmDependsJava_yyget_extra +#endif + +#ifdef yyset_extra +#define cmDependsJava_yyset_extra_ALREADY_DEFINED +#else +#define yyset_extra cmDependsJava_yyset_extra +#endif + +#ifdef yyget_in +#define cmDependsJava_yyget_in_ALREADY_DEFINED +#else +#define yyget_in cmDependsJava_yyget_in +#endif + +#ifdef yyset_in +#define cmDependsJava_yyset_in_ALREADY_DEFINED +#else +#define yyset_in cmDependsJava_yyset_in +#endif + +#ifdef yyget_out +#define cmDependsJava_yyget_out_ALREADY_DEFINED +#else +#define yyget_out cmDependsJava_yyget_out +#endif + +#ifdef yyset_out +#define cmDependsJava_yyset_out_ALREADY_DEFINED +#else +#define yyset_out cmDependsJava_yyset_out +#endif + +#ifdef yyget_leng +#define cmDependsJava_yyget_leng_ALREADY_DEFINED +#else +#define yyget_leng cmDependsJava_yyget_leng +#endif + +#ifdef yyget_text +#define cmDependsJava_yyget_text_ALREADY_DEFINED +#else +#define yyget_text cmDependsJava_yyget_text +#endif + +#ifdef yyget_lineno +#define cmDependsJava_yyget_lineno_ALREADY_DEFINED +#else +#define yyget_lineno cmDependsJava_yyget_lineno +#endif + +#ifdef yyset_lineno +#define cmDependsJava_yyset_lineno_ALREADY_DEFINED +#else +#define yyset_lineno cmDependsJava_yyset_lineno +#endif + +#ifdef yyget_column +#define cmDependsJava_yyget_column_ALREADY_DEFINED +#else +#define yyget_column cmDependsJava_yyget_column +#endif + +#ifdef yyset_column +#define cmDependsJava_yyset_column_ALREADY_DEFINED +#else +#define yyset_column cmDependsJava_yyset_column +#endif + +#ifdef yywrap +#define cmDependsJava_yywrap_ALREADY_DEFINED +#else +#define yywrap cmDependsJava_yywrap +#endif + +#ifdef yyalloc +#define cmDependsJava_yyalloc_ALREADY_DEFINED +#else +#define yyalloc cmDependsJava_yyalloc +#endif + +#ifdef yyrealloc +#define cmDependsJava_yyrealloc_ALREADY_DEFINED +#else +#define yyrealloc cmDependsJava_yyrealloc +#endif + +#ifdef yyfree +#define cmDependsJava_yyfree_ALREADY_DEFINED +#else +#define yyfree cmDependsJava_yyfree +#endif + /* First, we deal with platform-specific or compiler-specific issues. */ /* begin standard C headers. */ @@ -86,10 +293,16 @@ typedef unsigned int flex_uint32_t; #define UINT32_MAX (4294967295U) #endif +#ifndef SIZE_MAX +#define SIZE_MAX (~(size_t)0) +#endif + #endif /* ! C99 */ #endif /* ! FLEXINT_H */ +/* begin standard C++ headers. */ + /* TODO: this is always defined, so inline it */ #define yyconst const @@ -102,12 +315,10 @@ typedef unsigned int flex_uint32_t; /* Returned upon end-of-file. */ #define YY_NULL 0 -/* Promotes a possibly negative, possibly signed char to an unsigned - * integer for use as an array index. If the signed char is negative, - * we want to instead treat it as an 8-bit unsigned char, hence the - * double cast. +/* Promotes a possibly negative, possibly signed char to an + * integer in range [0..255] for use as an array index. */ -#define YY_SC_TO_UI(c) ((unsigned int) (unsigned char) c) +#define YY_SC_TO_UI(c) ((YY_CHAR) (c)) /* An opaque pointer. */ #ifndef YY_TYPEDEF_YY_SCANNER_T @@ -131,20 +342,16 @@ typedef void* yyscan_t; * definition of BEGIN. */ #define BEGIN yyg->yy_start = 1 + 2 * - /* Translate the current start state into a value that can be later handed * to BEGIN to return to the state. The YYSTATE alias is for lex * compatibility. */ #define YY_START ((yyg->yy_start - 1) / 2) #define YYSTATE YY_START - /* Action number for EOF rule of a given start state. */ #define YY_STATE_EOF(state) (YY_END_OF_BUFFER + state + 1) - /* Special action meaning "start processing a new file". */ -#define YY_NEW_FILE cmDependsJava_yyrestart(yyin ,yyscanner ) - +#define YY_NEW_FILE yyrestart( yyin , yyscanner ) #define YY_END_OF_BUFFER_CHAR 0 /* Size of default input buffer. */ @@ -194,7 +401,6 @@ typedef size_t yy_size_t; YY_DO_BEFORE_ACTION; /* set up yytext again */ \ } \ while ( 0 ) - #define unput(c) yyunput( c, yyg->yytext_ptr , yyscanner ) #ifndef YY_STRUCT_YY_BUFFER_STATE @@ -254,7 +460,7 @@ struct yy_buffer_state * possible backing-up. * * When we actually see the EOF, we change the status to "new" - * (via cmDependsJava_yyrestart()), so that the user can continue scanning by + * (via yyrestart()), so that the user can continue scanning by * just pointing yyin at a new input file. */ #define YY_BUFFER_EOF_PENDING 2 @@ -271,73 +477,67 @@ struct yy_buffer_state #define YY_CURRENT_BUFFER ( yyg->yy_buffer_stack \ ? yyg->yy_buffer_stack[yyg->yy_buffer_stack_top] \ : NULL) - /* Same as previous macro, but useful when we know that the buffer stack is not * NULL or when we need an lvalue. For internal use only. */ #define YY_CURRENT_BUFFER_LVALUE yyg->yy_buffer_stack[yyg->yy_buffer_stack_top] -void cmDependsJava_yyrestart (FILE *input_file ,yyscan_t yyscanner ); -void cmDependsJava_yy_switch_to_buffer (YY_BUFFER_STATE new_buffer ,yyscan_t yyscanner ); -YY_BUFFER_STATE cmDependsJava_yy_create_buffer (FILE *file,int size ,yyscan_t yyscanner ); -void cmDependsJava_yy_delete_buffer (YY_BUFFER_STATE b ,yyscan_t yyscanner ); -void cmDependsJava_yy_flush_buffer (YY_BUFFER_STATE b ,yyscan_t yyscanner ); -void cmDependsJava_yypush_buffer_state (YY_BUFFER_STATE new_buffer ,yyscan_t yyscanner ); -void cmDependsJava_yypop_buffer_state (yyscan_t yyscanner ); +void yyrestart ( FILE *input_file , yyscan_t yyscanner ); +void yy_switch_to_buffer ( YY_BUFFER_STATE new_buffer , yyscan_t yyscanner ); +YY_BUFFER_STATE yy_create_buffer ( FILE *file, int size , yyscan_t yyscanner ); +void yy_delete_buffer ( YY_BUFFER_STATE b , yyscan_t yyscanner ); +void yy_flush_buffer ( YY_BUFFER_STATE b , yyscan_t yyscanner ); +void yypush_buffer_state ( YY_BUFFER_STATE new_buffer , yyscan_t yyscanner ); +void yypop_buffer_state ( yyscan_t yyscanner ); -static void cmDependsJava_yyensure_buffer_stack (yyscan_t yyscanner ); -static void cmDependsJava_yy_load_buffer_state (yyscan_t yyscanner ); -static void cmDependsJava_yy_init_buffer (YY_BUFFER_STATE b,FILE *file ,yyscan_t yyscanner ); +static void yyensure_buffer_stack ( yyscan_t yyscanner ); +static void yy_load_buffer_state ( yyscan_t yyscanner ); +static void yy_init_buffer ( YY_BUFFER_STATE b, FILE *file , yyscan_t yyscanner ); +#define YY_FLUSH_BUFFER yy_flush_buffer( YY_CURRENT_BUFFER , yyscanner) -#define YY_FLUSH_BUFFER cmDependsJava_yy_flush_buffer(YY_CURRENT_BUFFER ,yyscanner) +YY_BUFFER_STATE yy_scan_buffer ( char *base, yy_size_t size , yyscan_t yyscanner ); +YY_BUFFER_STATE yy_scan_string ( const char *yy_str , yyscan_t yyscanner ); +YY_BUFFER_STATE yy_scan_bytes ( const char *bytes, int len , yyscan_t yyscanner ); -YY_BUFFER_STATE cmDependsJava_yy_scan_buffer (char *base,yy_size_t size ,yyscan_t yyscanner ); -YY_BUFFER_STATE cmDependsJava_yy_scan_string (yyconst char *yy_str ,yyscan_t yyscanner ); -YY_BUFFER_STATE cmDependsJava_yy_scan_bytes (yyconst char *bytes,int len ,yyscan_t yyscanner ); - -void *cmDependsJava_yyalloc (yy_size_t ,yyscan_t yyscanner ); -void *cmDependsJava_yyrealloc (void *,yy_size_t ,yyscan_t yyscanner ); -void cmDependsJava_yyfree (void * ,yyscan_t yyscanner ); - -#define yy_new_buffer cmDependsJava_yy_create_buffer +void *yyalloc ( yy_size_t , yyscan_t yyscanner ); +void *yyrealloc ( void *, yy_size_t , yyscan_t yyscanner ); +void yyfree ( void * , yyscan_t yyscanner ); +#define yy_new_buffer yy_create_buffer #define yy_set_interactive(is_interactive) \ { \ if ( ! YY_CURRENT_BUFFER ){ \ - cmDependsJava_yyensure_buffer_stack (yyscanner); \ + yyensure_buffer_stack (yyscanner); \ YY_CURRENT_BUFFER_LVALUE = \ - cmDependsJava_yy_create_buffer(yyin,YY_BUF_SIZE ,yyscanner); \ + yy_create_buffer( yyin, YY_BUF_SIZE , yyscanner); \ } \ YY_CURRENT_BUFFER_LVALUE->yy_is_interactive = is_interactive; \ } - #define yy_set_bol(at_bol) \ { \ if ( ! YY_CURRENT_BUFFER ){\ - cmDependsJava_yyensure_buffer_stack (yyscanner); \ + yyensure_buffer_stack (yyscanner); \ YY_CURRENT_BUFFER_LVALUE = \ - cmDependsJava_yy_create_buffer(yyin,YY_BUF_SIZE ,yyscanner); \ + yy_create_buffer( yyin, YY_BUF_SIZE , yyscanner); \ } \ YY_CURRENT_BUFFER_LVALUE->yy_at_bol = at_bol; \ } - #define YY_AT_BOL() (YY_CURRENT_BUFFER_LVALUE->yy_at_bol) /* Begin user sect3 */ #define cmDependsJava_yywrap(yyscanner) (/*CONSTCOND*/1) #define YY_SKIP_YYWRAP - -typedef unsigned char YY_CHAR; +typedef flex_uint8_t YY_CHAR; typedef int yy_state_type; #define yytext_ptr yytext_r -static yy_state_type yy_get_previous_state (yyscan_t yyscanner ); -static yy_state_type yy_try_NUL_trans (yy_state_type current_state ,yyscan_t yyscanner); -static int yy_get_next_buffer (yyscan_t yyscanner ); -static void yynoreturn yy_fatal_error (yyconst char* msg ,yyscan_t yyscanner ); +static yy_state_type yy_get_previous_state ( yyscan_t yyscanner ); +static yy_state_type yy_try_NUL_trans ( yy_state_type current_state , yyscan_t yyscanner); +static int yy_get_next_buffer ( yyscan_t yyscanner ); +static void yynoreturn yy_fatal_error ( const char* msg , yyscan_t yyscanner ); /* Done after the current pattern has been matched and before the * corresponding action - sets up yytext. @@ -348,7 +548,6 @@ static void yynoreturn yy_fatal_error (yyconst char* msg ,yyscan_t yyscanner ); yyg->yy_hold_char = *yy_cp; \ *yy_cp = '\0'; \ yyg->yy_c_buf_p = yy_cp; - #define YY_NUM_RULES 111 #define YY_END_OF_BUFFER 112 /* This struct is not used in this scanner, @@ -358,7 +557,7 @@ struct yy_trans_info flex_int32_t yy_verify; flex_int32_t yy_nxt; }; -static yyconst flex_int16_t yy_accept[327] = +static const flex_int16_t yy_accept[327] = { 0, 0, 0, 0, 0, 0, 0, 112, 110, 109, 109, 77, 4, 73, 94, 60, 110, 93, 92, 105, 99, @@ -398,7 +597,7 @@ static yyconst flex_int16_t yy_accept[327] = 27, 29, 107, 107, 45, 0 } ; -static yyconst YY_CHAR yy_ec[256] = +static const YY_CHAR yy_ec[256] = { 0, 1, 1, 1, 1, 1, 1, 1, 1, 2, 3, 1, 2, 2, 1, 1, 1, 1, 1, 1, 1, @@ -430,7 +629,7 @@ static yyconst YY_CHAR yy_ec[256] = 1, 1, 1, 1, 1 } ; -static yyconst YY_CHAR yy_meta[65] = +static const YY_CHAR yy_meta[65] = { 0, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 3, 3, 3, @@ -441,7 +640,7 @@ static yyconst YY_CHAR yy_meta[65] = 1, 1, 1, 1 } ; -static yyconst flex_uint16_t yy_base[334] = +static const flex_int16_t yy_base[334] = { 0, 0, 0, 401, 400, 62, 63, 411, 414, 414, 414, 386, 414, 414, 385, 61, 374, 414, 414, 383, 57, @@ -482,7 +681,7 @@ static yyconst flex_uint16_t yy_base[334] = 232, 96, 235 } ; -static yyconst flex_int16_t yy_def[334] = +static const flex_int16_t yy_def[334] = { 0, 326, 1, 327, 327, 328, 328, 326, 326, 326, 326, 326, 326, 326, 326, 326, 329, 326, 326, 326, 326, @@ -523,7 +722,7 @@ static yyconst flex_int16_t yy_def[334] = 326, 326, 326 } ; -static yyconst flex_uint16_t yy_nxt[479] = +static const flex_int16_t yy_nxt[479] = { 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 26, @@ -579,7 +778,7 @@ static yyconst flex_uint16_t yy_nxt[479] = 326, 326, 326, 326, 326, 326, 326, 326 } ; -static yyconst flex_int16_t yy_chk[479] = +static const flex_int16_t yy_chk[479] = { 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, @@ -642,8 +841,6 @@ static yyconst flex_int16_t yy_chk[479] = #define yymore() yymore_used_but_not_detected #define YY_MORE_ADJ 0 #define YY_RESTORE_YY_MORE_OFFSET -#line 1 "cmDependsJavaLexer.in.l" -#line 2 "cmDependsJavaLexer.in.l" /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying file Copyright.txt or https://cmake.org/licensing for details. */ /* @@ -652,13 +849,12 @@ This file must be translated to C++ and modified to build everywhere. Run flex >= 2.6 like this: - flex --nounistd -DFLEXINT_H --prefix=cmDependsJava_yy --header-file=cmDependsJavaLexer.h -ocmDependsJavaLexer.cxx cmDependsJavaLexer.in.l + flex --nounistd -DFLEXINT_H --noline --header-file=cmDependsJavaLexer.h -ocmDependsJavaLexer.cxx cmDependsJavaLexer.in.l Modify cmDependsJavaLexer.cxx: - - remove trailing whitespace: sed -i 's/\s*$//' cmDependsJavaLexer.h cmDependsJavaLexer.cxx - - remove blank lines at end of file - - #include "cmStandardLexer.h" at the top - - add cast in cmDependsJava_yy_scan_bytes for loop condition of _yybytes_len to size_t + - remove trailing whitespace: sed -i 's/\s*$//' cmDependsJavaLexer.h cmDependsJavaLexer.cxx + - remove blank lines at end of file: sed -i '${/^$/d;}' cmDependsJavaLexer.h cmDependsJavaLexer.cxx + - #include "cmStandardLexer.h" at the top: sed -i '1i#include "cmStandardLexer.h"' cmDependsJavaLexer.cxx */ @@ -682,9 +878,6 @@ Modify cmDependsJavaLexer.cxx: /*--------------------------------------------------------------------------*/ - -#line 686 "cmDependsJavaLexer.cxx" - #define INITIAL 0 #define comment 1 #define string 2 @@ -727,44 +920,44 @@ struct yyguts_t }; /* end struct yyguts_t */ -static int yy_init_globals (yyscan_t yyscanner ); +static int yy_init_globals ( yyscan_t yyscanner ); -int cmDependsJava_yylex_init (yyscan_t* scanner); +int yylex_init (yyscan_t* scanner); -int cmDependsJava_yylex_init_extra (YY_EXTRA_TYPE user_defined,yyscan_t* scanner); +int yylex_init_extra ( YY_EXTRA_TYPE user_defined, yyscan_t* scanner); /* Accessor methods to globals. These are made visible to non-reentrant scanners for convenience. */ -int cmDependsJava_yylex_destroy (yyscan_t yyscanner ); +int yylex_destroy ( yyscan_t yyscanner ); -int cmDependsJava_yyget_debug (yyscan_t yyscanner ); +int yyget_debug ( yyscan_t yyscanner ); -void cmDependsJava_yyset_debug (int debug_flag ,yyscan_t yyscanner ); +void yyset_debug ( int debug_flag , yyscan_t yyscanner ); -YY_EXTRA_TYPE cmDependsJava_yyget_extra (yyscan_t yyscanner ); +YY_EXTRA_TYPE yyget_extra ( yyscan_t yyscanner ); -void cmDependsJava_yyset_extra (YY_EXTRA_TYPE user_defined ,yyscan_t yyscanner ); +void yyset_extra ( YY_EXTRA_TYPE user_defined , yyscan_t yyscanner ); -FILE *cmDependsJava_yyget_in (yyscan_t yyscanner ); +FILE *yyget_in ( yyscan_t yyscanner ); -void cmDependsJava_yyset_in (FILE * _in_str ,yyscan_t yyscanner ); +void yyset_in ( FILE * _in_str , yyscan_t yyscanner ); -FILE *cmDependsJava_yyget_out (yyscan_t yyscanner ); +FILE *yyget_out ( yyscan_t yyscanner ); -void cmDependsJava_yyset_out (FILE * _out_str ,yyscan_t yyscanner ); +void yyset_out ( FILE * _out_str , yyscan_t yyscanner ); - int cmDependsJava_yyget_leng (yyscan_t yyscanner ); + int yyget_leng ( yyscan_t yyscanner ); -char *cmDependsJava_yyget_text (yyscan_t yyscanner ); +char *yyget_text ( yyscan_t yyscanner ); -int cmDependsJava_yyget_lineno (yyscan_t yyscanner ); +int yyget_lineno ( yyscan_t yyscanner ); -void cmDependsJava_yyset_lineno (int _line_number ,yyscan_t yyscanner ); +void yyset_lineno ( int _line_number , yyscan_t yyscanner ); -int cmDependsJava_yyget_column (yyscan_t yyscanner ); +int yyget_column ( yyscan_t yyscanner ); -void cmDependsJava_yyset_column (int _column_no ,yyscan_t yyscanner ); +void yyset_column ( int _column_no , yyscan_t yyscanner ); /* Macros after this point can all be overridden by user definitions in * section 1. @@ -772,32 +965,31 @@ void cmDependsJava_yyset_column (int _column_no ,yyscan_t yyscanner ); #ifndef YY_SKIP_YYWRAP #ifdef __cplusplus -extern "C" int cmDependsJava_yywrap (yyscan_t yyscanner ); +extern "C" int yywrap ( yyscan_t yyscanner ); #else -extern int cmDependsJava_yywrap (yyscan_t yyscanner ); +extern int yywrap ( yyscan_t yyscanner ); #endif #endif #ifndef YY_NO_UNPUT - static void yyunput (int c,char *buf_ptr ,yyscan_t yyscanner); + static void yyunput ( int c, char *buf_ptr , yyscan_t yyscanner); #endif #ifndef yytext_ptr -static void yy_flex_strncpy (char *,yyconst char *,int ,yyscan_t yyscanner); +static void yy_flex_strncpy ( char *, const char *, int , yyscan_t yyscanner); #endif #ifdef YY_NEED_STRLEN -static int yy_flex_strlen (yyconst char * ,yyscan_t yyscanner); +static int yy_flex_strlen ( const char * , yyscan_t yyscanner); #endif #ifndef YY_NO_INPUT - #ifdef __cplusplus -static int yyinput (yyscan_t yyscanner ); +static int yyinput ( yyscan_t yyscanner ); #else -static int input (yyscan_t yyscanner ); +static int input ( yyscan_t yyscanner ); #endif #endif @@ -828,7 +1020,7 @@ static int input (yyscan_t yyscanner ); if ( YY_CURRENT_BUFFER_LVALUE->yy_is_interactive ) \ { \ int c = '*'; \ - size_t n; \ + int n; \ for ( n = 0; n < max_size && \ (c = getc( yyin )) != EOF && c != '\n'; ++n ) \ buf[n] = (char) c; \ @@ -841,7 +1033,7 @@ static int input (yyscan_t yyscanner ); else \ { \ errno=0; \ - while ( (result = (int) fread(buf, 1, max_size, yyin))==0 && ferror(yyin)) \ + while ( (result = (int) fread(buf, 1, (yy_size_t) max_size, yyin)) == 0 && ferror(yyin)) \ { \ if( errno != EINTR) \ { \ @@ -882,9 +1074,9 @@ static int input (yyscan_t yyscanner ); #ifndef YY_DECL #define YY_DECL_IS_OURS 1 -extern int cmDependsJava_yylex (yyscan_t yyscanner); +extern int yylex (yyscan_t yyscanner); -#define YY_DECL int cmDependsJava_yylex (yyscan_t yyscanner) +#define YY_DECL int yylex (yyscan_t yyscanner) #endif /* !YY_DECL */ /* Code executed at the beginning of each rule, after yytext and yyleng @@ -929,18 +1121,15 @@ YY_DECL yyout = stdout; if ( ! YY_CURRENT_BUFFER ) { - cmDependsJava_yyensure_buffer_stack (yyscanner); + yyensure_buffer_stack (yyscanner); YY_CURRENT_BUFFER_LVALUE = - cmDependsJava_yy_create_buffer(yyin,YY_BUF_SIZE ,yyscanner); + yy_create_buffer( yyin, YY_BUF_SIZE , yyscanner); } - cmDependsJava_yy_load_buffer_state(yyscanner ); + yy_load_buffer_state( yyscanner ); } { -#line 48 "cmDependsJavaLexer.in.l" - -#line 943 "cmDependsJavaLexer.cxx" while ( /*CONSTCOND*/1 ) /* loops until end-of-file is reached */ { @@ -968,9 +1157,9 @@ yy_match: { yy_current_state = (int) yy_def[yy_current_state]; if ( yy_current_state >= 327 ) - yy_c = yy_meta[(unsigned int) yy_c]; + yy_c = yy_meta[yy_c]; } - yy_current_state = yy_nxt[yy_base[yy_current_state] + (flex_int16_t) yy_c]; + yy_current_state = yy_nxt[yy_base[yy_current_state] + yy_c]; ++yy_cp; } while ( yy_base[yy_current_state] != 414 ); @@ -999,539 +1188,432 @@ do_action: /* This label is used only to access EOF actions. */ case 1: YY_RULE_SETUP -#line 49 "cmDependsJavaLexer.in.l" { BEGIN(comment); } YY_BREAK case 2: YY_RULE_SETUP -#line 50 "cmDependsJavaLexer.in.l" { BEGIN(INITIAL); } YY_BREAK case 3: /* rule 3 can match eol */ YY_RULE_SETUP -#line 51 "cmDependsJavaLexer.in.l" {} YY_BREAK case 4: YY_RULE_SETUP -#line 53 "cmDependsJavaLexer.in.l" { BEGIN(string); } YY_BREAK case 5: YY_RULE_SETUP -#line 54 "cmDependsJavaLexer.in.l" { BEGIN(INITIAL); return jp_STRINGLITERAL; } YY_BREAK case 6: YY_RULE_SETUP -#line 55 "cmDependsJavaLexer.in.l" {} YY_BREAK case 7: YY_RULE_SETUP -#line 57 "cmDependsJavaLexer.in.l" { KEYWORD; return jp_ABSTRACT; } YY_BREAK case 8: YY_RULE_SETUP -#line 58 "cmDependsJavaLexer.in.l" { KEYWORD; return jp_ASSERT; } YY_BREAK case 9: YY_RULE_SETUP -#line 59 "cmDependsJavaLexer.in.l" { KEYWORD; return jp_BOOLEAN_TYPE; } YY_BREAK case 10: YY_RULE_SETUP -#line 60 "cmDependsJavaLexer.in.l" { KEYWORD; return jp_BREAK; } YY_BREAK case 11: YY_RULE_SETUP -#line 61 "cmDependsJavaLexer.in.l" { KEYWORD; return jp_BYTE_TYPE; } YY_BREAK case 12: YY_RULE_SETUP -#line 62 "cmDependsJavaLexer.in.l" { KEYWORD; return jp_CASE; } YY_BREAK case 13: YY_RULE_SETUP -#line 63 "cmDependsJavaLexer.in.l" { KEYWORD; return jp_CATCH; } YY_BREAK case 14: YY_RULE_SETUP -#line 64 "cmDependsJavaLexer.in.l" { KEYWORD; return jp_CHAR_TYPE; } YY_BREAK case 15: YY_RULE_SETUP -#line 65 "cmDependsJavaLexer.in.l" { KEYWORD; return jp_CLASS; } YY_BREAK case 16: YY_RULE_SETUP -#line 66 "cmDependsJavaLexer.in.l" { KEYWORD; return jp_CONTINUE; } YY_BREAK case 17: YY_RULE_SETUP -#line 67 "cmDependsJavaLexer.in.l" { KEYWORD; return jp_DEFAULT; } YY_BREAK case 18: YY_RULE_SETUP -#line 68 "cmDependsJavaLexer.in.l" { KEYWORD; return jp_DO; } YY_BREAK case 19: YY_RULE_SETUP -#line 69 "cmDependsJavaLexer.in.l" { KEYWORD; return jp_DOUBLE_TYPE; } YY_BREAK case 20: YY_RULE_SETUP -#line 70 "cmDependsJavaLexer.in.l" { KEYWORD; return jp_ELSE; } YY_BREAK case 21: YY_RULE_SETUP -#line 71 "cmDependsJavaLexer.in.l" { KEYWORD; return jp_EXTENDS; } YY_BREAK case 22: YY_RULE_SETUP -#line 72 "cmDependsJavaLexer.in.l" { KEYWORD; return jp_FINAL; } YY_BREAK case 23: YY_RULE_SETUP -#line 73 "cmDependsJavaLexer.in.l" { KEYWORD; return jp_FINALLY; } YY_BREAK case 24: YY_RULE_SETUP -#line 74 "cmDependsJavaLexer.in.l" { KEYWORD; return jp_FLOAT_TYPE; } YY_BREAK case 25: YY_RULE_SETUP -#line 75 "cmDependsJavaLexer.in.l" { KEYWORD; return jp_FOR; } YY_BREAK case 26: YY_RULE_SETUP -#line 76 "cmDependsJavaLexer.in.l" { KEYWORD; return jp_IF; } YY_BREAK case 27: YY_RULE_SETUP -#line 77 "cmDependsJavaLexer.in.l" { KEYWORD; return jp_IMPLEMENTS; } YY_BREAK case 28: YY_RULE_SETUP -#line 78 "cmDependsJavaLexer.in.l" { KEYWORD; return jp_IMPORT; } YY_BREAK case 29: YY_RULE_SETUP -#line 79 "cmDependsJavaLexer.in.l" { KEYWORD; return jp_INSTANCEOF; } YY_BREAK case 30: YY_RULE_SETUP -#line 80 "cmDependsJavaLexer.in.l" { KEYWORD; return jp_INT_TYPE; } YY_BREAK case 31: YY_RULE_SETUP -#line 81 "cmDependsJavaLexer.in.l" { KEYWORD; return jp_INTERFACE; } YY_BREAK case 32: YY_RULE_SETUP -#line 82 "cmDependsJavaLexer.in.l" { KEYWORD; return jp_LONG_TYPE; } YY_BREAK case 33: YY_RULE_SETUP -#line 83 "cmDependsJavaLexer.in.l" { KEYWORD; return jp_NATIVE; } YY_BREAK case 34: YY_RULE_SETUP -#line 84 "cmDependsJavaLexer.in.l" { KEYWORD; return jp_NEW; } YY_BREAK case 35: YY_RULE_SETUP -#line 85 "cmDependsJavaLexer.in.l" { KEYWORD; return jp_PACKAGE; } YY_BREAK case 36: YY_RULE_SETUP -#line 86 "cmDependsJavaLexer.in.l" { KEYWORD; return jp_PRIVATE; } YY_BREAK case 37: YY_RULE_SETUP -#line 87 "cmDependsJavaLexer.in.l" { KEYWORD; return jp_PROTECTED; } YY_BREAK case 38: YY_RULE_SETUP -#line 88 "cmDependsJavaLexer.in.l" { KEYWORD; return jp_PUBLIC; } YY_BREAK case 39: YY_RULE_SETUP -#line 89 "cmDependsJavaLexer.in.l" { KEYWORD; return jp_RETURN; } YY_BREAK case 40: YY_RULE_SETUP -#line 90 "cmDependsJavaLexer.in.l" { KEYWORD; return jp_SHORT_TYPE; } YY_BREAK case 41: YY_RULE_SETUP -#line 91 "cmDependsJavaLexer.in.l" { KEYWORD; return jp_STATIC; } YY_BREAK case 42: YY_RULE_SETUP -#line 92 "cmDependsJavaLexer.in.l" { KEYWORD; return jp_STRICTFP; } YY_BREAK case 43: YY_RULE_SETUP -#line 93 "cmDependsJavaLexer.in.l" { KEYWORD; return jp_SUPER; } YY_BREAK case 44: YY_RULE_SETUP -#line 94 "cmDependsJavaLexer.in.l" { KEYWORD; return jp_SWITCH; } YY_BREAK case 45: YY_RULE_SETUP -#line 95 "cmDependsJavaLexer.in.l" { KEYWORD; return jp_SYNCHRONIZED; } YY_BREAK case 46: YY_RULE_SETUP -#line 96 "cmDependsJavaLexer.in.l" { KEYWORD; return jp_THIS; } YY_BREAK case 47: YY_RULE_SETUP -#line 97 "cmDependsJavaLexer.in.l" { KEYWORD; return jp_THROW; } YY_BREAK case 48: YY_RULE_SETUP -#line 98 "cmDependsJavaLexer.in.l" { KEYWORD; return jp_THROWS; } YY_BREAK case 49: YY_RULE_SETUP -#line 99 "cmDependsJavaLexer.in.l" { KEYWORD; return jp_TRANSIENT; } YY_BREAK case 50: YY_RULE_SETUP -#line 100 "cmDependsJavaLexer.in.l" { KEYWORD; return jp_TRY; } YY_BREAK case 51: YY_RULE_SETUP -#line 101 "cmDependsJavaLexer.in.l" { KEYWORD; return jp_VOID; } YY_BREAK case 52: YY_RULE_SETUP -#line 102 "cmDependsJavaLexer.in.l" { KEYWORD; return jp_VOLATILE; } YY_BREAK case 53: YY_RULE_SETUP -#line 103 "cmDependsJavaLexer.in.l" { KEYWORD; return jp_WHILE; } YY_BREAK case 54: YY_RULE_SETUP -#line 105 "cmDependsJavaLexer.in.l" { PRIMITIVE; return jp_BOOLEANLITERAL; } YY_BREAK case 55: /* rule 55 can match eol */ YY_RULE_SETUP -#line 106 "cmDependsJavaLexer.in.l" { PRIMITIVE; return jp_CHARACTERLITERAL; } YY_BREAK case 56: YY_RULE_SETUP -#line 107 "cmDependsJavaLexer.in.l" { PRIMITIVE; return jp_DECIMALINTEGERLITERAL; } YY_BREAK case 57: YY_RULE_SETUP -#line 108 "cmDependsJavaLexer.in.l" { PRIMITIVE; return jp_FLOATINGPOINTLITERAL; } YY_BREAK case 58: YY_RULE_SETUP -#line 109 "cmDependsJavaLexer.in.l" { PRIMITIVE; return jp_HEXINTEGERLITERAL; } YY_BREAK case 59: YY_RULE_SETUP -#line 110 "cmDependsJavaLexer.in.l" { PRIMITIVE; return jp_NULLLITERAL; } YY_BREAK case 60: YY_RULE_SETUP -#line 112 "cmDependsJavaLexer.in.l" { SYMBOL; return jp_AND; } YY_BREAK case 61: YY_RULE_SETUP -#line 113 "cmDependsJavaLexer.in.l" { SYMBOL; return jp_ANDAND; } YY_BREAK case 62: YY_RULE_SETUP -#line 114 "cmDependsJavaLexer.in.l" { SYMBOL; return jp_ANDEQUALS; } YY_BREAK case 63: YY_RULE_SETUP -#line 115 "cmDependsJavaLexer.in.l" { SYMBOL; return jp_BRACKETEND; } YY_BREAK case 64: YY_RULE_SETUP -#line 116 "cmDependsJavaLexer.in.l" { SYMBOL; return jp_BRACKETSTART; } YY_BREAK case 65: YY_RULE_SETUP -#line 117 "cmDependsJavaLexer.in.l" { SYMBOL; return jp_CARROT; } YY_BREAK case 66: YY_RULE_SETUP -#line 118 "cmDependsJavaLexer.in.l" { SYMBOL; return jp_CARROTEQUALS; } YY_BREAK case 67: YY_RULE_SETUP -#line 119 "cmDependsJavaLexer.in.l" { SYMBOL; return jp_COLON; } YY_BREAK case 68: YY_RULE_SETUP -#line 120 "cmDependsJavaLexer.in.l" { SYMBOL; return jp_COMMA; } YY_BREAK case 69: YY_RULE_SETUP -#line 121 "cmDependsJavaLexer.in.l" { SYMBOL; return jp_CURLYEND; } YY_BREAK case 70: YY_RULE_SETUP -#line 122 "cmDependsJavaLexer.in.l" { SYMBOL; return jp_CURLYSTART; } YY_BREAK case 71: YY_RULE_SETUP -#line 123 "cmDependsJavaLexer.in.l" { SYMBOL; return jp_DIVIDE; } YY_BREAK case 72: YY_RULE_SETUP -#line 124 "cmDependsJavaLexer.in.l" { SYMBOL; return jp_DIVIDEEQUALS; } YY_BREAK case 73: YY_RULE_SETUP -#line 125 "cmDependsJavaLexer.in.l" { SYMBOL; return jp_DOLLAR; } YY_BREAK case 74: YY_RULE_SETUP -#line 126 "cmDependsJavaLexer.in.l" { SYMBOL; return jp_DOT; } YY_BREAK case 75: YY_RULE_SETUP -#line 127 "cmDependsJavaLexer.in.l" { SYMBOL; return jp_EQUALS; } YY_BREAK case 76: YY_RULE_SETUP -#line 128 "cmDependsJavaLexer.in.l" { SYMBOL; return jp_EQUALSEQUALS; } YY_BREAK case 77: YY_RULE_SETUP -#line 129 "cmDependsJavaLexer.in.l" { SYMBOL; return jp_EXCLAMATION; } YY_BREAK case 78: YY_RULE_SETUP -#line 130 "cmDependsJavaLexer.in.l" { SYMBOL; return jp_EXCLAMATIONEQUALS; } YY_BREAK case 79: YY_RULE_SETUP -#line 131 "cmDependsJavaLexer.in.l" { SYMBOL; return jp_GREATER; } YY_BREAK case 80: YY_RULE_SETUP -#line 132 "cmDependsJavaLexer.in.l" { SYMBOL; return jp_GTEQUALS; } YY_BREAK case 81: YY_RULE_SETUP -#line 133 "cmDependsJavaLexer.in.l" { SYMBOL; return jp_GTGT; } YY_BREAK case 82: YY_RULE_SETUP -#line 134 "cmDependsJavaLexer.in.l" { SYMBOL; return jp_GTGTEQUALS; } YY_BREAK case 83: YY_RULE_SETUP -#line 135 "cmDependsJavaLexer.in.l" { SYMBOL; return jp_GTGTGT; } YY_BREAK case 84: YY_RULE_SETUP -#line 136 "cmDependsJavaLexer.in.l" { SYMBOL; return jp_GTGTGTEQUALS; } YY_BREAK case 85: YY_RULE_SETUP -#line 137 "cmDependsJavaLexer.in.l" { SYMBOL; return jp_LESLESEQUALS; } YY_BREAK case 86: YY_RULE_SETUP -#line 138 "cmDependsJavaLexer.in.l" { SYMBOL; return jp_LESSTHAN; } YY_BREAK case 87: YY_RULE_SETUP -#line 139 "cmDependsJavaLexer.in.l" { SYMBOL; return jp_LTEQUALS; } YY_BREAK case 88: YY_RULE_SETUP -#line 140 "cmDependsJavaLexer.in.l" { SYMBOL; return jp_LTLT; } YY_BREAK case 89: YY_RULE_SETUP -#line 141 "cmDependsJavaLexer.in.l" { SYMBOL; return jp_MINUS; } YY_BREAK case 90: YY_RULE_SETUP -#line 142 "cmDependsJavaLexer.in.l" { SYMBOL; return jp_MINUSEQUALS; } YY_BREAK case 91: YY_RULE_SETUP -#line 143 "cmDependsJavaLexer.in.l" { SYMBOL; return jp_MINUSMINUS; } YY_BREAK case 92: YY_RULE_SETUP -#line 144 "cmDependsJavaLexer.in.l" { SYMBOL; return jp_PAREEND; } YY_BREAK case 93: YY_RULE_SETUP -#line 145 "cmDependsJavaLexer.in.l" { SYMBOL; return jp_PARESTART; } YY_BREAK case 94: YY_RULE_SETUP -#line 146 "cmDependsJavaLexer.in.l" { SYMBOL; return jp_PERCENT; } YY_BREAK case 95: YY_RULE_SETUP -#line 147 "cmDependsJavaLexer.in.l" { SYMBOL; return jp_PERCENTEQUALS; } YY_BREAK case 96: YY_RULE_SETUP -#line 148 "cmDependsJavaLexer.in.l" { SYMBOL; return jp_PIPE; } YY_BREAK case 97: YY_RULE_SETUP -#line 149 "cmDependsJavaLexer.in.l" { SYMBOL; return jp_PIPEEQUALS; } YY_BREAK case 98: YY_RULE_SETUP -#line 150 "cmDependsJavaLexer.in.l" { SYMBOL; return jp_PIPEPIPE; } YY_BREAK case 99: YY_RULE_SETUP -#line 151 "cmDependsJavaLexer.in.l" { SYMBOL; return jp_PLUS; } YY_BREAK case 100: YY_RULE_SETUP -#line 152 "cmDependsJavaLexer.in.l" { SYMBOL; return jp_PLUSEQUALS; } YY_BREAK case 101: YY_RULE_SETUP -#line 153 "cmDependsJavaLexer.in.l" { SYMBOL; return jp_PLUSPLUS; } YY_BREAK case 102: YY_RULE_SETUP -#line 154 "cmDependsJavaLexer.in.l" { SYMBOL; return jp_QUESTION; } YY_BREAK case 103: YY_RULE_SETUP -#line 155 "cmDependsJavaLexer.in.l" { SYMBOL; return jp_SEMICOL; } YY_BREAK case 104: YY_RULE_SETUP -#line 156 "cmDependsJavaLexer.in.l" { SYMBOL; return jp_TILDE; } YY_BREAK case 105: YY_RULE_SETUP -#line 157 "cmDependsJavaLexer.in.l" { SYMBOL; return jp_TIMES; } YY_BREAK case 106: YY_RULE_SETUP -#line 158 "cmDependsJavaLexer.in.l" { SYMBOL; return jp_TIMESEQUALS; } YY_BREAK case 107: YY_RULE_SETUP -#line 160 "cmDependsJavaLexer.in.l" { yyextra->AllocateParserType(yylvalp, yytext, strlen(yytext)); return jp_NAME; @@ -1540,18 +1622,15 @@ YY_RULE_SETUP case 108: /* rule 108 can match eol */ YY_RULE_SETUP -#line 165 "cmDependsJavaLexer.in.l" { } YY_BREAK case 109: /* rule 109 can match eol */ YY_RULE_SETUP -#line 166 "cmDependsJavaLexer.in.l" { } YY_BREAK case 110: YY_RULE_SETUP -#line 167 "cmDependsJavaLexer.in.l" { std::cerr << "Unknown character: " << yytext[0] << " (" << (int)yytext[0] << ")" << std::endl; @@ -1561,10 +1640,8 @@ YY_RULE_SETUP YY_BREAK case 111: YY_RULE_SETUP -#line 174 "cmDependsJavaLexer.in.l" ECHO; YY_BREAK -#line 1567 "cmDependsJavaLexer.cxx" case YY_STATE_EOF(INITIAL): case YY_STATE_EOF(comment): case YY_STATE_EOF(string): @@ -1584,7 +1661,7 @@ case YY_STATE_EOF(string): /* We're scanning a new file or input source. It's * possible that this happened because the user * just pointed yyin at a new source and called - * cmDependsJava_yylex(). If so, then we have to assure + * yylex(). If so, then we have to assure * consistency between YY_CURRENT_BUFFER and our * globals. Here is the right place to do so, because * this is the first action (other than possibly a @@ -1644,7 +1721,7 @@ case YY_STATE_EOF(string): { yyg->yy_did_buffer_switch_on_eof = 0; - if ( cmDependsJava_yywrap(yyscanner ) ) + if ( yywrap( yyscanner ) ) { /* Note: because we've taken care in * yy_get_next_buffer() to have set up @@ -1698,7 +1775,7 @@ case YY_STATE_EOF(string): } /* end of action switch */ } /* end of scanning one token */ } /* end of user's declarations */ -} /* end of cmDependsJava_yylex */ +} /* end of yylex */ /* yy_get_next_buffer - try to read in a new buffer * @@ -1712,7 +1789,7 @@ static int yy_get_next_buffer (yyscan_t yyscanner) struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; char *dest = YY_CURRENT_BUFFER_LVALUE->yy_ch_buf; char *source = yyg->yytext_ptr; - yy_size_t number_to_move, i; + int number_to_move, i; int ret_val; if ( yyg->yy_c_buf_p > &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[yyg->yy_n_chars + 1] ) @@ -1741,7 +1818,7 @@ static int yy_get_next_buffer (yyscan_t yyscanner) /* Try to read more data. */ /* First move last chars to start of buffer. */ - number_to_move = (yy_size_t) (yyg->yy_c_buf_p - yyg->yytext_ptr) - 1; + number_to_move = (int) (yyg->yy_c_buf_p - yyg->yytext_ptr - 1); for ( i = 0; i < number_to_move; ++i ) *(dest++) = *(source++); @@ -1777,7 +1854,8 @@ static int yy_get_next_buffer (yyscan_t yyscanner) b->yy_ch_buf = (char *) /* Include room in for 2 EOB chars. */ - cmDependsJava_yyrealloc((void *) b->yy_ch_buf,b->yy_buf_size + 2 ,yyscanner ); + yyrealloc( (void *) b->yy_ch_buf, + (yy_size_t) (b->yy_buf_size + 2) , yyscanner ); } else /* Can't grow it, we don't own it. */ @@ -1809,7 +1887,7 @@ static int yy_get_next_buffer (yyscan_t yyscanner) if ( number_to_move == YY_MORE_ADJ ) { ret_val = EOB_ACT_END_OF_FILE; - cmDependsJava_yyrestart(yyin ,yyscanner); + yyrestart( yyin , yyscanner); } else @@ -1823,12 +1901,15 @@ static int yy_get_next_buffer (yyscan_t yyscanner) else ret_val = EOB_ACT_CONTINUE_SCAN; - if ((int) (yyg->yy_n_chars + number_to_move) > YY_CURRENT_BUFFER_LVALUE->yy_buf_size) { + if ((yyg->yy_n_chars + number_to_move) > YY_CURRENT_BUFFER_LVALUE->yy_buf_size) { /* Extend the array by 50%, plus the number we really need. */ int new_size = yyg->yy_n_chars + number_to_move + (yyg->yy_n_chars >> 1); - YY_CURRENT_BUFFER_LVALUE->yy_ch_buf = (char *) cmDependsJava_yyrealloc((void *) YY_CURRENT_BUFFER_LVALUE->yy_ch_buf,new_size ,yyscanner ); + YY_CURRENT_BUFFER_LVALUE->yy_ch_buf = (char *) yyrealloc( + (void *) YY_CURRENT_BUFFER_LVALUE->yy_ch_buf, (yy_size_t) new_size , yyscanner ); if ( ! YY_CURRENT_BUFFER_LVALUE->yy_ch_buf ) YY_FATAL_ERROR( "out of dynamic memory in yy_get_next_buffer()" ); + /* "- 2" to take care of EOB's */ + YY_CURRENT_BUFFER_LVALUE->yy_buf_size = (int) (new_size - 2); } yyg->yy_n_chars += number_to_move; @@ -1862,9 +1943,9 @@ static int yy_get_next_buffer (yyscan_t yyscanner) { yy_current_state = (int) yy_def[yy_current_state]; if ( yy_current_state >= 327 ) - yy_c = yy_meta[(unsigned int) yy_c]; + yy_c = yy_meta[yy_c]; } - yy_current_state = yy_nxt[yy_base[yy_current_state] + (flex_int16_t) yy_c]; + yy_current_state = yy_nxt[yy_base[yy_current_state] + yy_c]; } return yy_current_state; @@ -1891,9 +1972,9 @@ static int yy_get_next_buffer (yyscan_t yyscanner) { yy_current_state = (int) yy_def[yy_current_state]; if ( yy_current_state >= 327 ) - yy_c = yy_meta[(unsigned int) yy_c]; + yy_c = yy_meta[yy_c]; } - yy_current_state = yy_nxt[yy_base[yy_current_state] + (flex_int16_t) yy_c]; + yy_current_state = yy_nxt[yy_base[yy_current_state] + yy_c]; yy_is_jam = (yy_current_state == 326); (void)yyg; @@ -1967,7 +2048,7 @@ static int yy_get_next_buffer (yyscan_t yyscanner) else { /* need more input */ - int offset = yyg->yy_c_buf_p - yyg->yytext_ptr; + int offset = (int) (yyg->yy_c_buf_p - yyg->yytext_ptr); ++yyg->yy_c_buf_p; switch ( yy_get_next_buffer( yyscanner ) ) @@ -1984,13 +2065,13 @@ static int yy_get_next_buffer (yyscan_t yyscanner) */ /* Reset buffer status. */ - cmDependsJava_yyrestart(yyin ,yyscanner); + yyrestart( yyin , yyscanner); /*FALLTHROUGH*/ case EOB_ACT_END_OF_FILE: { - if ( cmDependsJava_yywrap(yyscanner ) ) + if ( yywrap( yyscanner ) ) return 0; if ( ! yyg->yy_did_buffer_switch_on_eof ) @@ -2022,34 +2103,34 @@ static int yy_get_next_buffer (yyscan_t yyscanner) * @param yyscanner The scanner object. * @note This function does not reset the start condition to @c INITIAL . */ - void cmDependsJava_yyrestart (FILE * input_file , yyscan_t yyscanner) + void yyrestart (FILE * input_file , yyscan_t yyscanner) { struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; if ( ! YY_CURRENT_BUFFER ){ - cmDependsJava_yyensure_buffer_stack (yyscanner); + yyensure_buffer_stack (yyscanner); YY_CURRENT_BUFFER_LVALUE = - cmDependsJava_yy_create_buffer(yyin,YY_BUF_SIZE ,yyscanner); + yy_create_buffer( yyin, YY_BUF_SIZE , yyscanner); } - cmDependsJava_yy_init_buffer(YY_CURRENT_BUFFER,input_file ,yyscanner); - cmDependsJava_yy_load_buffer_state(yyscanner ); + yy_init_buffer( YY_CURRENT_BUFFER, input_file , yyscanner); + yy_load_buffer_state( yyscanner ); } /** Switch to a different input buffer. * @param new_buffer The new input buffer. * @param yyscanner The scanner object. */ - void cmDependsJava_yy_switch_to_buffer (YY_BUFFER_STATE new_buffer , yyscan_t yyscanner) + void yy_switch_to_buffer (YY_BUFFER_STATE new_buffer , yyscan_t yyscanner) { struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; /* TODO. We should be able to replace this entire function body * with - * cmDependsJava_yypop_buffer_state(); - * cmDependsJava_yypush_buffer_state(new_buffer); + * yypop_buffer_state(); + * yypush_buffer_state(new_buffer); */ - cmDependsJava_yyensure_buffer_stack (yyscanner); + yyensure_buffer_stack (yyscanner); if ( YY_CURRENT_BUFFER == new_buffer ) return; @@ -2062,17 +2143,17 @@ static int yy_get_next_buffer (yyscan_t yyscanner) } YY_CURRENT_BUFFER_LVALUE = new_buffer; - cmDependsJava_yy_load_buffer_state(yyscanner ); + yy_load_buffer_state( yyscanner ); /* We don't actually know whether we did this switch during - * EOF (cmDependsJava_yywrap()) processing, but the only time this flag - * is looked at is after cmDependsJava_yywrap() is called, so it's safe + * EOF (yywrap()) processing, but the only time this flag + * is looked at is after yywrap() is called, so it's safe * to go ahead and always set it. */ yyg->yy_did_buffer_switch_on_eof = 1; } -static void cmDependsJava_yy_load_buffer_state (yyscan_t yyscanner) +static void yy_load_buffer_state (yyscan_t yyscanner) { struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; yyg->yy_n_chars = YY_CURRENT_BUFFER_LVALUE->yy_n_chars; @@ -2087,35 +2168,35 @@ static void cmDependsJava_yy_load_buffer_state (yyscan_t yyscanner) * @param yyscanner The scanner object. * @return the allocated buffer state. */ - YY_BUFFER_STATE cmDependsJava_yy_create_buffer (FILE * file, int size , yyscan_t yyscanner) + YY_BUFFER_STATE yy_create_buffer (FILE * file, int size , yyscan_t yyscanner) { YY_BUFFER_STATE b; - b = (YY_BUFFER_STATE) cmDependsJava_yyalloc(sizeof( struct yy_buffer_state ) ,yyscanner ); + b = (YY_BUFFER_STATE) yyalloc( sizeof( struct yy_buffer_state ) , yyscanner ); if ( ! b ) - YY_FATAL_ERROR( "out of dynamic memory in cmDependsJava_yy_create_buffer()" ); + YY_FATAL_ERROR( "out of dynamic memory in yy_create_buffer()" ); - b->yy_buf_size = (yy_size_t)size; + b->yy_buf_size = size; /* yy_ch_buf has to be 2 characters longer than the size given because * we need to put in 2 end-of-buffer characters. */ - b->yy_ch_buf = (char *) cmDependsJava_yyalloc(b->yy_buf_size + 2 ,yyscanner ); + b->yy_ch_buf = (char *) yyalloc( (yy_size_t) (b->yy_buf_size + 2) , yyscanner ); if ( ! b->yy_ch_buf ) - YY_FATAL_ERROR( "out of dynamic memory in cmDependsJava_yy_create_buffer()" ); + YY_FATAL_ERROR( "out of dynamic memory in yy_create_buffer()" ); b->yy_is_our_buffer = 1; - cmDependsJava_yy_init_buffer(b,file ,yyscanner); + yy_init_buffer( b, file , yyscanner); return b; } /** Destroy the buffer. - * @param b a buffer created with cmDependsJava_yy_create_buffer() + * @param b a buffer created with yy_create_buffer() * @param yyscanner The scanner object. */ - void cmDependsJava_yy_delete_buffer (YY_BUFFER_STATE b , yyscan_t yyscanner) + void yy_delete_buffer (YY_BUFFER_STATE b , yyscan_t yyscanner) { struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; @@ -2126,28 +2207,28 @@ static void cmDependsJava_yy_load_buffer_state (yyscan_t yyscanner) YY_CURRENT_BUFFER_LVALUE = (YY_BUFFER_STATE) 0; if ( b->yy_is_our_buffer ) - cmDependsJava_yyfree((void *) b->yy_ch_buf ,yyscanner ); + yyfree( (void *) b->yy_ch_buf , yyscanner ); - cmDependsJava_yyfree((void *) b ,yyscanner ); + yyfree( (void *) b , yyscanner ); } /* Initializes or reinitializes a buffer. * This function is sometimes called more than once on the same buffer, - * such as during a cmDependsJava_yyrestart() or at EOF. + * such as during a yyrestart() or at EOF. */ - static void cmDependsJava_yy_init_buffer (YY_BUFFER_STATE b, FILE * file , yyscan_t yyscanner) + static void yy_init_buffer (YY_BUFFER_STATE b, FILE * file , yyscan_t yyscanner) { int oerrno = errno; struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; - cmDependsJava_yy_flush_buffer(b ,yyscanner); + yy_flush_buffer( b , yyscanner); b->yy_input_file = file; b->yy_fill_buffer = 1; - /* If b is the current buffer, then cmDependsJava_yy_init_buffer was _probably_ - * called from cmDependsJava_yyrestart() or through yy_get_next_buffer. + /* If b is the current buffer, then yy_init_buffer was _probably_ + * called from yyrestart() or through yy_get_next_buffer. * In that case, we don't want to reset the lineno or column. */ if (b != YY_CURRENT_BUFFER){ @@ -2164,7 +2245,7 @@ static void cmDependsJava_yy_load_buffer_state (yyscan_t yyscanner) * @param b the buffer state to be flushed, usually @c YY_CURRENT_BUFFER. * @param yyscanner The scanner object. */ - void cmDependsJava_yy_flush_buffer (YY_BUFFER_STATE b , yyscan_t yyscanner) + void yy_flush_buffer (YY_BUFFER_STATE b , yyscan_t yyscanner) { struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; if ( ! b ) @@ -2185,7 +2266,7 @@ static void cmDependsJava_yy_load_buffer_state (yyscan_t yyscanner) b->yy_buffer_status = YY_BUFFER_NEW; if ( b == YY_CURRENT_BUFFER ) - cmDependsJava_yy_load_buffer_state(yyscanner ); + yy_load_buffer_state( yyscanner ); } /** Pushes the new state onto the stack. The new state becomes @@ -2194,15 +2275,15 @@ static void cmDependsJava_yy_load_buffer_state (yyscan_t yyscanner) * @param new_buffer The new state. * @param yyscanner The scanner object. */ -void cmDependsJava_yypush_buffer_state (YY_BUFFER_STATE new_buffer , yyscan_t yyscanner) +void yypush_buffer_state (YY_BUFFER_STATE new_buffer , yyscan_t yyscanner) { struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; if (new_buffer == NULL) return; - cmDependsJava_yyensure_buffer_stack(yyscanner); + yyensure_buffer_stack(yyscanner); - /* This block is copied from cmDependsJava_yy_switch_to_buffer. */ + /* This block is copied from yy_switch_to_buffer. */ if ( YY_CURRENT_BUFFER ) { /* Flush out information for old buffer. */ @@ -2216,8 +2297,8 @@ void cmDependsJava_yypush_buffer_state (YY_BUFFER_STATE new_buffer , yyscan_t yy yyg->yy_buffer_stack_top++; YY_CURRENT_BUFFER_LVALUE = new_buffer; - /* copied from cmDependsJava_yy_switch_to_buffer. */ - cmDependsJava_yy_load_buffer_state(yyscanner ); + /* copied from yy_switch_to_buffer. */ + yy_load_buffer_state( yyscanner ); yyg->yy_did_buffer_switch_on_eof = 1; } @@ -2225,19 +2306,19 @@ void cmDependsJava_yypush_buffer_state (YY_BUFFER_STATE new_buffer , yyscan_t yy * The next element becomes the new top. * @param yyscanner The scanner object. */ -void cmDependsJava_yypop_buffer_state (yyscan_t yyscanner) +void yypop_buffer_state (yyscan_t yyscanner) { struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; if (!YY_CURRENT_BUFFER) return; - cmDependsJava_yy_delete_buffer(YY_CURRENT_BUFFER ,yyscanner); + yy_delete_buffer(YY_CURRENT_BUFFER , yyscanner); YY_CURRENT_BUFFER_LVALUE = NULL; if (yyg->yy_buffer_stack_top > 0) --yyg->yy_buffer_stack_top; if (YY_CURRENT_BUFFER) { - cmDependsJava_yy_load_buffer_state(yyscanner ); + yy_load_buffer_state( yyscanner ); yyg->yy_did_buffer_switch_on_eof = 1; } } @@ -2245,9 +2326,9 @@ void cmDependsJava_yypop_buffer_state (yyscan_t yyscanner) /* Allocates the stack if it does not exist. * Guarantees space for at least one push. */ -static void cmDependsJava_yyensure_buffer_stack (yyscan_t yyscanner) +static void yyensure_buffer_stack (yyscan_t yyscanner) { - int num_to_alloc; + yy_size_t num_to_alloc; struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; if (!yyg->yy_buffer_stack) { @@ -2257,11 +2338,11 @@ static void cmDependsJava_yyensure_buffer_stack (yyscan_t yyscanner) * immediate realloc on the next call. */ num_to_alloc = 1; /* After all that talk, this was set to 1 anyways... */ - yyg->yy_buffer_stack = (struct yy_buffer_state**)cmDependsJava_yyalloc + yyg->yy_buffer_stack = (struct yy_buffer_state**)yyalloc (num_to_alloc * sizeof(struct yy_buffer_state*) , yyscanner); if ( ! yyg->yy_buffer_stack ) - YY_FATAL_ERROR( "out of dynamic memory in cmDependsJava_yyensure_buffer_stack()" ); + YY_FATAL_ERROR( "out of dynamic memory in yyensure_buffer_stack()" ); memset(yyg->yy_buffer_stack, 0, num_to_alloc * sizeof(struct yy_buffer_state*)); @@ -2276,12 +2357,12 @@ static void cmDependsJava_yyensure_buffer_stack (yyscan_t yyscanner) yy_size_t grow_size = 8 /* arbitrary grow size */; num_to_alloc = yyg->yy_buffer_stack_max + grow_size; - yyg->yy_buffer_stack = (struct yy_buffer_state**)cmDependsJava_yyrealloc + yyg->yy_buffer_stack = (struct yy_buffer_state**)yyrealloc (yyg->yy_buffer_stack, num_to_alloc * sizeof(struct yy_buffer_state*) , yyscanner); if ( ! yyg->yy_buffer_stack ) - YY_FATAL_ERROR( "out of dynamic memory in cmDependsJava_yyensure_buffer_stack()" ); + YY_FATAL_ERROR( "out of dynamic memory in yyensure_buffer_stack()" ); /* zero only the new slots.*/ memset(yyg->yy_buffer_stack + yyg->yy_buffer_stack_max, 0, grow_size * sizeof(struct yy_buffer_state*)); @@ -2295,7 +2376,7 @@ static void cmDependsJava_yyensure_buffer_stack (yyscan_t yyscanner) * @param yyscanner The scanner object. * @return the newly allocated buffer state object. */ -YY_BUFFER_STATE cmDependsJava_yy_scan_buffer (char * base, yy_size_t size , yyscan_t yyscanner) +YY_BUFFER_STATE yy_scan_buffer (char * base, yy_size_t size , yyscan_t yyscanner) { YY_BUFFER_STATE b; @@ -2305,11 +2386,11 @@ YY_BUFFER_STATE cmDependsJava_yy_scan_buffer (char * base, yy_size_t size , yy /* They forgot to leave room for the EOB's. */ return NULL; - b = (YY_BUFFER_STATE) cmDependsJava_yyalloc(sizeof( struct yy_buffer_state ) ,yyscanner ); + b = (YY_BUFFER_STATE) yyalloc( sizeof( struct yy_buffer_state ) , yyscanner ); if ( ! b ) - YY_FATAL_ERROR( "out of dynamic memory in cmDependsJava_yy_scan_buffer()" ); + YY_FATAL_ERROR( "out of dynamic memory in yy_scan_buffer()" ); - b->yy_buf_size = size - 2; /* "- 2" to take care of EOB's */ + b->yy_buf_size = (int) (size - 2); /* "- 2" to take care of EOB's */ b->yy_buf_pos = b->yy_ch_buf = base; b->yy_is_our_buffer = 0; b->yy_input_file = NULL; @@ -2319,53 +2400,53 @@ YY_BUFFER_STATE cmDependsJava_yy_scan_buffer (char * base, yy_size_t size , yy b->yy_fill_buffer = 0; b->yy_buffer_status = YY_BUFFER_NEW; - cmDependsJava_yy_switch_to_buffer(b ,yyscanner ); + yy_switch_to_buffer( b , yyscanner ); return b; } -/** Setup the input buffer state to scan a string. The next call to cmDependsJava_yylex() will +/** Setup the input buffer state to scan a string. The next call to yylex() will * scan from a @e copy of @a str. * @param yystr a NUL-terminated string to scan * @param yyscanner The scanner object. * @return the newly allocated buffer state object. * @note If you want to scan bytes that may contain NUL values, then use - * cmDependsJava_yy_scan_bytes() instead. + * yy_scan_bytes() instead. */ -YY_BUFFER_STATE cmDependsJava_yy_scan_string (yyconst char * yystr , yyscan_t yyscanner) +YY_BUFFER_STATE yy_scan_string (const char * yystr , yyscan_t yyscanner) { - return cmDependsJava_yy_scan_bytes(yystr,(int) strlen(yystr) ,yyscanner); + return yy_scan_bytes( yystr, (int) strlen(yystr) , yyscanner); } -/** Setup the input buffer state to scan the given bytes. The next call to cmDependsJava_yylex() will +/** Setup the input buffer state to scan the given bytes. The next call to yylex() will * scan from a @e copy of @a bytes. * @param yybytes the byte buffer to scan * @param _yybytes_len the number of bytes in the buffer pointed to by @a bytes. * @param yyscanner The scanner object. * @return the newly allocated buffer state object. */ -YY_BUFFER_STATE cmDependsJava_yy_scan_bytes (yyconst char * yybytes, int _yybytes_len , yyscan_t yyscanner) +YY_BUFFER_STATE yy_scan_bytes (const char * yybytes, int _yybytes_len , yyscan_t yyscanner) { YY_BUFFER_STATE b; char *buf; yy_size_t n; - yy_size_t i; + int i; /* Get memory for full buffer, including space for trailing EOB's. */ - n = (yy_size_t) _yybytes_len + 2; - buf = (char *) cmDependsJava_yyalloc(n ,yyscanner ); + n = (yy_size_t) (_yybytes_len + 2); + buf = (char *) yyalloc( n , yyscanner ); if ( ! buf ) - YY_FATAL_ERROR( "out of dynamic memory in cmDependsJava_yy_scan_bytes()" ); + YY_FATAL_ERROR( "out of dynamic memory in yy_scan_bytes()" ); - for ( i = 0; i < (size_t)_yybytes_len; ++i ) + for ( i = 0; i < _yybytes_len; ++i ) buf[i] = yybytes[i]; buf[_yybytes_len] = buf[_yybytes_len+1] = YY_END_OF_BUFFER_CHAR; - b = cmDependsJava_yy_scan_buffer(buf,n ,yyscanner); + b = yy_scan_buffer( buf, n , yyscanner); if ( ! b ) - YY_FATAL_ERROR( "bad buffer in cmDependsJava_yy_scan_bytes()" ); + YY_FATAL_ERROR( "bad buffer in yy_scan_bytes()" ); /* It's okay to grow etc. this buffer, and we should throw it * away when we're done. @@ -2379,11 +2460,11 @@ YY_BUFFER_STATE cmDependsJava_yy_scan_bytes (yyconst char * yybytes, int _yyby #define YY_EXIT_FAILURE 2 #endif -static void yynoreturn yy_fatal_error (yyconst char* msg , yyscan_t yyscanner) +static void yynoreturn yy_fatal_error (const char* msg , yyscan_t yyscanner) { struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; (void)yyg; - (void) fprintf( stderr, "%s\n", msg ); + fprintf( stderr, "%s\n", msg ); exit( YY_EXIT_FAILURE ); } @@ -2409,7 +2490,7 @@ static void yynoreturn yy_fatal_error (yyconst char* msg , yyscan_t yyscanner) /** Get the user-defined data for this scanner. * @param yyscanner The scanner object. */ -YY_EXTRA_TYPE cmDependsJava_yyget_extra (yyscan_t yyscanner) +YY_EXTRA_TYPE yyget_extra (yyscan_t yyscanner) { struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; return yyextra; @@ -2418,7 +2499,7 @@ YY_EXTRA_TYPE cmDependsJava_yyget_extra (yyscan_t yyscanner) /** Get the current line number. * @param yyscanner The scanner object. */ -int cmDependsJava_yyget_lineno (yyscan_t yyscanner) +int yyget_lineno (yyscan_t yyscanner) { struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; @@ -2431,7 +2512,7 @@ int cmDependsJava_yyget_lineno (yyscan_t yyscanner) /** Get the current column number. * @param yyscanner The scanner object. */ -int cmDependsJava_yyget_column (yyscan_t yyscanner) +int yyget_column (yyscan_t yyscanner) { struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; @@ -2444,7 +2525,7 @@ int cmDependsJava_yyget_column (yyscan_t yyscanner) /** Get the input stream. * @param yyscanner The scanner object. */ -FILE *cmDependsJava_yyget_in (yyscan_t yyscanner) +FILE *yyget_in (yyscan_t yyscanner) { struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; return yyin; @@ -2453,7 +2534,7 @@ FILE *cmDependsJava_yyget_in (yyscan_t yyscanner) /** Get the output stream. * @param yyscanner The scanner object. */ -FILE *cmDependsJava_yyget_out (yyscan_t yyscanner) +FILE *yyget_out (yyscan_t yyscanner) { struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; return yyout; @@ -2462,7 +2543,7 @@ FILE *cmDependsJava_yyget_out (yyscan_t yyscanner) /** Get the length of the current token. * @param yyscanner The scanner object. */ -int cmDependsJava_yyget_leng (yyscan_t yyscanner) +int yyget_leng (yyscan_t yyscanner) { struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; return yyleng; @@ -2472,7 +2553,7 @@ int cmDependsJava_yyget_leng (yyscan_t yyscanner) * @param yyscanner The scanner object. */ -char *cmDependsJava_yyget_text (yyscan_t yyscanner) +char *yyget_text (yyscan_t yyscanner) { struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; return yytext; @@ -2482,7 +2563,7 @@ char *cmDependsJava_yyget_text (yyscan_t yyscanner) * @param user_defined The data to be associated with this scanner. * @param yyscanner The scanner object. */ -void cmDependsJava_yyset_extra (YY_EXTRA_TYPE user_defined , yyscan_t yyscanner) +void yyset_extra (YY_EXTRA_TYPE user_defined , yyscan_t yyscanner) { struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; yyextra = user_defined ; @@ -2492,13 +2573,13 @@ void cmDependsJava_yyset_extra (YY_EXTRA_TYPE user_defined , yyscan_t yyscanner * @param _line_number line number * @param yyscanner The scanner object. */ -void cmDependsJava_yyset_lineno (int _line_number , yyscan_t yyscanner) +void yyset_lineno (int _line_number , yyscan_t yyscanner) { struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; /* lineno is only valid if an input buffer exists. */ if (! YY_CURRENT_BUFFER ) - YY_FATAL_ERROR( "cmDependsJava_yyset_lineno called with no buffer" ); + YY_FATAL_ERROR( "yyset_lineno called with no buffer" ); yylineno = _line_number; } @@ -2507,13 +2588,13 @@ void cmDependsJava_yyset_lineno (int _line_number , yyscan_t yyscanner) * @param _column_no column number * @param yyscanner The scanner object. */ -void cmDependsJava_yyset_column (int _column_no , yyscan_t yyscanner) +void yyset_column (int _column_no , yyscan_t yyscanner) { struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; /* column is only valid if an input buffer exists. */ if (! YY_CURRENT_BUFFER ) - YY_FATAL_ERROR( "cmDependsJava_yyset_column called with no buffer" ); + YY_FATAL_ERROR( "yyset_column called with no buffer" ); yycolumn = _column_no; } @@ -2522,27 +2603,27 @@ void cmDependsJava_yyset_column (int _column_no , yyscan_t yyscanner) * input buffer. * @param _in_str A readable stream. * @param yyscanner The scanner object. - * @see cmDependsJava_yy_switch_to_buffer + * @see yy_switch_to_buffer */ -void cmDependsJava_yyset_in (FILE * _in_str , yyscan_t yyscanner) +void yyset_in (FILE * _in_str , yyscan_t yyscanner) { struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; yyin = _in_str ; } -void cmDependsJava_yyset_out (FILE * _out_str , yyscan_t yyscanner) +void yyset_out (FILE * _out_str , yyscan_t yyscanner) { struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; yyout = _out_str ; } -int cmDependsJava_yyget_debug (yyscan_t yyscanner) +int yyget_debug (yyscan_t yyscanner) { struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; return yy_flex_debug; } -void cmDependsJava_yyset_debug (int _bdebug , yyscan_t yyscanner) +void yyset_debug (int _bdebug , yyscan_t yyscanner) { struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; yy_flex_debug = _bdebug ; @@ -2552,20 +2633,18 @@ void cmDependsJava_yyset_debug (int _bdebug , yyscan_t yyscanner) /* User-visible API */ -/* cmDependsJava_yylex_init is special because it creates the scanner itself, so it is +/* yylex_init is special because it creates the scanner itself, so it is * the ONLY reentrant function that doesn't take the scanner as the last argument. * That's why we explicitly handle the declaration, instead of using our macros. */ - -int cmDependsJava_yylex_init(yyscan_t* ptr_yy_globals) - +int yylex_init(yyscan_t* ptr_yy_globals) { if (ptr_yy_globals == NULL){ errno = EINVAL; return 1; } - *ptr_yy_globals = (yyscan_t) cmDependsJava_yyalloc ( sizeof( struct yyguts_t ), NULL ); + *ptr_yy_globals = (yyscan_t) yyalloc ( sizeof( struct yyguts_t ), NULL ); if (*ptr_yy_globals == NULL){ errno = ENOMEM; @@ -2578,27 +2657,25 @@ int cmDependsJava_yylex_init(yyscan_t* ptr_yy_globals) return yy_init_globals ( *ptr_yy_globals ); } -/* cmDependsJava_yylex_init_extra has the same functionality as cmDependsJava_yylex_init, but follows the +/* yylex_init_extra has the same functionality as yylex_init, but follows the * convention of taking the scanner as the last argument. Note however, that * this is a *pointer* to a scanner, as it will be allocated by this call (and * is the reason, too, why this function also must handle its own declaration). - * The user defined value in the first argument will be available to cmDependsJava_yyalloc in + * The user defined value in the first argument will be available to yyalloc in * the yyextra field. */ - -int cmDependsJava_yylex_init_extra(YY_EXTRA_TYPE yy_user_defined,yyscan_t* ptr_yy_globals ) - +int yylex_init_extra( YY_EXTRA_TYPE yy_user_defined, yyscan_t* ptr_yy_globals ) { struct yyguts_t dummy_yyguts; - cmDependsJava_yyset_extra (yy_user_defined, &dummy_yyguts); + yyset_extra (yy_user_defined, &dummy_yyguts); if (ptr_yy_globals == NULL){ errno = EINVAL; return 1; } - *ptr_yy_globals = (yyscan_t) cmDependsJava_yyalloc ( sizeof( struct yyguts_t ), &dummy_yyguts ); + *ptr_yy_globals = (yyscan_t) yyalloc ( sizeof( struct yyguts_t ), &dummy_yyguts ); if (*ptr_yy_globals == NULL){ errno = ENOMEM; @@ -2609,7 +2686,7 @@ int cmDependsJava_yylex_init_extra(YY_EXTRA_TYPE yy_user_defined,yyscan_t* ptr_y yy_init_globals. Leave at 0x00 for releases. */ memset(*ptr_yy_globals,0x00,sizeof(struct yyguts_t)); - cmDependsJava_yyset_extra (yy_user_defined, *ptr_yy_globals); + yyset_extra (yy_user_defined, *ptr_yy_globals); return yy_init_globals ( *ptr_yy_globals ); } @@ -2618,7 +2695,7 @@ static int yy_init_globals (yyscan_t yyscanner) { struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; /* Initialization is the same as for the non-reentrant scanner. - * This function is called from cmDependsJava_yylex_destroy(), so don't allocate here. + * This function is called from yylex_destroy(), so don't allocate here. */ yyg->yy_buffer_stack = NULL; @@ -2642,37 +2719,37 @@ static int yy_init_globals (yyscan_t yyscanner) #endif /* For future reference: Set errno on error, since we are called by - * cmDependsJava_yylex_init() + * yylex_init() */ return 0; } -/* cmDependsJava_yylex_destroy is for both reentrant and non-reentrant scanners. */ -int cmDependsJava_yylex_destroy (yyscan_t yyscanner) +/* yylex_destroy is for both reentrant and non-reentrant scanners. */ +int yylex_destroy (yyscan_t yyscanner) { struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; /* Pop the buffer stack, destroying each element. */ while(YY_CURRENT_BUFFER){ - cmDependsJava_yy_delete_buffer(YY_CURRENT_BUFFER ,yyscanner ); + yy_delete_buffer( YY_CURRENT_BUFFER , yyscanner ); YY_CURRENT_BUFFER_LVALUE = NULL; - cmDependsJava_yypop_buffer_state(yyscanner); + yypop_buffer_state(yyscanner); } /* Destroy the stack itself. */ - cmDependsJava_yyfree(yyg->yy_buffer_stack ,yyscanner); + yyfree(yyg->yy_buffer_stack , yyscanner); yyg->yy_buffer_stack = NULL; /* Destroy the start condition stack. */ - cmDependsJava_yyfree(yyg->yy_start_stack ,yyscanner ); + yyfree( yyg->yy_start_stack , yyscanner ); yyg->yy_start_stack = NULL; /* Reset the globals. This is important in a non-reentrant scanner so the next time - * cmDependsJava_yylex() is called, initialization will occur. */ + * yylex() is called, initialization will occur. */ yy_init_globals( yyscanner); /* Destroy the main struct (reentrant only). */ - cmDependsJava_yyfree ( yyscanner , yyscanner ); + yyfree ( yyscanner , yyscanner ); yyscanner = NULL; return 0; } @@ -2682,7 +2759,7 @@ int cmDependsJava_yylex_destroy (yyscan_t yyscanner) */ #ifndef yytext_ptr -static void yy_flex_strncpy (char* s1, yyconst char * s2, int n , yyscan_t yyscanner) +static void yy_flex_strncpy (char* s1, const char * s2, int n , yyscan_t yyscanner) { struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; (void)yyg; @@ -2694,7 +2771,7 @@ static void yy_flex_strncpy (char* s1, yyconst char * s2, int n , yyscan_t yysca #endif #ifdef YY_NEED_STRLEN -static int yy_flex_strlen (yyconst char * s , yyscan_t yyscanner) +static int yy_flex_strlen (const char * s , yyscan_t yyscanner) { int n; for ( n = 0; s[n]; ++n ) @@ -2704,14 +2781,14 @@ static int yy_flex_strlen (yyconst char * s , yyscan_t yyscanner) } #endif -void *cmDependsJava_yyalloc (yy_size_t size , yyscan_t yyscanner) +void *yyalloc (yy_size_t size , yyscan_t yyscanner) { struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; (void)yyg; return malloc(size); } -void *cmDependsJava_yyrealloc (void * ptr, yy_size_t size , yyscan_t yyscanner) +void *yyrealloc (void * ptr, yy_size_t size , yyscan_t yyscanner) { struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; (void)yyg; @@ -2726,13 +2803,11 @@ void *cmDependsJava_yyrealloc (void * ptr, yy_size_t size , yyscan_t yyscanner return realloc(ptr, size); } -void cmDependsJava_yyfree (void * ptr , yyscan_t yyscanner) +void yyfree (void * ptr , yyscan_t yyscanner) { struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; (void)yyg; - free( (char *) ptr ); /* see cmDependsJava_yyrealloc() for (char *) cast */ + free( (char *) ptr ); /* see yyrealloc() for (char *) cast */ } #define YYTABLES_NAME "yytables" - -#line 174 "cmDependsJavaLexer.in.l" diff --git a/Source/LexerParser/cmDependsJavaLexer.h b/Source/LexerParser/cmDependsJavaLexer.h index ccadd70..f1e87d2 100644 --- a/Source/LexerParser/cmDependsJavaLexer.h +++ b/Source/LexerParser/cmDependsJavaLexer.h @@ -2,10 +2,6 @@ #define cmDependsJava_yyHEADER_H 1 #define cmDependsJava_yyIN_HEADER 1 -#line 6 "cmDependsJavaLexer.h" - -#line 8 "cmDependsJavaLexer.h" - #define FLEXINT_H 1 #define YY_INT_ALIGNED short int @@ -14,11 +10,221 @@ #define FLEX_SCANNER #define YY_FLEX_MAJOR_VERSION 2 #define YY_FLEX_MINOR_VERSION 6 -#define YY_FLEX_SUBMINOR_VERSION 1 +#define YY_FLEX_SUBMINOR_VERSION 4 #if YY_FLEX_SUBMINOR_VERSION > 0 #define FLEX_BETA #endif +#ifdef yy_create_buffer +#define cmDependsJava_yy_create_buffer_ALREADY_DEFINED +#else +#define yy_create_buffer cmDependsJava_yy_create_buffer +#endif + +#ifdef yy_delete_buffer +#define cmDependsJava_yy_delete_buffer_ALREADY_DEFINED +#else +#define yy_delete_buffer cmDependsJava_yy_delete_buffer +#endif + +#ifdef yy_scan_buffer +#define cmDependsJava_yy_scan_buffer_ALREADY_DEFINED +#else +#define yy_scan_buffer cmDependsJava_yy_scan_buffer +#endif + +#ifdef yy_scan_string +#define cmDependsJava_yy_scan_string_ALREADY_DEFINED +#else +#define yy_scan_string cmDependsJava_yy_scan_string +#endif + +#ifdef yy_scan_bytes +#define cmDependsJava_yy_scan_bytes_ALREADY_DEFINED +#else +#define yy_scan_bytes cmDependsJava_yy_scan_bytes +#endif + +#ifdef yy_init_buffer +#define cmDependsJava_yy_init_buffer_ALREADY_DEFINED +#else +#define yy_init_buffer cmDependsJava_yy_init_buffer +#endif + +#ifdef yy_flush_buffer +#define cmDependsJava_yy_flush_buffer_ALREADY_DEFINED +#else +#define yy_flush_buffer cmDependsJava_yy_flush_buffer +#endif + +#ifdef yy_load_buffer_state +#define cmDependsJava_yy_load_buffer_state_ALREADY_DEFINED +#else +#define yy_load_buffer_state cmDependsJava_yy_load_buffer_state +#endif + +#ifdef yy_switch_to_buffer +#define cmDependsJava_yy_switch_to_buffer_ALREADY_DEFINED +#else +#define yy_switch_to_buffer cmDependsJava_yy_switch_to_buffer +#endif + +#ifdef yypush_buffer_state +#define cmDependsJava_yypush_buffer_state_ALREADY_DEFINED +#else +#define yypush_buffer_state cmDependsJava_yypush_buffer_state +#endif + +#ifdef yypop_buffer_state +#define cmDependsJava_yypop_buffer_state_ALREADY_DEFINED +#else +#define yypop_buffer_state cmDependsJava_yypop_buffer_state +#endif + +#ifdef yyensure_buffer_stack +#define cmDependsJava_yyensure_buffer_stack_ALREADY_DEFINED +#else +#define yyensure_buffer_stack cmDependsJava_yyensure_buffer_stack +#endif + +#ifdef yylex +#define cmDependsJava_yylex_ALREADY_DEFINED +#else +#define yylex cmDependsJava_yylex +#endif + +#ifdef yyrestart +#define cmDependsJava_yyrestart_ALREADY_DEFINED +#else +#define yyrestart cmDependsJava_yyrestart +#endif + +#ifdef yylex_init +#define cmDependsJava_yylex_init_ALREADY_DEFINED +#else +#define yylex_init cmDependsJava_yylex_init +#endif + +#ifdef yylex_init_extra +#define cmDependsJava_yylex_init_extra_ALREADY_DEFINED +#else +#define yylex_init_extra cmDependsJava_yylex_init_extra +#endif + +#ifdef yylex_destroy +#define cmDependsJava_yylex_destroy_ALREADY_DEFINED +#else +#define yylex_destroy cmDependsJava_yylex_destroy +#endif + +#ifdef yyget_debug +#define cmDependsJava_yyget_debug_ALREADY_DEFINED +#else +#define yyget_debug cmDependsJava_yyget_debug +#endif + +#ifdef yyset_debug +#define cmDependsJava_yyset_debug_ALREADY_DEFINED +#else +#define yyset_debug cmDependsJava_yyset_debug +#endif + +#ifdef yyget_extra +#define cmDependsJava_yyget_extra_ALREADY_DEFINED +#else +#define yyget_extra cmDependsJava_yyget_extra +#endif + +#ifdef yyset_extra +#define cmDependsJava_yyset_extra_ALREADY_DEFINED +#else +#define yyset_extra cmDependsJava_yyset_extra +#endif + +#ifdef yyget_in +#define cmDependsJava_yyget_in_ALREADY_DEFINED +#else +#define yyget_in cmDependsJava_yyget_in +#endif + +#ifdef yyset_in +#define cmDependsJava_yyset_in_ALREADY_DEFINED +#else +#define yyset_in cmDependsJava_yyset_in +#endif + +#ifdef yyget_out +#define cmDependsJava_yyget_out_ALREADY_DEFINED +#else +#define yyget_out cmDependsJava_yyget_out +#endif + +#ifdef yyset_out +#define cmDependsJava_yyset_out_ALREADY_DEFINED +#else +#define yyset_out cmDependsJava_yyset_out +#endif + +#ifdef yyget_leng +#define cmDependsJava_yyget_leng_ALREADY_DEFINED +#else +#define yyget_leng cmDependsJava_yyget_leng +#endif + +#ifdef yyget_text +#define cmDependsJava_yyget_text_ALREADY_DEFINED +#else +#define yyget_text cmDependsJava_yyget_text +#endif + +#ifdef yyget_lineno +#define cmDependsJava_yyget_lineno_ALREADY_DEFINED +#else +#define yyget_lineno cmDependsJava_yyget_lineno +#endif + +#ifdef yyset_lineno +#define cmDependsJava_yyset_lineno_ALREADY_DEFINED +#else +#define yyset_lineno cmDependsJava_yyset_lineno +#endif + +#ifdef yyget_column +#define cmDependsJava_yyget_column_ALREADY_DEFINED +#else +#define yyget_column cmDependsJava_yyget_column +#endif + +#ifdef yyset_column +#define cmDependsJava_yyset_column_ALREADY_DEFINED +#else +#define yyset_column cmDependsJava_yyset_column +#endif + +#ifdef yywrap +#define cmDependsJava_yywrap_ALREADY_DEFINED +#else +#define yywrap cmDependsJava_yywrap +#endif + +#ifdef yyalloc +#define cmDependsJava_yyalloc_ALREADY_DEFINED +#else +#define yyalloc cmDependsJava_yyalloc +#endif + +#ifdef yyrealloc +#define cmDependsJava_yyrealloc_ALREADY_DEFINED +#else +#define yyrealloc cmDependsJava_yyrealloc +#endif + +#ifdef yyfree +#define cmDependsJava_yyfree_ALREADY_DEFINED +#else +#define yyfree cmDependsJava_yyfree +#endif + /* First, we deal with platform-specific or compiler-specific issues. */ /* begin standard C headers. */ @@ -89,10 +295,16 @@ typedef unsigned int flex_uint32_t; #define UINT32_MAX (4294967295U) #endif +#ifndef SIZE_MAX +#define SIZE_MAX (~(size_t)0) +#endif + #endif /* ! C99 */ #endif /* ! FLEXINT_H */ +/* begin standard C++ headers. */ + /* TODO: this is always defined, so inline it */ #define yyconst const @@ -193,21 +405,21 @@ struct yy_buffer_state }; #endif /* !YY_STRUCT_YY_BUFFER_STATE */ -void cmDependsJava_yyrestart (FILE *input_file ,yyscan_t yyscanner ); -void cmDependsJava_yy_switch_to_buffer (YY_BUFFER_STATE new_buffer ,yyscan_t yyscanner ); -YY_BUFFER_STATE cmDependsJava_yy_create_buffer (FILE *file,int size ,yyscan_t yyscanner ); -void cmDependsJava_yy_delete_buffer (YY_BUFFER_STATE b ,yyscan_t yyscanner ); -void cmDependsJava_yy_flush_buffer (YY_BUFFER_STATE b ,yyscan_t yyscanner ); -void cmDependsJava_yypush_buffer_state (YY_BUFFER_STATE new_buffer ,yyscan_t yyscanner ); -void cmDependsJava_yypop_buffer_state (yyscan_t yyscanner ); +void yyrestart ( FILE *input_file , yyscan_t yyscanner ); +void yy_switch_to_buffer ( YY_BUFFER_STATE new_buffer , yyscan_t yyscanner ); +YY_BUFFER_STATE yy_create_buffer ( FILE *file, int size , yyscan_t yyscanner ); +void yy_delete_buffer ( YY_BUFFER_STATE b , yyscan_t yyscanner ); +void yy_flush_buffer ( YY_BUFFER_STATE b , yyscan_t yyscanner ); +void yypush_buffer_state ( YY_BUFFER_STATE new_buffer , yyscan_t yyscanner ); +void yypop_buffer_state ( yyscan_t yyscanner ); -YY_BUFFER_STATE cmDependsJava_yy_scan_buffer (char *base,yy_size_t size ,yyscan_t yyscanner ); -YY_BUFFER_STATE cmDependsJava_yy_scan_string (yyconst char *yy_str ,yyscan_t yyscanner ); -YY_BUFFER_STATE cmDependsJava_yy_scan_bytes (yyconst char *bytes,int len ,yyscan_t yyscanner ); +YY_BUFFER_STATE yy_scan_buffer ( char *base, yy_size_t size , yyscan_t yyscanner ); +YY_BUFFER_STATE yy_scan_string ( const char *yy_str , yyscan_t yyscanner ); +YY_BUFFER_STATE yy_scan_bytes ( const char *bytes, int len , yyscan_t yyscanner ); -void *cmDependsJava_yyalloc (yy_size_t ,yyscan_t yyscanner ); -void *cmDependsJava_yyrealloc (void *,yy_size_t ,yyscan_t yyscanner ); -void cmDependsJava_yyfree (void * ,yyscan_t yyscanner ); +void *yyalloc ( yy_size_t , yyscan_t yyscanner ); +void *yyrealloc ( void *, yy_size_t , yyscan_t yyscanner ); +void yyfree ( void * , yyscan_t yyscanner ); /* Begin user sect3 */ @@ -227,42 +439,42 @@ void cmDependsJava_yyfree (void * ,yyscan_t yyscanner ); #define YY_EXTRA_TYPE void * #endif -int cmDependsJava_yylex_init (yyscan_t* scanner); +int yylex_init (yyscan_t* scanner); -int cmDependsJava_yylex_init_extra (YY_EXTRA_TYPE user_defined,yyscan_t* scanner); +int yylex_init_extra ( YY_EXTRA_TYPE user_defined, yyscan_t* scanner); /* Accessor methods to globals. These are made visible to non-reentrant scanners for convenience. */ -int cmDependsJava_yylex_destroy (yyscan_t yyscanner ); +int yylex_destroy ( yyscan_t yyscanner ); -int cmDependsJava_yyget_debug (yyscan_t yyscanner ); +int yyget_debug ( yyscan_t yyscanner ); -void cmDependsJava_yyset_debug (int debug_flag ,yyscan_t yyscanner ); +void yyset_debug ( int debug_flag , yyscan_t yyscanner ); -YY_EXTRA_TYPE cmDependsJava_yyget_extra (yyscan_t yyscanner ); +YY_EXTRA_TYPE yyget_extra ( yyscan_t yyscanner ); -void cmDependsJava_yyset_extra (YY_EXTRA_TYPE user_defined ,yyscan_t yyscanner ); +void yyset_extra ( YY_EXTRA_TYPE user_defined , yyscan_t yyscanner ); -FILE *cmDependsJava_yyget_in (yyscan_t yyscanner ); +FILE *yyget_in ( yyscan_t yyscanner ); -void cmDependsJava_yyset_in (FILE * _in_str ,yyscan_t yyscanner ); +void yyset_in ( FILE * _in_str , yyscan_t yyscanner ); -FILE *cmDependsJava_yyget_out (yyscan_t yyscanner ); +FILE *yyget_out ( yyscan_t yyscanner ); -void cmDependsJava_yyset_out (FILE * _out_str ,yyscan_t yyscanner ); +void yyset_out ( FILE * _out_str , yyscan_t yyscanner ); - int cmDependsJava_yyget_leng (yyscan_t yyscanner ); + int yyget_leng ( yyscan_t yyscanner ); -char *cmDependsJava_yyget_text (yyscan_t yyscanner ); +char *yyget_text ( yyscan_t yyscanner ); -int cmDependsJava_yyget_lineno (yyscan_t yyscanner ); +int yyget_lineno ( yyscan_t yyscanner ); -void cmDependsJava_yyset_lineno (int _line_number ,yyscan_t yyscanner ); +void yyset_lineno ( int _line_number , yyscan_t yyscanner ); -int cmDependsJava_yyget_column (yyscan_t yyscanner ); +int yyget_column ( yyscan_t yyscanner ); -void cmDependsJava_yyset_column (int _column_no ,yyscan_t yyscanner ); +void yyset_column ( int _column_no , yyscan_t yyscanner ); /* Macros after this point can all be overridden by user definitions in * section 1. @@ -270,18 +482,18 @@ void cmDependsJava_yyset_column (int _column_no ,yyscan_t yyscanner ); #ifndef YY_SKIP_YYWRAP #ifdef __cplusplus -extern "C" int cmDependsJava_yywrap (yyscan_t yyscanner ); +extern "C" int yywrap ( yyscan_t yyscanner ); #else -extern int cmDependsJava_yywrap (yyscan_t yyscanner ); +extern int yywrap ( yyscan_t yyscanner ); #endif #endif #ifndef yytext_ptr -static void yy_flex_strncpy (char *,yyconst char *,int ,yyscan_t yyscanner); +static void yy_flex_strncpy ( char *, const char *, int , yyscan_t yyscanner); #endif #ifdef YY_NEED_STRLEN -static int yy_flex_strlen (yyconst char * ,yyscan_t yyscanner); +static int yy_flex_strlen ( const char * , yyscan_t yyscanner); #endif #ifndef YY_NO_INPUT @@ -309,9 +521,9 @@ static int yy_flex_strlen (yyconst char * ,yyscan_t yyscanner); #ifndef YY_DECL #define YY_DECL_IS_OURS 1 -extern int cmDependsJava_yylex (yyscan_t yyscanner); +extern int yylex (yyscan_t yyscanner); -#define YY_DECL int cmDependsJava_yylex (yyscan_t yyscanner) +#define YY_DECL int yylex (yyscan_t yyscanner) #endif /* !YY_DECL */ /* yy_get_previous_state - get the state just before the EOB char was reached */ @@ -328,9 +540,150 @@ extern int cmDependsJava_yylex (yyscan_t yyscanner); #undef YY_DECL #endif -#line 174 "cmDependsJavaLexer.in.l" - +#ifndef cmDependsJava_yy_create_buffer_ALREADY_DEFINED +#undef yy_create_buffer +#endif +#ifndef cmDependsJava_yy_delete_buffer_ALREADY_DEFINED +#undef yy_delete_buffer +#endif +#ifndef cmDependsJava_yy_scan_buffer_ALREADY_DEFINED +#undef yy_scan_buffer +#endif +#ifndef cmDependsJava_yy_scan_string_ALREADY_DEFINED +#undef yy_scan_string +#endif +#ifndef cmDependsJava_yy_scan_bytes_ALREADY_DEFINED +#undef yy_scan_bytes +#endif +#ifndef cmDependsJava_yy_init_buffer_ALREADY_DEFINED +#undef yy_init_buffer +#endif +#ifndef cmDependsJava_yy_flush_buffer_ALREADY_DEFINED +#undef yy_flush_buffer +#endif +#ifndef cmDependsJava_yy_load_buffer_state_ALREADY_DEFINED +#undef yy_load_buffer_state +#endif +#ifndef cmDependsJava_yy_switch_to_buffer_ALREADY_DEFINED +#undef yy_switch_to_buffer +#endif +#ifndef cmDependsJava_yypush_buffer_state_ALREADY_DEFINED +#undef yypush_buffer_state +#endif +#ifndef cmDependsJava_yypop_buffer_state_ALREADY_DEFINED +#undef yypop_buffer_state +#endif +#ifndef cmDependsJava_yyensure_buffer_stack_ALREADY_DEFINED +#undef yyensure_buffer_stack +#endif +#ifndef cmDependsJava_yylex_ALREADY_DEFINED +#undef yylex +#endif +#ifndef cmDependsJava_yyrestart_ALREADY_DEFINED +#undef yyrestart +#endif +#ifndef cmDependsJava_yylex_init_ALREADY_DEFINED +#undef yylex_init +#endif +#ifndef cmDependsJava_yylex_init_extra_ALREADY_DEFINED +#undef yylex_init_extra +#endif +#ifndef cmDependsJava_yylex_destroy_ALREADY_DEFINED +#undef yylex_destroy +#endif +#ifndef cmDependsJava_yyget_debug_ALREADY_DEFINED +#undef yyget_debug +#endif +#ifndef cmDependsJava_yyset_debug_ALREADY_DEFINED +#undef yyset_debug +#endif +#ifndef cmDependsJava_yyget_extra_ALREADY_DEFINED +#undef yyget_extra +#endif +#ifndef cmDependsJava_yyset_extra_ALREADY_DEFINED +#undef yyset_extra +#endif +#ifndef cmDependsJava_yyget_in_ALREADY_DEFINED +#undef yyget_in +#endif +#ifndef cmDependsJava_yyset_in_ALREADY_DEFINED +#undef yyset_in +#endif +#ifndef cmDependsJava_yyget_out_ALREADY_DEFINED +#undef yyget_out +#endif +#ifndef cmDependsJava_yyset_out_ALREADY_DEFINED +#undef yyset_out +#endif +#ifndef cmDependsJava_yyget_leng_ALREADY_DEFINED +#undef yyget_leng +#endif +#ifndef cmDependsJava_yyget_text_ALREADY_DEFINED +#undef yyget_text +#endif +#ifndef cmDependsJava_yyget_lineno_ALREADY_DEFINED +#undef yyget_lineno +#endif +#ifndef cmDependsJava_yyset_lineno_ALREADY_DEFINED +#undef yyset_lineno +#endif +#ifndef cmDependsJava_yyget_column_ALREADY_DEFINED +#undef yyget_column +#endif +#ifndef cmDependsJava_yyset_column_ALREADY_DEFINED +#undef yyset_column +#endif +#ifndef cmDependsJava_yywrap_ALREADY_DEFINED +#undef yywrap +#endif +#ifndef cmDependsJava_yyget_lval_ALREADY_DEFINED +#undef yyget_lval +#endif +#ifndef cmDependsJava_yyset_lval_ALREADY_DEFINED +#undef yyset_lval +#endif +#ifndef cmDependsJava_yyget_lloc_ALREADY_DEFINED +#undef yyget_lloc +#endif +#ifndef cmDependsJava_yyset_lloc_ALREADY_DEFINED +#undef yyset_lloc +#endif +#ifndef cmDependsJava_yyalloc_ALREADY_DEFINED +#undef yyalloc +#endif +#ifndef cmDependsJava_yyrealloc_ALREADY_DEFINED +#undef yyrealloc +#endif +#ifndef cmDependsJava_yyfree_ALREADY_DEFINED +#undef yyfree +#endif +#ifndef cmDependsJava_yytext_ALREADY_DEFINED +#undef yytext +#endif +#ifndef cmDependsJava_yyleng_ALREADY_DEFINED +#undef yyleng +#endif +#ifndef cmDependsJava_yyin_ALREADY_DEFINED +#undef yyin +#endif +#ifndef cmDependsJava_yyout_ALREADY_DEFINED +#undef yyout +#endif +#ifndef cmDependsJava_yy_flex_debug_ALREADY_DEFINED +#undef yy_flex_debug +#endif +#ifndef cmDependsJava_yylineno_ALREADY_DEFINED +#undef yylineno +#endif +#ifndef cmDependsJava_yytables_fload_ALREADY_DEFINED +#undef yytables_fload +#endif +#ifndef cmDependsJava_yytables_destroy_ALREADY_DEFINED +#undef yytables_destroy +#endif +#ifndef cmDependsJava_yyTABLES_NAME_ALREADY_DEFINED +#undef yyTABLES_NAME +#endif -#line 335 "cmDependsJavaLexer.h" #undef cmDependsJava_yyIN_HEADER #endif /* cmDependsJava_yyHEADER_H */ diff --git a/Source/LexerParser/cmDependsJavaLexer.in.l b/Source/LexerParser/cmDependsJavaLexer.in.l index 8cb42b1..01a0fa3 100644 --- a/Source/LexerParser/cmDependsJavaLexer.in.l +++ b/Source/LexerParser/cmDependsJavaLexer.in.l @@ -7,13 +7,12 @@ This file must be translated to C++ and modified to build everywhere. Run flex >= 2.6 like this: - flex --nounistd -DFLEXINT_H --prefix=cmDependsJava_yy --header-file=cmDependsJavaLexer.h -ocmDependsJavaLexer.cxx cmDependsJavaLexer.in.l + flex --nounistd -DFLEXINT_H --noline --header-file=cmDependsJavaLexer.h -ocmDependsJavaLexer.cxx cmDependsJavaLexer.in.l Modify cmDependsJavaLexer.cxx: - - remove trailing whitespace: sed -i 's/\s*$//' cmDependsJavaLexer.h cmDependsJavaLexer.cxx - - remove blank lines at end of file - - #include "cmStandardLexer.h" at the top - - add cast in yy_scan_bytes for loop condition of _yybytes_len to size_t + - remove trailing whitespace: sed -i 's/\s*$//' cmDependsJavaLexer.h cmDependsJavaLexer.cxx + - remove blank lines at end of file: sed -i '${/^$/d;}' cmDependsJavaLexer.h cmDependsJavaLexer.cxx + - #include "cmStandardLexer.h" at the top: sed -i '1i#include "cmStandardLexer.h"' cmDependsJavaLexer.cxx */ @@ -38,6 +37,8 @@ Modify cmDependsJavaLexer.cxx: /*--------------------------------------------------------------------------*/ %} +%option prefix="cmDependsJava_yy" + %option reentrant %option noyywrap %pointer |