From: Date: Thu, 9 Sep 2004 00:34:46 +0000 (+0000) Subject: ChangeLog update X-Git-Tag: PRE_NEW_VM_GEN_PATCH~355 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ea4dbef1b76dfa4e5f21e6746798e3c921de55ed;p=php ChangeLog update --- diff --git a/ChangeLog b/ChangeLog index eb76857172..bc8f669a77 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,61 @@ +2004-09-08 Andi Gutmans + + * ZendEngine2/zend_builtin_functions.c: + - Fix bug #28054 by preventing printing out bogus information in backtrace + when in error handler (still doesn't know all information but at least + it's not bogus) + +2004-09-08 Sara Golemon + + * ext/standard/http_fopen_wrapper.c: + -** empty log message *** + +2004-09-08 Andi Gutmans + + * ZendEngine2/zend_compile.h + ZendEngine2/zend_exceptions.c + ZendEngine2/zend_execute.c + ZendEngine2/zend_execute.h + ZendEngine2/zend_execute_API.c + ZendEngine2/zend_opcode.c + ZendEngine2/zend_vm.h + ZendEngine2/zend_vm_handlers.h + ZendEngine2/zend_vm_spec.h: + - Some architectural changes: + a) We specialize opcodes according to op_type fields. Each opcode has to + be marked with which op_type's it uses. + b) We support different execution methods. Function handlers, switch() + and goto dispatching. goto seems to be the fastest but it really + depends on the compiler and how well it optimizes. I suggest playing + around with optimization flags. + + - Warning: Things might break so keep us posted on how things are going. + (Dmitry, Andi) + +2004-09-08 Sara Golemon + + * (PHP_5_0) + main/streams/streams.c: + MFH (r.163) Handle maxlen when stream can't be mmaped + + * main/streams/streams.c: + Handle maxlen when stream can't be mmaped + +2004-09-08 Rob Richards + + * (PHP_5_0) + ext/xsl/php_xsl.c + ext/xsl/php_xsl.h + ext/xsl/xsltprocessor.c: + MHF: fix issue with multiple xsl objects using registerPHPfunctions + - also fixes threading issue + + * ext/xsl/php_xsl.c + ext/xsl/php_xsl.h + ext/xsl/xsltprocessor.c: + fix issue with multiple xsl objects using registerPHPfunctions + - also fixes threading issue + 2004-09-07 Sara Golemon * ext/standard/http_fopen_wrapper.c: diff --git a/Zend/ChangeLog b/Zend/ChangeLog index 9a28774a2b..65c7d201b0 100644 --- a/Zend/ChangeLog +++ b/Zend/ChangeLog @@ -1,3 +1,30 @@ +2004-09-08 Andi Gutmans + + * zend_builtin_functions.c: + - Fix bug #28054 by preventing printing out bogus information in backtrace + when in error handler (still doesn't know all information but at least + it's not bogus) + + * zend_compile.h + zend_exceptions.c + zend_execute.c + zend_execute.h + zend_execute_API.c + zend_opcode.c + zend_vm.h + zend_vm_handlers.h + zend_vm_spec.h: + - Some architectural changes: + a) We specialize opcodes according to op_type fields. Each opcode has to + be marked with which op_type's it uses. + b) We support different execution methods. Function handlers, switch() + and goto dispatching. goto seems to be the fastest but it really + depends on the compiler and how well it optimizes. I suggest playing + around with optimization flags. + + - Warning: Things might break so keep us posted on how things are going. + (Dmitry, Andi) + 2004-09-06 Marcus Boerger * zend_objects.c: