Kannel: Open Source WAP and SMS gateway
svn-r5336
|
Go to the source code of this file.
Macros | |
#define | WS_CHECK_COMPILE_ERROR() |
Functions | |
static WsResult | compile_stream (WsCompilerPtr compiler, const char *input_name, WsStream *input, unsigned char **output_return, size_t *output_len_return) |
static void | std_io (const char *data, size_t len, void *context) |
static int | sort_functions_cmp (const void *a, const void *b) |
WsCompilerPtr | ws_create (WsCompilerParams *params) |
void | ws_destroy (WsCompilerPtr compiler) |
WsResult | ws_compile_file (WsCompilerPtr compiler, const char *input_name, FILE *input, FILE *output) |
WsResult | ws_compile_data (WsCompilerPtr compiler, const char *input_name, const unsigned char *input, size_t input_len, unsigned char **output_return, size_t *output_len_return) |
void | ws_free_byte_code (unsigned char *byte_code) |
const char * | ws_result_to_string (WsResult result) |
WsBool | ws_lexer_register_block (WsCompiler *compiler, void *ptr) |
WsBool | ws_lexer_register_utf8 (WsCompiler *compiler, WsUtf8String *string) |
void | ws_lexer_free_block (WsCompiler *compiler, void *ptr) |
void | ws_lexer_free_utf8 (WsCompiler *compiler, WsUtf8String *string) |
Variables | |
struct { | |
WsResult code | |
char * description | |
} | result_codes [] |
#define WS_CHECK_COMPILE_ERROR | ( | ) |
Definition at line 78 of file ws.c.
Referenced by compile_stream().
|
static |
Definition at line 316 of file ws.c.
References WsCompilerRec::asm_head, WsCompilerRec::asm_tail, WsCompilerRec::bc, WsFunctionRec::block, WsCompilerRec::byte_code, WsListItemRec::data, WsCompilerRec::errors, WsFunctionRec::externp, WsFunctionRec::findex, WsFunctionHashRec::findex, WsCompilerRec::functions, WsCompilerRec::functions_hash, WsListRec::head, WsCompilerRec::input, WsCompilerRec::input_name, WsCompilerRec::last_syntax_error_line, WsCompilerRec::lexer_active_list, WsCompilerRec::lexer_active_list_size, WsCompilerRec::linenum, parm::name, WsFunctionRec::name, WsListItemRec::next, WsCompilerRec::next_label, WsCompilerRec::next_vindex, WsCompilerParamsRec::no_opt_sort_bc_functions, WsCompilerRec::num_errors, WsCompilerRec::num_extern_functions, WsCompilerRec::num_functions, WsListRec::num_items, WsCompilerRec::num_local_functions, WsCompilerRec::num_warnings, WsCompilerRec::params, WsFunctionRec::params, WsCompilerRec::pool_asm, WsCompilerRec::pool_stree, WsCompilerRec::pragma_use_hash, WsCompilerParamsRec::print_assembler, WsCompilerParamsRec::print_symbolic_assembler, sort_functions_cmp(), WsFunctionRec::usage_count, WsFunctionHashRec::usage_count, WsCompilerParamsRec::use_latin1_strings, WsCompilerRec::variables_hash, ws_asm_dasm(), ws_asm_linearize(), ws_asm_optimize(), ws_asm_print(), ws_bc_add_function(), ws_bc_alloc(), ws_bc_encode(), ws_bc_free(), WS_BC_STRING_ENC_ISO_8859_1, WS_BC_STRING_ENC_UTF8, ws_buffer_init(), ws_buffer_len(), ws_buffer_ptr(), ws_buffer_uninit(), WS_CHECK_COMPILE_ERROR, WS_ERROR_OUT_OF_MEMORY, ws_f_create(), ws_f_destroy(), WS_FALSE, ws_free(), ws_function_hash(), ws_function_hash_create(), ws_hash_destroy(), ws_info(), WS_OK, ws_pragma_use_hash_create(), ws_stmt_linearize(), ws_variable_define(), ws_variable_hash_create(), and ws_yy_parse().
Referenced by ws_compile_data(), and ws_compile_file().
|
static |
Definition at line 554 of file ws.c.
References WsFunctionRec::findex, and WsFunctionRec::usage_count.
Referenced by compile_stream().
|
static |
Definition at line 548 of file ws.c.
Referenced by ws_create().
WsResult ws_compile_data | ( | WsCompilerPtr | compiler, |
const char * | input_name, | ||
const unsigned char * | input, | ||
size_t | input_len, | ||
unsigned char ** | output_return, | ||
size_t * | output_len_return | ||
) |
Definition at line 206 of file ws.c.
References compile_stream(), WS_ERROR_OUT_OF_MEMORY, ws_stream_close(), and ws_stream_new_data_input().
Referenced by convert_wmlscript_to_wmlscriptc(), and main().
WsResult ws_compile_file | ( | WsCompilerPtr | compiler, |
const char * | input_name, | ||
FILE * | input, | ||
FILE * | output | ||
) |
Definition at line 177 of file ws.c.
References compile_stream(), ws_bc_data_free(), WS_ERROR_IO, WS_ERROR_OUT_OF_MEMORY, WS_FALSE, WS_OK, ws_stream_close(), and ws_stream_new_file().
Referenced by main().
WsCompilerPtr ws_create | ( | WsCompilerParams * | params | ) |
Definition at line 135 of file ws.c.
References COMPILER_MAGIC, WsCompilerRec::magic, WsCompilerRec::params, std_io(), WsCompilerParamsRec::stderr_cb, WsCompilerParamsRec::stderr_cb_context, WsCompilerParamsRec::stdout_cb, WsCompilerParamsRec::stdout_cb_context, and ws_calloc().
Referenced by convert_wmlscript_to_wmlscriptc(), and main().
void ws_destroy | ( | WsCompilerPtr | compiler | ) |
void ws_free_byte_code | ( | unsigned char * | byte_code | ) |
void ws_lexer_free_block | ( | WsCompiler * | compiler, |
void * | ptr | ||
) |
Definition at line 281 of file ws.c.
References WsCompilerRec::lexer_active_list, WsCompilerRec::lexer_active_list_size, ws_fatal(), and ws_free().
Referenced by ws_expr_assign(), ws_expr_call(), ws_expr_postfix_var(), ws_expr_symbol(), ws_expr_unary_var(), ws_lexer_free_utf8(), ws_pragma_use(), and yyparse().
void ws_lexer_free_utf8 | ( | WsCompiler * | compiler, |
WsUtf8String * | string | ||
) |
Definition at line 305 of file ws.c.
References WsUtf8StringRec::data, and ws_lexer_free_block().
Referenced by ws_expr_const_string(), ws_pragma_meta_body_free(), ws_pragma_use(), and yyparse().
WsBool ws_lexer_register_block | ( | WsCompiler * | compiler, |
void * | ptr | ||
) |
Definition at line 248 of file ws.c.
References WsCompilerRec::lexer_active_list, WsCompilerRec::lexer_active_list_size, WS_FALSE, ws_realloc(), and WS_TRUE.
Referenced by ws_lexer_register_utf8(), and ws_yy_lex().
WsBool ws_lexer_register_utf8 | ( | WsCompiler * | compiler, |
WsUtf8String * | string | ||
) |
Definition at line 267 of file ws.c.
References WsUtf8StringRec::data, WsCompilerRec::lexer_active_list_size, WS_FALSE, ws_lexer_register_block(), and WS_TRUE.
Referenced by ws_yy_lex().
const char* ws_result_to_string | ( | WsResult | result | ) |
Definition at line 234 of file ws.c.
References code, and result_codes.
Referenced by convert_wmlscript_to_wmlscriptc(), and main().
WsResult code |
Definition at line 99 of file ws.c.
Referenced by ws_result_to_string().
char* description |
Definition at line 100 of file ws.c.
Referenced by describe_code().
struct { ... } result_codes[] |
Referenced by ws_result_to_string().