|
|
|
@ -17,9 +17,9 @@ DECL_STRUCT_P_FUNC(`zend_property_info')
|
|
|
|
|
dnl ====================================================
|
|
|
|
|
#ifdef IS_CV
|
|
|
|
|
DEF_STRUCT_P_FUNC(`zend_compiled_variable', , `dnl {{{
|
|
|
|
|
DISPATCH(int, name_len)
|
|
|
|
|
PROCESS(int, name_len)
|
|
|
|
|
PROC_ZSTRING_L(, name, name_len)
|
|
|
|
|
DISPATCH(ulong, hash_value)
|
|
|
|
|
PROCESS(ulong, hash_value)
|
|
|
|
|
')
|
|
|
|
|
dnl }}}
|
|
|
|
|
#endif
|
|
|
|
@ -45,18 +45,18 @@ dnl }}}
|
|
|
|
|
#endif
|
|
|
|
|
#ifdef ZEND_ENGINE_2
|
|
|
|
|
DEF_STRUCT_P_FUNC(`zend_try_catch_element', , `dnl {{{
|
|
|
|
|
DISPATCH(zend_uint, try_op)
|
|
|
|
|
DISPATCH(zend_uint, catch_op)
|
|
|
|
|
PROCESS(zend_uint, try_op)
|
|
|
|
|
PROCESS(zend_uint, catch_op)
|
|
|
|
|
')
|
|
|
|
|
dnl }}}
|
|
|
|
|
#endif
|
|
|
|
|
DEF_STRUCT_P_FUNC(`zend_brk_cont_element', , `dnl {{{
|
|
|
|
|
#ifdef ZEND_ENGINE_2_2
|
|
|
|
|
DISPATCH(int, start)
|
|
|
|
|
PROCESS(int, start)
|
|
|
|
|
#endif
|
|
|
|
|
DISPATCH(int, cont)
|
|
|
|
|
DISPATCH(int, brk)
|
|
|
|
|
DISPATCH(int, parent)
|
|
|
|
|
PROCESS(int, cont)
|
|
|
|
|
PROCESS(int, brk)
|
|
|
|
|
PROCESS(int, parent)
|
|
|
|
|
')
|
|
|
|
|
dnl }}}
|
|
|
|
|
DEF_HASH_TABLE_FUNC(`HashTable_zval_ptr', `zval_ptr')
|
|
|
|
@ -90,10 +90,10 @@ dnl {{{ zvalue_value
|
|
|
|
|
case IS_LONG:
|
|
|
|
|
case IS_RESOURCE:
|
|
|
|
|
case IS_BOOL:
|
|
|
|
|
DISPATCH(long, value.lval)
|
|
|
|
|
PROCESS(long, value.lval)
|
|
|
|
|
break;
|
|
|
|
|
case IS_DOUBLE:
|
|
|
|
|
DISPATCH(double, value.dval)
|
|
|
|
|
PROCESS(double, value.dval)
|
|
|
|
|
break;
|
|
|
|
|
case IS_NULL:
|
|
|
|
|
IFDPRINT(`INDENT()`'fprintf(stderr, "\tNULL\n");')
|
|
|
|
@ -109,13 +109,13 @@ dnl {{{ zvalue_value
|
|
|
|
|
#ifdef FLAG_IS_BC
|
|
|
|
|
case FLAG_IS_BC:
|
|
|
|
|
#endif
|
|
|
|
|
DISPATCH(int, value.str.len)
|
|
|
|
|
PROCESS(int, value.str.len)
|
|
|
|
|
PROC_STRING_L(value.str.val, value.str.len)
|
|
|
|
|
break;
|
|
|
|
|
#ifdef IS_UNICODE
|
|
|
|
|
case IS_UNICODE:
|
|
|
|
|
proc_unicode:
|
|
|
|
|
DISPATCH(int32_t, value.uni.len)
|
|
|
|
|
PROCESS(int32_t, value.uni.len)
|
|
|
|
|
PROC_ZSTRING_L(1, value.uni.val, value.uni.len)
|
|
|
|
|
break;
|
|
|
|
|
#endif
|
|
|
|
@ -140,19 +140,19 @@ proc_unicode:
|
|
|
|
|
')
|
|
|
|
|
dnl }}}
|
|
|
|
|
DONE(value)
|
|
|
|
|
DISPATCH(zval_data_type, type)
|
|
|
|
|
PROCESS(xc_zval_data_type, type)
|
|
|
|
|
#ifdef ZEND_ENGINE_2_3
|
|
|
|
|
DISPATCH(zend_uchar, is_ref__gc)
|
|
|
|
|
PROCESS(zend_uchar, is_ref__gc)
|
|
|
|
|
#else
|
|
|
|
|
DISPATCH(zend_uchar, is_ref)
|
|
|
|
|
PROCESS(zend_uchar, is_ref)
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#ifdef ZEND_ENGINE_2_3
|
|
|
|
|
DISPATCH(zend_uint, refcount__gc)
|
|
|
|
|
PROCESS(zend_uint, refcount__gc)
|
|
|
|
|
#elif defined(ZEND_ENGINE_2)
|
|
|
|
|
DISPATCH(zend_uint, refcount)
|
|
|
|
|
PROCESS(zend_uint, refcount)
|
|
|
|
|
#else
|
|
|
|
|
DISPATCH(zend_ushort, refcount)
|
|
|
|
|
PROCESS(zend_ushort, refcount)
|
|
|
|
|
#endif
|
|
|
|
|
')dnl IFDASM
|
|
|
|
|
')
|
|
|
|
@ -223,20 +223,20 @@ DEF_STRUCT_P_FUNC(`zval_ptr_nullable', , `dnl {{{
|
|
|
|
|
dnl }}}
|
|
|
|
|
#ifdef ZEND_ENGINE_2
|
|
|
|
|
DEF_STRUCT_P_FUNC(`zend_arg_info', , `dnl {{{
|
|
|
|
|
DISPATCH(zend_uint, name_len)
|
|
|
|
|
PROCESS(zend_uint, name_len)
|
|
|
|
|
PROC_ZSTRING_L(, name, name_len)
|
|
|
|
|
DISPATCH(zend_uint, class_name_len)
|
|
|
|
|
PROCESS(zend_uint, class_name_len)
|
|
|
|
|
PROC_ZSTRING_L(, class_name, class_name_len)
|
|
|
|
|
#ifdef ZEND_ENGINE_2_4
|
|
|
|
|
DISPATCH(zend_uchar, type_hint)
|
|
|
|
|
PROCESS(zend_uchar, type_hint)
|
|
|
|
|
#else
|
|
|
|
|
DISPATCH(zend_bool, array_type_hint)
|
|
|
|
|
PROCESS(zend_bool, array_type_hint)
|
|
|
|
|
#endif
|
|
|
|
|
DISPATCH(zend_bool, allow_null)
|
|
|
|
|
DISPATCH(zend_bool, pass_by_reference)
|
|
|
|
|
PROCESS(zend_bool, allow_null)
|
|
|
|
|
PROCESS(zend_bool, pass_by_reference)
|
|
|
|
|
#ifndef ZEND_ENGINE_2_4
|
|
|
|
|
DISPATCH(zend_bool, return_reference)
|
|
|
|
|
DISPATCH(int, required_num_args)
|
|
|
|
|
PROCESS(zend_bool, return_reference)
|
|
|
|
|
PROCESS(int, required_num_args)
|
|
|
|
|
#endif
|
|
|
|
|
')
|
|
|
|
|
dnl }}}
|
|
|
|
@ -244,12 +244,12 @@ dnl }}}
|
|
|
|
|
#ifdef HAVE_XCACHE_CONSTANT
|
|
|
|
|
DEF_STRUCT_P_FUNC(`zend_constant', , `dnl {{{
|
|
|
|
|
STRUCT(zval, value)
|
|
|
|
|
DISPATCH(int, flags)
|
|
|
|
|
DISPATCH(uint, name_len)
|
|
|
|
|
PROCESS(int, flags)
|
|
|
|
|
PROCESS(uint, name_len)
|
|
|
|
|
pushdef(`estrndup', `zend_strndup')
|
|
|
|
|
PROC_ZSTRING_N(, name, name_len)
|
|
|
|
|
popdef(`estrndup')
|
|
|
|
|
DISPATCH(int, module_number)
|
|
|
|
|
PROCESS(int, module_number)
|
|
|
|
|
')
|
|
|
|
|
dnl }}}
|
|
|
|
|
#endif
|
|
|
|
@ -276,15 +276,15 @@ DEF_STRUCT_P_FUNC(`zend_function', , `dnl {{{
|
|
|
|
|
dnl }}}
|
|
|
|
|
#ifdef ZEND_ENGINE_2
|
|
|
|
|
DEF_STRUCT_P_FUNC(`zend_property_info', , `dnl {{{
|
|
|
|
|
DISPATCH(zend_uint, flags)
|
|
|
|
|
DISPATCH(int, name_length)
|
|
|
|
|
PROCESS(zend_uint, flags)
|
|
|
|
|
PROCESS(int, name_length)
|
|
|
|
|
PROC_ZSTRING_L(, name, name_length)
|
|
|
|
|
DISPATCH(ulong, h)
|
|
|
|
|
PROCESS(ulong, h)
|
|
|
|
|
#ifdef ZEND_ENGINE_2_4
|
|
|
|
|
DISPATCH(int, offset)
|
|
|
|
|
PROCESS(int, offset)
|
|
|
|
|
#endif
|
|
|
|
|
#ifdef ZEND_ENGINE_2_1
|
|
|
|
|
DISPATCH(int, doc_comment_len)
|
|
|
|
|
PROCESS(int, doc_comment_len)
|
|
|
|
|
PROC_ZSTRING_L(, doc_comment, doc_comment_len)
|
|
|
|
|
#endif
|
|
|
|
|
dnl isnt in php6 yet
|
|
|
|
@ -296,25 +296,24 @@ dnl }}}
|
|
|
|
|
#endif
|
|
|
|
|
#ifdef ZEND_ENGINE_2_4
|
|
|
|
|
DEF_STRUCT_P_FUNC(`zend_trait_method_reference', , `dnl {{{
|
|
|
|
|
DISPATCH(unsigned int, mname_len)
|
|
|
|
|
PROCESS(unsigned int, mname_len)
|
|
|
|
|
PROC_STRING_L(method_name, mname_len)
|
|
|
|
|
COPYNULL(ce)
|
|
|
|
|
DISPATCH(unsigned int, cname_len)
|
|
|
|
|
PROCESS(unsigned int, cname_len)
|
|
|
|
|
PROC_STRING_L(class_name, cname_len)
|
|
|
|
|
')
|
|
|
|
|
dnl }}}
|
|
|
|
|
DEF_STRUCT_P_FUNC(`zend_trait_alias', , `dnl {{{
|
|
|
|
|
STRUCT_P(zend_trait_method_reference, trait_method)
|
|
|
|
|
DISPATCH(unsigned int, alias_len)
|
|
|
|
|
PROCESS(unsigned int, alias_len)
|
|
|
|
|
PROC_STRING_L(alias, alias_len)
|
|
|
|
|
DISPATCH(zend_uint, modifiers)
|
|
|
|
|
PROCESS(zend_uint, modifiers)
|
|
|
|
|
COPYNULL(function)
|
|
|
|
|
')
|
|
|
|
|
dnl }}}
|
|
|
|
|
DEF_STRUCT_P_FUNC(`zend_trait_precedence', , `dnl {{{
|
|
|
|
|
STRUCT_P(zend_trait_method_reference, trait_method)
|
|
|
|
|
dnl TODO
|
|
|
|
|
STRUCT_ARRAY(, xc_class_name_t, exclude_from_classes)
|
|
|
|
|
PROCESS_ARRAY(, xc_ztstring, exclude_from_classes, zend_class_entry*)
|
|
|
|
|
COPYNULL(function)
|
|
|
|
|
')
|
|
|
|
|
dnl }}}
|
|
|
|
@ -350,8 +349,8 @@ DEF_STRUCT_P_FUNC(`zend_class_entry', , `dnl {{{
|
|
|
|
|
processor->active_class_entry_src = src;
|
|
|
|
|
IFCOPY(`processor->active_class_entry_dst = dst;')
|
|
|
|
|
')
|
|
|
|
|
DISPATCH(char, type)
|
|
|
|
|
DISPATCH(zend_uint, name_length)
|
|
|
|
|
PROCESS(char, type)
|
|
|
|
|
PROCESS(zend_uint, name_length)
|
|
|
|
|
PROC_ZSTRING_L(, name, name_length)
|
|
|
|
|
IFRESTORE(`
|
|
|
|
|
#ifndef ZEND_ENGINE_2
|
|
|
|
@ -364,15 +363,15 @@ DEF_STRUCT_P_FUNC(`zend_class_entry', , `dnl {{{
|
|
|
|
|
PROC_CLASS_ENTRY_P(parent)
|
|
|
|
|
')
|
|
|
|
|
#ifdef ZEND_ENGINE_2
|
|
|
|
|
DISPATCH(int, refcount)
|
|
|
|
|
PROCESS(int, refcount)
|
|
|
|
|
#else
|
|
|
|
|
STRUCT_P(int, refcount)
|
|
|
|
|
#endif
|
|
|
|
|
#ifndef ZEND_ENGINE_2_4
|
|
|
|
|
DISPATCH(zend_bool, constants_updated)
|
|
|
|
|
PROCESS(zend_bool, constants_updated)
|
|
|
|
|
#endif
|
|
|
|
|
#ifdef ZEND_ENGINE_2
|
|
|
|
|
DISPATCH(zend_uint, ce_flags)
|
|
|
|
|
PROCESS(zend_uint, ce_flags)
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#ifdef ZEND_ENGINE_2
|
|
|
|
@ -381,9 +380,9 @@ DEF_STRUCT_P_FUNC(`zend_class_entry', , `dnl {{{
|
|
|
|
|
|
|
|
|
|
#ifdef ZEND_ENGINE_2_4
|
|
|
|
|
STRUCT_ARRAY(default_properties_count, zval_ptr_nullable, default_properties_table)
|
|
|
|
|
DISPATCH(int, default_properties_count)
|
|
|
|
|
PROCESS(int, default_properties_count)
|
|
|
|
|
STRUCT_ARRAY(default_static_members_count, zval_ptr_nullable, default_static_members_table)
|
|
|
|
|
DISPATCH(int, default_static_members_count)
|
|
|
|
|
PROCESS(int, default_static_members_count)
|
|
|
|
|
IFCOPY(`dst->static_members_table = dst->default_static_members_table;')
|
|
|
|
|
DONE(static_members_table)
|
|
|
|
|
#else
|
|
|
|
@ -424,7 +423,7 @@ DEF_STRUCT_P_FUNC(`zend_class_entry', , `dnl {{{
|
|
|
|
|
', `
|
|
|
|
|
DONE(`interfaces')
|
|
|
|
|
')
|
|
|
|
|
DISPATCH(zend_uint, num_interfaces)
|
|
|
|
|
PROCESS(zend_uint, num_interfaces)
|
|
|
|
|
#endif
|
|
|
|
|
STRUCT_ARRAY(, zend_trait_alias_ptr, trait_aliases)
|
|
|
|
|
STRUCT_ARRAY(, zend_trait_precedence_ptr, trait_precedences)
|
|
|
|
@ -432,18 +431,18 @@ DEF_STRUCT_P_FUNC(`zend_class_entry', , `dnl {{{
|
|
|
|
|
# ifdef ZEND_ENGINE_2_4
|
|
|
|
|
DISABLECHECK(`
|
|
|
|
|
IFRESTORE(`dst->info.user.filename = processor->entry_src->filepath;', `PROC_STRING(info.user.filename)')
|
|
|
|
|
DISPATCH(zend_uint, info.user.line_start)
|
|
|
|
|
DISPATCH(zend_uint, info.user.line_end)
|
|
|
|
|
DISPATCH(zend_uint, info.user.doc_comment_len)
|
|
|
|
|
PROCESS(zend_uint, info.user.line_start)
|
|
|
|
|
PROCESS(zend_uint, info.user.line_end)
|
|
|
|
|
PROCESS(zend_uint, info.user.doc_comment_len)
|
|
|
|
|
PROC_ZSTRING_L(, info.user.doc_comment, info.user.doc_comment_len)
|
|
|
|
|
')
|
|
|
|
|
DONE(info)
|
|
|
|
|
# else
|
|
|
|
|
IFRESTORE(`dst->filename = processor->entry_src->filepath;DONE(filename)', `PROC_STRING(filename)')
|
|
|
|
|
DISPATCH(zend_uint, line_start)
|
|
|
|
|
DISPATCH(zend_uint, line_end)
|
|
|
|
|
PROCESS(zend_uint, line_start)
|
|
|
|
|
PROCESS(zend_uint, line_end)
|
|
|
|
|
# ifdef ZEND_ENGINE_2_1
|
|
|
|
|
DISPATCH(zend_uint, doc_comment_len)
|
|
|
|
|
PROCESS(zend_uint, doc_comment_len)
|
|
|
|
|
PROC_ZSTRING_L(, doc_comment, doc_comment_len)
|
|
|
|
|
# endif
|
|
|
|
|
# endif
|
|
|
|
@ -518,7 +517,7 @@ define(`UNION_znode_op', `dnl {{{
|
|
|
|
|
switch ((src->$1_type ifelse($1, `result', & ~EXT_TYPE_UNUSED))) {
|
|
|
|
|
case IS_CONST:
|
|
|
|
|
ifelse($1, `result', `
|
|
|
|
|
DISPATCH(zend_uint, $1.constant)
|
|
|
|
|
PROCESS(zend_uint, $1.constant)
|
|
|
|
|
', `
|
|
|
|
|
IFDASM(`{
|
|
|
|
|
zval *zv;
|
|
|
|
@ -531,7 +530,7 @@ define(`UNION_znode_op', `dnl {{{
|
|
|
|
|
IFCOPY(`
|
|
|
|
|
dst->$1 = src->$1;
|
|
|
|
|
', `
|
|
|
|
|
DISPATCH(zend_uint, $1.constant)
|
|
|
|
|
PROCESS(zend_uint, $1.constant)
|
|
|
|
|
')
|
|
|
|
|
')
|
|
|
|
|
')
|
|
|
|
@ -545,11 +544,11 @@ define(`UNION_znode_op', `dnl {{{
|
|
|
|
|
case IS_VAR:
|
|
|
|
|
case IS_TMP_VAR:
|
|
|
|
|
case IS_CV:
|
|
|
|
|
DISPATCH(zend_uint, $1.var)
|
|
|
|
|
PROCESS(zend_uint, $1.var)
|
|
|
|
|
break;
|
|
|
|
|
case IS_UNUSED:
|
|
|
|
|
IFDASM(`DISPATCH(zend_uint, $1.var)')
|
|
|
|
|
DISPATCH(zend_uint, $1.opline_num)
|
|
|
|
|
IFDASM(`PROCESS(zend_uint, $1.var)')
|
|
|
|
|
PROCESS(zend_uint, $1.opline_num)
|
|
|
|
|
break;
|
|
|
|
|
')
|
|
|
|
|
}
|
|
|
|
@ -559,7 +558,7 @@ define(`UNION_znode_op', `dnl {{{
|
|
|
|
|
dnl }}}
|
|
|
|
|
#else
|
|
|
|
|
DEF_STRUCT_P_FUNC(`znode', , `dnl {{{
|
|
|
|
|
DISPATCH(int, op_type)
|
|
|
|
|
PROCESS(xc_op_type, op_type)
|
|
|
|
|
|
|
|
|
|
#ifdef IS_CV
|
|
|
|
|
# define XCACHE_IS_CV IS_CV
|
|
|
|
@ -587,16 +586,16 @@ DEF_STRUCT_P_FUNC(`znode', , `dnl {{{
|
|
|
|
|
case IS_VAR:
|
|
|
|
|
case IS_TMP_VAR:
|
|
|
|
|
case XCACHE_IS_CV:
|
|
|
|
|
DISPATCH(zend_uint, u.var)
|
|
|
|
|
DISPATCH(zend_uint, u.EA.type)
|
|
|
|
|
PROCESS(zend_uint, u.var)
|
|
|
|
|
PROCESS(zend_uint, u.EA.type)
|
|
|
|
|
break;
|
|
|
|
|
case IS_UNUSED:
|
|
|
|
|
IFDASM(`DISPATCH(zend_uint, u.var)')
|
|
|
|
|
DISPATCH(zend_uint, u.opline_num)
|
|
|
|
|
IFDASM(`PROCESS(zend_uint, u.var)')
|
|
|
|
|
PROCESS(zend_uint, u.opline_num)
|
|
|
|
|
#ifndef ZEND_ENGINE_2
|
|
|
|
|
DISPATCH(zend_uint, u.fetch_type)
|
|
|
|
|
PROCESS(zend_uint, u.fetch_type)
|
|
|
|
|
#endif
|
|
|
|
|
DISPATCH(zend_uint, u.EA.type)
|
|
|
|
|
PROCESS(zend_uint, u.EA.type)
|
|
|
|
|
break;
|
|
|
|
|
')
|
|
|
|
|
}
|
|
|
|
@ -610,7 +609,7 @@ DEF_STRUCT_P_FUNC(`znode', , `dnl {{{
|
|
|
|
|
dnl }}}
|
|
|
|
|
#endif
|
|
|
|
|
DEF_STRUCT_P_FUNC(`zend_op', , `dnl {{{
|
|
|
|
|
DISPATCH(zend_uchar, opcode)
|
|
|
|
|
PROCESS(xc_opcode, opcode)
|
|
|
|
|
#ifdef ZEND_ENGINE_2_4
|
|
|
|
|
IFRESTORE(`', `
|
|
|
|
|
switch (src->opcode) {
|
|
|
|
@ -627,13 +626,13 @@ DEF_STRUCT_P_FUNC(`zend_op', , `dnl {{{
|
|
|
|
|
STRUCT(znode, op1)
|
|
|
|
|
STRUCT(znode, op2)
|
|
|
|
|
#endif
|
|
|
|
|
DISPATCH(ulong, extended_value)
|
|
|
|
|
DISPATCH(uint, lineno)
|
|
|
|
|
PROCESS(ulong, extended_value)
|
|
|
|
|
PROCESS(uint, lineno)
|
|
|
|
|
#ifdef ZEND_ENGINE_2_1
|
|
|
|
|
#ifdef ZEND_ENGINE_2_4
|
|
|
|
|
DISPATCH(zend_uchar, op1_type)
|
|
|
|
|
DISPATCH(zend_uchar, op2_type)
|
|
|
|
|
DISPATCH(zend_uchar, result_type)
|
|
|
|
|
PROCESS(zend_uchar, op1_type)
|
|
|
|
|
PROCESS(zend_uchar, op2_type)
|
|
|
|
|
PROCESS(zend_uchar, result_type)
|
|
|
|
|
#endif
|
|
|
|
|
IFCOPY(`
|
|
|
|
|
#ifdef ZEND_ENGINE_2_4
|
|
|
|
@ -673,15 +672,15 @@ DEF_STRUCT_P_FUNC(`zend_op', , `dnl {{{
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
')
|
|
|
|
|
DISPATCH(opcode_handler_t, handler)
|
|
|
|
|
PROCESS(opcode_handler_t, handler)
|
|
|
|
|
#endif
|
|
|
|
|
')
|
|
|
|
|
dnl }}}
|
|
|
|
|
#ifdef ZEND_ENGINE_2_4
|
|
|
|
|
DEF_STRUCT_P_FUNC(`zend_literal', , `dnl {{{
|
|
|
|
|
STRUCT(zval, constant)
|
|
|
|
|
DISPATCH(zend_ulong, hash_value)
|
|
|
|
|
DISPATCH(zend_uint, cache_slot)
|
|
|
|
|
PROCESS(zend_ulong, hash_value)
|
|
|
|
|
PROCESS(zend_uint, cache_slot)
|
|
|
|
|
')
|
|
|
|
|
dnl }}}
|
|
|
|
|
#endif
|
|
|
|
@ -776,15 +775,15 @@ DEF_STRUCT_P_FUNC(`zend_op_array', , `dnl {{{
|
|
|
|
|
dnl RESTORE is done above!
|
|
|
|
|
|
|
|
|
|
/* Common elements */
|
|
|
|
|
DISPATCH(zend_uchar, type)
|
|
|
|
|
PROCESS(zend_uchar, type)
|
|
|
|
|
PROC_ZSTRING(, function_name)
|
|
|
|
|
#ifdef ZEND_ENGINE_2
|
|
|
|
|
DISPATCH(zend_uint, fn_flags)
|
|
|
|
|
PROCESS(zend_uint, fn_flags)
|
|
|
|
|
STRUCT_ARRAY(num_args, zend_arg_info, arg_info)
|
|
|
|
|
DISPATCH(zend_uint, num_args)
|
|
|
|
|
DISPATCH(zend_uint, required_num_args)
|
|
|
|
|
PROCESS(zend_uint, num_args)
|
|
|
|
|
PROCESS(zend_uint, required_num_args)
|
|
|
|
|
# ifndef ZEND_ENGINE_2_4
|
|
|
|
|
DISPATCH(zend_bool, pass_rest_by_reference)
|
|
|
|
|
PROCESS(zend_bool, pass_rest_by_reference)
|
|
|
|
|
# endif
|
|
|
|
|
#else
|
|
|
|
|
if (src->arg_types) {
|
|
|
|
@ -807,7 +806,7 @@ DEF_STRUCT_P_FUNC(`zend_op_array', , `dnl {{{
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
#ifndef ZEND_ENGINE_2_4
|
|
|
|
|
DISPATCH(unsigned char, return_reference)
|
|
|
|
|
PROCESS(unsigned char, return_reference)
|
|
|
|
|
#endif
|
|
|
|
|
/* END of common elements */
|
|
|
|
|
#ifdef IS_UNICODE
|
|
|
|
@ -821,7 +820,7 @@ DEF_STRUCT_P_FUNC(`zend_op_array', , `dnl {{{
|
|
|
|
|
#ifdef ZEND_ENGINE_2_4
|
|
|
|
|
dnl before copying opcodes
|
|
|
|
|
STRUCT_ARRAY(last_literal, zend_literal, literals)
|
|
|
|
|
DISPATCH(int, last_literal)
|
|
|
|
|
PROCESS(int, last_literal)
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
pushdef(`AFTER_ALLOC', `IFCOPY(`
|
|
|
|
@ -834,16 +833,16 @@ DEF_STRUCT_P_FUNC(`zend_op_array', , `dnl {{{
|
|
|
|
|
')')
|
|
|
|
|
STRUCT_ARRAY(last, zend_op, opcodes)
|
|
|
|
|
popdef(`AFTER_ALLOC')
|
|
|
|
|
DISPATCH(zend_uint, last)
|
|
|
|
|
PROCESS(zend_uint, last)
|
|
|
|
|
#ifndef ZEND_ENGINE_2_4
|
|
|
|
|
IFCOPY(`dst->size = src->last;DONE(size)', `DISPATCH(zend_uint, size)')
|
|
|
|
|
IFCOPY(`dst->size = src->last;DONE(size)', `PROCESS(zend_uint, size)')
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#ifdef IS_CV
|
|
|
|
|
STRUCT_ARRAY(last_var, zend_compiled_variable, vars)
|
|
|
|
|
DISPATCH(int, last_var)
|
|
|
|
|
PROCESS(int, last_var)
|
|
|
|
|
# ifndef ZEND_ENGINE_2_4
|
|
|
|
|
IFCOPY(`dst->size_var = src->last_var;DONE(size_var)', `DISPATCH(zend_uint, size_var)')
|
|
|
|
|
IFCOPY(`dst->size_var = src->last_var;DONE(size_var)', `PROCESS(zend_uint, size_var)')
|
|
|
|
|
# endif
|
|
|
|
|
#else
|
|
|
|
|
dnl zend_cv.m4 is illegal to be made public, don not ask me for it
|
|
|
|
@ -852,38 +851,38 @@ DEF_STRUCT_P_FUNC(`zend_op_array', , `dnl {{{
|
|
|
|
|
')
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
DISPATCH(zend_uint, T)
|
|
|
|
|
PROCESS(zend_uint, T)
|
|
|
|
|
|
|
|
|
|
STRUCT_ARRAY(last_brk_cont, zend_brk_cont_element, brk_cont_array)
|
|
|
|
|
DISPATCH(zend_uint, last_brk_cont)
|
|
|
|
|
PROCESS(zend_uint, last_brk_cont)
|
|
|
|
|
#ifndef ZEND_ENGINE_2_4
|
|
|
|
|
DISPATCH(zend_uint, current_brk_cont)
|
|
|
|
|
PROCESS(zend_uint, current_brk_cont)
|
|
|
|
|
#endif
|
|
|
|
|
#ifndef ZEND_ENGINE_2
|
|
|
|
|
DISPATCH(zend_bool, uses_globals)
|
|
|
|
|
PROCESS(zend_bool, uses_globals)
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#ifdef ZEND_ENGINE_2
|
|
|
|
|
STRUCT_ARRAY(last_try_catch, zend_try_catch_element, try_catch_array)
|
|
|
|
|
DISPATCH(int, last_try_catch)
|
|
|
|
|
PROCESS(int, last_try_catch)
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
STRUCT_P(HashTable, static_variables, HashTable_zval_ptr)
|
|
|
|
|
|
|
|
|
|
#ifndef ZEND_ENGINE_2_4
|
|
|
|
|
COPY(start_op)
|
|
|
|
|
DISPATCH(int, backpatch_count)
|
|
|
|
|
PROCESS(int, backpatch_count)
|
|
|
|
|
#endif
|
|
|
|
|
#ifdef ZEND_ENGINE_2_3
|
|
|
|
|
DISPATCH(zend_uint, this_var)
|
|
|
|
|
PROCESS(zend_uint, this_var)
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#ifndef ZEND_ENGINE_2_4
|
|
|
|
|
DISPATCH(zend_bool, done_pass_two)
|
|
|
|
|
PROCESS(zend_bool, done_pass_two)
|
|
|
|
|
#endif
|
|
|
|
|
/* 5.0 <= ver < 5.3 */
|
|
|
|
|
#if defined(ZEND_ENGINE_2) && !defined(ZEND_ENGINE_2_3)
|
|
|
|
|
DISPATCH(zend_bool, uses_this)
|
|
|
|
|
PROCESS(zend_bool, uses_this)
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
IFRESTORE(`dst->filename = processor->entry_src->filepath;DONE(filename)', `PROC_STRING(filename)')
|
|
|
|
@ -895,23 +894,23 @@ DEF_STRUCT_P_FUNC(`zend_op_array', , `dnl {{{
|
|
|
|
|
')
|
|
|
|
|
#endif
|
|
|
|
|
#ifdef ZEND_ENGINE_2
|
|
|
|
|
DISPATCH(zend_uint, line_start)
|
|
|
|
|
DISPATCH(zend_uint, line_end)
|
|
|
|
|
DISPATCH(int, doc_comment_len)
|
|
|
|
|
PROCESS(zend_uint, line_start)
|
|
|
|
|
PROCESS(zend_uint, line_end)
|
|
|
|
|
PROCESS(int, doc_comment_len)
|
|
|
|
|
PROC_ZSTRING_L(, doc_comment, doc_comment_len)
|
|
|
|
|
#endif
|
|
|
|
|
#ifdef ZEND_COMPILE_DELAYED_BINDING
|
|
|
|
|
DISPATCH(zend_uint, early_binding);
|
|
|
|
|
PROCESS(zend_uint, early_binding);
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
/* reserved */
|
|
|
|
|
DONE(reserved)
|
|
|
|
|
#if defined(HARDENING_PATCH) && HARDENING_PATCH
|
|
|
|
|
DISPATCH(zend_bool, created_by_eval)
|
|
|
|
|
PROCESS(zend_bool, created_by_eval)
|
|
|
|
|
#endif
|
|
|
|
|
#ifdef ZEND_ENGINE_2_4
|
|
|
|
|
SETNULL(run_time_cache)
|
|
|
|
|
DISPATCH(int, last_cache_slot)
|
|
|
|
|
PROCESS(int, last_cache_slot)
|
|
|
|
|
#endif
|
|
|
|
|
} while (0);
|
|
|
|
|
IFRESTORE(`xc_fix_op_array_info(processor->entry_src, processor->php_src, dst, shallow_copy, op_array_info TSRMLS_CC);')
|
|
|
|
@ -966,42 +965,42 @@ dnl }}}
|
|
|
|
|
|
|
|
|
|
#ifdef HAVE_XCACHE_CONSTANT
|
|
|
|
|
DEF_STRUCT_P_FUNC(`xc_constinfo_t', , `dnl {{{
|
|
|
|
|
DISPATCH(zend_uint, key_size)
|
|
|
|
|
PROCESS(zend_uint, key_size)
|
|
|
|
|
#ifdef IS_UNICODE
|
|
|
|
|
DISPATCH(zend_uchar, type)
|
|
|
|
|
PROCESS(zend_uchar, type)
|
|
|
|
|
#endif
|
|
|
|
|
IFRESTORE(`COPY(key)', `
|
|
|
|
|
PROC_ZSTRING_N(type, key, key_size)
|
|
|
|
|
')
|
|
|
|
|
DISPATCH(ulong, h)
|
|
|
|
|
PROCESS(ulong, h)
|
|
|
|
|
STRUCT(zend_constant, constant)
|
|
|
|
|
')
|
|
|
|
|
dnl }}}
|
|
|
|
|
#endif
|
|
|
|
|
DEF_STRUCT_P_FUNC(`xc_op_array_info_detail_t', , `dnl {{{
|
|
|
|
|
DISPATCH(zend_uint, index)
|
|
|
|
|
DISPATCH(zend_uint, info)
|
|
|
|
|
PROCESS(zend_uint, index)
|
|
|
|
|
PROCESS(zend_uint, info)
|
|
|
|
|
')
|
|
|
|
|
dnl }}}
|
|
|
|
|
DEF_STRUCT_P_FUNC(`xc_op_array_info_t', , `dnl {{{
|
|
|
|
|
#ifdef ZEND_ENGINE_2_4
|
|
|
|
|
DISPATCH(zend_uint, literalinfo_cnt)
|
|
|
|
|
PROCESS(zend_uint, literalinfo_cnt)
|
|
|
|
|
STRUCT_ARRAY(literalinfo_cnt, xc_op_array_info_detail_t, literalinfos)
|
|
|
|
|
#else
|
|
|
|
|
DISPATCH(zend_uint, oplineinfo_cnt)
|
|
|
|
|
PROCESS(zend_uint, oplineinfo_cnt)
|
|
|
|
|
STRUCT_ARRAY(oplineinfo_cnt, xc_op_array_info_detail_t, oplineinfos)
|
|
|
|
|
#endif
|
|
|
|
|
')
|
|
|
|
|
dnl }}}
|
|
|
|
|
DEF_STRUCT_P_FUNC(`xc_funcinfo_t', , `dnl {{{
|
|
|
|
|
DISPATCH(zend_uint, key_size)
|
|
|
|
|
PROCESS(zend_uint, key_size)
|
|
|
|
|
#ifdef IS_UNICODE
|
|
|
|
|
DISPATCH(zend_uchar, type)
|
|
|
|
|
PROCESS(zend_uchar, type)
|
|
|
|
|
#endif
|
|
|
|
|
IFRESTORE(`COPY(key)', `
|
|
|
|
|
PROC_ZSTRING_N(type, key, key_size)
|
|
|
|
|
')
|
|
|
|
|
DISPATCH(ulong, h)
|
|
|
|
|
PROCESS(ulong, h)
|
|
|
|
|
IFRESTORE(`COPY(op_array_info)', `
|
|
|
|
|
STRUCT(xc_op_array_info_t, op_array_info)
|
|
|
|
|
')
|
|
|
|
@ -1013,15 +1012,15 @@ DEF_STRUCT_P_FUNC(`xc_funcinfo_t', , `dnl {{{
|
|
|
|
|
')
|
|
|
|
|
dnl }}}
|
|
|
|
|
DEF_STRUCT_P_FUNC(`xc_classinfo_t', , `dnl {{{
|
|
|
|
|
DISPATCH(zend_uint, key_size)
|
|
|
|
|
PROCESS(zend_uint, key_size)
|
|
|
|
|
#ifdef IS_UNICODE
|
|
|
|
|
DISPATCH(zend_uchar, type)
|
|
|
|
|
PROCESS(zend_uchar, type)
|
|
|
|
|
#endif
|
|
|
|
|
IFRESTORE(`COPY(key)', `
|
|
|
|
|
PROC_ZSTRING_N(type, key, key_size)
|
|
|
|
|
')
|
|
|
|
|
DISPATCH(ulong, h)
|
|
|
|
|
DISPATCH(zend_uint, methodinfo_cnt)
|
|
|
|
|
PROCESS(ulong, h)
|
|
|
|
|
PROCESS(zend_uint, methodinfo_cnt)
|
|
|
|
|
IFRESTORE(`COPY(methodinfos)', `
|
|
|
|
|
STRUCT_ARRAY(methodinfo_cnt, xc_op_array_info_t, methodinfos)
|
|
|
|
|
')
|
|
|
|
@ -1035,28 +1034,28 @@ DEF_STRUCT_P_FUNC(`xc_classinfo_t', , `dnl {{{
|
|
|
|
|
STRUCT(zend_class_entry, cest)
|
|
|
|
|
#endif
|
|
|
|
|
#ifndef ZEND_COMPILE_DELAYED_BINDING
|
|
|
|
|
DISPATCH(int, oplineno)
|
|
|
|
|
PROCESS(int, oplineno)
|
|
|
|
|
#endif
|
|
|
|
|
')
|
|
|
|
|
dnl }}}
|
|
|
|
|
#ifdef ZEND_ENGINE_2_1
|
|
|
|
|
DEF_STRUCT_P_FUNC(`xc_autoglobal_t', , `dnl {{{
|
|
|
|
|
DISPATCH(zend_uint, key_len)
|
|
|
|
|
PROCESS(zend_uint, key_len)
|
|
|
|
|
#ifdef IS_UNICODE
|
|
|
|
|
DISPATCH(zend_uchar, type)
|
|
|
|
|
PROCESS(zend_uchar, type)
|
|
|
|
|
#endif
|
|
|
|
|
IFRESTORE(`COPY(key)', `
|
|
|
|
|
PROC_ZSTRING_L(type, key, key_len)
|
|
|
|
|
')
|
|
|
|
|
DISPATCH(ulong, h)
|
|
|
|
|
PROCESS(ulong, h)
|
|
|
|
|
')
|
|
|
|
|
dnl }}}
|
|
|
|
|
#endif
|
|
|
|
|
#ifdef E_STRICT
|
|
|
|
|
DEF_STRUCT_P_FUNC(`xc_compilererror_t', , `dnl {{{
|
|
|
|
|
DISPATCH(int, type)
|
|
|
|
|
DISPATCH(uint, lineno)
|
|
|
|
|
DISPATCH(int, error_len)
|
|
|
|
|
PROCESS(int, type)
|
|
|
|
|
PROCESS(uint, lineno)
|
|
|
|
|
PROCESS(int, error_len)
|
|
|
|
|
PROC_STRING_L(error, error_len)
|
|
|
|
|
')
|
|
|
|
|
dnl }}}
|
|
|
|
@ -1067,16 +1066,16 @@ DEF_STRUCT_P_FUNC(`xc_entry_data_php_t', , `dnl {{{
|
|
|
|
|
processor->php_src = src;
|
|
|
|
|
')
|
|
|
|
|
|
|
|
|
|
DISPATCH(xc_hash_value_t, hvalue)
|
|
|
|
|
PROCESS(xc_hash_value_t, hvalue)
|
|
|
|
|
/* skip */
|
|
|
|
|
DONE(next)
|
|
|
|
|
COPY(cache)
|
|
|
|
|
DISPATCH(xc_md5sum_t, md5)
|
|
|
|
|
DISPATCH(zend_ulong, refcount)
|
|
|
|
|
PROCESS(xc_md5sum_t, md5)
|
|
|
|
|
PROCESS(zend_ulong, refcount)
|
|
|
|
|
|
|
|
|
|
DISPATCH(size_t, sourcesize)
|
|
|
|
|
DISPATCH(zend_ulong, hits)
|
|
|
|
|
DISPATCH(size_t, size)
|
|
|
|
|
PROCESS(size_t, sourcesize)
|
|
|
|
|
PROCESS(zend_ulong, hits)
|
|
|
|
|
PROCESS(size_t, size)
|
|
|
|
|
|
|
|
|
|
IFRESTORE(`COPY(op_array_info)', `
|
|
|
|
|
STRUCT(xc_op_array_info_t, op_array_info)
|
|
|
|
@ -1088,17 +1087,17 @@ DEF_STRUCT_P_FUNC(`xc_entry_data_php_t', , `dnl {{{
|
|
|
|
|
STRUCT_P(zend_op_array, op_array)
|
|
|
|
|
|
|
|
|
|
#ifdef HAVE_XCACHE_CONSTANT
|
|
|
|
|
DISPATCH(zend_uint, constinfo_cnt)
|
|
|
|
|
PROCESS(zend_uint, constinfo_cnt)
|
|
|
|
|
STRUCT_ARRAY(constinfo_cnt, xc_constinfo_t, constinfos)
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
DISPATCH(zend_uint, funcinfo_cnt)
|
|
|
|
|
PROCESS(zend_uint, funcinfo_cnt)
|
|
|
|
|
STRUCT_ARRAY(funcinfo_cnt, xc_funcinfo_t, funcinfos)
|
|
|
|
|
|
|
|
|
|
DISPATCH(zend_uint, classinfo_cnt)
|
|
|
|
|
PROCESS(zend_uint, classinfo_cnt)
|
|
|
|
|
STRUCT_ARRAY(classinfo_cnt, xc_classinfo_t, classinfos, , IFRESTORE(`processor->active_class_index'))
|
|
|
|
|
#ifdef ZEND_ENGINE_2_1
|
|
|
|
|
DISPATCH(zend_uint, autoglobal_cnt)
|
|
|
|
|
PROCESS(zend_uint, autoglobal_cnt)
|
|
|
|
|
IFRESTORE(`
|
|
|
|
|
COPY(autoglobals)
|
|
|
|
|
', `
|
|
|
|
@ -1106,7 +1105,7 @@ DEF_STRUCT_P_FUNC(`xc_entry_data_php_t', , `dnl {{{
|
|
|
|
|
')
|
|
|
|
|
#endif
|
|
|
|
|
#ifdef E_STRICT
|
|
|
|
|
DISPATCH(zend_uint, compilererror_cnt)
|
|
|
|
|
PROCESS(zend_uint, compilererror_cnt)
|
|
|
|
|
IFRESTORE(`
|
|
|
|
|
COPY(compilererrors)
|
|
|
|
|
', `
|
|
|
|
@ -1114,48 +1113,48 @@ DEF_STRUCT_P_FUNC(`xc_entry_data_php_t', , `dnl {{{
|
|
|
|
|
')
|
|
|
|
|
#endif
|
|
|
|
|
#ifndef ZEND_COMPILE_DELAYED_BINDING
|
|
|
|
|
DISPATCH(zend_bool, have_early_binding)
|
|
|
|
|
PROCESS(zend_bool, have_early_binding)
|
|
|
|
|
#endif
|
|
|
|
|
DISPATCH(zend_bool, have_references)
|
|
|
|
|
PROCESS(zend_bool, have_references)
|
|
|
|
|
')
|
|
|
|
|
dnl }}}
|
|
|
|
|
DEF_STRUCT_P_FUNC(`xc_entry_data_var_t', , `dnl {{{
|
|
|
|
|
IFDPRINT(`INDENT()`'fprintf(stderr, "zval:value");')
|
|
|
|
|
STRUCT_P_EX(zval_ptr, dst->value, src->value, `value', `', `&')
|
|
|
|
|
DISPATCH(zend_bool, have_references)
|
|
|
|
|
PROCESS(zend_bool, have_references)
|
|
|
|
|
DONE(value)
|
|
|
|
|
')
|
|
|
|
|
dnl }}}
|
|
|
|
|
DEF_STRUCT_P_FUNC(`xc_entry_t', , `dnl {{{
|
|
|
|
|
DISPATCH(xc_entry_type_t, type)
|
|
|
|
|
DISPATCH(size_t, size)
|
|
|
|
|
PROCESS(xc_entry_type_t, type)
|
|
|
|
|
PROCESS(size_t, size)
|
|
|
|
|
|
|
|
|
|
DISPATCH(xc_hash_value_t, hvalue)
|
|
|
|
|
PROCESS(xc_hash_value_t, hvalue)
|
|
|
|
|
COPY(cache)
|
|
|
|
|
/* skip */
|
|
|
|
|
DONE(next)
|
|
|
|
|
|
|
|
|
|
IFSTORE(`dst->refcount = 0; DONE(refcount)', `DISPATCH(long, refcount)')
|
|
|
|
|
IFSTORE(`dst->refcount = 0; DONE(refcount)', `PROCESS(long, refcount)')
|
|
|
|
|
|
|
|
|
|
DISPATCH(time_t, ctime)
|
|
|
|
|
DISPATCH(time_t, atime)
|
|
|
|
|
DISPATCH(time_t, dtime)
|
|
|
|
|
DISPATCH(long, ttl)
|
|
|
|
|
DISPATCH(zend_ulong, hits)
|
|
|
|
|
PROCESS(time_t, ctime)
|
|
|
|
|
PROCESS(time_t, atime)
|
|
|
|
|
PROCESS(time_t, dtime)
|
|
|
|
|
PROCESS(long, ttl)
|
|
|
|
|
PROCESS(zend_ulong, hits)
|
|
|
|
|
#ifdef IS_UNICODE
|
|
|
|
|
DISPATCH(zend_uchar, name_type)
|
|
|
|
|
PROCESS(zend_uchar, name_type)
|
|
|
|
|
#endif
|
|
|
|
|
dnl {{{ name
|
|
|
|
|
DISABLECHECK(`
|
|
|
|
|
#ifdef IS_UNICODE
|
|
|
|
|
if (src->name_type == IS_UNICODE) {
|
|
|
|
|
DISPATCH(int32_t, name.ustr.len)
|
|
|
|
|
PROCESS(int32_t, name.ustr.len)
|
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
DISPATCH(int, name.str.len)
|
|
|
|
|
PROCESS(int, name.str.len)
|
|
|
|
|
}
|
|
|
|
|
#else
|
|
|
|
|
DISPATCH(int, name.str.len)
|
|
|
|
|
PROCESS(int, name.str.len)
|
|
|
|
|
#endif
|
|
|
|
|
IFRESTORE(`COPY(name.str.val)', `
|
|
|
|
|
#ifdef IS_UNICODE
|
|
|
|
@ -1185,21 +1184,21 @@ DEF_STRUCT_P_FUNC(`xc_entry_t', , `dnl {{{
|
|
|
|
|
')
|
|
|
|
|
DONE(data)
|
|
|
|
|
dnl }}}
|
|
|
|
|
DISPATCH(time_t, mtime)
|
|
|
|
|
PROCESS(time_t, mtime)
|
|
|
|
|
#ifdef HAVE_INODE
|
|
|
|
|
DISPATCH(int, device)
|
|
|
|
|
DISPATCH(int, inode)
|
|
|
|
|
PROCESS(int, device)
|
|
|
|
|
PROCESS(int, inode)
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
if (src->type == XC_TYPE_PHP) {
|
|
|
|
|
DISPATCH(int, filepath_len)
|
|
|
|
|
PROCESS(int, filepath_len)
|
|
|
|
|
IFRESTORE(`COPY(filepath)', `PROC_STRING_L(filepath, filepath_len)')
|
|
|
|
|
DISPATCH(int, dirpath_len)
|
|
|
|
|
PROCESS(int, dirpath_len)
|
|
|
|
|
IFRESTORE(`COPY(dirpath)', `PROC_STRING_L(dirpath, dirpath_len)')
|
|
|
|
|
#ifdef IS_UNICODE
|
|
|
|
|
DISPATCH(int, ufilepath_len)
|
|
|
|
|
PROCESS(int, ufilepath_len)
|
|
|
|
|
IFRESTORE(`COPY(ufilepath)', `PROC_USTRING_L(ufilepath, ufilepath_len)')
|
|
|
|
|
DISPATCH(int, udirpath_len)
|
|
|
|
|
PROCESS(int, udirpath_len)
|
|
|
|
|
IFRESTORE(`COPY(udirpath)', `PROC_USTRING_L(udirpath, udirpath_len)')
|
|
|
|
|
#endif
|
|
|
|
|
}
|
|
|
|
|