1
0
Fork 0

PHP_6: builds again with php6. update UChar/void ptr to zstr.

git-svn-id: svn://svn.lighttpd.net/xcache/trunk@103 c26eb9a1-5813-0410-bd6c-c2e55f420ca7
1.1
Xuefer 17 years ago
parent 1a198e5648
commit 4ec818c068

@ -46,6 +46,10 @@ sinclude(builddir`/structinfo.m4')
typedef zval *zval_ptr;
typedef zend_uchar zval_data_type;
#ifdef IS_UNICODE
typedef UChar zstr_uchar;
#endif
typedef char zstr_char;
#define MAX_DUP_STR_LEN 256
dnl }}}
@ -81,22 +85,52 @@ static void xc_dprint_indent(int indent) /* {{{ */
}
#endif
/* }}} */
/* {{{ xc_zstrlen_char */
static inline int xc_zstrlen_char(zstr s)
{
return strlen(ZSTR_S(s));
}
/* }}} */
#ifdef IS_UNICODE
/* {{{ xc_zstrlen_uchar */
static inline int xc_zstrlen_uchar(zstr s)
{
int i;
UChar *p = ZSTR_U(s);
for (i = 0; *p; i ++, p++) {
/* empty */
}
return i;
}
/* }}} */
/* {{{ xc_zstrlen */
static inline int xc_zstrlen(int type, zstr s)
{
return type == IS_UNICODE ? xc_zstrlen_uchar(s) : xc_zstrlen_char(s);
}
/* }}} */
#else
/* {{{ xc_zstrlen */
#define xc_zstrlen(dummy, s) xc_zstrlen_char(s)
/* }}} */
#endif
/* {{{ xc_calc_string_n */
REDEF(`KIND', `calc')
static inline void xc_calc_string_n(processor_t *processor, zend_uchar type, char *str, long size IFASSERT(`, int relayline')) {
static inline void xc_calc_string_n(processor_t *processor, zend_uchar type, zstr str, long size IFASSERT(`, int relayline')) {
pushdef(`__LINE__', `relayline')
int realsize = UNISW(size, (type == IS_UNICODE) ? UBYTES(size) : size);
long dummy = 1;
if (realsize > MAX_DUP_STR_LEN) {
ALLOC(, char, realsize)
}
else if (zend_u_hash_add(&processor->strings, type, str, size, (void*)&str, sizeof(char*), NULL) == SUCCESS) {
else if (zend_u_hash_add(&processor->strings, type, str, size, (void *) &dummy, sizeof(dummy), NULL) == SUCCESS) {
/* new string */
ALLOC(, char, realsize)
}
IFASSERT(`
else {
dnl fprintf(stderr, "dupstr %s\n", str);
dnl fprintf(stderr, "dupstr %s\n", ZSTR_S(str));
}
')
popdef(`__LINE__')
@ -104,25 +138,27 @@ static inline void xc_calc_string_n(processor_t *processor, zend_uchar type, cha
/* }}} */
/* {{{ xc_store_string_n */
REDEF(`KIND', `store')
static inline char *xc_store_string_n(processor_t *processor, zend_uchar type, char *str, long size IFASSERT(`, int relayline')) {
static inline zstr xc_store_string_n(processor_t *processor, zend_uchar type, zstr str, long size IFASSERT(`, int relayline')) {
pushdef(`__LINE__', `relayline')
int realsize = UNISW(size, (type == IS_UNICODE) ? UBYTES(size) : size);
char *s;
zstr ret, *pret;
if (realsize > MAX_DUP_STR_LEN) {
ALLOC(s, char, realsize)
memcpy(s, str, realsize);
}
else if (zend_u_hash_find(&processor->strings, type, str, size, (void*)&s) != SUCCESS) {
/* new string */
ALLOC(s, char, realsize)
memcpy(s, str, realsize);
zend_u_hash_add(&processor->strings, type, str, size, (void*)&s, sizeof(char*), NULL);
ALLOC(ZSTR_V(ret), char, realsize)
memcpy(ZSTR_V(ret), ZSTR_V(str), realsize);
return ret;
}
else {
s = *(char**)s;
if (zend_u_hash_find(&processor->strings, type, str, size, (void **) &pret) == SUCCESS) {
return *pret;
}
return s;
/* new string */
ALLOC(ZSTR_V(ret), char, realsize)
memcpy(ZSTR_V(ret), ZSTR_V(str), realsize);
zend_u_hash_add(&processor->strings, type, str, size, (void *) &ret, sizeof(zstr), NULL);
return ret;
popdef(`__LINE__')
}
/* }}} */
@ -184,9 +220,10 @@ static void xc_fix_method(processor_t *processor, zend_op_array *dst) /* {{{ */
ce->clone = zf;
}
else {
dnl FIXME: handle common.function_name here
#define SET_IF_SAME_NAME(member) \
do { \
if(!strcasecmp(zf->common.function_name, #member)) { \
if (!strcasecmp(ZSTR_S(zf->common.function_name), #member)) { \
ce->member = zf; \
} \
} \

@ -18,7 +18,7 @@ dnl {{{ zend_compiled_variable
#ifdef IS_CV
DEF_STRUCT_P_FUNC(`zend_compiled_variable', , `
DISPATCH(int, name_len)
PROC_USTRING_L(, name, name_len)
PROC_ZSTRING_L(, name, name_len)
DISPATCH(ulong, hash_value)
')
#endif
@ -114,8 +114,8 @@ dnl {{{ zvalue_value
#ifdef IS_UNICODE
case IS_UNICODE:
proc_unicode:
DISPATCH(int32_t, value.ustr.len)
PROC_USTRING_L(1, value.ustr.val, value.ustr.len)
DISPATCH(int32_t, value.uni.len)
PROC_ZSTRING_L(1, value.uni.val, value.uni.len)
break;
#endif
@ -199,9 +199,9 @@ dnl {{{ zend_arg_info
#ifdef ZEND_ENGINE_2
DEF_STRUCT_P_FUNC(`zend_arg_info', , `
DISPATCH(zend_uint, name_len)
PROC_USTRING_L(, name, name_len)
PROC_ZSTRING_L(, name, name_len)
DISPATCH(zend_uint, class_name_len)
PROC_USTRING_L(, class_name, class_name_len)
PROC_ZSTRING_L(, class_name, class_name_len)
DISPATCH(zend_bool, array_type_hint)
DISPATCH(zend_bool, allow_null)
DISPATCH(zend_bool, pass_by_reference)
@ -215,7 +215,7 @@ DEF_STRUCT_P_FUNC(`zend_constant', , `dnl {{{
STRUCT(zval, value)
DISPATCH(int, flags)
DISPATCH(uint, name_len)
PROC_STRING_L(name, name_len)
PROC_ZSTRING_L(, name, name_len)
zstr name;
DISPATCH(int, module_number)
')
@ -247,11 +247,11 @@ dnl {{{ zend_property_info
DEF_STRUCT_P_FUNC(`zend_property_info', , `
DISPATCH(zend_uint, flags)
DISPATCH(int, name_length)
PROC_USTRING_L(, name, name_length)
PROC_ZSTRING_L(, name, name_length)
DISPATCH(ulong, h)
#ifdef ZEND_ENGINE_2_1
DISPATCH(int, doc_comment_len)
PROC_USTRING_L(, doc_comment, doc_comment_len)
PROC_STRING_L(doc_comment, doc_comment_len)
#endif
dnl isnt in php6 yet
#if defined(ZEND_ENGINE_2_2) && !defined(IS_UNICODE)
@ -267,7 +267,7 @@ DEF_STRUCT_P_FUNC(`zend_class_entry', , `dnl {{{
')
DISPATCH(char, type)
DISPATCH(zend_uint, name_length)
PROC_USTRING_L(, name, name_length)
PROC_ZSTRING_L(, name, name_length)
IFRESTORE(`
#ifndef ZEND_ENGINE_2
/* just copy parent and resolve on install_class */
@ -343,7 +343,7 @@ DEF_STRUCT_P_FUNC(`zend_class_entry', , `dnl {{{
DISPATCH(zend_uint, line_end)
#ifdef ZEND_ENGINE_2_1
DISPATCH(zend_uint, doc_comment_len)
PROC_USTRING_L(, doc_comment, doc_comment_len)
PROC_STRING_L(doc_comment, doc_comment_len)
#endif
/* # NOT DONE */
COPY(serialize_func)
@ -369,9 +369,6 @@ DEF_STRUCT_P_FUNC(`zend_class_entry', , `dnl {{{
# endif
#endif
COPY(__call)
#ifdef IS_UNICODE
SETNULL(u_twin)
#endif
/* # NOT DONE */
COPY(module)
#else
@ -497,7 +494,7 @@ DEF_STRUCT_P_FUNC(`zend_op_array', , `dnl {{{
/* Common elements */
DISPATCH(zend_uchar, type)
PROC_USTRING(, function_name)
PROC_ZSTRING(, function_name)
#ifdef ZEND_ENGINE_2
IFRESTORE(`
if (dst->scope) {
@ -516,7 +513,7 @@ DEF_STRUCT_P_FUNC(`zend_op_array', , `dnl {{{
if (src->prototype != NULL
&& zend_u_hash_find(&(processor->active_class_entry_dst->parent->function_table),
UG(unicode) ? IS_UNICODE : IS_STRING,
src->function_name, strlen(src->function_name) + 1,
src->function_name, xc_zstrlen(UG(unicode), src->function_name) + 1,
(void **) &parent) == SUCCESS) {
/* see do_inherit_method_check() */
if ((parent->common.fn_flags & ZEND_ACC_ABSTRACT)) {
@ -573,7 +570,7 @@ DEF_STRUCT_P_FUNC(`zend_op_array', , `dnl {{{
DISPATCH(unsigned char, return_reference)
/* END of common elements */
#ifdef IS_UNICODE
SETNULL(u_twin)
dnl SETNULL(u_twin)
#endif
STRUCT_P(zend_uint, refcount)
@ -631,7 +628,7 @@ DEF_STRUCT_P_FUNC(`zend_op_array', , `dnl {{{
DISPATCH(zend_uint, line_start)
DISPATCH(zend_uint, line_end)
DISPATCH(int, doc_comment_len)
PROC_USTRING_L(, doc_comment, doc_comment_len)
PROC_STRING_L(doc_comment, doc_comment_len)
#endif
/* reserved */
@ -650,7 +647,7 @@ DEF_STRUCT_P_FUNC(`xc_constinfo_t', , `dnl {{{
DISPATCH(zend_uchar, type)
#endif
IFRESTORE(`COPY(key)', `
PROC_USTRING_N(type, key, key_size)
PROC_ZSTRING_N(type, key, key_size)
')
STRUCT(zend_constant, constant)
')
@ -662,7 +659,7 @@ DEF_STRUCT_P_FUNC(`xc_funcinfo_t', , `dnl {{{
DISPATCH(zend_uchar, type)
#endif
IFRESTORE(`COPY(key)', `
PROC_USTRING_N(type, key, key_size)
PROC_ZSTRING_N(type, key, key_size)
')
STRUCT(zend_function, func)
')
@ -673,7 +670,7 @@ DEF_STRUCT_P_FUNC(`xc_classinfo_t', , `dnl {{{
DISPATCH(zend_uchar, type)
#endif
IFRESTORE(`COPY(key)', `
PROC_USTRING_N(type, key, key_size)
PROC_ZSTRING_N(type, key, key_size)
')
#ifdef ZEND_ENGINE_2
STRUCT_P(zend_class_entry, cest)
@ -764,7 +761,13 @@ DEF_STRUCT_P_FUNC(`xc_entry_t', , `
#else
DISPATCH(int, name.str.len)
#endif
IFRESTORE(`COPY(name.str.val)', `PROC_USTRING_L(name_type, name.str.val, name.str.len)')
IFRESTORE(`COPY(name.str.val)', `
#ifdef IS_UNICODE
PROC_ZSTRING_L(name_type, name.uni.val, name.uni.len)
#else
PROC_STRING_L(name.str.val, name.str.len)
#endif
')
')
DONE(name)
dnl }}}

@ -2,10 +2,27 @@
dnl {{{ PROC_STRING_N_EX(1:dst, 2:src, 3:size, 4:name, 5:type=char)
define(`PROC_STRING_N_EX', `
pushdef(`STRTYPE', `ifelse(`$5',,`char',`$5')')
pushdef(`ISTYPE', ifelse(STRTYPE,`char',IS_STRING,IS_UNICODE))
if ($2 == NULL) {
pushdef(`PTRTYPE', ifelse(
STRTYPE, `char', `char',
STRTYPE, `zstr_char', `char',
`', `', `UChar'))
pushdef(`ISTYPE', ifelse(STRTYPE,`zstr_uchar',IS_UNICODE,IS_STRING))
pushdef(`UNI_STRLEN', ifelse(
STRTYPE, `zstr_uchar', `xc_zstrlen_uchar',
STRTYPE, `zstr_char', `xc_zstrlen_char',
`', `', `strlen'))
pushdef(`SRCSTR', ifelse(STRTYPE,`char',`ZSTR($2)',`$2'))
pushdef(`SRCPTR', ifelse(
STRTYPE, `zstr_uchar', `ZSTR_U($2)',
STRTYPE, `zstr_char', `ZSTR_S($2)',
`', `', `$2'))
pushdef(`DSTPTR', ifelse(
STRTYPE, `zstr_uchar', `ZSTR_U($1)',
STRTYPE, `zstr_char', `ZSTR_S($1)',
`', `', `$1'))
if (SRCPTR == NULL) {
IFNOTMEMCPY(`IFCOPY(`
$1 = NULL;
DSTPTR = NULL;
')')
IFDASM(`
add_assoc_null_ex(dst, ZEND_STRS("$4"));
@ -13,7 +30,7 @@ define(`PROC_STRING_N_EX', `
}
else {
IFDPRINT(`INDENT()
ifelse(STRTYPE, `UChar', `
ifelse(STRTYPE, `zstr_uchar', `
#ifdef IS_UNICODE
do {
zval zv;
@ -31,23 +48,27 @@ define(`PROC_STRING_N_EX', `
} while (0);
#endif
', `
fprintf(stderr, "string:%s:\t\"%s\" len=%d\n", "$1", $2, $3 - 1);
fprintf(stderr, "string:%s:\t\"%s\" len=%d\n", "$1", SRCPTR, $3 - 1);
')
')
IFCALC(`xc_calc_string_n(processor, ISTYPE, (void *) $2, `$3' IFASSERT(`, __LINE__'));')
IFSTORE(`$1 = (STRTYPE *) xc_store_string_n(processor, ISTYPE, (char *) $2, `$3' IFASSERT(`, __LINE__'));')
IFCALC(`xc_calc_string_n(processor, ISTYPE, SRCSTR, $3 IFASSERT(`, __LINE__'));')
IFSTORE(`DSTPTR = ifelse(PTRTYPE,`char',`ZSTR_S',`ZSTR_U')(xc_store_string_n(processor, ISTYPE, SRCSTR, $3 IFASSERT(`, __LINE__')));')
IFRESTORE(`
ALLOC(`$1', `STRTYPE', `($3)')
memcpy($1, $2, sizeof(STRTYPE) * ($3));
ALLOC(DSTPTR, `STRTYPE', `($3)')
memcpy(DSTPTR, SRCPTR, sizeof(STRTYPE) * ($3));
')
FIXPOINTER_EX(`STRTYPE', `$1')
FIXPOINTER_EX(`PTRTYPE', DSTPTR)
IFDASM(`
ifelse(STRTYPE,UChar, `
ifelse(STRTYPE,zstr_uchar, `
add_assoc_unicodel_ex(dst, ZEND_STRS("$4"), $2, $3-1, 1);
', ` dnl else
add_assoc_stringl_ex(dst, ZEND_STRS("$4"), $2, $3-1, 1);')
')
}
popdef(`DSTPTR')
popdef(`SRCPTR')
popdef(`SRCSTR')
popdef(`UNI_STRLEN')
popdef(`STRTYPE')
popdef(`ISTYPE')
')
@ -58,31 +79,31 @@ define(`PROC_STRING_N', `DBG(`$0($*)') DONE(`$1')`'PROC_STRING_N_EX(`dst->$1', `
define(`PROC_STRING_L', `DBG(`$0($*)') PROC_STRING_N(`$1', `$2 + 1')')
define(`PROC_STRING', `DBG(`$0($*)') DONE(`$1')`'PROC_STRING_N_EX(`dst->$1', `src->$1', `strlen(src->$1) + 1', `$1', `char')')
dnl {{{ PROC_USTRING_N(1:type, 2:name, 3:size, 4:size_type)
define(`PROC_USTRING_N', `
dnl {{{ PROC_ZSTRING_N(1:type, 2:name, 3:size, 4:size_type)
define(`PROC_ZSTRING_N', `
DBG(`$0($*)')
#ifdef IS_UNICODE
pushdef(`NSIZE', ifelse(
`$4', `strlen', `strlen(src->$2) + 1',
`$4', `strlen', `UNI_STRLEN (src->$2) + 1',
`$4', `len', `src->$3 + 1',
`', `', `src->$3',
))
DONE(`$2')
ifelse(`$1', `1', `PROC_STRING_N_EX(`dst->$2', `src->$2', NSIZE, `$2', `UChar')
ifelse(`$1', `1', `PROC_STRING_N_EX(`dst->$2', `src->$2', defn(`NSIZE'), `$2', `zstr_uchar')
', `
if (ifelse(`$1', `', `UG(unicode)', `src->$1')) {
PROC_STRING_N_EX(`dst->$2', `src->$2', NSIZE, `$2', `UChar')
if (ifelse(`$1', `', `UG(unicode)', `src->$1 == IS_UNICODE')) {
PROC_STRING_N_EX(`dst->$2', `src->$2', defn(`NSIZE'), `$2', `zstr_uchar')
}
else {
PROC_STRING_N_EX(`dst->$2', `src->$2', NSIZE, `$2', `char')
PROC_STRING_N_EX(`dst->$2', `src->$2', defn(`NSIZE'), `$2', `zstr_char')
}
')
#else
DONE(`$2')
PROC_STRING_N_EX(`dst->$2', `src->$2', NSIZE, `$2', `char')
PROC_STRING_N_EX(`dst->$2', `src->$2', NSIZE, `$2', `zstr_char')
#endif
popdef(`NSIZE')
')
// }}}
define(`PROC_USTRING_L', `DBG(`$0($*)') PROC_USTRING_N(`$1', `$2', `$3', `len')')
define(`PROC_USTRING', `DBG(`$0($*)') PROC_USTRING_N(`$1', `$2', , `strlen')')
define(`PROC_ZSTRING_L', `DBG(`$0($*)') PROC_ZSTRING_N(`$1', `$2', `$3', `len')')
define(`PROC_ZSTRING', `DBG(`$0($*)') PROC_ZSTRING_N(`$1', `$2', , `strlen')')

@ -265,7 +265,7 @@ int xc_undo_fix_opcode(zend_op_array *op_array TSRMLS_DC) /* {{{ */
#endif
#ifdef HAVE_XCACHE_CONSTANT
void xc_install_constant(char *filename, zend_constant *constant, zend_uchar type, void *key, uint len TSRMLS_DC) /* {{{ */
void xc_install_constant(char *filename, zend_constant *constant, zend_uchar type, zstr key, uint len TSRMLS_DC) /* {{{ */
{
if (zend_u_hash_add(EG(zend_constants), type, key, len,
constant, sizeof(zend_constant),
@ -274,8 +274,12 @@ void xc_install_constant(char *filename, zend_constant *constant, zend_uchar typ
CG(in_compilation) = 1;
CG(compiled_filename) = filename;
CG(zend_lineno) = 0;
#ifdef IS_UNICODE
zend_error(E_NOTICE, "Constant %R already defined", type, key);
#else
zend_error(E_NOTICE, "Constant %s already defined", key);
free(constant->name);
#endif
free(ZSTR_V(constant->name));
if (!(constant->flags & CONST_PERSISTENT)) {
zval_dtor(&constant->value);
}
@ -283,10 +287,17 @@ void xc_install_constant(char *filename, zend_constant *constant, zend_uchar typ
}
/* }}} */
#endif
void xc_install_function(char *filename, zend_function *func, zend_uchar type, void *key, uint len TSRMLS_DC) /* {{{ */
void xc_install_function(char *filename, zend_function *func, zend_uchar type, zstr key, uint len TSRMLS_DC) /* {{{ */
{
zend_bool istmpkey;
if (func->type == ZEND_USER_FUNCTION) {
if (*(char *) key == '\0') {
#ifdef IS_UNICODE
istmpkey = (type == IS_STRING && ZSTR_S(key)[0] == 0) || ZSTR_U(key)[0] == 0;
#else
istmpkey = ZSTR_S(key)[0] == 0;
#endif
if (istmpkey) {
zend_u_hash_update(CG(function_table), type, key, len,
func, sizeof(zend_op_array),
NULL
@ -299,17 +310,27 @@ void xc_install_function(char *filename, zend_function *func, zend_uchar type, v
CG(in_compilation) = 1;
CG(compiled_filename) = filename;
CG(zend_lineno) = ZESW(func->op_array.opcodes[0].lineno, func->op_array.line_start);
#ifdef IS_UNICODE
zend_error(E_ERROR, "Cannot redeclare %R()", type, key);
#else
zend_error(E_ERROR, "Cannot redeclare %s()", key);
#endif
}
}
}
/* }}} */
ZESW(xc_cest_t *, void) xc_install_class(char *filename, xc_cest_t *cest, zend_uchar type, void *key, uint len TSRMLS_DC) /* {{{ */
ZESW(xc_cest_t *, void) xc_install_class(char *filename, xc_cest_t *cest, zend_uchar type, zstr key, uint len TSRMLS_DC) /* {{{ */
{
zend_bool istmpkey;
zend_class_entry *cep = CestToCePtr(*cest);
ZESW(void *stored_ce_ptr, NOTHING);
if (*(char *) key == '\0') {
#ifdef IS_UNICODE
istmpkey = (type == IS_STRING && ZSTR_S(key)[0] == 0) || ZSTR_U(key)[0] == 0;
#else
istmpkey = ZSTR_S(key)[0] == 0;
#endif
if (istmpkey) {
zend_u_hash_update(CG(class_table), type, key, len,
cest, sizeof(xc_cest_t),
ZESW(&stored_ce_ptr, NULL)
@ -322,7 +343,11 @@ ZESW(xc_cest_t *, void) xc_install_class(char *filename, xc_cest_t *cest, zend_u
CG(in_compilation) = 1;
CG(compiled_filename) = filename;
CG(zend_lineno) = ZESW(0, cep->line_start);
zend_error(E_ERROR, "Cannot redeclare class %s", (char *) cep->name);
#ifdef IS_UNICODE
zend_error(E_ERROR, "Cannot redeclare class %R", type, cep->name);
#else
zend_error(E_ERROR, "Cannot redeclare class %s", cep->name);
#endif
}
ZESW(return (xc_cest_t *) stored_ce_ptr, NOTHING);
}
@ -337,7 +362,15 @@ ZESW(xc_cest_t *, void) xc_install_class(char *filename, xc_cest_t *cest, zend_u
#ifdef HAVE_XCACHE_CONSTANT
static void xc_constant_copy_ctor(zend_constant *c) /* {{{ */
{
c->name = zend_strndup(c->name, c->name_len - 1);
#ifdef IS_UNICODE
if (UG(unicode)) {
ZSTR_U(c->name) = zend_ustrndup(ZSTR_U(c->name), c->name_len - 1);
}
else
#endif
{
ZSTR_S(c->name) = zend_strndup(ZSTR_S(c->name), c->name_len - 1);
}
if (!(c->flags & CONST_PERSISTENT)) {
zval_copy_ctor(&c->value);
}
@ -400,7 +433,7 @@ static void xc_sandbox_install(xc_sandbox_t *sandbox TSRMLS_DC) /* {{{ */
while (b != NULL) {
zend_constant *c = (zend_constant*) b->pData;
xc_install_constant(sandbox->filename, c,
BUCKET_KEY_TYPE(b), BUCKET_KEY(b), b->nKeyLength TSRMLS_CC);
BUCKET_KEY_TYPE(b), ZSTR(BUCKET_KEY(b)), b->nKeyLength TSRMLS_CC);
b = b->pListNext;
}
#endif
@ -410,7 +443,7 @@ static void xc_sandbox_install(xc_sandbox_t *sandbox TSRMLS_DC) /* {{{ */
while (b != NULL) {
zend_function *func = (zend_function*) b->pData;
xc_install_function(sandbox->filename, func,
BUCKET_KEY_TYPE(b), BUCKET_KEY(b), b->nKeyLength TSRMLS_CC);
BUCKET_KEY_TYPE(b), ZSTR(BUCKET_KEY(b)), b->nKeyLength TSRMLS_CC);
b = b->pListNext;
}
@ -418,7 +451,7 @@ static void xc_sandbox_install(xc_sandbox_t *sandbox TSRMLS_DC) /* {{{ */
/* install class */
while (b != NULL) {
xc_install_class(sandbox->filename, (xc_cest_t*)b->pData,
BUCKET_KEY_TYPE(b), BUCKET_KEY(b), b->nKeyLength TSRMLS_CC);
BUCKET_KEY_TYPE(b), ZSTR(BUCKET_KEY(b)), b->nKeyLength TSRMLS_CC);
b = b->pListNext;
}

@ -26,10 +26,10 @@ zend_uchar xc_get_fixed_opcode(zend_uchar opcode, int line);
/* installer */
#ifdef HAVE_XCACHE_CONSTANT
void xc_install_constant(char *filename, zend_constant *constant, zend_uchar type, void *key, uint len TSRMLS_DC);
void xc_install_constant(char *filename, zend_constant *constant, zend_uchar type, zstr key, uint len TSRMLS_DC);
#endif
void xc_install_function(char *filename, zend_function *func, zend_uchar type, void *key, uint len TSRMLS_DC);
ZESW(xc_cest_t *, void) xc_install_class(char *filename, xc_cest_t *cest, zend_uchar type, void *key, uint len TSRMLS_DC);
void xc_install_function(char *filename, zend_function *func, zend_uchar type, zstr key, uint len TSRMLS_DC);
ZESW(xc_cest_t *, void) xc_install_class(char *filename, xc_cest_t *cest, zend_uchar type, zstr key, uint len TSRMLS_DC);
/* sandbox */
typedef struct {

@ -502,7 +502,7 @@ static int xc_stat(const char *filename, const char *include_path, struct stat *
#define HASH_NUM(n) HASH(n)
static inline xc_hash_value_t xc_entry_hash_var(xc_entry_t *xce) /* {{{ */
{
return UNISW(NOTHING, UG(unicode) ? HASH_USTR_L(xce->name_type, (char *)xce->name.ustr.val, xce->name.ustr.len) :)
return UNISW(NOTHING, UG(unicode) ? HASH_USTR_L(xce->name_type, xce->name.uni.val, xce->name.uni.len) :)
HASH_STR_L(xce->name.str.val, xce->name.str.len);
}
/* }}} */
@ -760,7 +760,12 @@ static zend_op_array *xc_compile_file(zend_file_handle *h, int type TSRMLS_DC) /
assert(b->pData); \
memcpy(&data->name, b->pData, sizeof(datatype)); \
UNISW(NOTHING, data->type = b->key.type;) \
data->key = BUCKET_KEY(b); \
if (UNISW(1, b->key.type == IS_STRING)) { \
ZSTR_S(data->key) = BUCKET_KEY(b); \
} \
else { \
ZSTR_U(data->key) = BUCKET_UKEY(b); \
} \
data->key_size = b->nKeyLength; \
} \
} while(0)

@ -51,8 +51,8 @@
? UBYTES(b->nKeyLength) \
: b->nKeyLength \
))
#define BUCKET_KEY(b) (UNISW((b)->arKey, (b)->key.u.string))
#define BUCKET_UKEY(b) (UNISW((b)->arKey, (b)->key.u.unicode))
#define BUCKET_KEY(b) (UNISW((b)->arKey, (b)->key.arKey.s))
#define BUCKET_UKEY(b) (UNISW((b)->arKey, (b)->key.arKey.u))
#define BUCKET_KEY_TYPE(b) (UNISW(0, (b)->key.type))
#ifdef IS_UNICODE
# define BUCKET_HEAD_SIZE(b) XtOffsetOf(Bucket, key)
@ -63,13 +63,28 @@
#ifndef IS_UNICODE
typedef char *zstr;
# define ZSTR_S(s) (s)
# define ZSTR_U(s) (s)
# define ZSTR_V(s) (s)
# define ZSTR_S(s) (s)
# define ZSTR_U(s) (s)
# define ZSTR_V(s) (s)
# define ZSTR_PS(s) (s)
# define ZSTR_PU(s) (s)
# define ZSTR_PV(s) (s)
#else
# define ZSTR_S(s) ((s)->s)
# define ZSTR_U(s) ((s)->u)
# define ZSTR_V(s) ((s)->v)
# define ZSTR_S(zs) ((zs).s)
# define ZSTR_U(zs) ((zs).u)
# define ZSTR_V(zs) ((zs).v)
# define ZSTR_PS(pzs) ((pzs)->s)
# define ZSTR_PU(pzs) ((pzs)->u)
# define ZSTR_PV(pzs) ((pzs)->v)
#endif
#ifndef ZSTR
# define ZSTR(s) (s)
#endif
#ifndef Z_UNIVAL
# define Z_UNIVAL(zval) (zval).value.str.val
# define Z_UNILEN(zval) (zval).value.str.len
#endif
/* {{{ u hash wrapper */
@ -148,7 +163,7 @@ typedef struct {
#ifdef IS_UNICODE
zend_uchar type;
#endif
char *key;
zstr key;
zend_uint key_size;
xc_cest_t cest;
} xc_classinfo_t;
@ -159,7 +174,7 @@ typedef struct {
#ifdef IS_UNICODE
zend_uchar type;
#endif
char *key;
zstr key;
zend_uint key_size;
zend_constant constant;
} xc_constinfo_t;
@ -170,7 +185,7 @@ typedef struct {
#ifdef IS_UNICODE
zend_uchar type;
#endif
char *key;
zstr key;
zend_uint key_size;
zend_function func;
} xc_funcinfo_t;

Loading…
Cancel
Save