/src/php-src/Zend/zend_opcode.c
Line | Count | Source |
1 | | /* |
2 | | +----------------------------------------------------------------------+ |
3 | | | Zend Engine | |
4 | | +----------------------------------------------------------------------+ |
5 | | | Copyright (c) Zend Technologies Ltd. (http://www.zend.com) | |
6 | | +----------------------------------------------------------------------+ |
7 | | | This source file is subject to version 2.00 of the Zend license, | |
8 | | | that is bundled with this package in the file LICENSE, and is | |
9 | | | available through the world-wide-web at the following url: | |
10 | | | http://www.zend.com/license/2_00.txt. | |
11 | | | If you did not receive a copy of the Zend license and are unable to | |
12 | | | obtain it through the world-wide-web, please send a note to | |
13 | | | license@zend.com so we can mail you a copy immediately. | |
14 | | +----------------------------------------------------------------------+ |
15 | | | Authors: Andi Gutmans <andi@php.net> | |
16 | | | Zeev Suraski <zeev@php.net> | |
17 | | | Dmitry Stogov <dmitry@php.net> | |
18 | | +----------------------------------------------------------------------+ |
19 | | */ |
20 | | |
21 | | #include <stdio.h> |
22 | | |
23 | | #include "zend.h" |
24 | | #include "zend_alloc.h" |
25 | | #include "zend_compile.h" |
26 | | #include "zend_extensions.h" |
27 | | #include "zend_API.h" |
28 | | #include "zend_sort.h" |
29 | | #include "zend_constants.h" |
30 | | #include "zend_observer.h" |
31 | | |
32 | | #include "zend_vm.h" |
33 | | |
34 | | static void zend_extension_op_array_ctor_handler(zend_extension *extension, zend_op_array *op_array) |
35 | 0 | { |
36 | 0 | if (extension->op_array_ctor) { |
37 | 0 | extension->op_array_ctor(op_array); |
38 | 0 | } |
39 | 0 | } |
40 | | |
41 | | static void zend_extension_op_array_dtor_handler(zend_extension *extension, zend_op_array *op_array) |
42 | 0 | { |
43 | 0 | if (extension->op_array_dtor) { |
44 | 0 | extension->op_array_dtor(op_array); |
45 | 0 | } |
46 | 0 | } |
47 | | |
48 | | void init_op_array(zend_op_array *op_array, uint8_t type, int initial_ops_size) |
49 | 1.15M | { |
50 | 1.15M | op_array->type = type; |
51 | 1.15M | op_array->arg_flags[0] = 0; |
52 | 1.15M | op_array->arg_flags[1] = 0; |
53 | 1.15M | op_array->arg_flags[2] = 0; |
54 | | |
55 | 1.15M | op_array->refcount = (uint32_t *) emalloc(sizeof(uint32_t)); |
56 | 1.15M | *op_array->refcount = 1; |
57 | 1.15M | op_array->last = 0; |
58 | 1.15M | op_array->opcodes = emalloc(initial_ops_size * sizeof(zend_op)); |
59 | | |
60 | 1.15M | op_array->last_var = 0; |
61 | 1.15M | op_array->vars = NULL; |
62 | | |
63 | 1.15M | op_array->T = 0; |
64 | | |
65 | 1.15M | op_array->function_name = NULL; |
66 | 1.15M | op_array->filename = zend_string_copy(zend_get_compiled_filename()); |
67 | 1.15M | op_array->doc_comment = NULL; |
68 | 1.15M | op_array->attributes = NULL; |
69 | | |
70 | 1.15M | op_array->arg_info = NULL; |
71 | 1.15M | op_array->num_args = 0; |
72 | 1.15M | op_array->required_num_args = 0; |
73 | | |
74 | 1.15M | op_array->scope = NULL; |
75 | 1.15M | op_array->prototype = NULL; |
76 | 1.15M | op_array->prop_info = NULL; |
77 | | |
78 | 1.15M | op_array->live_range = NULL; |
79 | 1.15M | op_array->try_catch_array = NULL; |
80 | 1.15M | op_array->last_live_range = 0; |
81 | | |
82 | 1.15M | op_array->static_variables = NULL; |
83 | 1.15M | ZEND_MAP_PTR_INIT(op_array->static_variables_ptr, NULL); |
84 | 1.15M | op_array->last_try_catch = 0; |
85 | | |
86 | 1.15M | op_array->fn_flags = 0; |
87 | 1.15M | op_array->fn_flags2 = 0; |
88 | | |
89 | 1.15M | op_array->last_literal = 0; |
90 | 1.15M | op_array->literals = NULL; |
91 | | |
92 | 1.15M | op_array->num_dynamic_func_defs = 0; |
93 | 1.15M | op_array->dynamic_func_defs = NULL; |
94 | | |
95 | 1.15M | ZEND_MAP_PTR_INIT(op_array->run_time_cache, NULL); |
96 | 1.15M | op_array->cache_size = zend_op_array_extension_handles * sizeof(void*); |
97 | | |
98 | 1.15M | memset(op_array->reserved, 0, ZEND_MAX_RESERVED_RESOURCES * sizeof(void*)); |
99 | | |
100 | 1.15M | if (zend_extension_flags & ZEND_EXTENSIONS_HAVE_OP_ARRAY_CTOR) { |
101 | 0 | zend_llist_apply_with_argument(&zend_extensions, (llist_apply_with_arg_func_t) zend_extension_op_array_ctor_handler, op_array); |
102 | 0 | } |
103 | 1.15M | } |
104 | | |
105 | | ZEND_API void destroy_zend_function(zend_function *function) |
106 | 0 | { |
107 | 0 | zval tmp; |
108 | |
|
109 | 0 | ZVAL_PTR(&tmp, function); |
110 | 0 | zend_function_dtor(&tmp); |
111 | 0 | } |
112 | | |
113 | 308k | ZEND_API void zend_type_release(zend_type type, bool persistent) { |
114 | 308k | if (ZEND_TYPE_HAS_LIST(type)) { |
115 | 30.5k | zend_type *list_type; |
116 | 94.4k | ZEND_TYPE_LIST_FOREACH_MUTABLE(ZEND_TYPE_LIST(type), list_type) { |
117 | 94.4k | zend_type_release(*list_type, persistent); |
118 | 94.4k | } ZEND_TYPE_LIST_FOREACH_END(); |
119 | 30.5k | if (!ZEND_TYPE_USES_ARENA(type)) { |
120 | 0 | pefree(ZEND_TYPE_LIST(type), persistent); |
121 | 0 | } |
122 | 278k | } else if (ZEND_TYPE_HAS_NAME(type)) { |
123 | 143k | zend_string_release(ZEND_TYPE_NAME(type)); |
124 | 143k | } |
125 | 308k | } |
126 | | |
127 | 512 | void zend_free_internal_arg_info(zend_internal_function *function) { |
128 | 512 | if ((function->fn_flags & (ZEND_ACC_HAS_RETURN_TYPE|ZEND_ACC_HAS_TYPE_HINTS)) && |
129 | 512 | function->arg_info) { |
130 | | |
131 | 512 | uint32_t i; |
132 | 512 | uint32_t num_args = function->num_args + 1; |
133 | 512 | zend_internal_arg_info *arg_info = function->arg_info - 1; |
134 | | |
135 | 512 | if (function->fn_flags & ZEND_ACC_VARIADIC) { |
136 | 0 | num_args++; |
137 | 0 | } |
138 | 2.52k | for (i = 0 ; i < num_args; i++) { |
139 | 2.01k | zend_type_release(arg_info[i].type, /* persistent */ true); |
140 | 2.01k | } |
141 | 512 | free(arg_info); |
142 | 512 | } |
143 | 512 | } |
144 | | |
145 | | ZEND_API void zend_function_dtor(zval *zv) |
146 | 29.6k | { |
147 | 29.6k | zend_function *function = Z_PTR_P(zv); |
148 | | |
149 | 29.6k | if (function->type == ZEND_USER_FUNCTION) { |
150 | 16.5k | ZEND_ASSERT(function->common.function_name); |
151 | 16.5k | destroy_op_array(&function->op_array); |
152 | | /* op_arrays are allocated on arena, so we don't have to free them */ |
153 | 16.5k | } else { |
154 | 13.1k | ZEND_ASSERT(function->type == ZEND_INTERNAL_FUNCTION); |
155 | 13.1k | ZEND_ASSERT(function->common.function_name); |
156 | 13.1k | zend_string_release_ex(function->common.function_name, 1); |
157 | | |
158 | | /* For methods this will be called explicitly. */ |
159 | 13.1k | if (!function->common.scope) { |
160 | 512 | zend_free_internal_arg_info(&function->internal_function); |
161 | | |
162 | 512 | if (function->common.attributes) { |
163 | 16 | zend_hash_release(function->common.attributes); |
164 | 16 | function->common.attributes = NULL; |
165 | 16 | } |
166 | 512 | } |
167 | | |
168 | 13.1k | if (function->common.doc_comment) { |
169 | 0 | zend_string_release_ex(function->common.doc_comment, 1); |
170 | 0 | function->common.doc_comment = NULL; |
171 | 0 | } |
172 | | |
173 | 13.1k | if (!(function->common.fn_flags & ZEND_ACC_ARENA_ALLOCATED)) { |
174 | 512 | pefree(function, 1); |
175 | 512 | } |
176 | 13.1k | } |
177 | 29.6k | } |
178 | | |
179 | | ZEND_API void zend_cleanup_internal_class_data(zend_class_entry *ce) |
180 | 2.55k | { |
181 | 2.55k | if (ZEND_MAP_PTR(ce->static_members_table) && CE_STATIC_MEMBERS(ce)) { |
182 | 1.24k | zval *static_members = CE_STATIC_MEMBERS(ce); |
183 | 1.24k | zval *p = static_members; |
184 | 1.24k | zval *end = p + ce->default_static_members_count; |
185 | 1.24k | ZEND_MAP_PTR_SET(ce->static_members_table, NULL); |
186 | 3.99k | while (p != end) { |
187 | 2.74k | if (UNEXPECTED(Z_ISREF_P(p))) { |
188 | 268 | zend_property_info *prop_info; |
189 | 698 | ZEND_REF_FOREACH_TYPE_SOURCES(Z_REF_P(p), prop_info) { |
190 | 698 | if (prop_info->ce == ce && p - static_members == prop_info->offset) { |
191 | 198 | ZEND_REF_DEL_TYPE_SOURCE(Z_REF_P(p), prop_info); |
192 | 198 | break; /* stop iteration here, the array might be realloc()'ed */ |
193 | 198 | } |
194 | 698 | } ZEND_REF_FOREACH_TYPE_SOURCES_END(); |
195 | 268 | } |
196 | 2.74k | i_zval_ptr_dtor(p); |
197 | 2.74k | p++; |
198 | 2.74k | } |
199 | 1.24k | efree(static_members); |
200 | 1.24k | } |
201 | 2.55k | } |
202 | | |
203 | | static void _destroy_zend_class_traits_info(zend_class_entry *ce) |
204 | 1.11k | { |
205 | 1.11k | uint32_t i; |
206 | | |
207 | 3.47k | for (i = 0; i < ce->num_traits; i++) { |
208 | 2.35k | zend_string_release_ex(ce->trait_names[i].name, 0); |
209 | 2.35k | zend_string_release_ex(ce->trait_names[i].lc_name, 0); |
210 | 2.35k | } |
211 | 1.11k | efree(ce->trait_names); |
212 | | |
213 | 1.11k | if (ce->trait_aliases) { |
214 | 333 | i = 0; |
215 | 2.40k | while (ce->trait_aliases[i]) { |
216 | 2.07k | if (ce->trait_aliases[i]->trait_method.method_name) { |
217 | 2.07k | zend_string_release_ex(ce->trait_aliases[i]->trait_method.method_name, 0); |
218 | 2.07k | } |
219 | 2.07k | if (ce->trait_aliases[i]->trait_method.class_name) { |
220 | 606 | zend_string_release_ex(ce->trait_aliases[i]->trait_method.class_name, 0); |
221 | 606 | } |
222 | | |
223 | 2.07k | if (ce->trait_aliases[i]->alias) { |
224 | 1.92k | zend_string_release_ex(ce->trait_aliases[i]->alias, 0); |
225 | 1.92k | } |
226 | | |
227 | 2.07k | efree(ce->trait_aliases[i]); |
228 | 2.07k | i++; |
229 | 2.07k | } |
230 | | |
231 | 333 | efree(ce->trait_aliases); |
232 | 333 | } |
233 | | |
234 | 1.11k | if (ce->trait_precedences) { |
235 | 231 | uint32_t j; |
236 | | |
237 | 231 | i = 0; |
238 | 594 | while (ce->trait_precedences[i]) { |
239 | 363 | zend_string_release_ex(ce->trait_precedences[i]->trait_method.method_name, 0); |
240 | 363 | zend_string_release_ex(ce->trait_precedences[i]->trait_method.class_name, 0); |
241 | | |
242 | 1.17k | for (j = 0; j < ce->trait_precedences[i]->num_excludes; j++) { |
243 | 810 | zend_string_release_ex(ce->trait_precedences[i]->exclude_class_names[j], 0); |
244 | 810 | } |
245 | 363 | efree(ce->trait_precedences[i]); |
246 | 363 | i++; |
247 | 363 | } |
248 | 231 | efree(ce->trait_precedences); |
249 | 231 | } |
250 | 1.11k | } |
251 | | |
252 | | ZEND_API void zend_cleanup_mutable_class_data(zend_class_entry *ce) |
253 | 723 | { |
254 | 723 | zend_class_mutable_data *mutable_data = ZEND_MAP_PTR_GET_IMM(ce->mutable_data); |
255 | | |
256 | 723 | if (mutable_data) { |
257 | 723 | HashTable *constants_table; |
258 | 723 | zval *p; |
259 | | |
260 | 723 | constants_table = mutable_data->constants_table; |
261 | 723 | if (constants_table && constants_table != &ce->constants_table) { |
262 | 452 | zend_class_constant *c; |
263 | | |
264 | 3.04k | ZEND_HASH_MAP_FOREACH_PTR(constants_table, c) { |
265 | 3.04k | if (c->ce == ce || (Z_CONSTANT_FLAGS(c->value) & CONST_OWNED)) { |
266 | 950 | zval_ptr_dtor_nogc(&c->value); |
267 | 950 | } |
268 | 3.04k | } ZEND_HASH_FOREACH_END(); |
269 | 452 | zend_hash_destroy(constants_table); |
270 | 452 | mutable_data->constants_table = NULL; |
271 | 452 | } |
272 | | |
273 | 723 | p = mutable_data->default_properties_table; |
274 | 723 | if (p && p != ce->default_properties_table) { |
275 | 193 | zval *end = p + ce->default_properties_count; |
276 | | |
277 | 485 | while (p < end) { |
278 | 292 | zval_ptr_dtor_nogc(p); |
279 | 292 | p++; |
280 | 292 | } |
281 | 193 | mutable_data->default_properties_table = NULL; |
282 | 193 | } |
283 | | |
284 | 723 | if (mutable_data->backed_enum_table) { |
285 | 0 | zend_hash_release(mutable_data->backed_enum_table); |
286 | 0 | mutable_data->backed_enum_table = NULL; |
287 | 0 | } |
288 | | |
289 | 723 | ZEND_MAP_PTR_SET_IMM(ce->mutable_data, NULL); |
290 | 723 | } |
291 | 723 | } |
292 | | |
293 | | ZEND_API void destroy_zend_class(zval *zv) |
294 | 88.5k | { |
295 | 88.5k | zend_property_info *prop_info; |
296 | 88.5k | zend_class_entry *ce = Z_PTR_P(zv); |
297 | 88.5k | zend_function *fn; |
298 | | |
299 | 88.5k | if (ce->ce_flags & ZEND_ACC_IMMUTABLE) { |
300 | 27.1k | return; |
301 | 27.1k | } |
302 | | |
303 | | /* We don't increase the refcount for class aliases, |
304 | | * skip the destruction of aliases entirely. */ |
305 | 61.3k | if (UNEXPECTED(Z_TYPE_INFO_P(zv) == IS_ALIAS_PTR)) { |
306 | 46 | return; |
307 | 46 | } |
308 | | |
309 | 61.3k | if (ce->ce_flags & ZEND_ACC_FILE_CACHED) { |
310 | 0 | zend_class_constant *c; |
311 | 0 | zval *p, *end; |
312 | |
|
313 | 0 | ZEND_HASH_MAP_FOREACH_PTR(&ce->constants_table, c) { |
314 | 0 | if (c->ce == ce) { |
315 | 0 | zval_ptr_dtor_nogc(&c->value); |
316 | 0 | } |
317 | 0 | } ZEND_HASH_FOREACH_END(); |
318 | |
|
319 | 0 | if (ce->default_properties_table) { |
320 | 0 | p = ce->default_properties_table; |
321 | 0 | end = p + ce->default_properties_count; |
322 | |
|
323 | 0 | while (p < end) { |
324 | 0 | zval_ptr_dtor_nogc(p); |
325 | 0 | p++; |
326 | 0 | } |
327 | 0 | } |
328 | 0 | return; |
329 | 0 | } |
330 | | |
331 | 61.3k | ZEND_ASSERT(ce->refcount > 0); |
332 | | |
333 | 61.3k | if (--ce->refcount > 0) { |
334 | 0 | return; |
335 | 0 | } |
336 | | |
337 | 61.3k | switch (ce->type) { |
338 | 61.3k | case ZEND_USER_CLASS: |
339 | 61.3k | if (!(ce->ce_flags & ZEND_ACC_CACHED)) { |
340 | 59.0k | if (ce->parent_name && !(ce->ce_flags & ZEND_ACC_RESOLVED_PARENT)) { |
341 | 17.8k | zend_string_release_ex(ce->parent_name, 0); |
342 | 17.8k | } |
343 | | |
344 | 59.0k | zend_string_release_ex(ce->name, 0); |
345 | 59.0k | zend_string_release_ex(ce->info.user.filename, 0); |
346 | | |
347 | 59.0k | if (ce->doc_comment) { |
348 | 68 | zend_string_release_ex(ce->doc_comment, 0); |
349 | 68 | } |
350 | | |
351 | 59.0k | if (ce->attributes) { |
352 | 970 | zend_hash_release(ce->attributes); |
353 | 970 | } |
354 | | |
355 | 59.0k | if (ce->num_interfaces > 0 && !(ce->ce_flags & ZEND_ACC_RESOLVED_INTERFACES)) { |
356 | 4.28k | uint32_t i; |
357 | | |
358 | 10.2k | for (i = 0; i < ce->num_interfaces; i++) { |
359 | 5.92k | zend_string_release_ex(ce->interface_names[i].name, 0); |
360 | 5.92k | zend_string_release_ex(ce->interface_names[i].lc_name, 0); |
361 | 5.92k | } |
362 | 4.28k | efree(ce->interface_names); |
363 | 4.28k | } |
364 | | |
365 | 59.0k | if (ce->num_traits > 0) { |
366 | 1.11k | _destroy_zend_class_traits_info(ce); |
367 | 1.11k | } |
368 | 59.0k | } |
369 | | |
370 | 61.3k | if (ce->default_properties_table) { |
371 | 22.8k | zval *p = ce->default_properties_table; |
372 | 22.8k | zval *end = p + ce->default_properties_count; |
373 | | |
374 | 49.6k | while (p != end) { |
375 | 26.7k | i_zval_ptr_dtor(p); |
376 | 26.7k | p++; |
377 | 26.7k | } |
378 | 22.8k | efree(ce->default_properties_table); |
379 | 22.8k | } |
380 | 61.3k | if (ce->default_static_members_table) { |
381 | 773 | zval *p = ce->default_static_members_table; |
382 | 773 | zval *end = p + ce->default_static_members_count; |
383 | | |
384 | 2.06k | while (p != end) { |
385 | 1.29k | ZEND_ASSERT(!Z_ISREF_P(p)); |
386 | 1.29k | i_zval_ptr_dtor(p); |
387 | 1.29k | p++; |
388 | 1.29k | } |
389 | 773 | efree(ce->default_static_members_table); |
390 | 773 | } |
391 | 179k | ZEND_HASH_MAP_FOREACH_PTR(&ce->properties_info, prop_info) { |
392 | 179k | if (prop_info->ce == ce) { |
393 | 27.3k | zend_string_release_ex(prop_info->name, 0); |
394 | 27.3k | if (prop_info->doc_comment) { |
395 | 216 | zend_string_release_ex(prop_info->doc_comment, 0); |
396 | 216 | } |
397 | 27.3k | if (prop_info->attributes) { |
398 | 238 | zend_hash_release(prop_info->attributes); |
399 | 238 | } |
400 | 27.3k | zend_type_release(prop_info->type, /* persistent */ false); |
401 | 27.3k | if (prop_info->hooks) { |
402 | 5.93k | for (uint32_t i = 0; i < ZEND_PROPERTY_HOOK_COUNT; i++) { |
403 | 3.95k | if (prop_info->hooks[i]) { |
404 | 2.40k | destroy_op_array(&prop_info->hooks[i]->op_array); |
405 | 2.40k | } |
406 | 3.95k | } |
407 | 1.97k | } |
408 | 27.3k | } |
409 | 179k | } ZEND_HASH_FOREACH_END(); |
410 | 61.3k | zend_hash_destroy(&ce->properties_info); |
411 | 61.3k | zend_hash_destroy(&ce->function_table); |
412 | 61.3k | if (zend_hash_num_elements(&ce->constants_table)) { |
413 | 5.30k | zend_class_constant *c; |
414 | | |
415 | 35.6k | ZEND_HASH_MAP_FOREACH_PTR(&ce->constants_table, c) { |
416 | 35.6k | if (c->ce == ce || (Z_CONSTANT_FLAGS(c->value) & CONST_OWNED)) { |
417 | 7.24k | zval_ptr_dtor_nogc(&c->value); |
418 | 7.24k | if (c->doc_comment) { |
419 | 203 | zend_string_release_ex(c->doc_comment, 0); |
420 | 203 | } |
421 | 7.24k | if (c->attributes) { |
422 | 174 | zend_hash_release(c->attributes); |
423 | 174 | } |
424 | 7.24k | } |
425 | 35.6k | } ZEND_HASH_FOREACH_END(); |
426 | 5.30k | } |
427 | 61.3k | zend_hash_destroy(&ce->constants_table); |
428 | 61.3k | if (ce->num_interfaces > 0 && (ce->ce_flags & ZEND_ACC_RESOLVED_INTERFACES)) { |
429 | 2.07k | efree(ce->interfaces); |
430 | 2.07k | } |
431 | 61.3k | if (ce->backed_enum_table) { |
432 | 0 | zend_hash_release(ce->backed_enum_table); |
433 | 0 | } |
434 | 61.3k | break; |
435 | 0 | case ZEND_INTERNAL_CLASS: |
436 | 0 | if (ce->doc_comment) { |
437 | 0 | zend_string_release_ex(ce->doc_comment, 1); |
438 | 0 | } |
439 | |
|
440 | 0 | if (ce->backed_enum_table) { |
441 | 0 | zend_hash_release(ce->backed_enum_table); |
442 | 0 | } |
443 | 0 | if (ce->default_properties_table) { |
444 | 0 | zval *p = ce->default_properties_table; |
445 | 0 | zval *end = p + ce->default_properties_count; |
446 | |
|
447 | 0 | while (p != end) { |
448 | 0 | zval_internal_ptr_dtor(p); |
449 | 0 | p++; |
450 | 0 | } |
451 | 0 | free(ce->default_properties_table); |
452 | 0 | } |
453 | 0 | if (ce->default_static_members_table) { |
454 | 0 | zval *p = ce->default_static_members_table; |
455 | 0 | zval *end = p + ce->default_static_members_count; |
456 | |
|
457 | 0 | while (p != end) { |
458 | 0 | zval_internal_ptr_dtor(p); |
459 | 0 | p++; |
460 | 0 | } |
461 | 0 | free(ce->default_static_members_table); |
462 | 0 | } |
463 | |
|
464 | 0 | ZEND_HASH_MAP_FOREACH_PTR(&ce->properties_info, prop_info) { |
465 | 0 | if (prop_info->ce == ce) { |
466 | 0 | zend_string_release(prop_info->name); |
467 | 0 | zend_type_release(prop_info->type, /* persistent */ true); |
468 | 0 | if (prop_info->attributes) { |
469 | 0 | zend_hash_release(prop_info->attributes); |
470 | 0 | } |
471 | 0 | free(prop_info); |
472 | 0 | } |
473 | 0 | } ZEND_HASH_FOREACH_END(); |
474 | 0 | zend_hash_destroy(&ce->properties_info); |
475 | 0 | zend_string_release_ex(ce->name, 1); |
476 | | |
477 | | /* TODO: eliminate this loop for classes without functions with arg_info / attributes */ |
478 | 0 | ZEND_HASH_MAP_FOREACH_PTR(&ce->function_table, fn) { |
479 | 0 | if (fn->common.scope == ce) { |
480 | 0 | if (fn->common.fn_flags & (ZEND_ACC_HAS_RETURN_TYPE|ZEND_ACC_HAS_TYPE_HINTS)) { |
481 | 0 | zend_free_internal_arg_info(&fn->internal_function); |
482 | 0 | } |
483 | |
|
484 | 0 | if (fn->common.attributes) { |
485 | 0 | zend_hash_release(fn->common.attributes); |
486 | 0 | fn->common.attributes = NULL; |
487 | 0 | } |
488 | 0 | } |
489 | 0 | } ZEND_HASH_FOREACH_END(); |
490 | |
|
491 | 0 | zend_hash_destroy(&ce->function_table); |
492 | 0 | if (zend_hash_num_elements(&ce->constants_table)) { |
493 | 0 | zend_class_constant *c; |
494 | |
|
495 | 0 | ZEND_HASH_MAP_FOREACH_PTR(&ce->constants_table, c) { |
496 | 0 | if (c->ce == ce) { |
497 | 0 | if (Z_TYPE(c->value) == IS_CONSTANT_AST) { |
498 | | /* We marked this as IMMUTABLE, but do need to free it when the |
499 | | * class is destroyed. */ |
500 | 0 | ZEND_ASSERT(Z_ASTVAL(c->value)->kind == ZEND_AST_CONST_ENUM_INIT); |
501 | 0 | free(Z_AST(c->value)); |
502 | 0 | } else { |
503 | 0 | zval_internal_ptr_dtor(&c->value); |
504 | 0 | } |
505 | 0 | if (c->doc_comment) { |
506 | 0 | zend_string_release_ex(c->doc_comment, 1); |
507 | 0 | } |
508 | 0 | if (c->attributes) { |
509 | 0 | zend_hash_release(c->attributes); |
510 | 0 | } |
511 | 0 | } |
512 | 0 | free(c); |
513 | 0 | } ZEND_HASH_FOREACH_END(); |
514 | 0 | zend_hash_destroy(&ce->constants_table); |
515 | 0 | } |
516 | 0 | if (ce->iterator_funcs_ptr) { |
517 | 0 | free(ce->iterator_funcs_ptr); |
518 | 0 | } |
519 | 0 | if (ce->arrayaccess_funcs_ptr) { |
520 | 0 | free(ce->arrayaccess_funcs_ptr); |
521 | 0 | } |
522 | 0 | if (ce->num_interfaces > 0) { |
523 | 0 | free(ce->interfaces); |
524 | 0 | } |
525 | 0 | if (ce->properties_info_table) { |
526 | 0 | free(ce->properties_info_table); |
527 | 0 | } |
528 | 0 | if (ce->attributes) { |
529 | 0 | zend_hash_release(ce->attributes); |
530 | 0 | } |
531 | 0 | free(ce); |
532 | 0 | break; |
533 | 61.3k | } |
534 | 61.3k | } |
535 | | |
536 | | void zend_class_add_ref(zval *zv) |
537 | 0 | { |
538 | 0 | zend_class_entry *ce = Z_PTR_P(zv); |
539 | |
|
540 | 0 | if (Z_TYPE_P(zv) != IS_ALIAS_PTR && !(ce->ce_flags & ZEND_ACC_IMMUTABLE)) { |
541 | 0 | ce->refcount++; |
542 | 0 | } |
543 | 0 | } |
544 | | |
545 | | ZEND_API void zend_destroy_static_vars(zend_op_array *op_array) |
546 | 146k | { |
547 | 146k | if (ZEND_MAP_PTR(op_array->static_variables_ptr)) { |
548 | 2.58k | HashTable *ht = ZEND_MAP_PTR_GET(op_array->static_variables_ptr); |
549 | 2.58k | if (ht) { |
550 | 2.57k | zend_array_destroy(ht); |
551 | 2.57k | ZEND_MAP_PTR_SET(op_array->static_variables_ptr, NULL); |
552 | 2.57k | } |
553 | 2.58k | } |
554 | 146k | } |
555 | | |
556 | | ZEND_API void destroy_op_array(zend_op_array *op_array) |
557 | 365k | { |
558 | 365k | uint32_t i; |
559 | | |
560 | 365k | if ((op_array->fn_flags & ZEND_ACC_HEAP_RT_CACHE) |
561 | 138k | && ZEND_MAP_PTR(op_array->run_time_cache)) { |
562 | 92.5k | efree(ZEND_MAP_PTR(op_array->run_time_cache)); |
563 | 92.5k | } |
564 | | |
565 | 365k | if (op_array->function_name) { |
566 | 230k | zend_string_release_ex(op_array->function_name, 0); |
567 | 230k | } |
568 | | |
569 | 365k | if (!op_array->refcount || --(*op_array->refcount) > 0) { |
570 | 142k | return; |
571 | 142k | } |
572 | | |
573 | 223k | efree_size(op_array->refcount, sizeof(*(op_array->refcount))); |
574 | | |
575 | 223k | if (op_array->vars) { |
576 | 183k | i = op_array->last_var; |
577 | 512k | while (i > 0) { |
578 | 328k | i--; |
579 | 328k | zend_string_release_ex(op_array->vars[i], 0); |
580 | 328k | } |
581 | 183k | efree(op_array->vars); |
582 | 183k | } |
583 | | |
584 | | /* ZEND_ACC_PTR_OPS and ZEND_ACC_OVERRIDE use the same value */ |
585 | 223k | if ((op_array->fn_flags & ZEND_ACC_PTR_OPS) && !op_array->function_name) { |
586 | 27 | zend_op *op = op_array->opcodes; |
587 | 27 | zend_op *end = op + op_array->last; |
588 | 1.33k | while (op < end) { |
589 | 1.30k | if (op->opcode == ZEND_DECLARE_ATTRIBUTED_CONST) { |
590 | 349 | HashTable *attributes = Z_PTR_P(RT_CONSTANT(op+1, (op+1)->op1)); |
591 | 349 | zend_hash_release(attributes); |
592 | 349 | } |
593 | 1.30k | op++; |
594 | 1.30k | } |
595 | 27 | } |
596 | 223k | if (op_array->literals) { |
597 | 223k | zval *literal = op_array->literals; |
598 | 223k | zval *end = literal + op_array->last_literal; |
599 | 5.78M | while (literal < end) { |
600 | 5.56M | zval_ptr_dtor_nogc(literal); |
601 | 5.56M | literal++; |
602 | 5.56M | } |
603 | 223k | if (ZEND_USE_ABS_CONST_ADDR |
604 | 223k | || !(op_array->fn_flags & ZEND_ACC_DONE_PASS_TWO)) { |
605 | 0 | efree(op_array->literals); |
606 | 0 | } |
607 | 223k | } |
608 | 223k | efree(op_array->opcodes); |
609 | | |
610 | 223k | zend_string_release_ex(op_array->filename, 0); |
611 | 223k | if (op_array->doc_comment) { |
612 | 595 | zend_string_release_ex(op_array->doc_comment, 0); |
613 | 595 | } |
614 | 223k | if (op_array->attributes) { |
615 | 154k | zend_hash_release(op_array->attributes); |
616 | 154k | } |
617 | 223k | if (op_array->live_range) { |
618 | 124k | efree(op_array->live_range); |
619 | 124k | } |
620 | 223k | if (op_array->try_catch_array) { |
621 | 2.10k | efree(op_array->try_catch_array); |
622 | 2.10k | } |
623 | 223k | if (zend_extension_flags & ZEND_EXTENSIONS_HAVE_OP_ARRAY_DTOR) { |
624 | 0 | if (op_array->fn_flags & ZEND_ACC_DONE_PASS_TWO) { |
625 | 0 | zend_llist_apply_with_argument(&zend_extensions, (llist_apply_with_arg_func_t) zend_extension_op_array_dtor_handler, op_array); |
626 | 0 | } |
627 | 0 | } |
628 | 223k | if (op_array->arg_info) { |
629 | 172k | uint32_t num_args = op_array->num_args; |
630 | 172k | zend_arg_info *arg_info = op_array->arg_info; |
631 | | |
632 | 172k | if (op_array->fn_flags & ZEND_ACC_HAS_RETURN_TYPE) { |
633 | 9.02k | arg_info--; |
634 | 9.02k | num_args++; |
635 | 9.02k | } |
636 | 172k | if (op_array->fn_flags & ZEND_ACC_VARIADIC) { |
637 | 879 | num_args++; |
638 | 879 | } |
639 | 387k | for (i = 0 ; i < num_args; i++) { |
640 | 214k | if (arg_info[i].name) { |
641 | 205k | zend_string_release_ex(arg_info[i].name, 0); |
642 | 205k | } |
643 | 214k | zend_type_release(arg_info[i].type, /* persistent */ false); |
644 | 214k | } |
645 | 172k | efree(arg_info); |
646 | 172k | } |
647 | 223k | if (op_array->static_variables) { |
648 | 7.31k | zend_array_destroy(op_array->static_variables); |
649 | 7.31k | } |
650 | 223k | if (op_array->num_dynamic_func_defs) { |
651 | 279k | for (i = 0; i < op_array->num_dynamic_func_defs; i++) { |
652 | 182k | destroy_op_array(op_array->dynamic_func_defs[i]); |
653 | 182k | } |
654 | 97.7k | efree(op_array->dynamic_func_defs); |
655 | 97.7k | } |
656 | 223k | } |
657 | | |
658 | | static void zend_update_extended_stmts(zend_op_array *op_array) |
659 | 0 | { |
660 | 0 | zend_op *opline = op_array->opcodes, *end=opline+op_array->last; |
661 | |
|
662 | 0 | while (opline<end) { |
663 | 0 | if (opline->opcode == ZEND_EXT_STMT) { |
664 | 0 | if (opline+1<end) { |
665 | 0 | if ((opline+1)->opcode == ZEND_EXT_STMT) { |
666 | 0 | opline->opcode = ZEND_NOP; |
667 | 0 | opline++; |
668 | 0 | continue; |
669 | 0 | } |
670 | 0 | if (opline+1<end) { |
671 | 0 | opline->lineno = (opline+1)->lineno; |
672 | 0 | } |
673 | 0 | } else { |
674 | 0 | opline->opcode = ZEND_NOP; |
675 | 0 | } |
676 | 0 | } |
677 | 0 | opline++; |
678 | 0 | } |
679 | 0 | } |
680 | | |
681 | | static void zend_extension_op_array_handler(zend_extension *extension, zend_op_array *op_array) |
682 | 0 | { |
683 | 0 | if (extension->op_array_handler) { |
684 | 0 | extension->op_array_handler(op_array); |
685 | 0 | } |
686 | 0 | } |
687 | | |
688 | | static void zend_check_finally_breakout(zend_op_array *op_array, uint32_t op_num, uint32_t dst_num) |
689 | 851 | { |
690 | 3.39k | for (uint32_t i = 0; i < op_array->last_try_catch; i++) { |
691 | 2.59k | if ((op_num < op_array->try_catch_array[i].finally_op || |
692 | 908 | op_num >= op_array->try_catch_array[i].finally_end) |
693 | 2.39k | && (dst_num >= op_array->try_catch_array[i].finally_op && |
694 | 478 | dst_num <= op_array->try_catch_array[i].finally_end)) { |
695 | 19 | CG(in_compilation) = 1; |
696 | 19 | CG(active_op_array) = op_array; |
697 | 19 | CG(zend_lineno) = op_array->opcodes[op_num].lineno; |
698 | 19 | zend_error_noreturn(E_COMPILE_ERROR, "jump into a finally block is disallowed"); |
699 | 2.57k | } else if ((op_num >= op_array->try_catch_array[i].finally_op |
700 | 902 | && op_num <= op_array->try_catch_array[i].finally_end) |
701 | 197 | && (dst_num > op_array->try_catch_array[i].finally_end |
702 | 182 | || dst_num < op_array->try_catch_array[i].finally_op)) { |
703 | 24 | CG(in_compilation) = 1; |
704 | 24 | CG(active_op_array) = op_array; |
705 | 24 | CG(zend_lineno) = op_array->opcodes[op_num].lineno; |
706 | 24 | zend_error_noreturn(E_COMPILE_ERROR, "jump out of a finally block is disallowed"); |
707 | 24 | } |
708 | 2.59k | } |
709 | 851 | } |
710 | | |
711 | 1.23k | static uint32_t zend_get_brk_cont_target(const zend_op *opline) { |
712 | 1.23k | int nest_levels = opline->op2.num; |
713 | 1.23k | int array_offset = opline->op1.num; |
714 | 1.23k | zend_brk_cont_element *jmp_to; |
715 | 1.48k | do { |
716 | 1.48k | jmp_to = &CG(context).brk_cont_array[array_offset]; |
717 | 1.48k | if (nest_levels > 1) { |
718 | 248 | array_offset = jmp_to->parent; |
719 | 248 | } |
720 | 1.48k | } while (--nest_levels > 0); |
721 | | |
722 | 1.23k | return opline->opcode == ZEND_BRK ? jmp_to->brk : jmp_to->cont; |
723 | 1.23k | } |
724 | | |
725 | | static void emit_live_range_raw( |
726 | 15.8M | zend_op_array *op_array, uint32_t var_num, uint32_t kind, uint32_t start, uint32_t end) { |
727 | 15.8M | zend_live_range *range; |
728 | | |
729 | 15.8M | op_array->last_live_range++; |
730 | 15.8M | op_array->live_range = erealloc(op_array->live_range, |
731 | 15.8M | sizeof(zend_live_range) * op_array->last_live_range); |
732 | | |
733 | 15.8M | ZEND_ASSERT(start < end); |
734 | 15.8M | range = &op_array->live_range[op_array->last_live_range - 1]; |
735 | 15.8M | range->var = EX_NUM_TO_VAR(op_array->last_var + var_num); |
736 | 15.8M | range->var |= kind; |
737 | 15.8M | range->start = start; |
738 | 15.8M | range->end = end; |
739 | 15.8M | } |
740 | | |
741 | | static void emit_live_range( |
742 | | zend_op_array *op_array, uint32_t var_num, uint32_t start, uint32_t end, |
743 | 15.7M | zend_needs_live_range_cb needs_live_range) { |
744 | 15.7M | zend_op *def_opline = &op_array->opcodes[start], *orig_def_opline = def_opline; |
745 | 15.7M | zend_op *use_opline = &op_array->opcodes[end]; |
746 | 15.7M | uint32_t kind; |
747 | | |
748 | 15.7M | switch (def_opline->opcode) { |
749 | | /* These should never be the first def. */ |
750 | 0 | case ZEND_ADD_ARRAY_ELEMENT: |
751 | 0 | case ZEND_ADD_ARRAY_UNPACK: |
752 | 0 | case ZEND_ROPE_ADD: |
753 | 0 | ZEND_UNREACHABLE(); |
754 | 0 | return; |
755 | | /* Result is boolean, it doesn't have to be destroyed. */ |
756 | 16 | case ZEND_JMPZ_EX: |
757 | 26 | case ZEND_JMPNZ_EX: |
758 | 717 | case ZEND_BOOL: |
759 | 3.26k | case ZEND_BOOL_NOT: |
760 | | /* Classes don't have to be destroyed. */ |
761 | 3.64k | case ZEND_FETCH_CLASS: |
762 | 3.64k | case ZEND_DECLARE_ANON_CLASS: |
763 | | /* FAST_CALLs don't have to be destroyed. */ |
764 | 9.40k | case ZEND_FAST_CALL: |
765 | 9.40k | return; |
766 | 11.5M | case ZEND_BEGIN_SILENCE: |
767 | 11.5M | kind = ZEND_LIVE_SILENCE; |
768 | 11.5M | start++; |
769 | 11.5M | break; |
770 | 47.2k | case ZEND_ROPE_INIT: |
771 | 47.2k | kind = ZEND_LIVE_ROPE; |
772 | | /* ROPE live ranges include the generating opcode. */ |
773 | 47.2k | def_opline--; |
774 | 47.2k | break; |
775 | 29.0k | case ZEND_FE_RESET_R: |
776 | 31.0k | case ZEND_FE_RESET_RW: |
777 | 31.0k | kind = ZEND_LIVE_LOOP; |
778 | 31.0k | start++; |
779 | 31.0k | break; |
780 | | /* Objects created via ZEND_NEW are only fully initialized |
781 | | * after the DO_FCALL (constructor call). |
782 | | * We are creating two live-ranges: ZEND_LINE_NEW for uninitialized |
783 | | * part, and ZEND_LIVE_TMPVAR for initialized. |
784 | | */ |
785 | 120k | case ZEND_NEW: |
786 | 120k | { |
787 | 120k | int level = 0; |
788 | 120k | uint32_t orig_start = start; |
789 | | |
790 | 295k | while (def_opline + 1 < use_opline) { |
791 | 295k | def_opline++; |
792 | 295k | start++; |
793 | 295k | switch (def_opline->opcode) { |
794 | 1.09k | case ZEND_INIT_FCALL: |
795 | 3.09k | case ZEND_INIT_FCALL_BY_NAME: |
796 | 3.87k | case ZEND_INIT_NS_FCALL_BY_NAME: |
797 | 4.65k | case ZEND_INIT_DYNAMIC_CALL: |
798 | 4.68k | case ZEND_INIT_USER_CALL: |
799 | 5.02k | case ZEND_INIT_METHOD_CALL: |
800 | 5.57k | case ZEND_INIT_STATIC_METHOD_CALL: |
801 | 5.63k | case ZEND_INIT_PARENT_PROPERTY_HOOK_CALL: |
802 | 7.49k | case ZEND_NEW: |
803 | 7.49k | level++; |
804 | 7.49k | break; |
805 | 124k | case ZEND_DO_FCALL: |
806 | 125k | case ZEND_DO_FCALL_BY_NAME: |
807 | 125k | case ZEND_DO_ICALL: |
808 | 126k | case ZEND_DO_UCALL: |
809 | 126k | if (level == 0) { |
810 | 120k | goto done; |
811 | 120k | } |
812 | 6.19k | level--; |
813 | 6.19k | break; |
814 | 295k | } |
815 | 295k | } |
816 | 120k | done: |
817 | 120k | emit_live_range_raw(op_array, var_num, ZEND_LIVE_NEW, orig_start + 1, start + 1); |
818 | 120k | if (start + 1 == end) { |
819 | | /* Trivial live-range, no need to store it. */ |
820 | 118k | return; |
821 | 118k | } |
822 | 120k | } |
823 | 2.11k | ZEND_FALLTHROUGH; |
824 | 3.96M | default: |
825 | 3.96M | start++; |
826 | 3.96M | kind = ZEND_LIVE_TMPVAR; |
827 | | |
828 | | /* Check hook to determine whether a live range is necessary, |
829 | | * e.g. based on type info. */ |
830 | 3.96M | if (needs_live_range && !needs_live_range(op_array, orig_def_opline)) { |
831 | 3.13k | return; |
832 | 3.13k | } |
833 | 3.95M | break; |
834 | 3.95M | case ZEND_COPY_TMP: |
835 | 51.5k | { |
836 | | /* COPY_TMP has a split live-range: One from the definition until the use in |
837 | | * "null" branch, and another from the start of the "non-null" branch to the |
838 | | * FREE opcode. */ |
839 | 51.5k | uint32_t rt_var_num = EX_NUM_TO_VAR(op_array->last_var + var_num); |
840 | 51.5k | if (needs_live_range && !needs_live_range(op_array, orig_def_opline)) { |
841 | 22 | return; |
842 | 22 | } |
843 | | |
844 | 51.5k | kind = ZEND_LIVE_TMPVAR; |
845 | 51.5k | if (use_opline->opcode != ZEND_FREE) { |
846 | | /* This can happen if one branch of the coalesce has been optimized away. |
847 | | * In this case we should emit a normal live-range instead. */ |
848 | 2.61k | start++; |
849 | 2.61k | break; |
850 | 2.61k | } |
851 | | |
852 | 48.9k | zend_op *block_start_op = use_opline; |
853 | 8.85M | while ((block_start_op-1)->opcode == ZEND_FREE) { |
854 | 8.80M | block_start_op--; |
855 | 8.80M | } |
856 | | |
857 | 48.9k | start = block_start_op - op_array->opcodes; |
858 | 48.9k | if (start != end) { |
859 | 41.3k | emit_live_range_raw(op_array, var_num, kind, start, end); |
860 | 41.3k | } |
861 | | |
862 | 17.8M | do { |
863 | 17.8M | use_opline--; |
864 | | |
865 | | /* The use might have been optimized away, in which case we will hit the def |
866 | | * instead. */ |
867 | 17.8M | if (use_opline->opcode == ZEND_COPY_TMP && use_opline->result.var == rt_var_num) { |
868 | 0 | start = def_opline + 1 - op_array->opcodes; |
869 | 0 | emit_live_range_raw(op_array, var_num, kind, start, end); |
870 | 0 | return; |
871 | 0 | } |
872 | 17.8M | } while (!( |
873 | 17.8M | ((use_opline->op1_type & (IS_TMP_VAR|IS_VAR)) && use_opline->op1.var == rt_var_num) || |
874 | 17.8M | ((use_opline->op2_type & (IS_TMP_VAR|IS_VAR)) && use_opline->op2.var == rt_var_num) |
875 | 17.8M | )); |
876 | | |
877 | 48.9k | start = def_opline + 1 - op_array->opcodes; |
878 | 48.9k | end = use_opline - op_array->opcodes; |
879 | 48.9k | emit_live_range_raw(op_array, var_num, kind, start, end); |
880 | 48.9k | return; |
881 | 48.9k | } |
882 | 15.7M | } |
883 | | |
884 | 15.6M | emit_live_range_raw(op_array, var_num, kind, start, end); |
885 | 15.6M | } |
886 | | |
887 | 31.0M | static bool is_fake_def(zend_op *opline) { |
888 | | /* These opcodes only modify the result, not create it. */ |
889 | 31.0M | return opline->opcode == ZEND_ROPE_ADD |
890 | 30.4M | || opline->opcode == ZEND_ADD_ARRAY_ELEMENT |
891 | 30.4M | || opline->opcode == ZEND_ADD_ARRAY_UNPACK; |
892 | 31.0M | } |
893 | | |
894 | 24.9M | static bool keeps_op1_alive(zend_op *opline) { |
895 | | /* These opcodes don't consume their OP1 operand, |
896 | | * it is later freed by something else. */ |
897 | 24.9M | if (opline->opcode == ZEND_CASE |
898 | 24.9M | || opline->opcode == ZEND_CASE_STRICT |
899 | 24.9M | || opline->opcode == ZEND_SWITCH_LONG |
900 | 24.9M | || opline->opcode == ZEND_SWITCH_STRING |
901 | 24.9M | || opline->opcode == ZEND_MATCH |
902 | 24.9M | || opline->opcode == ZEND_MATCH_ERROR |
903 | 24.9M | || opline->opcode == ZEND_FETCH_LIST_R |
904 | 24.9M | || opline->opcode == ZEND_FETCH_LIST_W |
905 | 24.9M | || opline->opcode == ZEND_COPY_TMP |
906 | 24.9M | || opline->opcode == ZEND_EXT_STMT) { |
907 | 132 | return true; |
908 | 132 | } |
909 | 24.9M | ZEND_ASSERT(opline->opcode != ZEND_FE_FETCH_R |
910 | 24.9M | && opline->opcode != ZEND_FE_FETCH_RW |
911 | 24.9M | && opline->opcode != ZEND_VERIFY_RETURN_TYPE |
912 | 24.9M | && opline->opcode != ZEND_BIND_LEXICAL |
913 | 24.9M | && opline->opcode != ZEND_ROPE_ADD); |
914 | 24.9M | return false; |
915 | 24.9M | } |
916 | | |
917 | | /* Live ranges must be sorted by increasing start opline */ |
918 | 8.32M | static int cmp_live_range(const zend_live_range *a, const zend_live_range *b) { |
919 | 8.32M | return a->start - b->start; |
920 | 8.32M | } |
921 | 9.53M | static void swap_live_range(zend_live_range *a, zend_live_range *b) { |
922 | 9.53M | uint32_t tmp; |
923 | 9.53M | tmp = a->var; |
924 | 9.53M | a->var = b->var; |
925 | 9.53M | b->var = tmp; |
926 | 9.53M | tmp = a->start; |
927 | 9.53M | a->start = b->start; |
928 | 9.53M | b->start = tmp; |
929 | 9.53M | tmp = a->end; |
930 | 9.53M | a->end = b->end; |
931 | 9.53M | b->end = tmp; |
932 | 9.53M | } |
933 | | |
934 | | static void zend_calc_live_ranges( |
935 | 1.20M | zend_op_array *op_array, zend_needs_live_range_cb needs_live_range) { |
936 | 1.20M | uint32_t opnum = op_array->last; |
937 | 1.20M | zend_op *opline = &op_array->opcodes[opnum]; |
938 | 1.20M | ALLOCA_FLAG(use_heap) |
939 | 1.20M | uint32_t var_offset = op_array->last_var; |
940 | 1.20M | uint32_t *last_use = do_alloca(sizeof(uint32_t) * op_array->T, use_heap); |
941 | 1.20M | memset(last_use, -1, sizeof(uint32_t) * op_array->T); |
942 | | |
943 | 1.20M | ZEND_ASSERT(!op_array->live_range); |
944 | 60.6M | while (opnum > 0) { |
945 | 59.4M | opnum--; |
946 | 59.4M | opline--; |
947 | | |
948 | | /* SEPARATE always redeclares its op1. For the purposes of live-ranges, |
949 | | * its declaration is irrelevant. Don't terminate the current live-range |
950 | | * to avoid breaking special handling of COPY_TMP. */ |
951 | 59.4M | if (opline->opcode == ZEND_SEPARATE) { |
952 | 2.94k | ZEND_ASSERT(opline->op1.var == opline->result.var); |
953 | 2.94k | continue; |
954 | 2.94k | } |
955 | | |
956 | 59.4M | if ((opline->result_type & (IS_TMP_VAR|IS_VAR)) && !is_fake_def(opline)) { |
957 | 30.3M | uint32_t var_num = EX_VAR_TO_NUM(opline->result.var) - var_offset; |
958 | | /* Defs without uses can occur for two reasons: Either because the result is |
959 | | * genuinely unused (e.g. omitted FREE opcode for an unused boolean result), or |
960 | | * because there are multiple defining opcodes (e.g. JMPZ_EX and QM_ASSIGN), in |
961 | | * which case the last one starts the live range. As such, we can simply ignore |
962 | | * missing uses here. */ |
963 | 30.3M | if (EXPECTED(last_use[var_num] != (uint32_t) -1)) { |
964 | | /* Skip trivial live-range */ |
965 | 28.1M | if (opnum + 1 != last_use[var_num]) { |
966 | 15.7M | uint32_t num; |
967 | | |
968 | 15.7M | #if 1 |
969 | | /* OP_DATA uses only op1 operand */ |
970 | 15.7M | ZEND_ASSERT(opline->opcode != ZEND_OP_DATA); |
971 | 15.7M | num = opnum; |
972 | | #else |
973 | | /* OP_DATA is really part of the previous opcode. */ |
974 | | num = opnum - (opline->opcode == ZEND_OP_DATA); |
975 | | #endif |
976 | 15.7M | emit_live_range(op_array, var_num, num, last_use[var_num], needs_live_range); |
977 | 15.7M | } |
978 | 28.1M | last_use[var_num] = (uint32_t) -1; |
979 | 28.1M | } |
980 | 30.3M | } |
981 | | |
982 | 59.4M | if ((opline->op1_type & (IS_TMP_VAR|IS_VAR))) { |
983 | 25.7M | uint32_t var_num = EX_VAR_TO_NUM(opline->op1.var) - var_offset; |
984 | 25.7M | if (EXPECTED(last_use[var_num] == (uint32_t) -1)) { |
985 | 24.9M | if (EXPECTED(!keeps_op1_alive(opline))) { |
986 | | /* OP_DATA is really part of the previous opcode. */ |
987 | 24.9M | last_use[var_num] = opnum - (opline->opcode == ZEND_OP_DATA); |
988 | 24.9M | } |
989 | 24.9M | } |
990 | 25.7M | } |
991 | 59.4M | if (opline->op2_type & (IS_TMP_VAR|IS_VAR)) { |
992 | 3.28M | uint32_t var_num = EX_VAR_TO_NUM(opline->op2.var) - var_offset; |
993 | 3.28M | if (UNEXPECTED(opline->opcode == ZEND_FE_FETCH_R |
994 | 3.28M | || opline->opcode == ZEND_FE_FETCH_RW)) { |
995 | | /* OP2 of FE_FETCH is actually a def, not a use. */ |
996 | 949 | if (last_use[var_num] != (uint32_t) -1) { |
997 | 949 | if (opnum + 1 != last_use[var_num]) { |
998 | 757 | emit_live_range( |
999 | 757 | op_array, var_num, opnum, last_use[var_num], needs_live_range); |
1000 | 757 | } |
1001 | 949 | last_use[var_num] = (uint32_t) -1; |
1002 | 949 | } |
1003 | 3.28M | } else if (EXPECTED(last_use[var_num] == (uint32_t) -1)) { |
1004 | 3.23M | #if 1 |
1005 | | /* OP_DATA uses only op1 operand */ |
1006 | 3.23M | ZEND_ASSERT(opline->opcode != ZEND_OP_DATA); |
1007 | 3.23M | last_use[var_num] = opnum; |
1008 | | #else |
1009 | | /* OP_DATA is really part of the previous opcode. */ |
1010 | | last_use[var_num] = opnum - (opline->opcode == ZEND_OP_DATA); |
1011 | | #endif |
1012 | 3.23M | } |
1013 | 3.28M | } |
1014 | 59.4M | } |
1015 | | |
1016 | 1.20M | if (op_array->last_live_range > 1) { |
1017 | 646k | zend_live_range *r1 = op_array->live_range; |
1018 | 646k | zend_live_range *r2 = r1 + op_array->last_live_range - 1; |
1019 | | |
1020 | | /* In most cases we need just revert the array */ |
1021 | 8.23M | while (r1 < r2) { |
1022 | 7.58M | swap_live_range(r1, r2); |
1023 | 7.58M | r1++; |
1024 | 7.58M | r2--; |
1025 | 7.58M | } |
1026 | | |
1027 | 646k | r1 = op_array->live_range; |
1028 | 646k | r2 = r1 + op_array->last_live_range - 1; |
1029 | 14.7M | while (r1 < r2) { |
1030 | 14.1M | if (r1->start > (r1+1)->start) { |
1031 | 2.55k | zend_sort(r1, r2 - r1 + 1, sizeof(zend_live_range), |
1032 | 2.55k | (compare_func_t) cmp_live_range, (swap_func_t) swap_live_range); |
1033 | 2.55k | break; |
1034 | 2.55k | } |
1035 | 14.1M | r1++; |
1036 | 14.1M | } |
1037 | 646k | } |
1038 | | |
1039 | 1.20M | free_alloca(last_use, use_heap); |
1040 | 1.20M | } |
1041 | | |
1042 | | ZEND_API void zend_recalc_live_ranges( |
1043 | 52.9k | zend_op_array *op_array, zend_needs_live_range_cb needs_live_range) { |
1044 | | /* We assume that we never create live-ranges where there were none before. */ |
1045 | 52.9k | ZEND_ASSERT(op_array->live_range); |
1046 | 52.9k | efree(op_array->live_range); |
1047 | 52.9k | op_array->live_range = NULL; |
1048 | 52.9k | op_array->last_live_range = 0; |
1049 | 52.9k | zend_calc_live_ranges(op_array, needs_live_range); |
1050 | 52.9k | } |
1051 | | |
1052 | | ZEND_API void pass_two(zend_op_array *op_array) |
1053 | 1.14M | { |
1054 | 1.14M | zend_op *opline, *end; |
1055 | | |
1056 | 1.14M | if (!ZEND_USER_CODE(op_array->type)) { |
1057 | 0 | return; |
1058 | 0 | } |
1059 | 1.14M | if (CG(compiler_options) & ZEND_COMPILE_EXTENDED_STMT) { |
1060 | 0 | zend_update_extended_stmts(op_array); |
1061 | 0 | } |
1062 | 1.14M | if (CG(compiler_options) & ZEND_COMPILE_HANDLE_OP_ARRAY) { |
1063 | 1.14M | if (zend_extension_flags & ZEND_EXTENSIONS_HAVE_OP_ARRAY_HANDLER) { |
1064 | 0 | zend_llist_apply_with_argument(&zend_extensions, (llist_apply_with_arg_func_t) zend_extension_op_array_handler, op_array); |
1065 | 0 | } |
1066 | 1.14M | } |
1067 | | |
1068 | 1.14M | if (CG(context).vars_size != op_array->last_var) { |
1069 | 1.07M | op_array->vars = (zend_string**) erealloc(op_array->vars, sizeof(zend_string*)*op_array->last_var); |
1070 | 1.07M | CG(context).vars_size = op_array->last_var; |
1071 | 1.07M | } |
1072 | | |
1073 | | #if ZEND_USE_ABS_CONST_ADDR |
1074 | | if (CG(context).opcodes_size != op_array->last) { |
1075 | | op_array->opcodes = (zend_op *) erealloc(op_array->opcodes, sizeof(zend_op)*op_array->last); |
1076 | | CG(context).opcodes_size = op_array->last; |
1077 | | } |
1078 | | if (CG(context).literals_size != op_array->last_literal) { |
1079 | | op_array->literals = (zval*)erealloc(op_array->literals, sizeof(zval) * op_array->last_literal); |
1080 | | CG(context).literals_size = op_array->last_literal; |
1081 | | } |
1082 | | #else |
1083 | 1.14M | op_array->opcodes = (zend_op *) erealloc(op_array->opcodes, |
1084 | 1.14M | ZEND_MM_ALIGNED_SIZE_EX(sizeof(zend_op) * op_array->last, 16) + |
1085 | 1.14M | sizeof(zval) * op_array->last_literal); |
1086 | 1.14M | if (op_array->literals) { |
1087 | 1.14M | memcpy(((char*)op_array->opcodes) + ZEND_MM_ALIGNED_SIZE_EX(sizeof(zend_op) * op_array->last, 16), |
1088 | 1.14M | op_array->literals, sizeof(zval) * op_array->last_literal); |
1089 | 1.14M | efree(op_array->literals); |
1090 | 1.14M | op_array->literals = (zval*)(((char*)op_array->opcodes) + ZEND_MM_ALIGNED_SIZE_EX(sizeof(zend_op) * op_array->last, 16)); |
1091 | 1.14M | } |
1092 | 1.14M | CG(context).opcodes_size = op_array->last; |
1093 | 1.14M | CG(context).literals_size = op_array->last_literal; |
1094 | 1.14M | #endif |
1095 | | |
1096 | 1.14M | op_array->T += ZEND_OBSERVER_ENABLED; // reserve last temporary for observers if enabled |
1097 | | |
1098 | | /* Needs to be set directly after the opcode/literal reallocation, to ensure destruction |
1099 | | * happens correctly if any of the following fixups generate a fatal error. */ |
1100 | 1.14M | op_array->fn_flags |= ZEND_ACC_DONE_PASS_TWO; |
1101 | | |
1102 | 1.14M | opline = op_array->opcodes; |
1103 | 1.14M | end = opline + op_array->last; |
1104 | 58.6M | while (opline < end) { |
1105 | 57.4M | switch (opline->opcode) { |
1106 | 5.62k | case ZEND_RECV_INIT: |
1107 | 5.62k | { |
1108 | 5.62k | zval *val = CT_CONSTANT(opline->op2); |
1109 | 5.62k | if (Z_TYPE_P(val) == IS_CONSTANT_AST) { |
1110 | 2.38k | uint32_t slot = ZEND_MM_ALIGNED_SIZE_EX(op_array->cache_size, 8); |
1111 | 2.38k | Z_CACHE_SLOT_P(val) = slot; |
1112 | 2.38k | op_array->cache_size += sizeof(zval); |
1113 | 2.38k | } |
1114 | 5.62k | } |
1115 | 5.62k | break; |
1116 | 7.86k | case ZEND_FAST_CALL: |
1117 | 7.86k | opline->op1.opline_num = op_array->try_catch_array[opline->op1.num].finally_op; |
1118 | 7.86k | ZEND_PASS_TWO_UPDATE_JMP_TARGET(op_array, opline, opline->op1); |
1119 | 7.86k | break; |
1120 | 715 | case ZEND_BRK: |
1121 | 1.23k | case ZEND_CONT: |
1122 | 1.23k | { |
1123 | 1.23k | uint32_t jmp_target = zend_get_brk_cont_target(opline); |
1124 | | |
1125 | 1.23k | if (op_array->fn_flags & ZEND_ACC_HAS_FINALLY_BLOCK) { |
1126 | 195 | zend_check_finally_breakout(op_array, opline - op_array->opcodes, jmp_target); |
1127 | 195 | } |
1128 | 1.23k | opline->opcode = ZEND_JMP; |
1129 | 1.23k | opline->op1.opline_num = jmp_target; |
1130 | 1.23k | opline->op2.num = 0; |
1131 | 1.23k | ZEND_PASS_TWO_UPDATE_JMP_TARGET(op_array, opline, opline->op1); |
1132 | 1.23k | } |
1133 | 1.23k | break; |
1134 | 989 | case ZEND_GOTO: |
1135 | 989 | zend_resolve_goto_label(op_array, opline); |
1136 | 989 | if (op_array->fn_flags & ZEND_ACC_HAS_FINALLY_BLOCK) { |
1137 | 656 | zend_check_finally_breakout(op_array, opline - op_array->opcodes, opline->op1.opline_num); |
1138 | 656 | } |
1139 | 989 | ZEND_FALLTHROUGH; |
1140 | 571k | case ZEND_JMP: |
1141 | 571k | ZEND_PASS_TWO_UPDATE_JMP_TARGET(op_array, opline, opline->op1); |
1142 | 571k | break; |
1143 | 31.8k | case ZEND_JMPZ: |
1144 | 97.8k | case ZEND_JMPNZ: |
1145 | 103k | case ZEND_JMPZ_EX: |
1146 | 107k | case ZEND_JMPNZ_EX: |
1147 | 110k | case ZEND_JMP_SET: |
1148 | 1.75M | case ZEND_COALESCE: |
1149 | 1.76M | case ZEND_FE_RESET_R: |
1150 | 1.76M | case ZEND_FE_RESET_RW: |
1151 | 1.81M | case ZEND_JMP_NULL: |
1152 | 1.81M | case ZEND_BIND_INIT_STATIC_OR_JMP: |
1153 | 2.26M | case ZEND_JMP_FRAMELESS: |
1154 | 2.26M | ZEND_PASS_TWO_UPDATE_JMP_TARGET(op_array, opline, opline->op2); |
1155 | 2.26M | break; |
1156 | 13.5k | case ZEND_ASSERT_CHECK: |
1157 | 13.5k | { |
1158 | | /* If result of assert is unused, result of check is unused as well */ |
1159 | 13.5k | zend_op *call = &op_array->opcodes[opline->op2.opline_num - 1]; |
1160 | 13.5k | if (call->opcode == ZEND_EXT_FCALL_END) { |
1161 | 0 | call--; |
1162 | 0 | } |
1163 | 13.5k | if (call->result_type == IS_UNUSED) { |
1164 | 4.06k | opline->result_type = IS_UNUSED; |
1165 | 4.06k | } |
1166 | 13.5k | ZEND_PASS_TWO_UPDATE_JMP_TARGET(op_array, opline, opline->op2); |
1167 | 13.5k | break; |
1168 | 1.81M | } |
1169 | 16.6k | case ZEND_FE_FETCH_R: |
1170 | 17.8k | case ZEND_FE_FETCH_RW: |
1171 | | /* absolute index to relative offset */ |
1172 | 17.8k | opline->extended_value = ZEND_OPLINE_NUM_TO_OFFSET(op_array, opline, opline->extended_value); |
1173 | 17.8k | break; |
1174 | 38.7k | case ZEND_CATCH: |
1175 | 38.7k | if (!(opline->extended_value & ZEND_LAST_CATCH)) { |
1176 | 6.10k | ZEND_PASS_TWO_UPDATE_JMP_TARGET(op_array, opline, opline->op2); |
1177 | 6.10k | } |
1178 | 38.7k | break; |
1179 | 1.17M | case ZEND_RETURN: |
1180 | 1.17M | case ZEND_RETURN_BY_REF: |
1181 | 1.17M | if (op_array->fn_flags & ZEND_ACC_GENERATOR) { |
1182 | 13.7k | opline->opcode = ZEND_GENERATOR_RETURN; |
1183 | 13.7k | } |
1184 | 1.17M | break; |
1185 | 117 | case ZEND_SWITCH_LONG: |
1186 | 1.74k | case ZEND_SWITCH_STRING: |
1187 | 2.72k | case ZEND_MATCH: |
1188 | 2.72k | { |
1189 | | /* absolute indexes to relative offsets */ |
1190 | 2.72k | HashTable *jumptable = Z_ARRVAL_P(CT_CONSTANT(opline->op2)); |
1191 | 2.72k | zval *zv; |
1192 | 19.2k | ZEND_HASH_FOREACH_VAL(jumptable, zv) { |
1193 | 19.2k | Z_LVAL_P(zv) = ZEND_OPLINE_NUM_TO_OFFSET(op_array, opline, Z_LVAL_P(zv)); |
1194 | 19.2k | } ZEND_HASH_FOREACH_END(); |
1195 | | |
1196 | 2.72k | opline->extended_value = ZEND_OPLINE_NUM_TO_OFFSET(op_array, opline, opline->extended_value); |
1197 | 2.72k | break; |
1198 | 1.74k | } |
1199 | 57.4M | } |
1200 | 57.4M | if (opline->op1_type == IS_CONST) { |
1201 | 3.96M | ZEND_PASS_TWO_UPDATE_CONSTANT(op_array, opline, opline->op1); |
1202 | 53.5M | } else if (opline->op1_type & (IS_VAR|IS_TMP_VAR)) { |
1203 | 25.0M | opline->op1.var = EX_NUM_TO_VAR(op_array->last_var + opline->op1.var); |
1204 | 25.0M | } |
1205 | 57.4M | if (opline->op2_type == IS_CONST) { |
1206 | 10.8M | ZEND_PASS_TWO_UPDATE_CONSTANT(op_array, opline, opline->op2); |
1207 | 46.6M | } else if (opline->op2_type & (IS_VAR|IS_TMP_VAR)) { |
1208 | 2.93M | opline->op2.var = EX_NUM_TO_VAR(op_array->last_var + opline->op2.var); |
1209 | 2.93M | } |
1210 | 57.4M | if (opline->result_type & (IS_VAR|IS_TMP_VAR)) { |
1211 | 30.0M | opline->result.var = EX_NUM_TO_VAR(op_array->last_var + opline->result.var); |
1212 | 30.0M | } |
1213 | 57.4M | ZEND_VM_SET_OPCODE_HANDLER(opline); |
1214 | 57.4M | opline++; |
1215 | 57.4M | } |
1216 | | |
1217 | 1.14M | zend_calc_live_ranges(op_array, NULL); |
1218 | | |
1219 | 1.14M | return; |
1220 | 1.14M | } |
1221 | | |
1222 | | ZEND_API unary_op_type get_unary_op(int opcode) |
1223 | 57.4k | { |
1224 | 57.4k | switch (opcode) { |
1225 | 4.45k | case ZEND_BW_NOT: |
1226 | 4.45k | return (unary_op_type) bitwise_not_function; |
1227 | 50.7k | case ZEND_BOOL_NOT: |
1228 | 50.7k | return (unary_op_type) boolean_not_function; |
1229 | 2.14k | default: |
1230 | 2.14k | return (unary_op_type) NULL; |
1231 | 57.4k | } |
1232 | 57.4k | } |
1233 | | |
1234 | | ZEND_API binary_op_type get_binary_op(int opcode) |
1235 | 141k | { |
1236 | 141k | switch (opcode) { |
1237 | 9.35k | case ZEND_ADD: |
1238 | 9.35k | return (binary_op_type) add_function; |
1239 | 10.2k | case ZEND_SUB: |
1240 | 10.2k | return (binary_op_type) sub_function; |
1241 | 40.2k | case ZEND_MUL: |
1242 | 40.2k | return (binary_op_type) mul_function; |
1243 | 5.67k | case ZEND_POW: |
1244 | 5.67k | return (binary_op_type) pow_function; |
1245 | 6.17k | case ZEND_DIV: |
1246 | 6.17k | return (binary_op_type) div_function; |
1247 | 2.24k | case ZEND_MOD: |
1248 | 2.24k | return (binary_op_type) mod_function; |
1249 | 1.13k | case ZEND_SL: |
1250 | 1.13k | return (binary_op_type) shift_left_function; |
1251 | 1.58k | case ZEND_SR: |
1252 | 1.58k | return (binary_op_type) shift_right_function; |
1253 | 125 | case ZEND_FAST_CONCAT: |
1254 | 9.81k | case ZEND_CONCAT: |
1255 | 9.81k | return (binary_op_type) concat_function; |
1256 | 3.09k | case ZEND_IS_IDENTICAL: |
1257 | 3.15k | case ZEND_CASE_STRICT: |
1258 | 3.15k | return (binary_op_type) is_identical_function; |
1259 | 440 | case ZEND_IS_NOT_IDENTICAL: |
1260 | 440 | return (binary_op_type) is_not_identical_function; |
1261 | 2.55k | case ZEND_IS_EQUAL: |
1262 | 2.56k | case ZEND_CASE: |
1263 | 2.56k | return (binary_op_type) is_equal_function; |
1264 | 1.97k | case ZEND_IS_NOT_EQUAL: |
1265 | 1.97k | return (binary_op_type) is_not_equal_function; |
1266 | 15.3k | case ZEND_IS_SMALLER: |
1267 | 15.3k | return (binary_op_type) is_smaller_function; |
1268 | 1.82k | case ZEND_IS_SMALLER_OR_EQUAL: |
1269 | 1.82k | return (binary_op_type) is_smaller_or_equal_function; |
1270 | 138 | case ZEND_SPACESHIP: |
1271 | 138 | return (binary_op_type) compare_function; |
1272 | 15.1k | case ZEND_BW_OR: |
1273 | 15.1k | return (binary_op_type) bitwise_or_function; |
1274 | 10.3k | case ZEND_BW_AND: |
1275 | 10.3k | return (binary_op_type) bitwise_and_function; |
1276 | 3.35k | case ZEND_BW_XOR: |
1277 | 3.35k | return (binary_op_type) bitwise_xor_function; |
1278 | 1.25k | case ZEND_BOOL_XOR: |
1279 | 1.25k | return (binary_op_type) boolean_xor_function; |
1280 | 0 | default: |
1281 | 0 | ZEND_UNREACHABLE(); |
1282 | 0 | return (binary_op_type) NULL; |
1283 | 141k | } |
1284 | 141k | } |