History log of /PHP-5.3/Zend/zend_compile.h (Results 26 – 50 of 382)
Revision (<<< Hide revision tags) (Show revision tags >>>) Date Author Comments
Revision tags: php-5.2.6, RELEASE_1_0_2, php-5.2.6RC5, php-5.2.6RC4
# f8f26de7 29-Mar-2008 Felipe Pena

Fix for segfault on 64bit platform


# f66f55ed 28-Mar-2008 Felipe Pena

MFH: Implemented "jump label" operator (limited "goto")
[DOC]


Revision tags: php-5.2.6RC3, RELEASE_2_0_0a2, RELEASE_2_0_0a1
# 9e2894f5 25-Mar-2008 Felipe Pena

MFH:
- Renamed zend_do_fetch_class_name() to zend_do_build_full_name() (It is not used only for classes)
- Moved zend_resolve_class_name prototype to zend_compile.h


# 8c885b89 18-Mar-2008 Dmitry Stogov

Implemented concept of "delayed early binding" that allows opcode caches to perform class declaration (early and/or run-time binding) in exactly the same order as vanila php.
The following pseudo

Implemented concept of "delayed early binding" that allows opcode caches to perform class declaration (early and/or run-time binding) in exactly the same order as vanila php.
The following pseudo-code explains how it should be used in opcode cache.

function cache_compile_file($filename) {
if (!is_cached($filename)) {
...
orig_compiler_options = CG(compiler_optins);
CG(compiler_options) |= ZEND_COMPILE_IGNORE_INTERNAL_CLASSES |
ZEND_COMPILE_DELAYED_BINDING;
$op_array = orig_compile_file($filename);
CG(compiler_options) = orig_copiler_options;
...
} else {
$op_array = restore_from_cache($filename);
}
zend_do_delayed_early_binding($op_array);
}

show more ...


# 00e236aa 16-Mar-2008 Marcus Boerger

- Fix build


# af316021 16-Mar-2008 Marcus Boerger

- Rewrite scanner to be based on re2c instead of flex
The full patch is available as:
http://php.net/~helly/php-re2c-5.3-20080316.diff.txt
This is against php-re2c repository versio

- Rewrite scanner to be based on re2c instead of flex
The full patch is available as:
http://php.net/~helly/php-re2c-5.3-20080316.diff.txt
This is against php-re2c repository version 98
An older patch against version 97 is available under:
http://php.net/~helly/php-re2c-97-20080316.diff.txt

show more ...


# 0f2247ae 12-Mar-2008 Dmitry Stogov

Fixed bug #44414 (Incomplete reporting about abstract methods)


Revision tags: php-5.2.6RC2, php-5.2.6RC1, RELEASE_1_3_1
# fd597dce 12-Feb-2008 Stanislav Malyshev

[DOC] Add compile-time __DIR__ constant which implements dirname(__FILE__)


# 0b682510 24-Jan-2008 Dmitry Stogov

Changed EG(argument_stack) implementation.


Revision tags: php-4.4.8
# d1dded87 31-Dec-2007 Sebastian Bergmann

MFH: Bump copyright year, 2 of 2.


Revision tags: php-4.4.8RC1
# 64e8f223 13-Dec-2007 Dmitry Stogov

Allowed import of global classes "use ::GlobalClassName;"


Revision tags: RELEASE_1_2_3
# 648fbe9d 22-Nov-2007 Dmitry Stogov

Fixed bug #43128 (Very long class name causes segfault)


# 45f6b4ce 21-Nov-2007 Johannes Schlüter

- MFH Improved version of ternary shortcut (Marcus)


# 9f230a0d 20-Nov-2007 Dmitry Stogov

Added support for "namespace::" prefix that is resolved to current namespace name.


Revision tags: php-5.2.5
# b7d87beb 07-Nov-2007 Dmitry Stogov

T_IMPORT -> T_USE


Revision tags: php-5.2.5RC2
# 1530fe99 23-Oct-2007 Dmitry Stogov

Fixed variations of bug #35163


Revision tags: php-5.2.5RC1, BEFORE_IMPORT_OF_MYSQLND_IN_5_3, RELEASE_1_2_2
# eb0c56ad 03-Oct-2007 Dmitry Stogov

Fixed bug #42820 (defined() on constant with namespace prefixes tries to load class).


# b20ed0d2 29-Sep-2007 Dmitry Stogov

Added support for __callstatic() magic method. (Sara)


# 166266df 29-Sep-2007 Dmitry Stogov

Added support for Late Static Binding. (Dmitry, Etienne Kneuss)


# f32ffe9b 28-Sep-2007 Dmitry Stogov

Namespaces


# 6c810b0d 27-Sep-2007 Dmitry Stogov

Improved memory usage by movig constants to read only memory. (Dmitry, Pierre)


Revision tags: RELEASE_1_2_4, RELEASE_1_2_1, php-5.2.4, RELEASE_1_5, php-5.2.4RC3, php-5.2.4RC2, php-5.2.4RC1, BEFORE_REAL_IMPORT_OF_MYSQLND, BEFORE_IMPORT_OF_MYSQLND, php-5.2.3, RELEASE_1_4, php-5.2.3RC1
# 80d2409f 18-May-2007 Dmitry Stogov

Improved compilation of heredocs and interpolated strings. (Matt, Dmitry)


Revision tags: RELEASE_1_2_0, php-4.4.7, php-5.2.2, php-5.2.2RC2, RELEASE_1_1_0, php-4.4.7RC1, php-5.2.2RC1
# 17c0c49a 04-Apr-2007 Ilia Alshanetsky

Addres limitation of __HALT_COMPILER() that allowed only one instance
per request.

# Patch by Greg Beaver


Revision tags: RELEASE_1_0_1, php-4.4.6, php-4.4.6RC1
# 0291ad5f 15-Feb-2007 Dmitry Stogov

Fixed bug #40236 (php -a function allocation eats memory)


Revision tags: php-4.4.5, php-5.2.1, RELEASE_1_0_0RC1, php-4.4.5RC2, php-5.2.1RC4, php-5.2.1RC3
# e470e22e 10-Jan-2007 Dmitry Stogov

- Fixed bug #35106 (nested foreach fails when array variable has a reference).
- Fixed bug #36214 (__get method works properly only when conditional operator is used).
- Fixed bug #39449 (Ove

- Fixed bug #35106 (nested foreach fails when array variable has a reference).
- Fixed bug #36214 (__get method works properly only when conditional operator is used).
- Fixed bug #39449 (Overloaded array properties do not work correctly).
- Fixed bug #39990 (Cannot "foreach" over overloaded properties).

show more ...


12345678910>>...16