Changeset 534


Ignore:
Timestamp:
02/06/09 01:17:42 (3 years ago)
Author:
mooneer
Message:

Copied files to Windows build folder.

Location:
interpreter/trunk/windows
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • interpreter/trunk/windows/kite_lexer.c

    r525 r534  
    911911#define YY_DECL_IS_OURS 1 
    912912 
    913 extern int yylex (YYSTYPE * yylval_param,YYLTYPE * yylloc_param ,yyscan_t yyscanner); 
    914  
    915 #define YY_DECL int yylex (YYSTYPE * yylval_param, YYLTYPE * yylloc_param , yyscan_t yyscanner) 
     913extern int yylex \ 
     914               (YYSTYPE * yylval_param,YYLTYPE * yylloc_param ,yyscan_t yyscanner); 
     915 
     916#define YY_DECL int yylex \ 
     917               (YYSTYPE * yylval_param, YYLTYPE * yylloc_param , yyscan_t yyscanner) 
    916918#endif /* !YY_DECL */ 
    917919 
     
    943945 
    944946 
    945 #line 946 "kite_lexer.c" 
     947#line 948 "kite_lexer.c" 
    946948 
    947949    yylval = yylval_param; 
     
    16271629ECHO; 
    16281630        YY_BREAK 
    1629 #line 1630 "kite_lexer.c" 
     1631#line 1632 "kite_lexer.c" 
    16301632case YY_STATE_EOF(INITIAL): 
    16311633case YY_STATE_EOF(operator): 
     
    18641866                /* Read in more data. */ 
    18651867                YY_INPUT( (&YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[number_to_move]), 
    1866                         yyg->yy_n_chars, num_to_read ); 
     1868                        yyg->yy_n_chars, (size_t) num_to_read ); 
    18671869 
    18681870                YY_CURRENT_BUFFER_LVALUE->yy_n_chars = yyg->yy_n_chars; 
     
    20432045                                        { 
    20442046                                        if ( yywrap(yyscanner ) ) 
    2045                                                 return 0; 
     2047                                                return EOF; 
    20462048 
    20472049                                        if ( ! yyg->yy_did_buffer_switch_on_eof ) 
     
    23782380/** Setup the input buffer state to scan a string. The next call to yylex() will 
    23792381 * scan from a @e copy of @a str. 
    2380  * @param str a NUL-terminated string to scan 
     2382 * @param yystr a NUL-terminated string to scan 
    23812383 * @param yyscanner The scanner object. 
    23822384 * @return the newly allocated buffer state object. 
  • interpreter/trunk/windows/kite_parser.c

    r525 r534  
    315315    kite_opcode_t *opValue; 
    316316} 
    317 /* Line 193 of yacc.c.  */ 
     317/* Line 187 of yacc.c.  */ 
    318318#line 319 "kite_parser.c" 
    319319        YYSTYPE; 
     
    391391 
    392392#ifndef YY_ 
    393 # if defined YYENABLE_NLS && YYENABLE_NLS 
     393# if YYENABLE_NLS 
    394394#  if ENABLE_NLS 
    395395#   include <libintl.h> /* INFRINGES ON USER NAME SPACE */ 
     
    11371137 
    11381138#ifndef YY_LOCATION_PRINT 
    1139 # if defined YYLTYPE_IS_TRIVIAL && YYLTYPE_IS_TRIVIAL 
     1139# if YYLTYPE_IS_TRIVIAL 
    11401140#  define YY_LOCATION_PRINT(File, Loc)                  \ 
    11411141     fprintf (File, "%d.%d-%d.%d",                      \ 
     
    17141714  yyvsp = yyvs; 
    17151715  yylsp = yyls; 
    1716 #if defined YYLTYPE_IS_TRIVIAL && YYLTYPE_IS_TRIVIAL 
     1716#if YYLTYPE_IS_TRIVIAL 
    17171717  /* Initialize the default location before parsing starts.  */ 
    17181718  yylloc.first_line   = yylloc.last_line   = 1; 
  • interpreter/trunk/windows/kite_parser.h

    r526 r534  
    165165    kite_opcode_t *opValue; 
    166166} 
    167 /* Line 1529 of yacc.c.  */ 
     167/* Line 1489 of yacc.c.  */ 
    168168#line 169 "kite_parser.h" 
    169169        YYSTYPE; 
  • interpreter/trunk/windows/module_initializers.c

    r524 r534  
    11#define KITE_MODULE_INITIALIZER_C 
    22#include "objs/kite_object.h" 
     3extern void posix_load_module__wrap(kite_thread_t*); 
     4extern void loader_load_module__wrap(kite_thread_t*); 
     5extern void thread_load_module__wrap(kite_thread_t*); 
     6extern void compiler_load_module__wrap(kite_thread_t*); 
     7extern void socket_load_module__wrap(kite_thread_t*); 
     8extern void range_load_module__wrap(kite_thread_t*); 
     9extern void directory_load_module__wrap(kite_thread_t*); 
     10extern void float_load_module__wrap(kite_thread_t*); 
     11extern void object_load_module__wrap(kite_thread_t*); 
     12extern void string_load_module__wrap(kite_thread_t*); 
     13extern void null_load_module__wrap(kite_thread_t*); 
     14extern void list_load_module__wrap(kite_thread_t*); 
     15extern void date_load_module__wrap(kite_thread_t*); 
     16extern void file_load_module__wrap(kite_thread_t*); 
     17extern void boolean_load_module__wrap(kite_thread_t*); 
     18extern void method_load_module__wrap(kite_thread_t*); 
     19extern void os_load_module__wrap(kite_thread_t*); 
     20extern void vm_load_module__wrap(kite_thread_t*); 
     21extern void math_load_module__wrap(kite_thread_t*); 
     22extern void integer_load_module__wrap(kite_thread_t*); 
     23extern void digest_load_module__wrap(kite_thread_t*); 
     24extern void hires_load_module__wrap(kite_thread_t*); 
     25extern void array_load_module__wrap(kite_thread_t*); 
     26extern void _cinvoke_context_load_module__wrap(kite_thread_t*); 
     27extern void _cinvoke_library_load_module__wrap(kite_thread_t*); 
     28extern void _cinvoke_function_load_module__wrap(kite_thread_t*); 
     29extern void _regex_match_load_module__wrap(kite_thread_t*); 
    330extern void _cinvoke_callback_load_module__wrap(kite_thread_t*); 
    4 extern void _cinvoke_context_load_module__wrap(kite_thread_t*); 
    5 extern void _cinvoke_function_load_module__wrap(kite_thread_t*); 
    6 extern void _cinvoke_library_load_module__wrap(kite_thread_t*); 
     31extern void _regex_load_module__wrap(kite_thread_t*); 
    732extern void _cinvoke_structure_load_module__wrap(kite_thread_t*); 
    833extern void _exception_load_module__wrap(kite_thread_t*); 
    9 extern void _regex_load_module__wrap(kite_thread_t*); 
    10 extern void _regex_match_load_module__wrap(kite_thread_t*); 
    1134extern void __internal_load_module__wrap(kite_thread_t*); 
    12 extern void boolean_load_module__wrap(kite_thread_t*); 
    13 extern void hires_load_module__wrap(kite_thread_t*); 
    14 extern void date_load_module__wrap(kite_thread_t*); 
    15 extern void digest_load_module__wrap(kite_thread_t*); 
    16 extern void directory_load_module__wrap(kite_thread_t*); 
    17 extern void file_load_module__wrap(kite_thread_t*); 
    18 extern void float_load_module__wrap(kite_thread_t*); 
    19 extern void integer_load_module__wrap(kite_thread_t*); 
    20 extern void list_load_module__wrap(kite_thread_t*); 
    21 extern void range_load_module__wrap(kite_thread_t*); 
    22 extern void math_load_module__wrap(kite_thread_t*); 
    23 extern void method_load_module__wrap(kite_thread_t*); 
    24 extern void socket_load_module__wrap(kite_thread_t*); 
    25 extern void null_load_module__wrap(kite_thread_t*); 
    26 extern void object_load_module__wrap(kite_thread_t*); 
    27 extern void posix_load_module__wrap(kite_thread_t*); 
    28 extern void os_load_module__wrap(kite_thread_t*); 
    29 extern void string_load_module__wrap(kite_thread_t*); 
    30 extern void compiler_load_module__wrap(kite_thread_t*); 
    31 extern void loader_load_module__wrap(kite_thread_t*); 
    32 extern void thread_load_module__wrap(kite_thread_t*); 
    33 extern void vm_load_module__wrap(kite_thread_t*); 
    3435void kite_module_initialize_now(kite_thread_t *thd) { 
     36posix_load_module__wrap(thd); 
     37loader_load_module__wrap(thd); 
     38thread_load_module__wrap(thd); 
     39compiler_load_module__wrap(thd); 
     40socket_load_module__wrap(thd); 
     41range_load_module__wrap(thd); 
     42directory_load_module__wrap(thd); 
     43float_load_module__wrap(thd); 
     44object_load_module__wrap(thd); 
     45string_load_module__wrap(thd); 
     46null_load_module__wrap(thd); 
     47list_load_module__wrap(thd); 
     48date_load_module__wrap(thd); 
     49file_load_module__wrap(thd); 
     50boolean_load_module__wrap(thd); 
     51method_load_module__wrap(thd); 
     52os_load_module__wrap(thd); 
     53vm_load_module__wrap(thd); 
     54math_load_module__wrap(thd); 
     55integer_load_module__wrap(thd); 
     56digest_load_module__wrap(thd); 
     57hires_load_module__wrap(thd); 
     58array_load_module__wrap(thd); 
     59_cinvoke_context_load_module__wrap(thd); 
     60_cinvoke_library_load_module__wrap(thd); 
     61_cinvoke_function_load_module__wrap(thd); 
     62_regex_match_load_module__wrap(thd); 
    3563_cinvoke_callback_load_module__wrap(thd); 
    36 _cinvoke_context_load_module__wrap(thd); 
    37 _cinvoke_function_load_module__wrap(thd); 
    38 _cinvoke_library_load_module__wrap(thd); 
     64_regex_load_module__wrap(thd); 
    3965_cinvoke_structure_load_module__wrap(thd); 
    4066_exception_load_module__wrap(thd); 
    41 _regex_load_module__wrap(thd); 
    42 _regex_match_load_module__wrap(thd); 
    4367__internal_load_module__wrap(thd); 
    44 boolean_load_module__wrap(thd); 
    45 hires_load_module__wrap(thd); 
    46 date_load_module__wrap(thd); 
    47 digest_load_module__wrap(thd); 
    48 directory_load_module__wrap(thd); 
    49 file_load_module__wrap(thd); 
    50 float_load_module__wrap(thd); 
    51 integer_load_module__wrap(thd); 
    52 list_load_module__wrap(thd); 
    53 range_load_module__wrap(thd); 
    54 math_load_module__wrap(thd); 
    55 method_load_module__wrap(thd); 
    56 socket_load_module__wrap(thd); 
    57 null_load_module__wrap(thd); 
    58 object_load_module__wrap(thd); 
    59 posix_load_module__wrap(thd); 
    60 os_load_module__wrap(thd); 
    61 string_load_module__wrap(thd); 
    62 compiler_load_module__wrap(thd); 
    63 loader_load_module__wrap(thd); 
    64 thread_load_module__wrap(thd); 
    65 vm_load_module__wrap(thd); 
    6668} 
Note: See TracChangeset for help on using the changeset viewer.