Nikita Popov
d625c29df7
Remove spurious return true from DOMXPath::registerPhpFunctions()
...
Only one of three identical cases returned true, and the function
is documented to return void. Remove the outlier.
2020-07-17 16:11:30 +02:00
Nikita Popov
d449d1dbbf
Use string|array type in DOMXPath::registerPhpFunctions()
2020-07-17 16:10:49 +02:00
Nikita Popov
954244b3cb
Convert SPL fatal error to Error exception
2020-07-17 16:06:54 +02:00
George Peter Banyard
a1fee87c9a
Drop useless zend_accel_script_persistable() function
2020-07-17 17:00:42 +02:00
Nikita Popov
6744ead1c9
Parse parameters in zend_test_void_return()
2020-07-17 15:43:40 +02:00
Nikita Popov
6ff31eebb1
Fix some pgsql arginfos
...
And make sure too few/many arguments throws, to satisfy the
function signature.
2020-07-17 15:43:37 +02:00
Nikita Popov
658e861fbb
Some zpp cleanup in pgsql
2020-07-17 15:31:22 +02:00
Nikita Popov
a20f07ee59
Remove some zpp quiet uses in pgsql
...
These functions don't do anything special, just use normal zpp.
2020-07-17 15:24:46 +02:00
Nikita Popov
895a22c03c
Add missing image_type_to_extension() argument
2020-07-17 15:24:41 +02:00
Nikita Popov
857166c351
Merge branch 'PHP-7.4'
...
* PHP-7.4:
Fixed bug #79839
2020-07-17 14:51:16 +02:00
Nikita Popov
0c28b47154
Fixed bug #79839
...
Add reference type sources in array_walk.
2020-07-17 14:50:22 +02:00
Nikita Popov
4903f7c5fd
Fix IntlGregorianCalendar constructor signature
...
Give these conversative UNKNOWN defaults and no types, as the
overload is something of a mess.
2020-07-17 12:47:25 +02:00
Dmitry Stogov
83478d4fe0
Side exit on overflow
2020-07-17 13:03:35 +03:00
Nikita Popov
1cba736470
Throw correct exception from ArrayObject sort methods
...
Let normal zpp throw ArgumentCountErrors.
2020-07-17 10:46:11 +02:00
Nikita Popov
81d8d60250
Add missing param to DatePeriod::__construct()
...
The signature is very overloaded, but takes at most four params,
not three.
2020-07-17 10:46:11 +02:00
Dmitry Stogov
6b2c4be48a
JMP optimization
2020-07-17 11:07:22 +03:00
Dmitry Stogov
e0af92c16e
Eliminate useless exception checks
2020-07-17 10:13:23 +03:00
Dmitry Stogov
a167e0426d
Eliminate some reference-counting
2020-07-17 00:40:10 +03:00
Dmitry Stogov
925909dc46
cleanup
2020-07-16 20:07:51 +03:00
Christoph M. Becker
ae7554270f
Fix #79805 : sapi_windows_vt100_support throws TypeError
...
It does not make sense to throw a `TypeError` when the stream can't be
analyzed. If `sapi_windows_vt100_support()` is used as getter, we just
return `false` in that case; if the function is used as setter, we
additionally trigger a warning.
We also fix the test cases for this function, which have been broken
before. Note that these tests are still whitespace sensitive.
2020-07-16 18:36:02 +02:00
Christoph M. Becker
4659c12ae0
Fix #79846 : 8c67c16699 broke simple regexp
...
We backport the respective upstream fix[1].
[1] <https://vcs.pcre.org/pcre2?view=revision&revision=1267 >
2020-07-16 18:32:26 +02:00
Dmitry Stogov
03a98d9420
cleanup
2020-07-16 17:09:14 +03:00
Christoph M. Becker
7e357f470d
Merge branch 'PHP-7.4'
...
* PHP-7.4:
Enable further tests on Windows
2020-07-16 16:08:07 +02:00
Christoph M. Becker
c1b5e7a9ab
Enable further tests on Windows
2020-07-16 16:07:23 +02:00
Dmitry Stogov
d50919a03b
Check type guard on result of FETCH_OBJ_R/IS instructions
2020-07-16 15:14:11 +03:00
Dmitry Stogov
ebb94af754
Fixed tracing JIT for ASSIGN to typed reference
2020-07-16 00:19:00 +03:00
Christoph M. Becker
371e29ef3a
Merge branch 'PHP-7.4'
...
* PHP-7.4:
Fix tests regarding negative fileinode()
2020-07-15 16:39:54 +02:00
Christoph M. Becker
dd1d1191e1
Fix tests regarding negative fileinode()
...
The results of `fileinode()` may be negative due to wrap-around
behavior (at least on Windows as of PHP 7.4.0).
2020-07-15 16:38:38 +02:00
Dmitry Stogov
f74e9a4dd3
Check type guard on result of FETCH_DIM_R/IS instructions
2020-07-15 17:28:46 +03:00
Nikita Popov
1c0ee68b83
Merge branch 'PHP-7.4'
...
* PHP-7.4:
Fix bug #78008 : dns_check_record() always return true on Alpine
2020-07-15 15:10:50 +02:00
Nikita Popov
2053329b1a
Merge branch 'PHP-7.3' into PHP-7.4
...
* PHP-7.3:
Fix bug #78008 : dns_check_record() always return true on Alpine
2020-07-15 15:10:40 +02:00
Andy Postnikov
2c57378bd3
Fix bug #78008 : dns_check_record() always return true on Alpine
...
- free handle before return result
- cleaned up remaining usage of MAXPACKET
- update dns_get_mx() to use the same approach
Closes GH-5854.
2020-07-15 15:10:19 +02:00
Nikita Popov
9a1a94e9b9
Merge branch 'PHP-7.4'
...
* PHP-7.4:
Fixed bug #79820
2020-07-15 10:59:32 +02:00
Christopher Broadbent
ee7c7a8e26
Fixed bug #79820
...
Similar to what is done for ReflectionType itself, copy the
type name stored inside ReflectionProperty. Also make sure the
type field is always initialized for dynamic properties.
This is a non-issue in PHP 8, because we store a pointer to the
property_info there, rather than a copy.
2020-07-15 10:58:56 +02:00
Nikita Popov
27800441b5
Reduce scope of preload compiler_options
...
Only set preloading compiler_options while executing the preload
file, not when performing linking afterwards. Otherwise options
like IGNORE_INTERNAL_CLASSES will hide classes from inheritance
verification.
2020-07-14 16:10:04 +02:00
Nikita Popov
b702ad14c9
Fix preloading of union typed property inherited from internal class
...
Tricky edge case: We inherit a property from an internal class,
in which case no property duplication takes place. We should not
try to persist the property info in that case. This didn't really
matter previously, but now that the property has some non-interned
owned data (the type), we need to make sure we don't try to free
that.
2020-07-14 15:24:58 +02:00
Nikita Popov
7e6b2e2e23
Check for name vs ce in a few more places
...
The type lists may contain CEs, we should not assume they only
contain names.
2020-07-14 14:47:47 +02:00
Dmitry Stogov
7c16d11e3c
Tracing JIT for SWITCH instructions
2020-07-14 15:15:08 +03:00
Dmitry Stogov
ddba2a705e
Better support for 64-bit .aword constants
2020-07-14 15:14:21 +03:00
Nikita Popov
06162194d6
Fix preloading property type resolution
...
This was causing many failures under --preload...
2020-07-14 12:59:04 +02:00
Nikita Popov
f855b59994
Merge remote-tracking branch 'upstream/PHP-7.4' into PHP-7.4
...
* upstream/PHP-7.4:
Fix test for x86 Windows
2020-07-14 12:43:58 +02:00
Nikita Popov
745bc4c2ea
Merge branch 'PHP-7.4'
...
* PHP-7.4:
Fixed bug #79849
2020-07-14 12:43:03 +02:00
Nikita Popov
162776a132
Merge branch 'PHP-7.3' into PHP-7.4
...
* PHP-7.3:
Fixed bug #79849
2020-07-14 12:42:46 +02:00
Evgeny Stepanischev
ce149b0cb8
Fixed bug #79849
...
Closes GH-5853.
2020-07-14 12:41:43 +02:00
Nikita Popov
70501b81a7
Fixed bug #79852
2020-07-14 12:31:06 +02:00
Nikita Popov
8c89f23c45
Use different scratch register
...
r1 clashes with FCARG1a on Windows, so use a different scratch
register. FCARG2a should be free here. Hopefully fixes the
AppVeyor build.
2020-07-14 10:52:50 +02:00
Martin Schröder
547d98b81d
Support socketpairs in proc_open()
...
Closes GH-5777.
2020-07-14 10:35:45 +02:00
Christoph M. Becker
1a00d015be
Remove out-dated comment
...
ZTS support has been added around ~7.2.
2020-07-13 19:14:59 +02:00
Christoph M. Becker
11a628d96c
Fix typos
2020-07-13 19:13:45 +02:00
Nikita Popov
e59efb3740
Put debug function behind ifdef
2020-07-13 17:24:31 +02:00