xref: /PHP-8.3/Zend/Optimizer/zend_dfg.c (revision 0b1d750d)
1 /*
2    +----------------------------------------------------------------------+
3    | Zend Engine, DFG - Data Flow Graph                                   |
4    +----------------------------------------------------------------------+
5    | Copyright (c) The PHP Group                                          |
6    +----------------------------------------------------------------------+
7    | This source file is subject to version 3.01 of the PHP 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    | https://www.php.net/license/3_01.txt                                 |
11    | If you did not receive a copy of the PHP license and are unable to   |
12    | obtain it through the world-wide-web, please send a note to          |
13    | license@php.net so we can mail you a copy immediately.               |
14    +----------------------------------------------------------------------+
15    | Authors: Dmitry Stogov <dmitry@php.net>                              |
16    +----------------------------------------------------------------------+
17 */
18 
19 #include "zend_compile.h"
20 #include "zend_dfg.h"
21 
_zend_dfg_add_use_def_op(const zend_op_array * op_array,const zend_op * opline,uint32_t build_flags,zend_bitset use,zend_bitset def)22 static zend_always_inline void _zend_dfg_add_use_def_op(const zend_op_array *op_array, const zend_op *opline, uint32_t build_flags, zend_bitset use, zend_bitset def) /* {{{ */
23 {
24 	uint32_t var_num;
25 	const zend_op *next;
26 
27 	if (opline->op1_type & (IS_CV|IS_VAR|IS_TMP_VAR)) {
28 		var_num = EX_VAR_TO_NUM(opline->op1.var);
29 		if (!zend_bitset_in(def, var_num)) {
30 			zend_bitset_incl(use, var_num);
31 		}
32 	}
33 	if (((opline->op2_type & (IS_VAR|IS_TMP_VAR)) != 0
34 	  && opline->opcode != ZEND_FE_FETCH_R
35 	  && opline->opcode != ZEND_FE_FETCH_RW)
36 	 || (opline->op2_type == IS_CV)) {
37 		var_num = EX_VAR_TO_NUM(opline->op2.var);
38 		if (!zend_bitset_in(def, var_num)) {
39 			zend_bitset_incl(use, var_num);
40 		}
41 	}
42 	if ((build_flags & ZEND_SSA_USE_CV_RESULTS)
43 	 && opline->result_type == IS_CV
44 	 && opline->opcode != ZEND_RECV) {
45 		var_num = EX_VAR_TO_NUM(opline->result.var);
46 		if (!zend_bitset_in(def, var_num)) {
47 			zend_bitset_incl(use, var_num);
48 		}
49 	}
50 
51 	switch (opline->opcode) {
52 		case ZEND_ASSIGN:
53 			if ((build_flags & ZEND_SSA_RC_INFERENCE) && opline->op2_type == IS_CV) {
54 				zend_bitset_incl(def, EX_VAR_TO_NUM(opline->op2.var));
55 			}
56 			if (opline->op1_type == IS_CV) {
57 add_op1_def:
58 				zend_bitset_incl(def, EX_VAR_TO_NUM(opline->op1.var));
59 			}
60 			break;
61 		case ZEND_ASSIGN_REF:
62 			if (opline->op2_type == IS_CV) {
63 				zend_bitset_incl(def, EX_VAR_TO_NUM(opline->op2.var));
64 			}
65 			if (opline->op1_type == IS_CV) {
66 				goto add_op1_def;
67 			}
68 			break;
69 		case ZEND_ASSIGN_DIM:
70 		case ZEND_ASSIGN_OBJ:
71 			next = opline + 1;
72 			if (next->op1_type & (IS_CV|IS_VAR|IS_TMP_VAR)) {
73 				var_num = EX_VAR_TO_NUM(next->op1.var);
74 				if (!zend_bitset_in(def, var_num)) {
75 					zend_bitset_incl(use, var_num);
76 				}
77 				if (build_flags & ZEND_SSA_RC_INFERENCE && next->op1_type == IS_CV) {
78 					zend_bitset_incl(def, var_num);
79 				}
80 			}
81 			if (opline->op1_type == IS_CV) {
82 				goto add_op1_def;
83 			}
84 			break;
85 		case ZEND_ASSIGN_OBJ_REF:
86 			next = opline + 1;
87 			if (next->op1_type & (IS_CV|IS_VAR|IS_TMP_VAR)) {
88 				var_num = EX_VAR_TO_NUM(next->op1.var);
89 				if (!zend_bitset_in(def, var_num)) {
90 					zend_bitset_incl(use, var_num);
91 				}
92 				if (next->op1_type == IS_CV) {
93 					zend_bitset_incl(def, var_num);
94 				}
95 			}
96 			if (opline->op1_type == IS_CV) {
97 				goto add_op1_def;
98 			}
99 			break;
100 		case ZEND_ASSIGN_STATIC_PROP:
101 			next = opline + 1;
102 			if (next->op1_type & (IS_CV|IS_VAR|IS_TMP_VAR)) {
103 				var_num = EX_VAR_TO_NUM(next->op1.var);
104 				if (!zend_bitset_in(def, var_num)) {
105 					zend_bitset_incl(use, var_num);
106 				}
107 				if ((build_flags & ZEND_SSA_RC_INFERENCE) && next->op1_type == IS_CV) {
108 					zend_bitset_incl(def, var_num);
109 				}
110 			}
111 			break;
112 		case ZEND_ASSIGN_STATIC_PROP_REF:
113 			next = opline + 1;
114 			if (next->op1_type & (IS_CV|IS_VAR|IS_TMP_VAR)) {
115 				var_num = EX_VAR_TO_NUM(next->op1.var);
116 				if (!zend_bitset_in(def, var_num)) {
117 					zend_bitset_incl(use, var_num);
118 				}
119 				if (next->op1_type == IS_CV) {
120 					zend_bitset_incl(def, var_num);
121 				}
122 			}
123 			break;
124 		case ZEND_ASSIGN_STATIC_PROP_OP:
125 			next = opline + 1;
126 			if (next->op1_type & (IS_CV|IS_VAR|IS_TMP_VAR)) {
127 				var_num = EX_VAR_TO_NUM(next->op1.var);
128 				if (!zend_bitset_in(def, var_num)) {
129 					zend_bitset_incl(use, var_num);
130 				}
131 			}
132 			break;
133 		case ZEND_ASSIGN_DIM_OP:
134 		case ZEND_ASSIGN_OBJ_OP:
135 			next = opline + 1;
136 			if (next->op1_type & (IS_CV|IS_VAR|IS_TMP_VAR)) {
137 				var_num = EX_VAR_TO_NUM(next->op1.var);
138 				if (!zend_bitset_in(def, var_num)) {
139 					zend_bitset_incl(use, var_num);
140 				}
141 			}
142 			if (opline->op1_type == IS_CV) {
143 				goto add_op1_def;
144 			}
145 			break;
146 		case ZEND_ASSIGN_OP:
147 		case ZEND_PRE_INC:
148 		case ZEND_PRE_DEC:
149 		case ZEND_POST_INC:
150 		case ZEND_POST_DEC:
151 		case ZEND_BIND_GLOBAL:
152 		case ZEND_BIND_STATIC:
153 		case ZEND_BIND_INIT_STATIC_OR_JMP:
154 		case ZEND_SEND_VAR_NO_REF:
155 		case ZEND_SEND_VAR_NO_REF_EX:
156 		case ZEND_SEND_VAR_EX:
157 		case ZEND_SEND_FUNC_ARG:
158 		case ZEND_SEND_REF:
159 		case ZEND_SEND_UNPACK:
160 		case ZEND_FE_RESET_RW:
161 		case ZEND_MAKE_REF:
162 		case ZEND_PRE_INC_OBJ:
163 		case ZEND_PRE_DEC_OBJ:
164 		case ZEND_POST_INC_OBJ:
165 		case ZEND_POST_DEC_OBJ:
166 		case ZEND_UNSET_DIM:
167 		case ZEND_UNSET_OBJ:
168 		case ZEND_FETCH_DIM_W:
169 		case ZEND_FETCH_DIM_RW:
170 		case ZEND_FETCH_DIM_FUNC_ARG:
171 		case ZEND_FETCH_DIM_UNSET:
172 		case ZEND_FETCH_LIST_W:
173 			if (opline->op1_type == IS_CV) {
174 				goto add_op1_def;
175 			}
176 			break;
177 		case ZEND_SEND_VAR:
178 		case ZEND_CAST:
179 		case ZEND_QM_ASSIGN:
180 		case ZEND_JMP_SET:
181 		case ZEND_COALESCE:
182 		case ZEND_FE_RESET_R:
183 			if ((build_flags & ZEND_SSA_RC_INFERENCE) && opline->op1_type == IS_CV) {
184 				goto add_op1_def;
185 			}
186 			break;
187 		case ZEND_ADD_ARRAY_UNPACK:
188 			var_num = EX_VAR_TO_NUM(opline->result.var);
189 			if (!zend_bitset_in(def, var_num)) {
190 				zend_bitset_incl(use, var_num);
191 			}
192 			break;
193 		case ZEND_ADD_ARRAY_ELEMENT:
194 			var_num = EX_VAR_TO_NUM(opline->result.var);
195 			if (!zend_bitset_in(def, var_num)) {
196 				zend_bitset_incl(use, var_num);
197 			}
198 			ZEND_FALLTHROUGH;
199 		case ZEND_INIT_ARRAY:
200 			if (((build_flags & ZEND_SSA_RC_INFERENCE)
201 						|| (opline->extended_value & ZEND_ARRAY_ELEMENT_REF))
202 					&& opline->op1_type == IS_CV) {
203 				goto add_op1_def;
204 			}
205 			break;
206 		case ZEND_YIELD:
207 			if (opline->op1_type == IS_CV
208 					&& ((op_array->fn_flags & ZEND_ACC_RETURN_REFERENCE)
209 						|| (build_flags & ZEND_SSA_RC_INFERENCE))) {
210 				goto add_op1_def;
211 			}
212 			break;
213 		case ZEND_UNSET_CV:
214 			goto add_op1_def;
215 		case ZEND_VERIFY_RETURN_TYPE:
216 			if (opline->op1_type & (IS_TMP_VAR|IS_VAR|IS_CV)) {
217 				goto add_op1_def;
218 			}
219 			break;
220 		case ZEND_FE_FETCH_R:
221 		case ZEND_FE_FETCH_RW:
222 #if 0
223 			/* This special case was handled above the switch */
224 			if (opline->op2_type != IS_CV) {
225 				op2_use = -1; /* not used */
226 			}
227 #endif
228 			zend_bitset_incl(def, EX_VAR_TO_NUM(opline->op2.var));
229 			break;
230 		case ZEND_BIND_LEXICAL:
231 			if ((opline->extended_value & ZEND_BIND_REF) || (build_flags & ZEND_SSA_RC_INFERENCE)) {
232 				zend_bitset_incl(def, EX_VAR_TO_NUM(opline->op2.var));
233 			}
234 			break;
235 		default:
236 			break;
237 	}
238 
239 	if (opline->result_type & (IS_CV|IS_VAR|IS_TMP_VAR)) {
240 		zend_bitset_incl(def, EX_VAR_TO_NUM(opline->result.var));
241 	}
242 }
243 /* }}} */
244 
zend_dfg_add_use_def_op(const zend_op_array * op_array,const zend_op * opline,uint32_t build_flags,zend_bitset use,zend_bitset def)245 ZEND_API void zend_dfg_add_use_def_op(const zend_op_array *op_array, const zend_op *opline, uint32_t build_flags, zend_bitset use, zend_bitset def) /* {{{ */
246 {
247 	_zend_dfg_add_use_def_op(op_array, opline, build_flags, use, def);
248 }
249 /* }}} */
250 
zend_build_dfg(const zend_op_array * op_array,const zend_cfg * cfg,zend_dfg * dfg,uint32_t build_flags)251 void zend_build_dfg(const zend_op_array *op_array, const zend_cfg *cfg, zend_dfg *dfg, uint32_t build_flags) /* {{{ */
252 {
253 	int set_size;
254 	zend_basic_block *blocks = cfg->blocks;
255 	int blocks_count = cfg->blocks_count;
256 	zend_bitset tmp, def, use, in, out;
257 	int k;
258 	int j;
259 
260 	set_size = dfg->size;
261 	tmp = dfg->tmp;
262 	def = dfg->def;
263 	use = dfg->use;
264 	in  = dfg->in;
265 	out = dfg->out;
266 
267 	/* Collect "def" and "use" sets */
268 	for (j = 0; j < blocks_count; j++) {
269 		zend_op *opline, *end;
270 		zend_bitset b_use, b_def;
271 
272 		if ((blocks[j].flags & ZEND_BB_REACHABLE) == 0) {
273 			continue;
274 		}
275 
276 		opline = op_array->opcodes + blocks[j].start;
277 		end = opline + blocks[j].len;
278 		b_use = DFG_BITSET(use, set_size, j);
279 		b_def = DFG_BITSET(def, set_size, j);
280 		for (; opline < end; opline++) {
281 			if (opline->opcode != ZEND_OP_DATA) {
282 				_zend_dfg_add_use_def_op(op_array, opline, build_flags, b_use, b_def);
283 			}
284 		}
285 	}
286 
287 	/* Calculate "in" and "out" sets */
288 	{
289 		uint32_t worklist_len = zend_bitset_len(blocks_count);
290 		zend_bitset worklist;
291 		ALLOCA_FLAG(use_heap);
292 		worklist = ZEND_BITSET_ALLOCA(worklist_len, use_heap);
293 		memset(worklist, 0, worklist_len * ZEND_BITSET_ELM_SIZE);
294 		for (j = 0; j < blocks_count; j++) {
295 			zend_bitset_incl(worklist, j);
296 		}
297 		while (!zend_bitset_empty(worklist, worklist_len)) {
298 			/* We use the last block on the worklist, because predecessors tend to be located
299 			 * before the succeeding block, so this converges faster. */
300 			j = zend_bitset_last(worklist, worklist_len);
301 			zend_bitset_excl(worklist, j);
302 
303 			if ((blocks[j].flags & ZEND_BB_REACHABLE) == 0) {
304 				continue;
305 			}
306 			if (blocks[j].successors_count != 0) {
307 				zend_bitset_copy(DFG_BITSET(out, set_size, j), DFG_BITSET(in, set_size, blocks[j].successors[0]), set_size);
308 				for (k = 1; k < blocks[j].successors_count; k++) {
309 					zend_bitset_union(DFG_BITSET(out, set_size, j), DFG_BITSET(in, set_size, blocks[j].successors[k]), set_size);
310 				}
311 			} else {
312 				zend_bitset_clear(DFG_BITSET(out, set_size, j), set_size);
313 			}
314 			zend_bitset_union_with_difference(tmp, DFG_BITSET(use, set_size, j), DFG_BITSET(out, set_size, j), DFG_BITSET(def, set_size, j), set_size);
315 			if (!zend_bitset_equal(DFG_BITSET(in, set_size, j), tmp, set_size)) {
316 				zend_bitset_copy(DFG_BITSET(in, set_size, j), tmp, set_size);
317 
318 				/* Add predecessors of changed block to worklist */
319 				{
320 					int *predecessors = &cfg->predecessors[blocks[j].predecessor_offset];
321 					for (k = 0; k < blocks[j].predecessors_count; k++) {
322 						zend_bitset_incl(worklist, predecessors[k]);
323 					}
324 				}
325 			}
326 		}
327 
328 		free_alloca(worklist, use_heap);
329 	}
330 }
331 /* }}} */
332