@@ -632,6 +632,18 @@ PHPAPI zend_long php_count_recursive(HashTable *ht) /* {{{ */
632
632
}
633
633
/* }}} */
634
634
635
+ /* Consumes `zv` */
636
+ static zend_always_inline zend_long php_get_long (zval * zv )
637
+ {
638
+ if (EXPECTED (Z_TYPE_P (zv ) == IS_LONG )) {
639
+ return Z_LVAL_P (zv );
640
+ } else {
641
+ zend_long ret = zval_get_long_func (zv , false);
642
+ zval_ptr_dtor (zv );
643
+ return ret ;
644
+ }
645
+ }
646
+
635
647
/* {{{ Count the number of elements in a variable (usually an array) */
636
648
PHP_FUNCTION (count )
637
649
{
@@ -677,8 +689,7 @@ PHP_FUNCTION(count)
677
689
zend_function * count_fn = zend_hash_find_ptr (& zobj -> ce -> function_table , ZSTR_KNOWN (ZEND_STR_COUNT ));
678
690
zend_call_known_instance_method_with_0_params (count_fn , zobj , & retval );
679
691
if (Z_TYPE (retval ) != IS_UNDEF ) {
680
- RETVAL_LONG (zval_get_long (& retval ));
681
- zval_ptr_dtor (& retval );
692
+ RETVAL_LONG (php_get_long (& retval ));
682
693
}
683
694
return ;
684
695
}
@@ -811,20 +822,14 @@ static inline int php_array_user_compare_unstable(Bucket *f, Bucket *s) /* {{{ *
811
822
{
812
823
zval args [2 ];
813
824
zval retval ;
814
- bool call_failed ;
815
825
816
- ZVAL_COPY (& args [0 ], & f -> val );
817
- ZVAL_COPY (& args [1 ], & s -> val );
826
+ ZVAL_COPY_VALUE (& args [0 ], & f -> val );
827
+ ZVAL_COPY_VALUE (& args [1 ], & s -> val );
818
828
819
829
BG (user_compare_fci ).param_count = 2 ;
820
830
BG (user_compare_fci ).params = args ;
821
831
BG (user_compare_fci ).retval = & retval ;
822
- call_failed = zend_call_function (& BG (user_compare_fci ), & BG (user_compare_fci_cache )) == FAILURE || Z_TYPE (retval ) == IS_UNDEF ;
823
- zval_ptr_dtor (& args [1 ]);
824
- zval_ptr_dtor (& args [0 ]);
825
- if (UNEXPECTED (call_failed )) {
826
- return 0 ;
827
- }
832
+ zend_call_function (& BG (user_compare_fci ), & BG (user_compare_fci_cache ));
828
833
829
834
if (UNEXPECTED (Z_TYPE (retval ) == IS_FALSE || Z_TYPE (retval ) == IS_TRUE )) {
830
835
if (!ARRAYG (compare_deprecation_thrown )) {
@@ -836,23 +841,16 @@ static inline int php_array_user_compare_unstable(Bucket *f, Bucket *s) /* {{{ *
836
841
837
842
if (Z_TYPE (retval ) == IS_FALSE ) {
838
843
/* Retry with swapped operands. */
839
- ZVAL_COPY (& args [0 ], & s -> val );
840
- ZVAL_COPY (& args [1 ], & f -> val );
841
- call_failed = zend_call_function (& BG (user_compare_fci ), & BG (user_compare_fci_cache )) == FAILURE || Z_TYPE (retval ) == IS_UNDEF ;
842
- zval_ptr_dtor (& args [1 ]);
843
- zval_ptr_dtor (& args [0 ]);
844
- if (call_failed ) {
845
- return 0 ;
846
- }
844
+ ZVAL_COPY_VALUE (& args [0 ], & s -> val );
845
+ ZVAL_COPY_VALUE (& args [1 ], & f -> val );
846
+ zend_call_function (& BG (user_compare_fci ), & BG (user_compare_fci_cache ));
847
847
848
- zend_long ret = zval_get_long (& retval );
849
- zval_ptr_dtor (& retval );
848
+ zend_long ret = php_get_long (& retval );
850
849
return - ZEND_NORMALIZE_BOOL (ret );
851
850
}
852
851
}
853
852
854
- zend_long ret = zval_get_long (& retval );
855
- zval_ptr_dtor (& retval );
853
+ zend_long ret = php_get_long (& retval );
856
854
return ZEND_NORMALIZE_BOOL (ret );
857
855
}
858
856
/* }}} */
@@ -929,28 +927,22 @@ static inline int php_array_user_key_compare_unstable(Bucket *f, Bucket *s) /* {
929
927
{
930
928
zval args [2 ];
931
929
zval retval ;
932
- bool call_failed ;
933
930
934
931
if (f -> key == NULL ) {
935
932
ZVAL_LONG (& args [0 ], f -> h );
936
933
} else {
937
- ZVAL_STR_COPY (& args [0 ], f -> key );
934
+ ZVAL_STR (& args [0 ], f -> key );
938
935
}
939
936
if (s -> key == NULL ) {
940
937
ZVAL_LONG (& args [1 ], s -> h );
941
938
} else {
942
- ZVAL_STR_COPY (& args [1 ], s -> key );
939
+ ZVAL_STR (& args [1 ], s -> key );
943
940
}
944
941
945
942
BG (user_compare_fci ).param_count = 2 ;
946
943
BG (user_compare_fci ).params = args ;
947
944
BG (user_compare_fci ).retval = & retval ;
948
- call_failed = zend_call_function (& BG (user_compare_fci ), & BG (user_compare_fci_cache )) == FAILURE || Z_TYPE (retval ) == IS_UNDEF ;
949
- zval_ptr_dtor (& args [1 ]);
950
- zval_ptr_dtor (& args [0 ]);
951
- if (UNEXPECTED (call_failed )) {
952
- return 0 ;
953
- }
945
+ zend_call_function (& BG (user_compare_fci ), & BG (user_compare_fci_cache ));
954
946
955
947
if (UNEXPECTED (Z_TYPE (retval ) == IS_FALSE || Z_TYPE (retval ) == IS_TRUE )) {
956
948
if (!ARRAYG (compare_deprecation_thrown )) {
@@ -965,29 +957,22 @@ static inline int php_array_user_key_compare_unstable(Bucket *f, Bucket *s) /* {
965
957
if (s -> key == NULL ) {
966
958
ZVAL_LONG (& args [0 ], s -> h );
967
959
} else {
968
- ZVAL_STR_COPY (& args [0 ], s -> key );
960
+ ZVAL_STR (& args [0 ], s -> key );
969
961
}
970
962
if (f -> key == NULL ) {
971
963
ZVAL_LONG (& args [1 ], f -> h );
972
964
} else {
973
- ZVAL_STR_COPY (& args [1 ], f -> key );
965
+ ZVAL_STR (& args [1 ], f -> key );
974
966
}
975
967
976
- call_failed = zend_call_function (& BG (user_compare_fci ), & BG (user_compare_fci_cache )) == FAILURE || Z_TYPE (retval ) == IS_UNDEF ;
977
- zval_ptr_dtor (& args [1 ]);
978
- zval_ptr_dtor (& args [0 ]);
979
- if (call_failed ) {
980
- return 0 ;
981
- }
968
+ zend_call_function (& BG (user_compare_fci ), & BG (user_compare_fci_cache ));
982
969
983
- zend_long ret = zval_get_long (& retval );
984
- zval_ptr_dtor (& retval );
970
+ zend_long ret = php_get_long (& retval );
985
971
return - ZEND_NORMALIZE_BOOL (ret );
986
972
}
987
973
}
988
974
989
- zend_long result = zval_get_long (& retval );
990
- zval_ptr_dtor (& retval );
975
+ zend_long result = php_get_long (& retval );
991
976
return ZEND_NORMALIZE_BOOL (result );
992
977
}
993
978
/* }}} */
@@ -5065,13 +5050,9 @@ static int zval_user_compare(zval *a, zval *b) /* {{{ */
5065
5050
BG (user_compare_fci ).params = args ;
5066
5051
BG (user_compare_fci ).retval = & retval ;
5067
5052
5068
- if (zend_call_function (& BG (user_compare_fci ), & BG (user_compare_fci_cache )) == SUCCESS && Z_TYPE (retval ) != IS_UNDEF ) {
5069
- zend_long ret = zval_get_long (& retval );
5070
- zval_ptr_dtor (& retval );
5071
- return ZEND_NORMALIZE_BOOL (ret );
5072
- } else {
5073
- return 0 ;
5074
- }
5053
+ zend_call_function (& BG (user_compare_fci ), & BG (user_compare_fci_cache ));
5054
+ zend_long ret = php_get_long (& retval );
5055
+ return ZEND_NORMALIZE_BOOL (ret );
5075
5056
}
5076
5057
/* }}} */
5077
5058
0 commit comments