Coverage Report

Created: 2026-02-14 06:52

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/php-src/Zend/Optimizer/scdf.c
Line
Count
Source
1
/*
2
   +----------------------------------------------------------------------+
3
   | Zend Engine, Sparse Conditional Data Flow Propagation Framework      |
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: Nikita Popov <nikic@php.net>                                |
16
   +----------------------------------------------------------------------+
17
*/
18
19
#include "Optimizer/zend_optimizer_internal.h"
20
#include "Optimizer/scdf.h"
21
22
/* This defines a generic framework for sparse conditional dataflow propagation. The algorithm is
23
 * based on "Sparse conditional constant propagation" by Wegman and Zadeck. We're using a
24
 * generalized implementation as described in chapter 8.3 of the SSA book.
25
 *
26
 * Every SSA variable is associated with an element on a finite-height lattice, those value can only
27
 * ever be lowered during the operation of the algorithm. If a value is lowered all instructions and
28
 * phis using that value need to be reconsidered (this is done by adding the variable to a
29
 * worklist). For phi functions the result is computed by applying the meet operation to the
30
 * operands. This continues until a fixed point is reached.
31
 *
32
 * The algorithm is control-flow sensitive: All blocks except the start block are initially assumed
33
 * to be unreachable. When considering a branch instruction, we determine the feasible successors
34
 * based on the current state of the variable lattice. If a new edge becomes feasible we either have
35
 * to mark the successor block executable and consider all instructions in it, or, if the target is
36
 * already executable, we only have to reconsider the phi functions (as we only consider phi
37
 * operands which are associated with a feasible edge).
38
 *
39
 * The generic framework requires the definition of three functions:
40
 * * visit_instr() should recompute the lattice values of all SSA variables defined by an
41
 *   instruction.
42
 * * visit_phi() should recompute the lattice value of the SSA variable defined by the phi. While
43
 *   doing this it should only consider operands for which scfg_is_edge_feasible() returns true.
44
 * * get_feasible_successors() should determine the feasible successors for a branch instruction.
45
 *   Note that this callback only needs to handle conditional branches (with two successors).
46
 */
47
48
#if 0
49
#define DEBUG_PRINT(...) fprintf(stderr, __VA_ARGS__)
50
#else
51
#define DEBUG_PRINT(...)
52
#endif
53
54
169k
void scdf_mark_edge_feasible(scdf_ctx *scdf, int from, int to) {
55
169k
  uint32_t edge = scdf_edge(&scdf->ssa->cfg, from, to);
56
57
169k
  if (zend_bitset_in(scdf->feasible_edges, edge)) {
58
    /* We already handled this edge */
59
3.15k
    return;
60
3.15k
  }
61
62
166k
  DEBUG_PRINT("Marking edge %d->%d feasible\n", from, to);
63
166k
  zend_bitset_incl(scdf->feasible_edges, edge);
64
65
166k
  if (!zend_bitset_in(scdf->executable_blocks, to)) {
66
156k
    if (!zend_bitset_in(scdf->block_worklist, to)) {
67
113k
      DEBUG_PRINT("Adding block %d to worklist\n", to);
68
113k
    }
69
156k
    zend_bitset_incl(scdf->block_worklist, to);
70
156k
  } else {
71
    /* Block is already executable, only a new edge became feasible.
72
     * Reevaluate phi nodes to account for changed source operands. */
73
9.93k
    const zend_ssa_block *ssa_block = &scdf->ssa->blocks[to];
74
35.2k
    for (const zend_ssa_phi *phi = ssa_block->phis; phi; phi = phi->next) {
75
25.3k
      zend_bitset_excl(scdf->phi_var_worklist, phi->ssa_var);
76
25.3k
      scdf->handlers.visit_phi(scdf, phi);
77
25.3k
    }
78
9.93k
  }
79
166k
}
80
81
61.5k
void scdf_init(zend_optimizer_ctx *ctx, scdf_ctx *scdf, zend_op_array *op_array, zend_ssa *ssa) {
82
61.5k
  scdf->op_array = op_array;
83
61.5k
  scdf->ssa = ssa;
84
85
61.5k
  scdf->instr_worklist_len = zend_bitset_len(op_array->last);
86
61.5k
  scdf->phi_var_worklist_len = zend_bitset_len(ssa->vars_count);
87
61.5k
  scdf->block_worklist_len = zend_bitset_len(ssa->cfg.blocks_count);
88
89
61.5k
  scdf->instr_worklist = zend_arena_calloc(&ctx->arena,
90
61.5k
    scdf->instr_worklist_len + scdf->phi_var_worklist_len + 2 * scdf->block_worklist_len + zend_bitset_len(ssa->cfg.edges_count),
91
61.5k
    sizeof(zend_ulong));
92
93
61.5k
  scdf->phi_var_worklist = scdf->instr_worklist + scdf->instr_worklist_len;
94
61.5k
  scdf->block_worklist = scdf->phi_var_worklist + scdf->phi_var_worklist_len;
95
61.5k
  scdf->executable_blocks = scdf->block_worklist + scdf->block_worklist_len;
96
61.5k
  scdf->feasible_edges = scdf->executable_blocks + scdf->block_worklist_len;
97
98
61.5k
  zend_bitset_incl(scdf->block_worklist, 0);
99
61.5k
  zend_bitset_incl(scdf->executable_blocks, 0);
100
61.5k
}
101
102
61.5k
void scdf_solve(scdf_ctx *scdf, const char *name) {
103
61.5k
  const zend_ssa *ssa = scdf->ssa;
104
61.5k
  DEBUG_PRINT("Start SCDF solve (%s)\n", name);
105
126k
  while (!zend_bitset_empty(scdf->instr_worklist, scdf->instr_worklist_len)
106
124k
    || !zend_bitset_empty(scdf->phi_var_worklist, scdf->phi_var_worklist_len)
107
123k
    || !zend_bitset_empty(scdf->block_worklist, scdf->block_worklist_len)
108
64.5k
  ) {
109
64.5k
    int i;
110
69.4k
    while ((i = zend_bitset_pop_first(scdf->phi_var_worklist, scdf->phi_var_worklist_len)) >= 0) {
111
4.91k
      const zend_ssa_phi *phi = ssa->vars[i].definition_phi;
112
4.91k
      ZEND_ASSERT(phi);
113
4.91k
      if (zend_bitset_in(scdf->executable_blocks, phi->block)) {
114
4.11k
        scdf->handlers.visit_phi(scdf, phi);
115
4.11k
      }
116
4.91k
    }
117
118
74.7k
    while ((i = zend_bitset_pop_first(scdf->instr_worklist, scdf->instr_worklist_len)) >= 0) {
119
10.1k
      int block_num = ssa->cfg.map[i];
120
10.1k
      if (zend_bitset_in(scdf->executable_blocks, block_num)) {
121
8.09k
        zend_basic_block *block = &ssa->cfg.blocks[block_num];
122
8.09k
        zend_op *opline = &scdf->op_array->opcodes[i];
123
8.09k
        zend_ssa_op *ssa_op = &ssa->ops[i];
124
8.09k
        if (opline->opcode == ZEND_OP_DATA) {
125
41
          opline--;
126
41
          ssa_op--;
127
41
        }
128
8.09k
        scdf->handlers.visit_instr(scdf, opline, ssa_op);
129
8.09k
        if (i == block->start + block->len - 1) {
130
2.96k
          if (block->successors_count == 1) {
131
1.23k
            scdf_mark_edge_feasible(scdf, block_num, block->successors[0]);
132
1.72k
          } else if (block->successors_count > 1) {
133
1.72k
            scdf->handlers.mark_feasible_successors(scdf, block_num, block, opline, ssa_op);
134
1.72k
          }
135
2.96k
        }
136
8.09k
      }
137
10.1k
    }
138
139
239k
    while ((i = zend_bitset_pop_first(scdf->block_worklist, scdf->block_worklist_len)) >= 0) {
140
      /* This block is now live. Interpret phis and instructions in it. */
141
175k
      zend_basic_block *block = &ssa->cfg.blocks[i];
142
175k
      const zend_ssa_block *ssa_block = &ssa->blocks[i];
143
144
175k
      DEBUG_PRINT("Pop block %d from worklist\n", i);
145
175k
      zend_bitset_incl(scdf->executable_blocks, i);
146
147
307k
      for (const zend_ssa_phi *phi = ssa_block->phis; phi; phi = phi->next) {
148
132k
        zend_bitset_excl(scdf->phi_var_worklist, phi->ssa_var);
149
132k
        scdf->handlers.visit_phi(scdf, phi);
150
132k
      }
151
152
175k
      if (block->len == 0) {
153
        /* Zero length blocks don't have a last instruction that would normally do this */
154
91
        scdf_mark_edge_feasible(scdf, i, block->successors[0]);
155
175k
      } else {
156
175k
        zend_op *opline = NULL;
157
175k
        uint32_t j, end = block->start + block->len;
158
1.43M
        for (j = block->start; j < end; j++) {
159
1.25M
          opline = &scdf->op_array->opcodes[j];
160
1.25M
          zend_bitset_excl(scdf->instr_worklist, j);
161
1.25M
          if (opline->opcode != ZEND_OP_DATA) {
162
1.24M
            scdf->handlers.visit_instr(scdf, opline, &ssa->ops[j]);
163
1.24M
          }
164
1.25M
        }
165
175k
        if (block->successors_count == 1) {
166
55.7k
          scdf_mark_edge_feasible(scdf, i, block->successors[0]);
167
119k
        } else if (block->successors_count > 1) {
168
56.3k
          ZEND_ASSERT(opline && "Should have opline in non-empty block");
169
56.3k
          if (opline->opcode == ZEND_OP_DATA) {
170
0
            opline--;
171
0
            j--;
172
0
          }
173
56.3k
          scdf->handlers.mark_feasible_successors(scdf, i, block, opline, &ssa->ops[j-1]);
174
56.3k
        }
175
175k
      }
176
175k
    }
177
64.5k
  }
178
61.5k
}
179
180
/* If a live range starts in a reachable block and ends in an unreachable block, we should
181
 * not eliminate the latter. While it cannot be reached, the FREE opcode of the loop var
182
 * is necessary for the correctness of temporary compaction. */
183
static bool is_live_loop_var_free(
184
546
    const scdf_ctx *scdf, const zend_op *opline, const zend_ssa_op *ssa_op) {
185
546
  if (!zend_optimizer_is_loop_var_free(opline)) {
186
520
    return false;
187
520
  }
188
189
26
  int var = ssa_op->op1_use;
190
26
  if (var < 0) {
191
2
    return false;
192
2
  }
193
194
24
  const zend_ssa_var *ssa_var = &scdf->ssa->vars[var];
195
24
  uint32_t def_block;
196
24
  if (ssa_var->definition >= 0) {
197
8
    def_block = scdf->ssa->cfg.map[ssa_var->definition];
198
16
  } else {
199
16
    def_block = ssa_var->definition_phi->block;
200
16
  }
201
24
  return zend_bitset_in(scdf->executable_blocks, def_block);
202
26
}
203
204
3.76k
static bool kept_alive_by_loop_var_free(const scdf_ctx *scdf, const zend_basic_block *block) {
205
3.76k
  const zend_op_array *op_array = scdf->op_array;
206
3.76k
  const zend_cfg *cfg = &scdf->ssa->cfg;
207
3.76k
  if (!(cfg->flags & ZEND_FUNC_FREE_LOOP_VAR)) {
208
3.53k
    return false;
209
3.53k
  }
210
211
731
  for (uint32_t i = block->start; i < block->start + block->len; i++) {
212
514
    if (is_live_loop_var_free(scdf, &op_array->opcodes[i], &scdf->ssa->ops[i])) {
213
12
      return true;
214
12
    }
215
514
  }
216
217
  return false;
217
229
}
218
219
12
static uint32_t cleanup_loop_var_free_block(const scdf_ctx *scdf, const zend_basic_block *block) {
220
12
  zend_ssa *ssa = scdf->ssa;
221
12
  const zend_op_array *op_array = scdf->op_array;
222
12
  const zend_cfg *cfg = &ssa->cfg;
223
12
  int block_num = block - cfg->blocks;
224
12
  uint32_t removed_ops = 0;
225
226
  /* Removes phi nodes */
227
14
  for (zend_ssa_phi *phi = ssa->blocks[block_num].phis; phi; phi = phi->next) {
228
2
    zend_ssa_remove_uses_of_var(ssa, phi->ssa_var);
229
2
    zend_ssa_remove_phi(ssa, phi);
230
2
  }
231
232
44
  for (uint32_t i = block->start; i < block->start + block->len; i++) {
233
32
    zend_op *opline = &op_array->opcodes[i];
234
32
    zend_ssa_op *ssa_op = &scdf->ssa->ops[i];
235
32
    if (opline->opcode == ZEND_NOP
236
32
     || is_live_loop_var_free(scdf, opline, ssa_op)) {
237
12
      continue;
238
12
    }
239
240
    /* While we have to preserve the loop var free, we can still remove other instructions
241
     * in the block. */
242
20
    zend_ssa_remove_defs_of_instr(ssa, ssa_op);
243
20
    zend_ssa_remove_instr(ssa, opline, ssa_op);
244
20
    removed_ops++;
245
20
  }
246
247
12
  zend_ssa_remove_block_from_cfg(ssa, block_num);
248
249
12
  return removed_ops;
250
12
}
251
252
/* Removes unreachable blocks. This will remove both the instructions (and phis) in the
253
 * blocks, as well as remove them from the successor / predecessor lists and mark them
254
 * unreachable. Blocks already marked unreachable are not removed. */
255
61.5k
uint32_t scdf_remove_unreachable_blocks(const scdf_ctx *scdf) {
256
61.5k
  zend_ssa *ssa = scdf->ssa;
257
61.5k
  int i;
258
61.5k
  uint32_t removed_ops = 0;
259
240k
  for (i = 0; i < ssa->cfg.blocks_count; i++) {
260
179k
    const zend_basic_block *block = &ssa->cfg.blocks[i];
261
179k
    if (!zend_bitset_in(scdf->executable_blocks, i) && (block->flags & ZEND_BB_REACHABLE)) {
262
3.76k
      if (!kept_alive_by_loop_var_free(scdf, block)) {
263
3.74k
        removed_ops += block->len;
264
3.74k
        zend_ssa_remove_block(scdf->op_array, ssa, i);
265
3.74k
      } else {
266
12
        removed_ops += cleanup_loop_var_free_block(scdf, block);
267
12
      }
268
3.76k
    }
269
179k
  }
270
61.5k
  return removed_ops;
271
61.5k
}