Coverage Report

Created: 2026-06-02 06:40

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/php-src/Zend/Optimizer/dce.c
Line
Count
Source
1
/*
2
   +----------------------------------------------------------------------+
3
   | Zend Engine, DCE - Dead Code Elimination                             |
4
   +----------------------------------------------------------------------+
5
   | Copyright © The PHP Group and Contributors.                          |
6
   +----------------------------------------------------------------------+
7
   | This source file is subject to the Modified BSD License that is      |
8
   | bundled with this package in the file LICENSE, and is available      |
9
   | through the World Wide Web at <https://www.php.net/license/>.        |
10
   |                                                                      |
11
   | SPDX-License-Identifier: BSD-3-Clause                                |
12
   +----------------------------------------------------------------------+
13
   | Authors: Nikita Popov <nikic@php.net>                                |
14
   |          Dmitry Stogov <dmitry@php.net>                              |
15
   +----------------------------------------------------------------------+
16
*/
17
18
#include "Optimizer/zend_optimizer_internal.h"
19
#include "Optimizer/zend_inference.h"
20
#include "Optimizer/zend_ssa.h"
21
#include "Optimizer/zend_func_info.h"
22
#include "Optimizer/zend_call_graph.h"
23
#include "zend_bitset.h"
24
25
/* This pass implements a form of dead code elimination (DCE). The algorithm optimistically assumes
26
 * that all instructions and phis are dead. Instructions with immediate side-effects are then marked
27
 * as live. We then recursively (using a worklist) propagate liveness to the instructions that def
28
 * the used operands.
29
 *
30
 * Notes:
31
 *  * This pass does not perform unreachable code elimination. This happens as part of the SCCP
32
 *    pass.
33
 *  * The DCE is performed without taking control-dependence into account, i.e. all conditional
34
 *    branches are assumed to be live. It's possible to take control-dependence into account using
35
 *    the DCE algorithm described by Cytron et al., however it requires the construction of a
36
 *    postdominator tree and of postdominance frontiers, which does not seem worthwhile at this
37
 *    point.
38
 *  * We separate intrinsic side-effects from potential side-effects in the form of notices thrown
39
 *    by the instruction (in case we want to make this configurable). See may_have_side_effects() and
40
 *    zend_may_throw().
41
 *  * We often cannot DCE assignments and unsets while guaranteeing that dtors run in the same
42
 *    order. There is an optimization option to allow reordering of dtor effects.
43
 *  * The algorithm is able to eliminate dead modifications of non-escaping arrays
44
 *    and objects as well as dead arrays and objects allocations.
45
 */
46
47
typedef struct {
48
  zend_ssa *ssa;
49
  zend_op_array *op_array;
50
  zend_bitset instr_dead;
51
  zend_bitset phi_dead;
52
  zend_bitset instr_worklist;
53
  zend_bitset phi_worklist;
54
  zend_bitset phi_worklist_no_val;
55
  uint32_t instr_worklist_len;
56
  uint32_t phi_worklist_len;
57
  unsigned reorder_dtor_effects : 1;
58
} context;
59
60
19.1k
static inline bool is_bad_mod(const zend_ssa *ssa, int use, int def) {
61
19.1k
  if (def < 0) {
62
    /* This modification is not tracked by SSA, assume the worst */
63
3.48k
    return true;
64
3.48k
  }
65
15.6k
  if (ssa->var_info[use].type & MAY_BE_REF) {
66
    /* Modification of reference may have side-effect */
67
6.11k
    return true;
68
6.11k
  }
69
9.58k
  return false;
70
15.6k
}
71
72
static inline bool may_have_side_effects(
73
    const zend_op_array *op_array, const zend_ssa *ssa,
74
    const zend_op *opline, const zend_ssa_op *ssa_op,
75
340k
    bool reorder_dtor_effects) {
76
340k
  switch (opline->opcode) {
77
1.74k
    case ZEND_NOP:
78
1.80k
    case ZEND_IS_IDENTICAL:
79
1.82k
    case ZEND_IS_NOT_IDENTICAL:
80
3.50k
    case ZEND_QM_ASSIGN:
81
5.55k
    case ZEND_FE_FREE:
82
5.74k
    case ZEND_TYPE_CHECK:
83
5.74k
    case ZEND_DEFINED:
84
6.21k
    case ZEND_ADD:
85
6.50k
    case ZEND_SUB:
86
6.75k
    case ZEND_MUL:
87
6.77k
    case ZEND_POW:
88
6.80k
    case ZEND_BW_OR:
89
6.87k
    case ZEND_BW_AND:
90
6.98k
    case ZEND_BW_XOR:
91
7.56k
    case ZEND_CONCAT:
92
7.80k
    case ZEND_FAST_CONCAT:
93
7.84k
    case ZEND_DIV:
94
7.90k
    case ZEND_MOD:
95
8.08k
    case ZEND_BOOL_XOR:
96
8.39k
    case ZEND_BOOL:
97
8.57k
    case ZEND_BOOL_NOT:
98
8.59k
    case ZEND_BW_NOT:
99
8.71k
    case ZEND_SL:
100
8.80k
    case ZEND_SR:
101
9.00k
    case ZEND_IS_EQUAL:
102
9.47k
    case ZEND_IS_NOT_EQUAL:
103
10.7k
    case ZEND_IS_SMALLER:
104
10.8k
    case ZEND_IS_SMALLER_OR_EQUAL:
105
10.8k
    case ZEND_CASE:
106
10.8k
    case ZEND_CASE_STRICT:
107
10.9k
    case ZEND_CAST:
108
10.9k
    case ZEND_ROPE_INIT:
109
10.9k
    case ZEND_ROPE_ADD:
110
10.9k
    case ZEND_INIT_ARRAY:
111
10.9k
    case ZEND_SPACESHIP:
112
11.4k
    case ZEND_STRLEN:
113
11.5k
    case ZEND_COUNT:
114
11.5k
    case ZEND_GET_TYPE:
115
11.5k
    case ZEND_ISSET_ISEMPTY_THIS:
116
11.6k
    case ZEND_ISSET_ISEMPTY_DIM_OBJ:
117
11.7k
    case ZEND_FETCH_DIM_IS:
118
11.7k
    case ZEND_ISSET_ISEMPTY_CV:
119
11.7k
    case ZEND_ISSET_ISEMPTY_VAR:
120
11.7k
    case ZEND_FETCH_IS:
121
11.7k
    case ZEND_IN_ARRAY:
122
11.7k
    case ZEND_FUNC_NUM_ARGS:
123
11.7k
    case ZEND_FUNC_GET_ARGS:
124
11.7k
    case ZEND_ARRAY_KEY_EXISTS:
125
12.1k
    case ZEND_COPY_TMP:
126
      /* No side effects */
127
12.1k
      return false;
128
7.52k
    case ZEND_FREE:
129
7.52k
      return opline->extended_value == ZEND_FREE_VOID_CAST;
130
55
    case ZEND_ADD_ARRAY_ELEMENT:
131
      /* TODO: We can't free two vars. Keep instruction alive. <?php [0, "$a" => "$b"]; */
132
55
      if ((opline->op1_type & (IS_VAR|IS_TMP_VAR)) && (opline->op2_type & (IS_VAR|IS_TMP_VAR))) {
133
0
        return true;
134
0
      }
135
55
      return false;
136
300
    case ZEND_ROPE_END:
137
      /* TODO: Rope dce optimization, see #76446 */
138
300
      return true;
139
7.91k
    case ZEND_JMP:
140
11.5k
    case ZEND_JMPZ:
141
16.5k
    case ZEND_JMPNZ:
142
16.7k
    case ZEND_JMPZ_EX:
143
17.1k
    case ZEND_JMPNZ_EX:
144
17.4k
    case ZEND_JMP_SET:
145
17.5k
    case ZEND_COALESCE:
146
17.9k
    case ZEND_ASSERT_CHECK:
147
19.4k
    case ZEND_JMP_NULL:
148
19.5k
    case ZEND_BIND_INIT_STATIC_OR_JMP:
149
19.5k
    case ZEND_JMP_FRAMELESS:
150
      /* For our purposes a jumps and branches are side effects. */
151
19.5k
      return true;
152
0
    case ZEND_BEGIN_SILENCE:
153
45.3k
    case ZEND_END_SILENCE:
154
64.4k
    case ZEND_ECHO:
155
64.4k
    case ZEND_INCLUDE_OR_EVAL:
156
65.2k
    case ZEND_THROW:
157
65.3k
    case ZEND_MATCH_ERROR:
158
65.3k
    case ZEND_EXT_STMT:
159
65.3k
    case ZEND_EXT_FCALL_BEGIN:
160
65.3k
    case ZEND_EXT_FCALL_END:
161
65.3k
    case ZEND_TICKS:
162
66.0k
    case ZEND_YIELD:
163
66.0k
    case ZEND_VERIFY_NEVER_TYPE:
164
      /* Intrinsic side effects */
165
66.0k
      return true;
166
238
    case ZEND_YIELD_FROM: {
167
238
      uint32_t t1 = OP1_INFO();
168
238
      if ((t1 & (MAY_BE_ANY|MAY_BE_UNDEF)) == MAY_BE_ARRAY && MAY_BE_EMPTY_ONLY(t1)) {
169
6
        return false;
170
6
      }
171
232
      return true;
172
238
    }
173
43.8k
    case ZEND_DO_FCALL:
174
43.9k
    case ZEND_DO_FCALL_BY_NAME:
175
43.9k
    case ZEND_DO_ICALL:
176
46.8k
    case ZEND_DO_UCALL:
177
46.8k
    case ZEND_FRAMELESS_ICALL_0:
178
46.8k
    case ZEND_FRAMELESS_ICALL_1:
179
46.8k
    case ZEND_FRAMELESS_ICALL_2:
180
46.8k
    case ZEND_FRAMELESS_ICALL_3:
181
      /* For now assume all calls have side effects */
182
46.8k
      return true;
183
4.05k
    case ZEND_RECV:
184
4.82k
    case ZEND_RECV_INIT:
185
      /* Even though RECV_INIT can be side-effect free, these cannot be simply dropped
186
       * due to the prologue skipping code. */
187
4.82k
      return true;
188
255
    case ZEND_ASSIGN_REF:
189
255
      return true;
190
11.0k
    case ZEND_ASSIGN:
191
11.0k
    {
192
11.0k
      if (is_bad_mod(ssa, ssa_op->op1_use, ssa_op->op1_def)) {
193
4.44k
        return true;
194
4.44k
      }
195
6.59k
      if (!reorder_dtor_effects) {
196
6.59k
        if (opline->op2_type != IS_CONST
197
2.68k
          && (OP2_INFO() & MAY_HAVE_DTOR)
198
1.24k
          && ssa->vars[ssa_op->op2_use].escape_state != ESCAPE_STATE_NO_ESCAPE) {
199
          /* DCE might shorten lifetime */
200
1.15k
          return true;
201
1.15k
        }
202
6.59k
      }
203
5.43k
      return false;
204
6.59k
    }
205
43
    case ZEND_UNSET_VAR:
206
43
      return true;
207
529
    case ZEND_UNSET_CV:
208
529
    {
209
529
      uint32_t t1 = OP1_INFO();
210
529
      if (t1 & MAY_BE_REF) {
211
        /* We don't consider uses as the LHS of an assignment as real uses during DCE, so
212
         * an unset may be considered dead even if there is a later assignment to the
213
         * variable. Removing the unset in this case would not be correct if the variable
214
         * is a reference, because unset breaks references. */
215
497
        return true;
216
497
      }
217
32
      return false;
218
529
    }
219
1.99k
    case ZEND_PRE_INC:
220
2.14k
    case ZEND_POST_INC:
221
2.27k
    case ZEND_PRE_DEC:
222
2.38k
    case ZEND_POST_DEC:
223
2.38k
      return is_bad_mod(ssa, ssa_op->op1_use, ssa_op->op1_def);
224
613
    case ZEND_ASSIGN_OP:
225
613
      return is_bad_mod(ssa, ssa_op->op1_use, ssa_op->op1_def)
226
457
        || ssa->vars[ssa_op->op1_def].escape_state != ESCAPE_STATE_NO_ESCAPE;
227
2.02k
    case ZEND_ASSIGN_DIM:
228
5.04k
    case ZEND_ASSIGN_OBJ:
229
5.04k
      if (is_bad_mod(ssa, ssa_op->op1_use, ssa_op->op1_def)
230
4.76k
        || ssa->vars[ssa_op->op1_def].escape_state != ESCAPE_STATE_NO_ESCAPE) {
231
4.76k
        return true;
232
4.76k
      }
233
277
      if (!reorder_dtor_effects) {
234
277
        opline++;
235
277
        ssa_op++;
236
277
        if (opline->op1_type != IS_CONST
237
188
          && (OP1_INFO() & MAY_HAVE_DTOR)) {
238
          /* DCE might shorten lifetime */
239
50
          return true;
240
50
        }
241
277
      }
242
227
      return false;
243
92
    case ZEND_PRE_INC_OBJ:
244
110
    case ZEND_PRE_DEC_OBJ:
245
110
    case ZEND_POST_INC_OBJ:
246
110
    case ZEND_POST_DEC_OBJ:
247
110
      if (is_bad_mod(ssa, ssa_op->op1_use, ssa_op->op1_def)
248
108
        || ssa->vars[ssa_op->op1_def].escape_state != ESCAPE_STATE_NO_ESCAPE) {
249
108
        return true;
250
108
      }
251
2
      return false;
252
274
    case ZEND_BIND_STATIC:
253
274
      if (op_array->static_variables) {
254
        /* Implicit and Explicit bind static is effectively prologue of closure so
255
           report it has side effects like RECV, RECV_INIT; This allows us to
256
           reflect on the closure and discover used variable at runtime */
257
274
        if ((opline->extended_value & (ZEND_BIND_IMPLICIT|ZEND_BIND_EXPLICIT))) {
258
136
          return true;
259
136
        }
260
        /* Modifies static variables which are observable through reflection */
261
138
        if ((opline->extended_value & ZEND_BIND_REF) && opline->op2_type != IS_UNUSED) {
262
70
          return true;
263
70
        }
264
138
      }
265
68
      return false;
266
30
    case ZEND_CHECK_VAR:
267
30
      return (OP1_INFO() & MAY_BE_UNDEF) != 0;
268
0
    case ZEND_FE_RESET_R:
269
0
    case ZEND_FE_RESET_RW:
270
      /* Model as not having side-effects -- let the side-effect be introduced by
271
       * FE_FETCH if the array is not known to be non-empty. */
272
0
      return (OP1_INFO() & MAY_BE_ANY) != MAY_BE_ARRAY;
273
163k
    default:
274
      /* For everything we didn't handle, assume a side-effect */
275
163k
      return true;
276
340k
  }
277
340k
}
278
279
623k
static zend_always_inline void add_to_worklists(const context *ctx, int var_num, int check) {
280
623k
  const zend_ssa_var *var = &ctx->ssa->vars[var_num];
281
623k
  if (var->definition >= 0) {
282
451k
    if (!check || zend_bitset_in(ctx->instr_dead, var->definition)) {
283
414k
      zend_bitset_incl(ctx->instr_worklist, var->definition);
284
414k
    }
285
451k
  } else if (var->definition_phi) {
286
112k
    if (!check || zend_bitset_in(ctx->phi_dead, var_num)) {
287
73.9k
      zend_bitset_incl(ctx->phi_worklist, var_num);
288
73.9k
    }
289
112k
  }
290
623k
}
291
292
22.7k
static inline void add_to_phi_worklist_no_val(const context *ctx, int var_num) {
293
22.7k
  const zend_ssa_var *var = &ctx->ssa->vars[var_num];
294
22.7k
  if (var->definition_phi && zend_bitset_in(ctx->phi_dead, var_num)) {
295
3.47k
    zend_bitset_incl(ctx->phi_worklist_no_val, var_num);
296
3.47k
  }
297
22.7k
}
298
299
706k
static zend_always_inline void add_operands_to_worklists(const context *ctx, const zend_op *opline, const zend_ssa_op *ssa_op, const zend_ssa *ssa, int check) {
300
706k
  if (ssa_op->result_use >= 0) {
301
5.70k
    add_to_worklists(ctx, ssa_op->result_use, check);
302
5.70k
  }
303
706k
  if (ssa_op->op1_use >= 0) {
304
400k
    if (!zend_ssa_is_no_val_use(opline, ssa_op, ssa_op->op1_use)
305
35.4k
     || (opline->opcode == ZEND_ASSIGN
306
384k
      && (ssa->var_info[ssa_op->op1_use].type & MAY_BE_REF) != 0)) {
307
384k
      add_to_worklists(ctx, ssa_op->op1_use, check);
308
384k
    } else {
309
15.8k
      add_to_phi_worklist_no_val(ctx, ssa_op->op1_use);
310
15.8k
    }
311
400k
  }
312
706k
  if (ssa_op->op2_use >= 0) {
313
120k
    if (!zend_ssa_is_no_val_use(opline, ssa_op, ssa_op->op2_use)
314
1.83k
     || (opline->opcode == ZEND_FE_FETCH_R
315
119k
      && (ssa->var_info[ssa_op->op2_use].type & MAY_BE_REF) != 0)) {
316
119k
      add_to_worklists(ctx, ssa_op->op2_use, check);
317
119k
    } else {
318
920
      add_to_phi_worklist_no_val(ctx, ssa_op->op2_use);
319
920
    }
320
120k
  }
321
706k
}
322
323
63.9k
static zend_always_inline void add_phi_sources_to_worklists(const context *ctx, zend_ssa_phi *phi, int check) {
324
63.9k
  const zend_ssa *ssa = ctx->ssa;
325
63.9k
  int source;
326
291k
  FOREACH_PHI_SOURCE(phi, source) {
327
291k
    add_to_worklists(ctx, source, check);
328
291k
  } FOREACH_PHI_SOURCE_END();
329
63.9k
}
330
331
8.38k
static inline bool is_var_dead(const context *ctx, int var_num) {
332
8.38k
  const zend_ssa_var *var = &ctx->ssa->vars[var_num];
333
8.38k
  if (var->definition_phi) {
334
545
    return zend_bitset_in(ctx->phi_dead, var_num);
335
7.84k
  } else if (var->definition >= 0) {
336
4.99k
    return zend_bitset_in(ctx->instr_dead, var->definition);
337
4.99k
  } else {
338
    /* Variable has no definition, so either the definition has already been removed (var is
339
     * dead) or this is one of the implicit variables at the start of the function (for our
340
     * purposes live) */
341
2.84k
    return var_num >= ctx->op_array->last_var;
342
2.84k
  }
343
8.38k
}
344
345
// Sometimes we can mark the var as EXT_UNUSED
346
4.25k
static bool try_remove_var_def(const context *ctx, int free_var, int use_chain, const zend_op *opline) {
347
4.25k
  if (use_chain >= 0) {
348
474
    return false;
349
474
  }
350
3.78k
  zend_ssa_var *var = &ctx->ssa->vars[free_var];
351
3.78k
  int def = var->definition;
352
353
3.78k
  if (def >= 0) {
354
3.74k
    zend_ssa_op *def_op = &ctx->ssa->ops[def];
355
356
3.74k
    if (def_op->result_def == free_var
357
3.74k
        && var->phi_use_chain == NULL
358
3.74k
        && var->use_chain == (opline - ctx->op_array->opcodes)) {
359
3.61k
      zend_op *def_opline = &ctx->op_array->opcodes[def];
360
361
3.61k
      switch (def_opline->opcode) {
362
115
        case ZEND_ASSIGN:
363
115
        case ZEND_ASSIGN_REF:
364
126
        case ZEND_ASSIGN_DIM:
365
128
        case ZEND_ASSIGN_OBJ:
366
128
        case ZEND_ASSIGN_OBJ_REF:
367
128
        case ZEND_ASSIGN_STATIC_PROP:
368
128
        case ZEND_ASSIGN_STATIC_PROP_REF:
369
155
        case ZEND_ASSIGN_OP:
370
161
        case ZEND_ASSIGN_DIM_OP:
371
161
        case ZEND_ASSIGN_OBJ_OP:
372
161
        case ZEND_ASSIGN_STATIC_PROP_OP:
373
161
        case ZEND_PRE_INC:
374
165
        case ZEND_PRE_DEC:
375
165
        case ZEND_PRE_INC_OBJ:
376
165
        case ZEND_PRE_DEC_OBJ:
377
165
        case ZEND_DO_ICALL:
378
166
        case ZEND_DO_UCALL:
379
166
        case ZEND_DO_FCALL_BY_NAME:
380
326
        case ZEND_DO_FCALL:
381
326
        case ZEND_INCLUDE_OR_EVAL:
382
326
        case ZEND_YIELD:
383
326
        case ZEND_YIELD_FROM:
384
326
        case ZEND_ASSERT_CHECK:
385
326
          def_opline->result_type = IS_UNUSED;
386
326
          def_opline->result.var = 0;
387
326
          def_op->result_def = -1;
388
326
          var->definition = -1;
389
326
          return true;
390
3.29k
        default:
391
3.29k
          break;
392
3.61k
      }
393
3.61k
    }
394
3.74k
  }
395
3.45k
  return false;
396
3.78k
}
397
398
22.5k
static zend_always_inline bool may_be_refcounted(uint32_t type) {
399
22.5k
  return (type & (MAY_BE_STRING|MAY_BE_ARRAY|MAY_BE_OBJECT|MAY_BE_RESOURCE|MAY_BE_REF)) != 0;
400
22.5k
}
401
402
10.2k
static inline bool is_free_of_live_var(const context *ctx, const zend_op *opline, const zend_ssa_op *ssa_op) {
403
10.2k
  switch (opline->opcode) {
404
4.24k
    case ZEND_FREE:
405
      /* It is always safe to remove FREEs of non-refcounted values, even if they are live. */
406
4.24k
      if ((ctx->ssa->var_info[ssa_op->op1_use].type & (MAY_BE_REF|MAY_BE_ANY|MAY_BE_UNDEF)) != 0
407
4.22k
       && !may_be_refcounted(ctx->ssa->var_info[ssa_op->op1_use].type)) {
408
3.47k
        return false;
409
3.47k
      }
410
773
      ZEND_FALLTHROUGH;
411
1.24k
    case ZEND_FE_FREE:
412
1.24k
      return !is_var_dead(ctx, ssa_op->op1_use);
413
5.57k
    default:
414
5.57k
      return false;
415
10.2k
  }
416
10.2k
}
417
418
/* Returns whether the instruction has been DCEd */
419
12.0k
static bool dce_instr(const context *ctx, zend_op *opline, zend_ssa_op *ssa_op) {
420
12.0k
  const zend_ssa *ssa = ctx->ssa;
421
12.0k
  int free_var = -1;
422
12.0k
  uint8_t free_var_type;
423
424
12.0k
  if (opline->opcode == ZEND_NOP) {
425
1.74k
    return false;
426
1.74k
  }
427
428
  /* We mark FREEs as dead, but they're only really dead if the destroyed var is dead */
429
10.2k
  if (is_free_of_live_var(ctx, opline, ssa_op)) {
430
862
    return false;
431
862
  }
432
433
9.42k
  if ((opline->op1_type & (IS_VAR|IS_TMP_VAR)) && !is_var_dead(ctx, ssa_op->op1_use)) {
434
3.49k
    if (!try_remove_var_def(ctx, ssa_op->op1_use, ssa_op->op1_use_chain, opline)) {
435
3.42k
      if (may_be_refcounted(ssa->var_info[ssa_op->op1_use].type)
436
686
          && opline->opcode != ZEND_CASE
437
686
          && opline->opcode != ZEND_CASE_STRICT
438
686
          && opline->opcode != ZEND_COPY_TMP) {
439
212
        free_var = ssa_op->op1_use;
440
212
        free_var_type = opline->op1_type;
441
212
      }
442
3.42k
    }
443
3.49k
  }
444
9.42k
  if ((opline->op2_type & (IS_VAR|IS_TMP_VAR)) && !is_var_dead(ctx, ssa_op->op2_use)) {
445
764
    if (!try_remove_var_def(ctx, ssa_op->op2_use, ssa_op->op2_use_chain, opline)) {
446
508
      if (may_be_refcounted(ssa->var_info[ssa_op->op2_use].type)) {
447
213
        if (free_var >= 0) {
448
          // TODO: We can't free two vars. Keep instruction alive.
449
28
          zend_bitset_excl(ctx->instr_dead, opline - ctx->op_array->opcodes);
450
28
          return false;
451
28
        }
452
185
        free_var = ssa_op->op2_use;
453
185
        free_var_type = opline->op2_type;
454
185
      }
455
508
    }
456
764
  }
457
458
9.39k
  zend_ssa_rename_defs_of_instr(ctx->ssa, ssa_op);
459
9.39k
  zend_ssa_remove_instr(ctx->ssa, opline, ssa_op);
460
461
9.39k
  if (free_var >= 0) {
462
369
    opline->opcode = ZEND_FREE;
463
369
    opline->op1.var = EX_NUM_TO_VAR(ssa->vars[free_var].var);
464
369
    opline->op1_type = free_var_type;
465
466
369
    ssa_op->op1_use = free_var;
467
369
    ssa_op->op1_use_chain = ssa->vars[free_var].use_chain;
468
369
    ssa->vars[free_var].use_chain = ssa_op - ssa->ops;
469
369
    return false;
470
369
  }
471
9.02k
  return true;
472
9.39k
}
473
474
39.4k
static inline int get_common_phi_source(const zend_ssa *ssa, zend_ssa_phi *phi) {
475
39.4k
  int common_source = -1;
476
39.4k
  int source;
477
199k
  FOREACH_PHI_SOURCE(phi, source) {
478
199k
    if (source == phi->ssa_var) {
479
596
      continue;
480
596
    }
481
79.2k
    if (common_source == -1) {
482
39.4k
      common_source = source;
483
39.7k
    } else if (common_source != source) {
484
39.2k
      return -1;
485
39.2k
    }
486
79.2k
  } FOREACH_PHI_SOURCE_END();
487
488
  /* If all sources are phi->ssa_var this phi must be in an unreachable cycle.
489
   * We can't easily drop the phi in that case, as we don't have something to replace it with.
490
   * Ideally SCCP would eliminate the whole cycle. */
491
229
  return common_source;
492
39.4k
}
493
494
55.8k
static void try_remove_trivial_phi(const context *ctx, zend_ssa_phi *phi) {
495
55.8k
  zend_ssa *ssa = ctx->ssa;
496
55.8k
  if (phi->pi < 0) {
497
    /* Phi assignment with identical source operands */
498
39.4k
    int common_source = get_common_phi_source(ssa, phi);
499
39.4k
    if (common_source >= 0) {
500
229
      zend_ssa_rename_var_uses(ssa, phi->ssa_var, common_source, 1);
501
229
      zend_ssa_remove_phi(ssa, phi);
502
229
    }
503
39.4k
  } else {
504
    /* Pi assignment that is only used in Phi/Pi assignments */
505
    // TODO What if we want to rerun type inference after DCE? Maybe separate this?
506
    /*ZEND_ASSERT(phi->sources[0] != -1);
507
    if (ssa->vars[phi->ssa_var].use_chain < 0) {
508
      zend_ssa_rename_var_uses_keep_types(ssa, phi->ssa_var, phi->sources[0], 1);
509
      zend_ssa_remove_phi(ssa, phi);
510
    }*/
511
16.3k
  }
512
55.8k
}
513
514
2
static inline bool may_break_varargs(const zend_op_array *op_array, const zend_ssa *ssa, const zend_ssa_op *ssa_op) {
515
2
  if (ssa_op->op1_def >= 0
516
0
      && ssa->vars[ssa_op->op1_def].var < op_array->num_args) {
517
0
    return true;
518
0
  }
519
2
  if (ssa_op->op2_def >= 0
520
0
      && ssa->vars[ssa_op->op2_def].var < op_array->num_args) {
521
0
    return true;
522
0
  }
523
2
  if (ssa_op->result_def >= 0
524
0
      && ssa->vars[ssa_op->result_def].var < op_array->num_args) {
525
0
    return true;
526
0
  }
527
2
  return false;
528
2
}
529
530
10.1k
static inline bool may_throw_dce_exception(const zend_op *opline) {
531
10.1k
  return opline->opcode == ZEND_ADD_ARRAY_ELEMENT && opline->op2_type == IS_UNUSED;
532
10.1k
}
533
534
34.0k
int dce_optimize_op_array(zend_op_array *op_array, zend_optimizer_ctx *optimizer_ctx, zend_ssa *ssa, bool reorder_dtor_effects) {
535
34.0k
  int i;
536
34.0k
  zend_ssa_phi *phi;
537
34.0k
  int removed_ops = 0;
538
539
  /* DCE of CV operations that changes arguments may affect vararg functions. */
540
34.0k
  bool has_varargs = (ssa->cfg.flags & ZEND_FUNC_VARARG) != 0;
541
542
34.0k
  context ctx;
543
34.0k
  ctx.ssa = ssa;
544
34.0k
  ctx.op_array = op_array;
545
34.0k
  ctx.reorder_dtor_effects = reorder_dtor_effects;
546
547
34.0k
  void *checkpoint = zend_arena_checkpoint(optimizer_ctx->arena);
548
  /* We have no dedicated phi vector, so we use the whole ssa var vector instead */
549
34.0k
  ctx.instr_worklist_len = zend_bitset_len(op_array->last);
550
34.0k
  ctx.instr_worklist = zend_arena_calloc(&optimizer_ctx->arena, ctx.instr_worklist_len, sizeof(zend_ulong));
551
34.0k
  ctx.phi_worklist_len = zend_bitset_len(ssa->vars_count);
552
34.0k
  ctx.phi_worklist = zend_arena_calloc(&optimizer_ctx->arena, ctx.phi_worklist_len, sizeof(zend_ulong));
553
34.0k
  ctx.phi_worklist_no_val = zend_arena_calloc(&optimizer_ctx->arena, ctx.phi_worklist_len, sizeof(zend_ulong));
554
555
  /* Optimistically assume all instructions and phis to be dead */
556
34.0k
  ctx.instr_dead = zend_arena_calloc(&optimizer_ctx->arena, ctx.instr_worklist_len, sizeof(zend_ulong));
557
34.0k
  ctx.phi_dead = zend_arena_alloc(&optimizer_ctx->arena, ctx.phi_worklist_len * sizeof(zend_ulong));
558
34.0k
  memset(ctx.phi_dead, 0xff, sizeof(zend_ulong) * ctx.phi_worklist_len);
559
560
  /* Mark non-CV phis as live. Even if the result is unused, we generally cannot remove one
561
   * of the producing instructions, as it combines producing the result with control flow.
562
   * This can be made more precise if there are any cases where this is not the case. */
563
186k
  FOREACH_PHI(phi) {
564
186k
    if (phi->var >= op_array->last_var
565
14.4k
        && may_be_refcounted(ssa->var_info[phi->ssa_var].type)) {
566
11.2k
      zend_bitset_excl(ctx.phi_dead, phi->ssa_var);
567
11.2k
      add_phi_sources_to_worklists(&ctx, phi, 0);
568
11.2k
    }
569
186k
  } FOREACH_PHI_END();
570
571
  /* Mark reachable instruction without side effects as dead */
572
34.0k
  uint32_t b = ssa->cfg.blocks_count;
573
127k
  while (b > 0) {
574
92.9k
    int op_data = -1;
575
576
92.9k
    b--;
577
92.9k
    const zend_basic_block *block = &ssa->cfg.blocks[b];
578
92.9k
    if (!(block->flags & ZEND_BB_REACHABLE)) {
579
3.08k
      continue;
580
3.08k
    }
581
89.8k
    i = block->start + block->len;
582
808k
    while (i > block->start) {
583
718k
      i--;
584
585
718k
      if (op_array->opcodes[i].opcode == ZEND_OP_DATA) {
586
11.7k
        op_data = i;
587
11.7k
        continue;
588
11.7k
      }
589
590
706k
      if (zend_bitset_in(ctx.instr_worklist, i)) {
591
365k
        zend_bitset_excl(ctx.instr_worklist, i);
592
365k
        add_operands_to_worklists(&ctx, &op_array->opcodes[i], &ssa->ops[i], ssa, 0);
593
365k
        if (op_data >= 0) {
594
5.79k
          add_operands_to_worklists(&ctx, &op_array->opcodes[op_data], &ssa->ops[op_data], ssa, 0);
595
5.79k
        }
596
365k
      } else if (may_have_side_effects(op_array, ssa, &op_array->opcodes[i], &ssa->ops[i], ctx.reorder_dtor_effects)
597
27.0k
          || (zend_may_throw(&op_array->opcodes[i], &ssa->ops[i], op_array, ssa)
598
10.1k
            && !may_throw_dce_exception(&op_array->opcodes[i]))
599
324k
          || (has_varargs && may_break_varargs(op_array, ssa, &ssa->ops[i]))) {
600
324k
        if (op_array->opcodes[i].opcode == ZEND_NEW
601
48
            && op_array->opcodes[i+1].opcode == ZEND_DO_FCALL
602
48
            && ssa->ops[i].result_def >= 0
603
48
            && ssa->vars[ssa->ops[i].result_def].escape_state == ESCAPE_STATE_NO_ESCAPE) {
604
42
          zend_bitset_incl(ctx.instr_dead, i);
605
42
          zend_bitset_incl(ctx.instr_dead, i+1);
606
324k
        } else {
607
324k
          add_operands_to_worklists(&ctx, &op_array->opcodes[i], &ssa->ops[i], ssa, 0);
608
324k
          if (op_data >= 0) {
609
5.89k
            add_operands_to_worklists(&ctx, &op_array->opcodes[op_data], &ssa->ops[op_data], ssa, 0);
610
5.89k
          }
611
324k
        }
612
324k
      } else {
613
16.9k
        zend_bitset_incl(ctx.instr_dead, i);
614
16.9k
        if (op_data >= 0) {
615
37
          zend_bitset_incl(ctx.instr_dead, op_data);
616
37
        }
617
16.9k
      }
618
706k
      op_data = -1;
619
706k
    }
620
89.8k
  }
621
622
  /* Propagate liveness backwards to all definitions of used vars */
623
41.3k
  while (!zend_bitset_empty(ctx.instr_worklist, ctx.instr_worklist_len)
624
39.9k
      || !zend_bitset_empty(ctx.phi_worklist, ctx.phi_worklist_len)) {
625
12.3k
    while ((i = zend_bitset_pop_first(ctx.instr_worklist, ctx.instr_worklist_len)) >= 0) {
626
5.05k
      zend_bitset_excl(ctx.instr_dead, i);
627
5.05k
      add_operands_to_worklists(&ctx, &op_array->opcodes[i], &ssa->ops[i], ssa, 1);
628
5.05k
      if (i < op_array->last
629
5.05k
       && (op_array->opcodes[i+1].opcode == ZEND_OP_DATA
630
5.03k
        || (op_array->opcodes[i].opcode == ZEND_NEW
631
23
         && op_array->opcodes[i+1].opcode == ZEND_DO_FCALL))) {
632
23
        zend_bitset_excl(ctx.instr_dead, i+1);
633
23
        add_operands_to_worklists(&ctx, &op_array->opcodes[i+1], &ssa->ops[i+1], ssa, 1);
634
23
      }
635
5.05k
    }
636
60.0k
    while ((i = zend_bitset_pop_first(ctx.phi_worklist, ctx.phi_worklist_len)) >= 0) {
637
52.7k
      zend_bitset_excl(ctx.phi_dead, i);
638
52.7k
      zend_bitset_excl(ctx.phi_worklist_no_val, i);
639
52.7k
      add_phi_sources_to_worklists(&ctx, ssa->vars[i].definition_phi, 1);
640
52.7k
    }
641
7.24k
  }
642
643
  /* Eliminate dead instructions */
644
159k
  ZEND_BITSET_FOREACH(ctx.instr_dead, ctx.instr_worklist_len, i) {
645
12.0k
    removed_ops += dce_instr(&ctx, &op_array->opcodes[i], &ssa->ops[i]);
646
12.0k
  } ZEND_BITSET_FOREACH_END();
647
648
  /* Improper uses don't count as "uses" for the purpose of instruction elimination,
649
   * but we have to retain phis defining them.
650
   * Propagate this information backwards, marking any phi with an improperly used
651
   * target as non-dead. */
652
37.0k
  while ((i = zend_bitset_pop_first(ctx.phi_worklist_no_val, ctx.phi_worklist_len)) >= 0) {
653
2.92k
    zend_ssa_phi *phi = ssa->vars[i].definition_phi;
654
2.92k
    int source;
655
2.92k
    zend_bitset_excl(ctx.phi_dead, i);
656
14.7k
    FOREACH_PHI_SOURCE(phi, source) {
657
14.7k
      add_to_phi_worklist_no_val(&ctx, source);
658
14.7k
    } FOREACH_PHI_SOURCE_END();
659
2.92k
  }
660
661
  /* Now collect the actually dead phis */
662
186k
  FOREACH_PHI(phi) {
663
186k
    if (zend_bitset_in(ctx.phi_dead, phi->ssa_var)) {
664
3.41k
      zend_ssa_remove_uses_of_var(ssa, phi->ssa_var);
665
3.41k
      zend_ssa_remove_phi(ssa, phi);
666
55.8k
    } else {
667
      /* Remove trivial phis (phis with identical source operands) */
668
55.8k
      try_remove_trivial_phi(&ctx, phi);
669
55.8k
    }
670
186k
  } FOREACH_PHI_END();
671
672
34.0k
  zend_arena_release(&optimizer_ctx->arena, checkpoint);
673
674
34.0k
  return removed_ops;
675
34.0k
}