1999-04-08 02:10:10 +08:00
|
|
|
/*
|
|
|
|
+----------------------------------------------------------------------+
|
|
|
|
| Zend Engine |
|
|
|
|
+----------------------------------------------------------------------+
|
2018-01-02 12:57:58 +08:00
|
|
|
| Copyright (c) 1998-2018 Zend Technologies Ltd. (http://www.zend.com) |
|
1999-04-08 02:10:10 +08:00
|
|
|
+----------------------------------------------------------------------+
|
2001-12-11 23:16:21 +08:00
|
|
|
| This source file is subject to version 2.00 of the Zend license, |
|
2015-01-03 17:22:58 +08:00
|
|
|
| that is bundled with this package in the file LICENSE, and is |
|
2003-06-11 04:04:29 +08:00
|
|
|
| available through the world-wide-web at the following url: |
|
2001-12-11 23:16:21 +08:00
|
|
|
| http://www.zend.com/license/2_00.txt. |
|
1999-07-16 22:58:16 +08:00
|
|
|
| If you did not receive a copy of the Zend license and are unable to |
|
|
|
|
| obtain it through the world-wide-web, please send a note to |
|
|
|
|
| license@zend.com so we can mail you a copy immediately. |
|
1999-04-08 02:10:10 +08:00
|
|
|
+----------------------------------------------------------------------+
|
|
|
|
| Authors: Andi Gutmans <andi@zend.com> |
|
|
|
|
| Zeev Suraski <zeev@zend.com> |
|
2015-08-31 16:38:16 +08:00
|
|
|
| Dmitry Stogov <dmitry@zend.com> |
|
1999-04-08 02:10:10 +08:00
|
|
|
+----------------------------------------------------------------------+
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
#include "zend.h"
|
|
|
|
#include "zend_alloc.h"
|
|
|
|
#include "zend_compile.h"
|
|
|
|
#include "zend_extensions.h"
|
|
|
|
#include "zend_API.h"
|
2018-02-17 04:47:00 +08:00
|
|
|
#include "zend_sort.h"
|
1999-04-08 02:10:10 +08:00
|
|
|
|
2004-09-24 05:43:32 +08:00
|
|
|
#include "zend_vm.h"
|
|
|
|
|
2014-12-14 06:06:14 +08:00
|
|
|
static void zend_extension_op_array_ctor_handler(zend_extension *extension, zend_op_array *op_array)
|
1999-04-08 02:10:10 +08:00
|
|
|
{
|
|
|
|
if (extension->op_array_ctor) {
|
2000-04-29 19:55:20 +08:00
|
|
|
extension->op_array_ctor(op_array);
|
1999-04-08 02:10:10 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-12-14 06:06:14 +08:00
|
|
|
static void zend_extension_op_array_dtor_handler(zend_extension *extension, zend_op_array *op_array)
|
1999-04-08 02:10:10 +08:00
|
|
|
{
|
|
|
|
if (extension->op_array_dtor) {
|
2000-04-29 19:55:20 +08:00
|
|
|
extension->op_array_dtor(op_array);
|
1999-04-08 02:10:10 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-12-14 06:06:14 +08:00
|
|
|
void init_op_array(zend_op_array *op_array, zend_uchar type, int initial_ops_size)
|
1999-04-08 02:10:10 +08:00
|
|
|
{
|
2000-04-29 09:30:17 +08:00
|
|
|
op_array->type = type;
|
2015-04-23 02:46:13 +08:00
|
|
|
op_array->arg_flags[0] = 0;
|
|
|
|
op_array->arg_flags[1] = 0;
|
|
|
|
op_array->arg_flags[2] = 0;
|
2001-07-15 22:08:58 +08:00
|
|
|
|
2014-08-26 01:28:33 +08:00
|
|
|
op_array->refcount = (uint32_t *) emalloc(sizeof(uint32_t));
|
1999-04-08 02:10:10 +08:00
|
|
|
*op_array->refcount = 1;
|
|
|
|
op_array->last = 0;
|
2018-07-26 08:47:56 +08:00
|
|
|
op_array->opcodes = emalloc(initial_ops_size * sizeof(zend_op));
|
1999-04-08 02:10:10 +08:00
|
|
|
|
2004-10-05 03:54:35 +08:00
|
|
|
op_array->last_var = 0;
|
|
|
|
op_array->vars = NULL;
|
|
|
|
|
1999-04-08 02:10:10 +08:00
|
|
|
op_array->T = 0;
|
|
|
|
|
|
|
|
op_array->function_name = NULL;
|
2014-12-14 06:06:14 +08:00
|
|
|
op_array->filename = zend_get_compiled_filename();
|
2004-02-20 14:59:37 +08:00
|
|
|
op_array->doc_comment = NULL;
|
1999-04-08 02:10:10 +08:00
|
|
|
|
ntroduce infrastructure for supplying information about arguments,
including:
- Whether or not to pass by ref (replaces the old arg_types, with arg_info)
- Argument name (for future use, maybe introspection)
- Class/Interface name (for type hints)
- If a class/interface name is available, whether to allow a null instance
Both user and builtin functions share the same data structures.
To declare a builtin function that expects its first arg to be an instance
of class 'Person', its second argument as a regular arg, and its third by
reference, use:
ZEND_BEGIN_ARG_INFO(my_func_arg_info, 0)
ZEND_ARG_OBJ_INFO(0, someone, Person, 1)
ZEND_ARG_PASS_INFO(0)
ZEND_ARG_PASS_INFO(1)
ZEND_END_ARG_INFO();
and use my_func_arg_info as the arg_info parameter to the ZEND_FE() family
of macros.
The first arg to each ZEND_ARG_*() macro is whether or not to pass by ref.
The boolean arg to ZEND_BEGIN_ARG_INFO() tells the engine whether to treat
the arguments for which there's no explicit information as pass by reference
or not.
The boolean argument to ZEND_ARG_OBJ_INFO() (4th arg) is whether or not to allownull values.
2003-08-04 01:40:44 +08:00
|
|
|
op_array->arg_info = NULL;
|
|
|
|
op_array->num_args = 0;
|
2004-02-25 17:25:37 +08:00
|
|
|
op_array->required_num_args = 0;
|
1999-04-08 02:10:10 +08:00
|
|
|
|
2002-03-01 22:04:51 +08:00
|
|
|
op_array->scope = NULL;
|
2014-07-16 06:06:41 +08:00
|
|
|
op_array->prototype = NULL;
|
2002-03-01 22:04:51 +08:00
|
|
|
|
2015-11-11 02:48:03 +08:00
|
|
|
op_array->live_range = NULL;
|
2004-02-03 20:17:09 +08:00
|
|
|
op_array->try_catch_array = NULL;
|
2015-11-11 02:48:03 +08:00
|
|
|
op_array->last_live_range = 0;
|
1999-04-08 02:10:10 +08:00
|
|
|
|
|
|
|
op_array->static_variables = NULL;
|
2004-02-03 20:17:09 +08:00
|
|
|
op_array->last_try_catch = 0;
|
1999-04-08 02:10:10 +08:00
|
|
|
|
2014-08-26 05:45:02 +08:00
|
|
|
op_array->fn_flags = 0;
|
2007-02-15 18:38:28 +08:00
|
|
|
|
2010-04-20 18:57:45 +08:00
|
|
|
op_array->last_literal = 0;
|
|
|
|
op_array->literals = NULL;
|
|
|
|
|
2010-05-24 22:11:39 +08:00
|
|
|
op_array->run_time_cache = NULL;
|
2015-02-25 06:52:35 +08:00
|
|
|
op_array->cache_size = 0;
|
2010-05-24 22:11:39 +08:00
|
|
|
|
2007-11-19 05:29:55 +08:00
|
|
|
memset(op_array->reserved, 0, ZEND_MAX_RESERVED_RESOURCES * sizeof(void*));
|
|
|
|
|
2015-09-25 16:50:38 +08:00
|
|
|
if (zend_extension_flags & ZEND_EXTENSIONS_HAVE_OP_ARRAY_CTOR) {
|
|
|
|
zend_llist_apply_with_argument(&zend_extensions, (llist_apply_with_arg_func_t) zend_extension_op_array_ctor_handler, op_array);
|
|
|
|
}
|
1999-04-08 02:10:10 +08:00
|
|
|
}
|
|
|
|
|
2014-12-14 06:06:14 +08:00
|
|
|
ZEND_API void destroy_zend_function(zend_function *function)
|
1999-04-08 02:10:10 +08:00
|
|
|
{
|
2018-06-27 19:54:42 +08:00
|
|
|
zval tmp;
|
|
|
|
|
|
|
|
ZVAL_PTR(&tmp, function);
|
|
|
|
zend_function_dtor(&tmp);
|
1999-04-08 02:10:10 +08:00
|
|
|
}
|
|
|
|
|
2014-02-17 21:59:18 +08:00
|
|
|
ZEND_API void zend_function_dtor(zval *zv)
|
2004-06-06 16:37:12 +08:00
|
|
|
{
|
2014-02-17 21:59:18 +08:00
|
|
|
zend_function *function = Z_PTR_P(zv);
|
2004-06-06 16:37:12 +08:00
|
|
|
|
2014-09-23 16:35:42 +08:00
|
|
|
if (function->type == ZEND_USER_FUNCTION) {
|
|
|
|
ZEND_ASSERT(function->common.function_name);
|
2014-12-14 06:06:14 +08:00
|
|
|
destroy_op_array(&function->op_array);
|
2014-09-23 16:35:42 +08:00
|
|
|
/* op_arrays are allocated on arena, so we don't have to free them */
|
|
|
|
} else {
|
|
|
|
ZEND_ASSERT(function->type == ZEND_INTERNAL_FUNCTION);
|
|
|
|
ZEND_ASSERT(function->common.function_name);
|
2018-05-28 21:27:12 +08:00
|
|
|
zend_string_release_ex(function->common.function_name, 1);
|
2018-03-06 19:59:30 +08:00
|
|
|
|
2017-09-13 06:44:19 +08:00
|
|
|
if ((function->common.fn_flags & (ZEND_ACC_HAS_RETURN_TYPE|ZEND_ACC_HAS_TYPE_HINTS)) &&
|
|
|
|
!function->common.scope && function->common.arg_info) {
|
|
|
|
|
|
|
|
uint32_t i;
|
|
|
|
uint32_t num_args = function->common.num_args + 1;
|
|
|
|
zend_arg_info *arg_info = function->common.arg_info - 1;
|
|
|
|
|
|
|
|
if (function->common.fn_flags & ZEND_ACC_VARIADIC) {
|
|
|
|
num_args++;
|
|
|
|
}
|
|
|
|
for (i = 0 ; i < num_args; i++) {
|
|
|
|
if (ZEND_TYPE_IS_CLASS(arg_info[i].type)) {
|
2018-05-28 21:27:12 +08:00
|
|
|
zend_string_release_ex(ZEND_TYPE_NAME(arg_info[i].type), 1);
|
2017-09-13 06:44:19 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
free(arg_info);
|
|
|
|
}
|
2018-03-06 19:59:30 +08:00
|
|
|
|
2014-09-23 16:35:42 +08:00
|
|
|
if (!(function->common.fn_flags & ZEND_ACC_ARENA_ALLOCATED)) {
|
|
|
|
pefree(function, 1);
|
|
|
|
}
|
2014-06-18 06:47:01 +08:00
|
|
|
}
|
2004-06-06 16:37:12 +08:00
|
|
|
}
|
|
|
|
|
2014-12-14 06:06:14 +08:00
|
|
|
ZEND_API void zend_cleanup_internal_class_data(zend_class_entry *ce)
|
2010-07-06 19:40:17 +08:00
|
|
|
{
|
|
|
|
if (CE_STATIC_MEMBERS(ce)) {
|
2015-01-13 08:32:51 +08:00
|
|
|
zval *static_members = CE_STATIC_MEMBERS(ce);
|
2015-04-29 00:11:45 +08:00
|
|
|
zval *p = static_members;
|
|
|
|
zval *end = p + ce->default_static_members_count;
|
2015-01-03 17:22:58 +08:00
|
|
|
|
2005-12-01 19:48:17 +08:00
|
|
|
#ifdef ZTS
|
2018-10-02 00:05:31 +08:00
|
|
|
CG(static_members_table)[ce->static_members_table_idx] = NULL;
|
2005-12-01 19:48:17 +08:00
|
|
|
#else
|
2010-07-06 19:40:17 +08:00
|
|
|
ce->static_members_table = NULL;
|
2005-12-01 19:48:17 +08:00
|
|
|
#endif
|
2015-04-29 00:11:45 +08:00
|
|
|
while (p != end) {
|
2018-09-16 23:12:44 +08:00
|
|
|
i_zval_ptr_dtor(p);
|
2015-04-29 00:11:45 +08:00
|
|
|
p++;
|
2015-01-13 08:32:51 +08:00
|
|
|
}
|
|
|
|
efree(static_members);
|
2003-01-30 01:54:48 +08:00
|
|
|
}
|
2010-07-06 19:40:17 +08:00
|
|
|
}
|
|
|
|
|
2018-08-23 07:02:26 +08:00
|
|
|
static void _destroy_zend_class_traits_info(zend_class_entry *ce)
|
2010-05-03 00:32:25 +08:00
|
|
|
{
|
2018-08-23 07:02:26 +08:00
|
|
|
uint32_t i;
|
|
|
|
|
|
|
|
for (i = 0; i < ce->num_traits; i++) {
|
|
|
|
zend_string_release_ex(ce->trait_names[i].name, 0);
|
|
|
|
zend_string_release_ex(ce->trait_names[i].lc_name, 0);
|
2010-05-03 00:32:25 +08:00
|
|
|
}
|
2018-08-23 07:02:26 +08:00
|
|
|
efree(ce->trait_names);
|
2015-01-03 17:22:58 +08:00
|
|
|
|
2010-05-03 00:32:25 +08:00
|
|
|
if (ce->trait_aliases) {
|
2018-08-23 07:02:26 +08:00
|
|
|
i = 0;
|
2010-05-03 00:32:25 +08:00
|
|
|
while (ce->trait_aliases[i]) {
|
2018-07-11 23:56:10 +08:00
|
|
|
if (ce->trait_aliases[i]->trait_method.method_name) {
|
|
|
|
zend_string_release_ex(ce->trait_aliases[i]->trait_method.method_name, 0);
|
|
|
|
}
|
|
|
|
if (ce->trait_aliases[i]->trait_method.class_name) {
|
|
|
|
zend_string_release_ex(ce->trait_aliases[i]->trait_method.class_name, 0);
|
2010-05-03 00:32:25 +08:00
|
|
|
}
|
2015-01-03 17:22:58 +08:00
|
|
|
|
2010-05-03 00:32:25 +08:00
|
|
|
if (ce->trait_aliases[i]->alias) {
|
2018-05-28 21:27:12 +08:00
|
|
|
zend_string_release_ex(ce->trait_aliases[i]->alias, 0);
|
2010-05-03 00:32:25 +08:00
|
|
|
}
|
2015-01-03 17:22:58 +08:00
|
|
|
|
2010-05-03 00:32:25 +08:00
|
|
|
efree(ce->trait_aliases[i]);
|
|
|
|
i++;
|
|
|
|
}
|
2015-01-03 17:22:58 +08:00
|
|
|
|
2010-05-03 00:32:25 +08:00
|
|
|
efree(ce->trait_aliases);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ce->trait_precedences) {
|
2018-07-11 23:56:10 +08:00
|
|
|
int j;
|
2015-01-03 17:22:58 +08:00
|
|
|
|
2018-08-23 07:02:26 +08:00
|
|
|
i = 0;
|
2010-05-03 00:32:25 +08:00
|
|
|
while (ce->trait_precedences[i]) {
|
2018-07-11 23:56:10 +08:00
|
|
|
zend_string_release_ex(ce->trait_precedences[i]->trait_method.method_name, 0);
|
|
|
|
zend_string_release_ex(ce->trait_precedences[i]->trait_method.class_name, 0);
|
|
|
|
|
|
|
|
for (j = 0; j < ce->trait_precedences[i]->num_excludes; j++) {
|
|
|
|
zend_string_release_ex(ce->trait_precedences[i]->exclude_class_names[j], 0);
|
2010-05-03 00:32:25 +08:00
|
|
|
}
|
|
|
|
efree(ce->trait_precedences[i]);
|
|
|
|
i++;
|
|
|
|
}
|
|
|
|
efree(ce->trait_precedences);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-02-17 21:59:18 +08:00
|
|
|
ZEND_API void destroy_zend_class(zval *zv)
|
1999-04-08 02:10:10 +08:00
|
|
|
{
|
2015-03-04 22:41:01 +08:00
|
|
|
zend_property_info *prop_info;
|
2014-02-17 21:59:18 +08:00
|
|
|
zend_class_entry *ce = Z_PTR_P(zv);
|
2017-09-13 06:44:19 +08:00
|
|
|
zend_function *fn;
|
2015-01-03 17:22:58 +08:00
|
|
|
|
2002-03-13 03:22:29 +08:00
|
|
|
if (--ce->refcount > 0) {
|
2000-01-18 01:33:37 +08:00
|
|
|
return;
|
1999-04-18 23:11:52 +08:00
|
|
|
}
|
1999-04-08 02:10:10 +08:00
|
|
|
switch (ce->type) {
|
|
|
|
case ZEND_USER_CLASS:
|
2018-09-18 16:41:40 +08:00
|
|
|
if (ce->parent_name && !(ce->ce_flags & ZEND_ACC_LINKED)) {
|
2018-08-24 05:20:57 +08:00
|
|
|
zend_string_release_ex(ce->parent_name, 0);
|
|
|
|
}
|
2010-05-24 22:11:39 +08:00
|
|
|
if (ce->default_properties_table) {
|
2015-04-29 00:11:45 +08:00
|
|
|
zval *p = ce->default_properties_table;
|
|
|
|
zval *end = p + ce->default_properties_count;
|
2010-05-24 22:11:39 +08:00
|
|
|
|
2015-04-29 00:11:45 +08:00
|
|
|
while (p != end) {
|
2018-09-16 23:12:44 +08:00
|
|
|
i_zval_ptr_dtor(p);
|
2015-04-29 00:11:45 +08:00
|
|
|
p++;
|
2010-05-24 22:11:39 +08:00
|
|
|
}
|
|
|
|
efree(ce->default_properties_table);
|
|
|
|
}
|
|
|
|
if (ce->default_static_members_table) {
|
2015-04-29 00:11:45 +08:00
|
|
|
zval *p = ce->default_static_members_table;
|
|
|
|
zval *end = p + ce->default_static_members_count;
|
2010-05-24 22:11:39 +08:00
|
|
|
|
2015-04-29 00:11:45 +08:00
|
|
|
while (p != end) {
|
2018-09-16 23:12:44 +08:00
|
|
|
i_zval_ptr_dtor(p);
|
2015-04-29 00:11:45 +08:00
|
|
|
p++;
|
2010-05-24 22:11:39 +08:00
|
|
|
}
|
|
|
|
efree(ce->default_static_members_table);
|
|
|
|
}
|
2015-03-04 22:41:01 +08:00
|
|
|
ZEND_HASH_FOREACH_PTR(&ce->properties_info, prop_info) {
|
2018-09-11 16:56:45 +08:00
|
|
|
if (prop_info->ce == ce) {
|
2018-05-28 21:27:12 +08:00
|
|
|
zend_string_release_ex(prop_info->name, 0);
|
2015-03-04 22:41:01 +08:00
|
|
|
if (prop_info->doc_comment) {
|
2018-05-28 21:27:12 +08:00
|
|
|
zend_string_release_ex(prop_info->doc_comment, 0);
|
2015-03-04 22:41:01 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
} ZEND_HASH_FOREACH_END();
|
2003-02-05 21:35:52 +08:00
|
|
|
zend_hash_destroy(&ce->properties_info);
|
2018-05-28 21:27:12 +08:00
|
|
|
zend_string_release_ex(ce->name, 0);
|
1999-04-08 02:10:10 +08:00
|
|
|
zend_hash_destroy(&ce->function_table);
|
2015-12-08 17:40:42 +08:00
|
|
|
if (zend_hash_num_elements(&ce->constants_table)) {
|
|
|
|
zend_class_constant *c;
|
|
|
|
|
|
|
|
ZEND_HASH_FOREACH_PTR(&ce->constants_table, c) {
|
2016-01-22 11:22:37 +08:00
|
|
|
if (c->ce == ce) {
|
2017-10-09 17:24:11 +08:00
|
|
|
zval_ptr_dtor_nogc(&c->value);
|
2016-01-22 11:22:37 +08:00
|
|
|
if (c->doc_comment) {
|
2018-05-28 21:27:12 +08:00
|
|
|
zend_string_release_ex(c->doc_comment, 0);
|
2016-01-22 11:22:37 +08:00
|
|
|
}
|
2015-12-08 17:40:42 +08:00
|
|
|
}
|
|
|
|
} ZEND_HASH_FOREACH_END();
|
|
|
|
}
|
2018-08-17 13:35:15 +08:00
|
|
|
zend_hash_destroy(&ce->constants_table);
|
2018-08-23 22:16:28 +08:00
|
|
|
if (ce->num_interfaces > 0) {
|
2018-09-18 16:41:40 +08:00
|
|
|
if (!(ce->ce_flags & ZEND_ACC_LINKED)) {
|
2018-08-23 22:16:28 +08:00
|
|
|
uint32_t i;
|
|
|
|
|
|
|
|
for (i = 0; i < ce->num_interfaces; i++) {
|
|
|
|
zend_string_release_ex(ce->interface_names[i].name, 0);
|
|
|
|
zend_string_release_ex(ce->interface_names[i].lc_name, 0);
|
|
|
|
}
|
|
|
|
}
|
2003-03-05 19:14:44 +08:00
|
|
|
efree(ce->interfaces);
|
|
|
|
}
|
2010-09-15 15:38:52 +08:00
|
|
|
if (ce->info.user.doc_comment) {
|
2018-05-28 21:27:12 +08:00
|
|
|
zend_string_release_ex(ce->info.user.doc_comment, 0);
|
2003-04-01 04:42:01 +08:00
|
|
|
}
|
2015-01-03 17:22:58 +08:00
|
|
|
|
2018-08-23 07:02:26 +08:00
|
|
|
if (ce->num_traits > 0) {
|
|
|
|
_destroy_zend_class_traits_info(ce);
|
|
|
|
}
|
2015-01-03 17:22:58 +08:00
|
|
|
|
1999-04-08 02:10:10 +08:00
|
|
|
break;
|
|
|
|
case ZEND_INTERNAL_CLASS:
|
2010-05-24 22:11:39 +08:00
|
|
|
if (ce->default_properties_table) {
|
2015-04-29 00:11:45 +08:00
|
|
|
zval *p = ce->default_properties_table;
|
|
|
|
zval *end = p + ce->default_properties_count;
|
2010-05-24 22:11:39 +08:00
|
|
|
|
2015-04-29 00:11:45 +08:00
|
|
|
while (p != end) {
|
|
|
|
zval_internal_ptr_dtor(p);
|
|
|
|
p++;
|
2010-05-24 22:11:39 +08:00
|
|
|
}
|
|
|
|
free(ce->default_properties_table);
|
|
|
|
}
|
|
|
|
if (ce->default_static_members_table) {
|
2015-04-29 00:11:45 +08:00
|
|
|
zval *p = ce->default_static_members_table;
|
|
|
|
zval *end = p + ce->default_static_members_count;
|
2010-05-24 22:11:39 +08:00
|
|
|
|
2015-04-29 00:11:45 +08:00
|
|
|
while (p != end) {
|
|
|
|
zval_internal_ptr_dtor(p);
|
|
|
|
p++;
|
2010-05-24 22:11:39 +08:00
|
|
|
}
|
|
|
|
free(ce->default_static_members_table);
|
|
|
|
}
|
2003-02-05 21:35:52 +08:00
|
|
|
zend_hash_destroy(&ce->properties_info);
|
2018-05-28 21:27:12 +08:00
|
|
|
zend_string_release_ex(ce->name, 1);
|
2018-03-06 19:59:30 +08:00
|
|
|
|
|
|
|
/* TODO: eliminate this loop for classes without functions with arg_info */
|
2017-09-13 06:44:19 +08:00
|
|
|
ZEND_HASH_FOREACH_PTR(&ce->function_table, fn) {
|
|
|
|
if ((fn->common.fn_flags & (ZEND_ACC_HAS_RETURN_TYPE|ZEND_ACC_HAS_TYPE_HINTS)) &&
|
|
|
|
fn->common.scope == ce) {
|
|
|
|
/* reset function scope to allow arg_info removing */
|
|
|
|
fn->common.scope = NULL;
|
|
|
|
}
|
|
|
|
} ZEND_HASH_FOREACH_END();
|
2018-03-06 19:59:30 +08:00
|
|
|
|
1999-04-08 02:10:10 +08:00
|
|
|
zend_hash_destroy(&ce->function_table);
|
2015-12-08 17:40:42 +08:00
|
|
|
if (zend_hash_num_elements(&ce->constants_table)) {
|
|
|
|
zend_class_constant *c;
|
|
|
|
|
|
|
|
ZEND_HASH_FOREACH_PTR(&ce->constants_table, c) {
|
2017-10-31 04:13:10 +08:00
|
|
|
if (c->ce == ce) {
|
|
|
|
zval_internal_ptr_dtor(&c->value);
|
|
|
|
if (c->doc_comment) {
|
2018-05-28 21:27:12 +08:00
|
|
|
zend_string_release_ex(c->doc_comment, 1);
|
2017-10-31 04:13:10 +08:00
|
|
|
}
|
2015-12-08 17:40:42 +08:00
|
|
|
}
|
2017-10-31 06:20:38 +08:00
|
|
|
free(c);
|
2015-12-08 17:40:42 +08:00
|
|
|
} ZEND_HASH_FOREACH_END();
|
|
|
|
zend_hash_destroy(&ce->constants_table);
|
|
|
|
}
|
2018-07-12 19:04:14 +08:00
|
|
|
if (ce->iterator_funcs_ptr) {
|
|
|
|
free(ce->iterator_funcs_ptr);
|
|
|
|
}
|
2003-04-19 02:40:53 +08:00
|
|
|
if (ce->num_interfaces > 0) {
|
|
|
|
free(ce->interfaces);
|
|
|
|
}
|
2002-03-12 18:08:47 +08:00
|
|
|
free(ce);
|
1999-04-08 02:10:10 +08:00
|
|
|
break;
|
2003-04-01 04:42:01 +08:00
|
|
|
}
|
2003-02-16 19:12:43 +08:00
|
|
|
}
|
1999-04-08 02:10:10 +08:00
|
|
|
|
2014-02-17 21:59:18 +08:00
|
|
|
void zend_class_add_ref(zval *zv)
|
1999-04-26 22:10:42 +08:00
|
|
|
{
|
2014-02-17 21:59:18 +08:00
|
|
|
zend_class_entry *ce = Z_PTR_P(zv);
|
|
|
|
|
|
|
|
ce->refcount++;
|
1999-04-26 22:10:42 +08:00
|
|
|
}
|
|
|
|
|
2015-08-04 06:00:10 +08:00
|
|
|
ZEND_API void destroy_op_array(zend_op_array *op_array)
|
1999-04-08 02:10:10 +08:00
|
|
|
{
|
2014-08-26 01:28:33 +08:00
|
|
|
uint32_t i;
|
1999-04-08 02:10:10 +08:00
|
|
|
|
2015-02-20 18:28:26 +08:00
|
|
|
if (op_array->static_variables &&
|
|
|
|
!(GC_FLAGS(op_array->static_variables) & IS_ARRAY_IMMUTABLE)) {
|
2017-10-27 06:28:58 +08:00
|
|
|
if (GC_DELREF(op_array->static_variables) == 0) {
|
2015-02-20 18:28:26 +08:00
|
|
|
zend_array_destroy(op_array->static_variables);
|
|
|
|
}
|
1999-12-24 03:23:36 +08:00
|
|
|
}
|
|
|
|
|
2018-10-02 14:10:04 +08:00
|
|
|
if (op_array->run_time_cache
|
|
|
|
&& (op_array->fn_flags & ZEND_ACC_HEAP_RT_CACHE)) {
|
2010-05-24 22:11:39 +08:00
|
|
|
efree(op_array->run_time_cache);
|
2015-07-24 23:17:09 +08:00
|
|
|
op_array->run_time_cache = NULL;
|
2010-05-24 22:11:39 +08:00
|
|
|
}
|
|
|
|
|
2015-08-04 06:00:10 +08:00
|
|
|
if (!op_array->refcount || --(*op_array->refcount) > 0) {
|
|
|
|
return;
|
1999-04-08 02:10:10 +08:00
|
|
|
}
|
|
|
|
|
2014-08-28 00:49:56 +08:00
|
|
|
efree_size(op_array->refcount, sizeof(*(op_array->refcount)));
|
1999-04-08 02:10:10 +08:00
|
|
|
|
2004-10-05 03:54:35 +08:00
|
|
|
if (op_array->vars) {
|
|
|
|
i = op_array->last_var;
|
|
|
|
while (i > 0) {
|
|
|
|
i--;
|
2018-05-28 21:27:12 +08:00
|
|
|
zend_string_release_ex(op_array->vars[i], 0);
|
2004-10-05 03:54:35 +08:00
|
|
|
}
|
|
|
|
efree(op_array->vars);
|
|
|
|
}
|
|
|
|
|
2018-01-11 17:15:34 +08:00
|
|
|
if (op_array->literals) {
|
|
|
|
zval *literal = op_array->literals;
|
|
|
|
zval *end = literal + op_array->last_literal;
|
2010-04-20 18:57:45 +08:00
|
|
|
while (literal < end) {
|
2014-09-03 21:16:32 +08:00
|
|
|
zval_ptr_dtor_nogc(literal);
|
2010-04-20 18:57:45 +08:00
|
|
|
literal++;
|
1999-04-08 02:10:10 +08:00
|
|
|
}
|
2017-10-04 21:53:01 +08:00
|
|
|
if (ZEND_USE_ABS_CONST_ADDR
|
|
|
|
|| !(op_array->fn_flags & ZEND_ACC_DONE_PASS_TWO)) {
|
|
|
|
efree(op_array->literals);
|
|
|
|
}
|
1999-04-08 02:10:10 +08:00
|
|
|
}
|
|
|
|
efree(op_array->opcodes);
|
2004-07-29 23:23:47 +08:00
|
|
|
|
2012-12-25 14:23:08 +08:00
|
|
|
if (op_array->function_name) {
|
2018-05-28 21:27:12 +08:00
|
|
|
zend_string_release_ex(op_array->function_name, 0);
|
1999-04-08 02:10:10 +08:00
|
|
|
}
|
2004-02-20 14:59:37 +08:00
|
|
|
if (op_array->doc_comment) {
|
2018-05-28 21:27:12 +08:00
|
|
|
zend_string_release_ex(op_array->doc_comment, 0);
|
2004-02-20 14:59:37 +08:00
|
|
|
}
|
2015-11-11 02:48:03 +08:00
|
|
|
if (op_array->live_range) {
|
|
|
|
efree(op_array->live_range);
|
2015-07-10 08:31:52 +08:00
|
|
|
}
|
2004-02-03 20:17:09 +08:00
|
|
|
if (op_array->try_catch_array) {
|
|
|
|
efree(op_array->try_catch_array);
|
|
|
|
}
|
2015-09-25 16:50:38 +08:00
|
|
|
if (zend_extension_flags & ZEND_EXTENSIONS_HAVE_OP_ARRAY_DTOR) {
|
|
|
|
if (op_array->fn_flags & ZEND_ACC_DONE_PASS_TWO) {
|
|
|
|
zend_llist_apply_with_argument(&zend_extensions, (llist_apply_with_arg_func_t) zend_extension_op_array_dtor_handler, op_array);
|
|
|
|
}
|
2000-04-29 10:56:44 +08:00
|
|
|
}
|
ntroduce infrastructure for supplying information about arguments,
including:
- Whether or not to pass by ref (replaces the old arg_types, with arg_info)
- Argument name (for future use, maybe introspection)
- Class/Interface name (for type hints)
- If a class/interface name is available, whether to allow a null instance
Both user and builtin functions share the same data structures.
To declare a builtin function that expects its first arg to be an instance
of class 'Person', its second argument as a regular arg, and its third by
reference, use:
ZEND_BEGIN_ARG_INFO(my_func_arg_info, 0)
ZEND_ARG_OBJ_INFO(0, someone, Person, 1)
ZEND_ARG_PASS_INFO(0)
ZEND_ARG_PASS_INFO(1)
ZEND_END_ARG_INFO();
and use my_func_arg_info as the arg_info parameter to the ZEND_FE() family
of macros.
The first arg to each ZEND_ARG_*() macro is whether or not to pass by ref.
The boolean arg to ZEND_BEGIN_ARG_INFO() tells the engine whether to treat
the arguments for which there's no explicit information as pass by reference
or not.
The boolean argument to ZEND_ARG_OBJ_INFO() (4th arg) is whether or not to allownull values.
2003-08-04 01:40:44 +08:00
|
|
|
if (op_array->arg_info) {
|
2016-01-03 14:06:52 +08:00
|
|
|
uint32_t num_args = op_array->num_args;
|
2015-01-28 11:56:19 +08:00
|
|
|
zend_arg_info *arg_info = op_array->arg_info;
|
2014-12-22 21:44:39 +08:00
|
|
|
|
2015-01-28 11:56:19 +08:00
|
|
|
if (op_array->fn_flags & ZEND_ACC_HAS_RETURN_TYPE) {
|
|
|
|
arg_info--;
|
|
|
|
num_args++;
|
|
|
|
}
|
2014-12-22 21:44:39 +08:00
|
|
|
if (op_array->fn_flags & ZEND_ACC_VARIADIC) {
|
|
|
|
num_args++;
|
|
|
|
}
|
2015-01-28 11:56:19 +08:00
|
|
|
for (i = 0 ; i < num_args; i++) {
|
|
|
|
if (arg_info[i].name) {
|
2018-05-28 21:27:12 +08:00
|
|
|
zend_string_release_ex(arg_info[i].name, 0);
|
2015-01-28 11:56:19 +08:00
|
|
|
}
|
2017-01-13 16:37:46 +08:00
|
|
|
if (ZEND_TYPE_IS_CLASS(arg_info[i].type)) {
|
2018-05-28 21:27:12 +08:00
|
|
|
zend_string_release_ex(ZEND_TYPE_NAME(arg_info[i].type), 0);
|
2003-08-04 06:28:14 +08:00
|
|
|
}
|
ntroduce infrastructure for supplying information about arguments,
including:
- Whether or not to pass by ref (replaces the old arg_types, with arg_info)
- Argument name (for future use, maybe introspection)
- Class/Interface name (for type hints)
- If a class/interface name is available, whether to allow a null instance
Both user and builtin functions share the same data structures.
To declare a builtin function that expects its first arg to be an instance
of class 'Person', its second argument as a regular arg, and its third by
reference, use:
ZEND_BEGIN_ARG_INFO(my_func_arg_info, 0)
ZEND_ARG_OBJ_INFO(0, someone, Person, 1)
ZEND_ARG_PASS_INFO(0)
ZEND_ARG_PASS_INFO(1)
ZEND_END_ARG_INFO();
and use my_func_arg_info as the arg_info parameter to the ZEND_FE() family
of macros.
The first arg to each ZEND_ARG_*() macro is whether or not to pass by ref.
The boolean arg to ZEND_BEGIN_ARG_INFO() tells the engine whether to treat
the arguments for which there's no explicit information as pass by reference
or not.
The boolean argument to ZEND_ARG_OBJ_INFO() (4th arg) is whether or not to allownull values.
2003-08-04 01:40:44 +08:00
|
|
|
}
|
2015-01-28 11:56:19 +08:00
|
|
|
efree(arg_info);
|
ntroduce infrastructure for supplying information about arguments,
including:
- Whether or not to pass by ref (replaces the old arg_types, with arg_info)
- Argument name (for future use, maybe introspection)
- Class/Interface name (for type hints)
- If a class/interface name is available, whether to allow a null instance
Both user and builtin functions share the same data structures.
To declare a builtin function that expects its first arg to be an instance
of class 'Person', its second argument as a regular arg, and its third by
reference, use:
ZEND_BEGIN_ARG_INFO(my_func_arg_info, 0)
ZEND_ARG_OBJ_INFO(0, someone, Person, 1)
ZEND_ARG_PASS_INFO(0)
ZEND_ARG_PASS_INFO(1)
ZEND_END_ARG_INFO();
and use my_func_arg_info as the arg_info parameter to the ZEND_FE() family
of macros.
The first arg to each ZEND_ARG_*() macro is whether or not to pass by ref.
The boolean arg to ZEND_BEGIN_ARG_INFO() tells the engine whether to treat
the arguments for which there's no explicit information as pass by reference
or not.
The boolean argument to ZEND_ARG_OBJ_INFO() (4th arg) is whether or not to allownull values.
2003-08-04 01:40:44 +08:00
|
|
|
}
|
1999-04-08 02:10:10 +08:00
|
|
|
}
|
|
|
|
|
2014-12-14 06:06:14 +08:00
|
|
|
static void zend_update_extended_info(zend_op_array *op_array)
|
1999-04-08 02:10:10 +08:00
|
|
|
{
|
|
|
|
zend_op *opline = op_array->opcodes, *end=opline+op_array->last;
|
|
|
|
|
|
|
|
while (opline<end) {
|
|
|
|
if (opline->opcode == ZEND_EXT_STMT) {
|
|
|
|
if (opline+1<end) {
|
|
|
|
if ((opline+1)->opcode == ZEND_EXT_STMT) {
|
|
|
|
opline->opcode = ZEND_NOP;
|
|
|
|
opline++;
|
|
|
|
continue;
|
|
|
|
}
|
2000-12-30 23:32:12 +08:00
|
|
|
if (opline+1<end) {
|
|
|
|
opline->lineno = (opline+1)->lineno;
|
|
|
|
}
|
1999-04-08 02:10:10 +08:00
|
|
|
} else {
|
|
|
|
opline->opcode = ZEND_NOP;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
opline++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-12-14 06:06:14 +08:00
|
|
|
static void zend_extension_op_array_handler(zend_extension *extension, zend_op_array *op_array)
|
1999-04-08 02:10:10 +08:00
|
|
|
{
|
|
|
|
if (extension->op_array_handler) {
|
|
|
|
extension->op_array_handler(op_array);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-12-14 06:06:14 +08:00
|
|
|
static void zend_check_finally_breakout(zend_op_array *op_array, uint32_t op_num, uint32_t dst_num)
|
2012-11-22 19:17:05 +08:00
|
|
|
{
|
2014-09-15 22:52:19 +08:00
|
|
|
int i;
|
2012-11-22 19:17:05 +08:00
|
|
|
|
|
|
|
for (i = 0; i < op_array->last_try_catch; i++) {
|
2013-12-13 00:15:50 +08:00
|
|
|
if ((op_num < op_array->try_catch_array[i].finally_op ||
|
|
|
|
op_num >= op_array->try_catch_array[i].finally_end)
|
|
|
|
&& (dst_num >= op_array->try_catch_array[i].finally_op &&
|
|
|
|
dst_num <= op_array->try_catch_array[i].finally_end)) {
|
|
|
|
CG(in_compilation) = 1;
|
|
|
|
CG(active_op_array) = op_array;
|
|
|
|
CG(zend_lineno) = op_array->opcodes[op_num].lineno;
|
2013-12-13 10:56:35 +08:00
|
|
|
zend_error_noreturn(E_COMPILE_ERROR, "jump into a finally block is disallowed");
|
2015-01-03 17:22:58 +08:00
|
|
|
} else if ((op_num >= op_array->try_catch_array[i].finally_op
|
2012-11-22 19:17:05 +08:00
|
|
|
&& op_num <= op_array->try_catch_array[i].finally_end)
|
2015-01-03 17:22:58 +08:00
|
|
|
&& (dst_num > op_array->try_catch_array[i].finally_end
|
2012-08-18 11:44:09 +08:00
|
|
|
|| dst_num < op_array->try_catch_array[i].finally_op)) {
|
|
|
|
CG(in_compilation) = 1;
|
|
|
|
CG(active_op_array) = op_array;
|
2012-11-22 19:17:05 +08:00
|
|
|
CG(zend_lineno) = op_array->opcodes[op_num].lineno;
|
2013-10-20 05:22:20 +08:00
|
|
|
zend_error_noreturn(E_COMPILE_ERROR, "jump out of a finally block is disallowed");
|
2012-08-18 11:44:09 +08:00
|
|
|
}
|
2015-01-03 17:22:58 +08:00
|
|
|
}
|
2012-08-18 11:44:09 +08:00
|
|
|
}
|
|
|
|
|
2015-05-23 04:17:40 +08:00
|
|
|
static uint32_t zend_get_brk_cont_target(const zend_op_array *op_array, const zend_op *opline) {
|
|
|
|
int nest_levels = opline->op2.num;
|
|
|
|
int array_offset = opline->op1.num;
|
|
|
|
zend_brk_cont_element *jmp_to;
|
|
|
|
do {
|
2015-11-11 02:48:03 +08:00
|
|
|
jmp_to = &CG(context).brk_cont_array[array_offset];
|
2015-05-23 04:17:40 +08:00
|
|
|
if (nest_levels > 1) {
|
|
|
|
array_offset = jmp_to->parent;
|
|
|
|
}
|
|
|
|
} while (--nest_levels > 0);
|
|
|
|
|
|
|
|
return opline->opcode == ZEND_BRK ? jmp_to->brk : jmp_to->cont;
|
|
|
|
}
|
|
|
|
|
2018-02-17 04:47:00 +08:00
|
|
|
/* Live ranges must be sorted by increasing start opline */
|
|
|
|
static int cmp_live_range(const zend_live_range *a, const zend_live_range *b) {
|
|
|
|
return a->start - b->start;
|
|
|
|
}
|
|
|
|
static void swap_live_range(zend_live_range *a, zend_live_range *b) {
|
|
|
|
zend_live_range tmp = *a;
|
|
|
|
*a = *b;
|
|
|
|
*b = tmp;
|
|
|
|
}
|
|
|
|
static void zend_sort_live_ranges(zend_op_array *op_array) {
|
|
|
|
zend_sort(op_array->live_range, op_array->last_live_range, sizeof(zend_live_range),
|
|
|
|
(compare_func_t) cmp_live_range, (swap_func_t) swap_live_range);
|
|
|
|
}
|
|
|
|
|
2014-12-14 06:06:14 +08:00
|
|
|
ZEND_API int pass_two(zend_op_array *op_array)
|
1999-04-08 02:10:10 +08:00
|
|
|
{
|
2001-05-11 22:29:06 +08:00
|
|
|
zend_op *opline, *end;
|
1999-04-08 02:10:10 +08:00
|
|
|
|
2014-06-30 19:43:45 +08:00
|
|
|
if (!ZEND_USER_CODE(op_array->type)) {
|
1999-04-08 02:10:10 +08:00
|
|
|
return 0;
|
|
|
|
}
|
2008-03-18 16:36:30 +08:00
|
|
|
if (CG(compiler_options) & ZEND_COMPILE_EXTENDED_INFO) {
|
2014-12-14 06:06:14 +08:00
|
|
|
zend_update_extended_info(op_array);
|
1999-04-08 02:10:10 +08:00
|
|
|
}
|
2008-03-18 16:36:30 +08:00
|
|
|
if (CG(compiler_options) & ZEND_COMPILE_HANDLE_OP_ARRAY) {
|
2016-01-12 22:19:14 +08:00
|
|
|
if (zend_extension_flags & ZEND_EXTENSIONS_HAVE_OP_ARRAY_HANDLER) {
|
2015-09-25 16:50:38 +08:00
|
|
|
zend_llist_apply_with_argument(&zend_extensions, (llist_apply_with_arg_func_t) zend_extension_op_array_handler, op_array);
|
|
|
|
}
|
1999-04-08 02:10:10 +08:00
|
|
|
}
|
2001-05-11 22:29:06 +08:00
|
|
|
|
2014-08-26 05:45:02 +08:00
|
|
|
if (CG(context).vars_size != op_array->last_var) {
|
2014-02-10 14:04:30 +08:00
|
|
|
op_array->vars = (zend_string**) erealloc(op_array->vars, sizeof(zend_string*)*op_array->last_var);
|
2010-09-15 15:38:52 +08:00
|
|
|
CG(context).vars_size = op_array->last_var;
|
|
|
|
}
|
2017-10-04 21:53:01 +08:00
|
|
|
|
|
|
|
#if ZEND_USE_ABS_CONST_ADDR
|
2014-08-26 05:45:02 +08:00
|
|
|
if (CG(context).opcodes_size != op_array->last) {
|
2006-04-10 20:26:53 +08:00
|
|
|
op_array->opcodes = (zend_op *) erealloc(op_array->opcodes, sizeof(zend_op)*op_array->last);
|
2010-09-15 15:38:52 +08:00
|
|
|
CG(context).opcodes_size = op_array->last;
|
2006-04-10 20:26:53 +08:00
|
|
|
}
|
2014-08-26 05:45:02 +08:00
|
|
|
if (CG(context).literals_size != op_array->last_literal) {
|
2014-04-17 19:40:45 +08:00
|
|
|
op_array->literals = (zval*)erealloc(op_array->literals, sizeof(zval) * op_array->last_literal);
|
2010-09-15 15:38:52 +08:00
|
|
|
CG(context).literals_size = op_array->last_literal;
|
2010-04-20 18:57:45 +08:00
|
|
|
}
|
2017-10-04 21:53:01 +08:00
|
|
|
#else
|
|
|
|
op_array->opcodes = (zend_op *) erealloc(op_array->opcodes,
|
|
|
|
ZEND_MM_ALIGNED_SIZE_EX(sizeof(zend_op) * op_array->last, 16) +
|
|
|
|
sizeof(zval) * op_array->last_literal);
|
|
|
|
if (op_array->literals) {
|
|
|
|
memcpy(((char*)op_array->opcodes) + ZEND_MM_ALIGNED_SIZE_EX(sizeof(zend_op) * op_array->last, 16),
|
|
|
|
op_array->literals, sizeof(zval) * op_array->last_literal);
|
|
|
|
efree(op_array->literals);
|
|
|
|
op_array->literals = (zval*)(((char*)op_array->opcodes) + ZEND_MM_ALIGNED_SIZE_EX(sizeof(zend_op) * op_array->last, 16));
|
|
|
|
}
|
|
|
|
CG(context).opcodes_size = op_array->last;
|
|
|
|
CG(context).literals_size = op_array->last_literal;
|
|
|
|
#endif
|
|
|
|
|
2018-09-04 14:08:39 +08:00
|
|
|
/* Needs to be set directly after the opcode/literal reallocation, to ensure destruction
|
|
|
|
* happens correctly if any of the following fixups generate a fatal error. */
|
|
|
|
op_array->fn_flags |= ZEND_ACC_DONE_PASS_TWO;
|
|
|
|
|
2001-05-11 22:29:06 +08:00
|
|
|
opline = op_array->opcodes;
|
|
|
|
end = opline + op_array->last;
|
|
|
|
while (opline < end) {
|
2002-10-25 02:24:55 +08:00
|
|
|
switch (opline->opcode) {
|
2018-05-03 19:40:18 +08:00
|
|
|
case ZEND_RECV_INIT:
|
|
|
|
{
|
|
|
|
zval *val = CT_CONSTANT(opline->op2);
|
|
|
|
if (Z_TYPE_P(val) == IS_CONSTANT_AST) {
|
|
|
|
uint32_t slot = ZEND_MM_ALIGNED_SIZE_EX(op_array->cache_size, 8);
|
|
|
|
Z_CACHE_SLOT_P(val) = slot;
|
|
|
|
op_array->cache_size += sizeof(zval);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
2015-08-04 12:37:06 +08:00
|
|
|
case ZEND_FAST_CALL:
|
2015-08-04 13:35:40 +08:00
|
|
|
opline->op1.opline_num = op_array->try_catch_array[opline->op1.num].finally_op;
|
2015-08-04 12:37:06 +08:00
|
|
|
ZEND_PASS_TWO_UPDATE_JMP_TARGET(op_array, opline, opline->op1);
|
|
|
|
break;
|
2015-05-23 04:17:40 +08:00
|
|
|
case ZEND_BRK:
|
|
|
|
case ZEND_CONT:
|
|
|
|
{
|
|
|
|
uint32_t jmp_target = zend_get_brk_cont_target(op_array, opline);
|
2015-08-04 12:37:06 +08:00
|
|
|
|
|
|
|
if (op_array->fn_flags & ZEND_ACC_HAS_FINALLY_BLOCK) {
|
|
|
|
zend_check_finally_breakout(op_array, opline - op_array->opcodes, jmp_target);
|
|
|
|
}
|
2015-05-23 04:17:40 +08:00
|
|
|
opline->opcode = ZEND_JMP;
|
|
|
|
opline->op1.opline_num = jmp_target;
|
|
|
|
opline->op2.num = 0;
|
|
|
|
ZEND_PASS_TWO_UPDATE_JMP_TARGET(op_array, opline, opline->op1);
|
|
|
|
}
|
|
|
|
break;
|
2008-03-28 22:35:01 +08:00
|
|
|
case ZEND_GOTO:
|
2015-08-04 12:37:06 +08:00
|
|
|
zend_resolve_goto_label(op_array, opline);
|
|
|
|
if (op_array->fn_flags & ZEND_ACC_HAS_FINALLY_BLOCK) {
|
|
|
|
zend_check_finally_breakout(op_array, opline - op_array->opcodes, opline->op1.opline_num);
|
|
|
|
}
|
2008-03-28 22:35:01 +08:00
|
|
|
/* break omitted intentionally */
|
2002-10-25 02:24:55 +08:00
|
|
|
case ZEND_JMP:
|
2014-12-12 15:19:41 +08:00
|
|
|
ZEND_PASS_TWO_UPDATE_JMP_TARGET(op_array, opline, opline->op1);
|
2002-10-25 02:24:55 +08:00
|
|
|
break;
|
2014-04-30 15:23:19 +08:00
|
|
|
case ZEND_JMPZNZ:
|
|
|
|
/* absolute index to relative offset */
|
2014-12-12 15:19:41 +08:00
|
|
|
opline->extended_value = ZEND_OPLINE_NUM_TO_OFFSET(op_array, opline, opline->extended_value);
|
2014-04-30 15:23:19 +08:00
|
|
|
/* break omitted intentionally */
|
2002-10-25 02:24:55 +08:00
|
|
|
case ZEND_JMPZ:
|
|
|
|
case ZEND_JMPNZ:
|
|
|
|
case ZEND_JMPZ_EX:
|
|
|
|
case ZEND_JMPNZ_EX:
|
2007-11-21 17:41:35 +08:00
|
|
|
case ZEND_JMP_SET:
|
2014-09-17 02:14:46 +08:00
|
|
|
case ZEND_COALESCE:
|
2015-02-12 18:57:12 +08:00
|
|
|
case ZEND_FE_RESET_R:
|
|
|
|
case ZEND_FE_RESET_RW:
|
2015-12-14 19:31:00 +08:00
|
|
|
ZEND_PASS_TWO_UPDATE_JMP_TARGET(op_array, opline, opline->op2);
|
|
|
|
break;
|
2015-03-02 17:25:40 +08:00
|
|
|
case ZEND_ASSERT_CHECK:
|
2016-03-26 02:27:20 +08:00
|
|
|
{
|
2015-12-14 19:31:00 +08:00
|
|
|
/* If result of assert is unused, result of check is unused as well */
|
2016-03-26 02:27:20 +08:00
|
|
|
zend_op *call = &op_array->opcodes[opline->op2.opline_num - 1];
|
|
|
|
if (call->opcode == ZEND_EXT_FCALL_END) {
|
|
|
|
call--;
|
|
|
|
}
|
|
|
|
if (call->result_type == IS_UNUSED) {
|
2016-02-05 22:23:23 +08:00
|
|
|
opline->result_type = IS_UNUSED;
|
2015-12-14 19:31:00 +08:00
|
|
|
}
|
2014-12-12 15:19:41 +08:00
|
|
|
ZEND_PASS_TWO_UPDATE_JMP_TARGET(op_array, opline, opline->op2);
|
2002-10-25 02:24:55 +08:00
|
|
|
break;
|
2016-03-26 02:27:20 +08:00
|
|
|
}
|
2015-12-20 20:42:26 +08:00
|
|
|
case ZEND_DECLARE_ANON_CLASS:
|
|
|
|
case ZEND_DECLARE_ANON_INHERITED_CLASS:
|
2015-05-13 17:55:42 +08:00
|
|
|
case ZEND_FE_FETCH_R:
|
|
|
|
case ZEND_FE_FETCH_RW:
|
2015-12-20 20:42:26 +08:00
|
|
|
/* absolute index to relative offset */
|
2015-05-13 17:55:42 +08:00
|
|
|
opline->extended_value = ZEND_OPLINE_NUM_TO_OFFSET(op_array, opline, opline->extended_value);
|
|
|
|
break;
|
2018-02-01 03:39:30 +08:00
|
|
|
case ZEND_CATCH:
|
2018-02-06 00:41:47 +08:00
|
|
|
if (!(opline->extended_value & ZEND_LAST_CATCH)) {
|
2018-02-01 03:39:30 +08:00
|
|
|
ZEND_PASS_TWO_UPDATE_JMP_TARGET(op_array, opline, opline->op2);
|
|
|
|
}
|
|
|
|
break;
|
2012-07-23 02:11:09 +08:00
|
|
|
case ZEND_RETURN:
|
|
|
|
case ZEND_RETURN_BY_REF:
|
|
|
|
if (op_array->fn_flags & ZEND_ACC_GENERATOR) {
|
2012-08-24 19:51:39 +08:00
|
|
|
opline->opcode = ZEND_GENERATOR_RETURN;
|
2012-07-23 02:11:09 +08:00
|
|
|
}
|
|
|
|
break;
|
2017-03-18 06:45:05 +08:00
|
|
|
case ZEND_SWITCH_LONG:
|
|
|
|
case ZEND_SWITCH_STRING:
|
|
|
|
{
|
|
|
|
/* absolute indexes to relative offsets */
|
|
|
|
HashTable *jumptable = Z_ARRVAL_P(CT_CONSTANT(opline->op2));
|
|
|
|
zval *zv;
|
|
|
|
ZEND_HASH_FOREACH_VAL(jumptable, zv) {
|
|
|
|
Z_LVAL_P(zv) = ZEND_OPLINE_NUM_TO_OFFSET(op_array, opline, Z_LVAL_P(zv));
|
|
|
|
} ZEND_HASH_FOREACH_END();
|
|
|
|
|
|
|
|
opline->extended_value = ZEND_OPLINE_NUM_TO_OFFSET(op_array, opline, opline->extended_value);
|
|
|
|
break;
|
|
|
|
}
|
2002-10-25 02:04:12 +08:00
|
|
|
}
|
2015-07-25 04:03:05 +08:00
|
|
|
if (opline->op1_type == IS_CONST) {
|
2017-10-04 21:53:01 +08:00
|
|
|
ZEND_PASS_TWO_UPDATE_CONSTANT(op_array, opline, opline->op1);
|
2015-07-25 04:03:05 +08:00
|
|
|
} else if (opline->op1_type & (IS_VAR|IS_TMP_VAR)) {
|
|
|
|
opline->op1.var = (uint32_t)(zend_intptr_t)ZEND_CALL_VAR_NUM(NULL, op_array->last_var + opline->op1.var);
|
|
|
|
}
|
|
|
|
if (opline->op2_type == IS_CONST) {
|
2017-10-04 21:53:01 +08:00
|
|
|
ZEND_PASS_TWO_UPDATE_CONSTANT(op_array, opline, opline->op2);
|
2015-07-25 04:03:05 +08:00
|
|
|
} else if (opline->op2_type & (IS_VAR|IS_TMP_VAR)) {
|
|
|
|
opline->op2.var = (uint32_t)(zend_intptr_t)ZEND_CALL_VAR_NUM(NULL, op_array->last_var + opline->op2.var);
|
|
|
|
}
|
|
|
|
if (opline->result_type & (IS_VAR|IS_TMP_VAR)) {
|
|
|
|
opline->result.var = (uint32_t)(zend_intptr_t)ZEND_CALL_VAR_NUM(NULL, op_array->last_var + opline->result.var);
|
|
|
|
}
|
2004-09-24 05:43:32 +08:00
|
|
|
ZEND_VM_SET_OPCODE_HANDLER(opline);
|
1999-04-08 02:10:10 +08:00
|
|
|
opline++;
|
|
|
|
}
|
2010-04-20 18:57:45 +08:00
|
|
|
|
2015-11-13 20:35:07 +08:00
|
|
|
if (op_array->live_range) {
|
2016-04-29 19:44:56 +08:00
|
|
|
int i;
|
2015-11-13 20:35:07 +08:00
|
|
|
|
2018-02-17 04:47:00 +08:00
|
|
|
zend_sort_live_ranges(op_array);
|
2015-11-13 20:35:07 +08:00
|
|
|
for (i = 0; i < op_array->last_live_range; i++) {
|
|
|
|
op_array->live_range[i].var =
|
|
|
|
(uint32_t)(zend_intptr_t)ZEND_CALL_VAR_NUM(NULL, op_array->last_var + (op_array->live_range[i].var / sizeof(zval))) |
|
|
|
|
(op_array->live_range[i].var & ZEND_LIVE_MASK);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2000-08-10 03:22:35 +08:00
|
|
|
return 0;
|
1999-04-08 02:10:10 +08:00
|
|
|
}
|
|
|
|
|
1999-05-30 21:28:56 +08:00
|
|
|
ZEND_API unary_op_type get_unary_op(int opcode)
|
1999-04-08 02:10:10 +08:00
|
|
|
{
|
2002-11-30 19:20:25 +08:00
|
|
|
switch (opcode) {
|
1999-04-08 02:10:10 +08:00
|
|
|
case ZEND_BW_NOT:
|
1999-06-04 19:44:02 +08:00
|
|
|
return (unary_op_type) bitwise_not_function;
|
1999-04-08 02:10:10 +08:00
|
|
|
case ZEND_BOOL_NOT:
|
1999-06-04 19:44:02 +08:00
|
|
|
return (unary_op_type) boolean_not_function;
|
1999-04-08 02:10:10 +08:00
|
|
|
default:
|
1999-05-30 21:28:56 +08:00
|
|
|
return (unary_op_type) NULL;
|
1999-04-08 02:10:10 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-08-30 02:12:47 +08:00
|
|
|
ZEND_API binary_op_type get_binary_op(int opcode)
|
1999-04-08 02:10:10 +08:00
|
|
|
{
|
|
|
|
switch (opcode) {
|
|
|
|
case ZEND_ADD:
|
1999-04-24 08:12:55 +08:00
|
|
|
case ZEND_ASSIGN_ADD:
|
2008-08-30 02:12:47 +08:00
|
|
|
return (binary_op_type) add_function;
|
1999-04-08 02:10:10 +08:00
|
|
|
case ZEND_SUB:
|
1999-04-24 08:12:55 +08:00
|
|
|
case ZEND_ASSIGN_SUB:
|
2008-08-30 02:12:47 +08:00
|
|
|
return (binary_op_type) sub_function;
|
1999-04-08 02:10:10 +08:00
|
|
|
case ZEND_MUL:
|
1999-04-24 08:12:55 +08:00
|
|
|
case ZEND_ASSIGN_MUL:
|
2008-08-30 02:12:47 +08:00
|
|
|
return (binary_op_type) mul_function;
|
2013-11-19 15:36:06 +08:00
|
|
|
case ZEND_POW:
|
2017-07-04 02:26:44 +08:00
|
|
|
case ZEND_ASSIGN_POW:
|
2013-11-19 15:36:06 +08:00
|
|
|
return (binary_op_type) pow_function;
|
1999-04-08 02:10:10 +08:00
|
|
|
case ZEND_DIV:
|
1999-04-24 08:12:55 +08:00
|
|
|
case ZEND_ASSIGN_DIV:
|
2008-08-30 02:12:47 +08:00
|
|
|
return (binary_op_type) div_function;
|
1999-04-08 02:10:10 +08:00
|
|
|
case ZEND_MOD:
|
1999-04-24 08:12:55 +08:00
|
|
|
case ZEND_ASSIGN_MOD:
|
2008-08-30 02:12:47 +08:00
|
|
|
return (binary_op_type) mod_function;
|
1999-04-08 02:10:10 +08:00
|
|
|
case ZEND_SL:
|
1999-04-24 08:12:55 +08:00
|
|
|
case ZEND_ASSIGN_SL:
|
2008-08-30 02:12:47 +08:00
|
|
|
return (binary_op_type) shift_left_function;
|
1999-04-08 02:10:10 +08:00
|
|
|
case ZEND_SR:
|
1999-04-24 08:12:55 +08:00
|
|
|
case ZEND_ASSIGN_SR:
|
2008-08-30 02:12:47 +08:00
|
|
|
return (binary_op_type) shift_right_function;
|
2015-03-25 03:47:21 +08:00
|
|
|
case ZEND_FAST_CONCAT:
|
1999-04-08 02:10:10 +08:00
|
|
|
case ZEND_CONCAT:
|
1999-04-24 08:12:55 +08:00
|
|
|
case ZEND_ASSIGN_CONCAT:
|
2008-08-30 02:12:47 +08:00
|
|
|
return (binary_op_type) concat_function;
|
1999-10-19 21:33:17 +08:00
|
|
|
case ZEND_IS_IDENTICAL:
|
2008-08-30 02:12:47 +08:00
|
|
|
return (binary_op_type) is_identical_function;
|
2000-03-30 06:05:19 +08:00
|
|
|
case ZEND_IS_NOT_IDENTICAL:
|
2008-08-30 02:12:47 +08:00
|
|
|
return (binary_op_type) is_not_identical_function;
|
1999-04-24 08:12:55 +08:00
|
|
|
case ZEND_IS_EQUAL:
|
2017-07-04 02:26:44 +08:00
|
|
|
case ZEND_CASE:
|
2008-08-30 02:12:47 +08:00
|
|
|
return (binary_op_type) is_equal_function;
|
1999-04-24 08:12:55 +08:00
|
|
|
case ZEND_IS_NOT_EQUAL:
|
2008-08-30 02:12:47 +08:00
|
|
|
return (binary_op_type) is_not_equal_function;
|
1999-04-08 02:10:10 +08:00
|
|
|
case ZEND_IS_SMALLER:
|
2008-08-30 02:12:47 +08:00
|
|
|
return (binary_op_type) is_smaller_function;
|
1999-04-24 08:12:55 +08:00
|
|
|
case ZEND_IS_SMALLER_OR_EQUAL:
|
2008-08-30 02:12:47 +08:00
|
|
|
return (binary_op_type) is_smaller_or_equal_function;
|
2015-01-19 15:12:39 +08:00
|
|
|
case ZEND_SPACESHIP:
|
|
|
|
return (binary_op_type) compare_function;
|
1999-04-08 02:10:10 +08:00
|
|
|
case ZEND_BW_OR:
|
1999-04-24 08:12:55 +08:00
|
|
|
case ZEND_ASSIGN_BW_OR:
|
2008-08-30 02:12:47 +08:00
|
|
|
return (binary_op_type) bitwise_or_function;
|
1999-04-08 02:10:10 +08:00
|
|
|
case ZEND_BW_AND:
|
1999-04-24 08:12:55 +08:00
|
|
|
case ZEND_ASSIGN_BW_AND:
|
2008-08-30 02:12:47 +08:00
|
|
|
return (binary_op_type) bitwise_and_function;
|
1999-04-08 02:10:10 +08:00
|
|
|
case ZEND_BW_XOR:
|
1999-04-24 08:12:55 +08:00
|
|
|
case ZEND_ASSIGN_BW_XOR:
|
2008-08-30 02:12:47 +08:00
|
|
|
return (binary_op_type) bitwise_xor_function;
|
|
|
|
case ZEND_BOOL_XOR:
|
|
|
|
return (binary_op_type) boolean_xor_function;
|
1999-04-08 02:10:10 +08:00
|
|
|
default:
|
2008-08-30 02:12:47 +08:00
|
|
|
return (binary_op_type) NULL;
|
1999-04-08 02:10:10 +08:00
|
|
|
}
|
|
|
|
}
|
2003-02-01 09:49:15 +08:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Local variables:
|
|
|
|
* tab-width: 4
|
|
|
|
* c-basic-offset: 4
|
|
|
|
* indent-tabs-mode: t
|
|
|
|
* End:
|
2017-07-05 00:12:45 +08:00
|
|
|
* vim600: sw=4 ts=4 fdm=marker
|
|
|
|
* vim<600: sw=4 ts=4
|
2003-02-01 09:49:15 +08:00
|
|
|
*/
|