History log of /PHP-7.4/ext/opcache/zend_persist_calc.c (Results 76 – 100 of 107)
Revision (<<< Hide revision tags) (Show revision tags >>>) Date Author Comments
Revision tags: php-5.6.4RC1, php-5.5.20RC1, php-5.6.3, php-5.5.19, php-5.4.35, php-5.6.3RC1, php-5.5.19RC1, php-5.5.18, php-5.4.34
# 9b0b3027 09-Oct-2014 Dmitry Stogov

Copy all the arena allocated data from SHM to process memory at once


Revision tags: php-5.5.18RC1, php-5.6.1, php-5.6.2
# 3bc8a958 19-Sep-2014 Dmitry Stogov

Fixed useless or duplicated IS_INTERNED() checks


Revision tags: php-5.4.33, php-5.5.17, php-5.6.1RC1, php-5.5.17RC1, php-5.4.33RC1, php-5.6.0
# 9a05f2da 26-Aug-2014 Dmitry Stogov

Fixed uint32_t overflow


Revision tags: POST_AST_MERGE, PRE_AST_MERGE
# 6f9f0bf2 25-Aug-2014 Anatol Belski

master renames phase 2


# c3e3c98e 25-Aug-2014 Anatol Belski

master renames phase 1


Revision tags: POST_64BIT_BRANCH_MERGE, PRE_64BIT_BRANCH_MERGE, php-5.5.16, php-5.4.32
# fbef2af2 15-Aug-2014 Nikita Popov

Update opcache for new AST structures


# e2522b4f 15-Aug-2014 Xinchen Hui

Remove old version PHP supports


Revision tags: POST_PHPNG_MERGE, PRE_PHPNG_MERGE, php-5.6.0RC4, php-5.3.29, php-5.5.16RC1, php-5.4.32RC1
# 3700364c 04-Aug-2014 Dmitry Stogov

Don't waste SHM for unused Buckets


Revision tags: php-5.3.29RC1, php-5.6.0RC3, php-5.5.15, php-5.4.31, php-5.4.31RC1, php-5.5.15RC1, php-5.6.0RC2, php-5.4.30, php-5.5.14, php-5.6.0RC1, php-5.5.14RC1, php-5.4.30RC1, php-5.6.0beta4, php-5.4.29, php-5.5.13, php-5.5.13RC1, php-5.6.0beta3, php-5.4.29RC1
# 0c6a6f0f 07-May-2014 Dmitry Stogov

Re-applyed Bob's patch with minor fixes


# 4ecc5279 06-May-2014 Dmitry Stogov

Reverted Bob's patch (it breaks many tests when run with opcache and needs to be fixed first).


# f3c1881f 06-May-2014 Bob Weinand

Re-added fix for bug #66015 and adapted for phpng branch


Revision tags: php-5.6.0beta2, php-5.5.12, php-5.4.28
# 08ae8815 23-Apr-2014 Nikita Popov

Allocate zend_strings with correct size

For me (32bit) sizeof(zend_string) is 20, which means that the
char[1] array at the end is padded with three bytes. Thus allocating
based on s

Allocate zend_strings with correct size

For me (32bit) sizeof(zend_string) is 20, which means that the
char[1] array at the end is padded with three bytes. Thus allocating
based on sizeof(zend_string)-1 overallocates by those 3 padding bytes.

This commit fixes the allocation size, by using XtOffsetOf.

show more ...


# 72c287bd 21-Apr-2014 Dmitry Stogov

Combine HashTable.flags and HashTable.nApplyCount into single 32-bit word


# e96073b1 17-Apr-2014 Dmitry Stogov

Moved zend_literal->cache_slot right into zval.
It should be accessed using Z_CACHE_SLOT() macro.
zend_literal structure is removed.
API functions that accepted pointer to zend_literal no

Moved zend_literal->cache_slot right into zval.
It should be accessed using Z_CACHE_SLOT() macro.
zend_literal structure is removed.
API functions that accepted pointer to zend_literal now accept pointer to zval or cache_slot directly.
Calls of such functiond that now accept cache_slot need to be changed to pass -1 instead of NULL.

show more ...


# a86eb10d 16-Apr-2014 Dmitry Stogov

Fixed non-interned strings refcounting


Revision tags: php-5.4.28RC1, php-5.5.12RC1
# f614fc68 11-Apr-2014 Bob Weinand

Fix bug #66015 by reverting "Removed operations on constant arrays."


Revision tags: php-5.6.0beta1
# 3167b49c 07-Apr-2014 Dmitry Stogov

Allocate HashTable->arData and HashTable->arHash at once


# 76cc99fe 03-Apr-2014 Dmitry Stogov

Refactored ZVAL flags usage to simplify various checks (e.g. Z_REFCOUNTED(), candidate for GC, etc)


# d8099d04 02-Apr-2014 Dmitry Stogov

Changed data layout to allow more efficient operations


Revision tags: php-5.4.27, php-5.5.11
# 0da12b92 01-Apr-2014 Dmitry Stogov

Fixed script size calculation


# 569bfbd0 01-Apr-2014 Dmitry Stogov

Keep constnat flags


# ceecd31c 01-Apr-2014 Dmitry Stogov

Fixed support for arg_info and type hinfing (TODO: names should be interned)


# 46647180 01-Apr-2014 Dmitry Stogov

function_name might be shared across few op_arrays (inherited methods)


# 292b8dff 31-Mar-2014 Dmitry Stogov

Make opcache work (incomplete - optimizer doesn't work yet; crashes on request shutdown)


# 5324f22f 28-Mar-2014 Dmitry Stogov

ext/opcache refactoring (incomplete)


12345