mirror of
https://github.com/php/php-src.git
synced 2025-08-15 21:48:51 +02:00
Immutable clases and op_arrays.
Squashed commit of the following: commitcd0c36c3f9
Merge:4740dabb84
ad6738e886
Author: Dmitry Stogov <dmitry@zend.com> Date: Wed Oct 17 14:43:38 2018 +0300 Merge branch 'master' into immutable * master: Remove the "auto" encoding Fixed bug #77025 Add vtbls for EUC-TW encoding commit4740dabb84
Author: Dmitry Stogov <dmitry@zend.com> Date: Wed Oct 17 14:12:28 2018 +0300 Reverted back ce->iterator_funcs_ptr. Initialize ce->iterator_funcs_ptr fields in immutable classes. commitad7a78b253
Author: Dmitry Stogov <dmitry@zend.com> Date: Wed Oct 17 11:46:30 2018 +0300 Added comment commit0276ea5187
Author: Dmitry Stogov <dmitry@zend.com> Date: Wed Oct 17 11:42:43 2018 +0300 Added type cast commitc63fc5d5f1
Author: Dmitry Stogov <dmitry@zend.com> Date: Wed Oct 17 11:36:51 2018 +0300 Moved static class members initialization into the proper place. commitb945548e93
Author: Dmitry Stogov <dmitry@zend.com> Date: Wed Oct 17 11:21:03 2018 +0300 Removed redundand assertion commitd5a4108840
Author: Dmitry Stogov <dmitry@zend.com> Date: Wed Oct 17 11:19:13 2018 +0300 Removed duplicate code commit8dadca8864
Author: Dmitry Stogov <dmitry@zend.com> Date: Wed Oct 17 11:05:43 2018 +0300 Hide offset encoding magic in ZEND_MAP_PTR_IS_OFFSET(), ZEND_MAP_PTR_OFFSET2PTR() and ZEND_MAP_PTR_PTR2OFFSET() macros. commit9ef07c88bd
Author: Dmitry Stogov <dmitry@zend.com> Date: Wed Oct 17 10:48:29 2018 +0300 typo commita06f0f3d3a
Merge:94099586ec
3412345ffe
Author: Dmitry Stogov <dmitry@zend.com> Date: Wed Oct 17 10:47:07 2018 +0300 Merge branch 'master' into immutable * master: Remove unused variable makefile_am_files Classify object handlers are required/optional Add support for getting SKIP_TAGSTART and SKIP_WHITE options Remove some obsolete config_vars.mk occurrences Remove bsd_converted from .gitignore Remove configuration parser and scanners ignores Remove obsolete buildconf.stamp from .gitignore [ci skip] Add magicdata.patch exception to .gitignore Remove outdated ext/spl/examples items from .gitignore Remove unused test.inc in ext/iconv/tests commit94099586ec
Author: Dmitry Stogov <dmitry@zend.com> Date: Mon Oct 15 23:34:01 2018 +0300 Immutable clases and op_arrays
This commit is contained in:
parent
ad6738e886
commit
d57cd36e47
31 changed files with 838 additions and 348 deletions
|
@ -131,6 +131,8 @@ void *zend_shared_memdup_free(void *source, size_t size);
|
|||
void *zend_shared_memdup_get_put(void *source, size_t size);
|
||||
void *zend_shared_memdup_put(void *source, size_t size);
|
||||
void *zend_shared_memdup(void *source, size_t size);
|
||||
void *zend_shared_memdup_arena_put(void *source, size_t size);
|
||||
void *zend_shared_memdup_arena(void *source, size_t size);
|
||||
|
||||
int zend_shared_memdup_size(void *p, size_t size);
|
||||
|
||||
|
@ -160,6 +162,8 @@ void zend_shared_alloc_safe_unlock(void);
|
|||
void zend_shared_alloc_init_xlat_table(void);
|
||||
void zend_shared_alloc_destroy_xlat_table(void);
|
||||
void zend_shared_alloc_clear_xlat_table(void);
|
||||
uint32_t zend_shared_alloc_checkpoint_xlat_table(void);
|
||||
void zend_shared_alloc_restore_xlat_table(uint32_t checkpoint);
|
||||
void zend_shared_alloc_register_xlat_entry(const void *old, const void *new);
|
||||
void *zend_shared_alloc_get_xlat_entry(const void *old);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue