History log of /php-src/ (Results 26 – 50 of 111369)
Revision (<<< Hide revision tags) (Show revision tags >>>)Date Author Comments
(<<< Hide modified files)
(Show modified files >>>)
58c281a623-May-2024 Dmitry Stogov

JIT: Add CPU registers support for ASSIGN_OBJ and ASSIGN_OBJ_OP (#14303)

* JIT: Add CPU registers support for ASSIGN_OBJ and ASSIGN_OBJ_OP

* Fix tests failures

* Fix tests

JIT: Add CPU registers support for ASSIGN_OBJ and ASSIGN_OBJ_OP (#14303)

* JIT: Add CPU registers support for ASSIGN_OBJ and ASSIGN_OBJ_OP

* Fix tests failures

* Fix tests failures

* Add missing GUARD

show more ...

706e9ed023-May-2024 Ilija Tovilo

Merge branch 'PHP-8.3'

* PHP-8.3:
Skip JIT test if php is compiled without jit


69a8001523-May-2024 Ilija Tovilo

Merge branch 'PHP-8.2' into PHP-8.3

* PHP-8.2:
Skip JIT test if php is compiled without jit


04c9749e23-May-2024 Ilija Tovilo

Skip JIT test if php is compiled without jit

93c20de223-May-2024 Dmitry Stogov

Update IR

IR commit: e87914bda3939072bf1e470e923599d73063d9f1

8734a9a422-May-2024 Saki Takamachi <34942839+SakiTakamachi@users.noreply.github.com>

ext/bcmath: Prevent overflow of uint32_t/uint64_t (#14297)

If add more than a certain number of times, it will overflow, so need to adjust
the digits before adding.

fe7f699c18-May-2024 David Carlier

ext/pcntl: adding SIGTRAP handling for freebsd.

if a restricted file descriptor based syscall by the system had been attempted,
a SIGTRAP is raised with the syscall id.

close GH

ext/pcntl: adding SIGTRAP handling for freebsd.

if a restricted file descriptor based syscall by the system had been attempted,
a SIGTRAP is raised with the syscall id.

close GH-14266

show more ...

ace18f4922-May-2024 Dmitry Stogov

JIT: Avoid IS_UNDEF check for ZEND_FETCH_DIM/OBJ_IS with a result type guard (#14298)

2c91b73622-May-2024 Ilija Tovilo

Also use zval_get_double for op1 in pow comp time check

Mostly for consistency, but this will also allow evaluating more expressions at
compile time.

69e2ef6922-May-2024 Ilija Tovilo

[skip ci] Add news entry

23afe57f23-Dec-2023 Jorg Sowa

Added deprecation Division by zero when using power with zero as base and negative exponent

RFC: https://wiki.php.net/rfc/raising_zero_to_power_of_negative_number

Closes GH-13128

92b9543c22-May-2024 Ilija Tovilo

Merge branch 'PHP-8.3'

* PHP-8.3:
Fix enabling of JIT at runtime


706e797622-May-2024 Ilija Tovilo

Merge branch 'PHP-8.2' into PHP-8.3

* PHP-8.2:
Fix enabling of JIT at runtime


9506ca6022-May-2024 Ilija Tovilo

Fix enabling of JIT at runtime

Fixes GH-14267
Closes GH-14294

Revision tags: php-8.2.0RC1, php-8.1.10, php-8.0.23, php-8.0.23RC1, php-8.1.10RC1, php-8.2.0beta3, php-8.2.0beta2, php-8.1.9, php-8.0.22, php-8.1.9RC1, php-8.2.0beta1, php-8.0.22RC1, php-8.0.21, php-8.1.8, php-8.2.0alpha3, php-8.1.8RC1, php-8.2.0alpha2, php-8.0.21RC1, php-8.0.20, php-8.1.7, php-8.2.0alpha1, php-7.4.30, php-8.1.7RC1, php-8.0.20RC1, php-8.1.6, php-8.0.19, php-8.1.6RC1, php-8.0.19RC1, php-8.0.18, php-8.1.5, php-7.4.29, php-8.1.5RC1, php-8.0.18RC1, php-8.1.4, php-8.0.17, php-8.1.4RC1, php-8.0.17RC1, php-8.1.3, php-8.0.16, php-7.4.28, php-8.1.3RC1, php-8.0.16RC1, php-8.1.2, php-8.0.15, php-8.1.2RC1, php-8.0.15RC1, php-8.0.14, php-8.1.1, php-7.4.27, php-8.1.1RC1, php-8.0.14RC1, php-7.4.27RC1, php-8.1.0, php-8.0.13, php-7.4.26, php-7.3.33, php-8.1.0RC6, php-7.4.26RC1, php-8.0.13RC1, php-8.1.0RC5, php-7.3.32, php-7.4.25, php-8.0.12, php-8.1.0RC4, php-8.0.12RC1, php-7.4.25RC1, php-8.1.0RC3, php-8.0.11, php-7.4.24, php-7.3.31, php-8.1.0RC2, php-7.4.24RC1, php-8.0.11RC1, php-8.1.0RC1, php-7.4.23, php-8.0.10, php-7.3.30, php-8.1.0beta3, php-8.0.10RC1, php-7.4.23RC1, php-8.1.0beta2, php-8.0.9, php-7.4.22, php-8.1.0beta1, php-7.4.22RC1, php-8.0.9RC1, php-8.1.0alpha3, php-7.4.21, php-7.3.29, php-8.0.8, php-8.1.0alpha2, php-7.4.21RC1, php-8.0.8RC1, php-8.1.0alpha1, php-8.0.7, php-7.4.20, php-8.0.7RC1, php-7.4.20RC1, php-8.0.6, php-7.4.19, php-7.4.18, php-7.3.28, php-8.0.5, php-8.0.5RC1, php-7.4.18RC1, php-8.0.4RC1, php-7.4.17RC1
c265b90811-Mar-2021 Guillaume Outters

ext/pdo_pgsql: adding pgsqlSetNoticeCallback

Allows a callback to be triggered on every notice sent by PostgreSQL.

Such notices can be sent with a RAISE NOTICE in PL/pgSQL; in a lon

ext/pdo_pgsql: adding pgsqlSetNoticeCallback

Allows a callback to be triggered on every notice sent by PostgreSQL.

Such notices can be sent with a RAISE NOTICE in PL/pgSQL; in a long running
stored procedure, they prove useful as realtime checkpoint indicators.

close GH-6764

show more ...

182fee1422-May-2024 Arnaud Le Blanc

Fix removal of optimization cflags in debug builds (#9647)

Discard known '-O' flags, including just '-O', but do not remove only '-O' in '-Ounknown'

c4d9a37e22-May-2024 Jorg Adam Sowa

Typed constants in date extension (#12361)

d19fad1422-May-2024 Ilija Tovilo

Merge branch 'PHP-8.3'

* PHP-8.3:
[skip ci] Adjust CODEOWNERS


ad15517922-May-2024 Ilija Tovilo

Merge branch 'PHP-8.2' into PHP-8.3

* PHP-8.2:
[skip ci] Adjust CODEOWNERS


151f56b322-May-2024 Ilija Tovilo

[skip ci] Adjust CODEOWNERS

Reduce e-mails, I'm watching this repository anyway.

8e62e2b822-May-2024 Cristian Rodríguez

Mark multple functions as static (#13864)

* Mark many functions as static

Multiple functions are missing the static qualifier.

* remove unused struct sigactions

st

Mark multple functions as static (#13864)

* Mark many functions as static

Multiple functions are missing the static qualifier.

* remove unused struct sigactions

struct sigaction act, old_term, old_quit, old_int;
all unused.

* optimizer: minXOR and maxXOR are unused

show more ...

bc9a113a22-May-2024 Derick Rethans

Add further ZPP conversions

6f5ffc2931-Aug-2021 Max Semenik

ext/date: convert remaining uses of zend_parse_parameters()

e16bc4b221-May-2024 Niels Dossche <7771979+nielsdos@users.noreply.github.com>

Merge branch 'PHP-8.3'

* PHP-8.3:
Fix GH-14290: Member access within null pointer in extension spl


88af091921-May-2024 Niels Dossche <7771979+nielsdos@users.noreply.github.com>

Merge branch 'PHP-8.2' into PHP-8.3

* PHP-8.2:
Fix GH-14290: Member access within null pointer in extension spl


12345678910>>...4455