From: Nikita Popov Date: Wed, 8 May 2019 15:04:28 +0000 (+0200) Subject: Use fast zpp for ReflectionClass constructor X-Git-Tag: php-7.4.0alpha1~331 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e4e6820d103d82bece101597cdbca06f173cd64b;p=php Use fast zpp for ReflectionClass constructor At this point zpp overhead makes up a significant part of this function. --- diff --git a/ext/reflection/php_reflection.c b/ext/reflection/php_reflection.c index 7b7afa9547..31c9fcc51b 100644 --- a/ext/reflection/php_reflection.c +++ b/ext/reflection/php_reflection.c @@ -3669,13 +3669,13 @@ static void reflection_class_object_ctor(INTERNAL_FUNCTION_PARAMETERS, int is_ob zend_class_entry *ce; if (is_object) { - if (zend_parse_parameters(ZEND_NUM_ARGS(), "o", &argument) == FAILURE) { - return; - } + ZEND_PARSE_PARAMETERS_START(1, 1) + Z_PARAM_OBJECT(argument) + ZEND_PARSE_PARAMETERS_END(); } else { - if (zend_parse_parameters(ZEND_NUM_ARGS(), "z", &argument) == FAILURE) { - return; - } + ZEND_PARSE_PARAMETERS_START(1, 1) + Z_PARAM_ZVAL(argument) + ZEND_PARSE_PARAMETERS_END(); } object = ZEND_THIS;