Skip to content

Commit 73c2e3c

Browse files
authored
Avoid pointless refcounting in array_reduce (#18180)
For this script: ```php for ($i=0;$i < 100; $i++) array_reduce(range(1, 100000), fn ($a,$b)=>$a+$b,1); ``` On an i7-4790: ``` Benchmark 1: ./sapi/cli/php reduce_bench.php Time (mean ± σ): 272.0 ms ± 3.7 ms [User: 268.9 ms, System: 2.1 ms] Range (min … max): 268.9 ms … 281.3 ms 11 runs Benchmark 2: ./sapi/cli/php_old reduce_bench.php Time (mean ± σ): 288.2 ms ± 3.5 ms [User: 284.5 ms, System: 2.7 ms] Range (min … max): 285.0 ms … 295.9 ms 10 runs Summary ./sapi/cli/php reduce_bench.php ran 1.06 ± 0.02 times faster than ./sapi/cli/php_old reduce_bench.php ``` On an i7-1185G7: ``` Benchmark 1: ./sapi/cli/php test.php Time (mean ± σ): 189.6 ms ± 3.5 ms [User: 178.5 ms, System: 10.7 ms] Range (min … max): 187.3 ms … 201.6 ms 15 runs Benchmark 2: ./sapi/cli/php_old test.php Time (mean ± σ): 204.2 ms ± 2.9 ms [User: 190.1 ms, System: 13.6 ms] Range (min … max): 200.6 ms … 210.2 ms 14 runs Summary ./sapi/cli/php test.php ran 1.08 ± 0.02 times faster than ./sapi/cli/php_old test.php ```
1 parent 5dd9b0d commit 73c2e3c

File tree

1 file changed

+8
-12
lines changed

1 file changed

+8
-12
lines changed

ext/standard/array.c

+8-12
Original file line numberDiff line numberDiff line change
@@ -6437,7 +6437,6 @@ PHP_FUNCTION(array_reduce)
64376437
zval *input;
64386438
zval args[2];
64396439
zval *operand;
6440-
zval retval;
64416440
zend_fcall_info fci;
64426441
zend_fcall_info_cache fci_cache = empty_fcall_info_cache;
64436442
zval *initial = NULL;
@@ -6450,8 +6449,7 @@ PHP_FUNCTION(array_reduce)
64506449
Z_PARAM_ZVAL(initial)
64516450
ZEND_PARSE_PARAMETERS_END();
64526451

6453-
6454-
if (ZEND_NUM_ARGS() > 2) {
6452+
if (initial) {
64556453
ZVAL_COPY(return_value, initial);
64566454
} else {
64576455
ZVAL_NULL(return_value);
@@ -6466,24 +6464,22 @@ PHP_FUNCTION(array_reduce)
64666464
return;
64676465
}
64686466

6469-
fci.retval = &retval;
6467+
fci.retval = return_value;
64706468
fci.param_count = 2;
6469+
fci.params = args;
64716470

64726471
ZEND_HASH_FOREACH_VAL(htbl, operand) {
64736472
ZVAL_COPY_VALUE(&args[0], return_value);
6474-
ZVAL_COPY(&args[1], operand);
6475-
fci.params = args;
6473+
ZVAL_COPY_VALUE(&args[1], operand);
64766474

6477-
if (zend_call_function(&fci, &fci_cache) == SUCCESS && Z_TYPE(retval) != IS_UNDEF) {
6478-
zval_ptr_dtor(&args[1]);
6479-
zval_ptr_dtor(&args[0]);
6480-
ZVAL_COPY_VALUE(return_value, &retval);
6475+
zend_call_function(&fci, &fci_cache);
6476+
zval_ptr_dtor(&args[0]);
6477+
6478+
if (EXPECTED(!Z_ISUNDEF_P(return_value))) {
64816479
if (UNEXPECTED(Z_ISREF_P(return_value))) {
64826480
zend_unwrap_reference(return_value);
64836481
}
64846482
} else {
6485-
zval_ptr_dtor(&args[1]);
6486-
zval_ptr_dtor(&args[0]);
64876483
RETURN_NULL();
64886484
}
64896485
} ZEND_HASH_FOREACH_END();

0 commit comments

Comments
 (0)