[GIT-PULLS] [php-src] PR #23441: Speed up call frame leaving by grouping refcounted CVs
[email protected] (ndossche)
| Newsgroups | php.git-pulls |
|---|---|
| Message-ID | <[email protected]> |
Pull Request: https://github.com/php/php-src/pull/23441 Author: ndossche Leaving the call frame must destroy all the CVs. It loops over all the vars and then uses i_zval_ptr_dtor on them. We can skip the non-refcounted CVs in bulk to speed up that loop.