- OPcache:
. Fixed bug #80002 (calc free space for new interned string is wrong).
(t-matsuno)
+ . Fixed bug #80046 (FREE for SWITCH_STRING optimized away). (Nikita)
- PDO:
. Fixed bug #80027 (Terrible performance using $query->fetch on queries with
--- /dev/null
+--TEST--
+Bug #80046: FREE for SWITCH_STRING optimized away
+--FILE--
+<?php
+
+function test($foo) {
+ switch ($foo . 'Bar') {
+ case 'A':
+ throw new Exception('A');
+ default:
+ throw new Exception('Default');
+ }
+}
+try {
+ test('Foo');
+} catch (Exception $e) {
+ echo $e->getMessage(), "\n";
+}
+
+?>
+--EXPECT--
+Default
if (b->len == 0) {
continue;
}
- if (b->flags & ZEND_BB_REACHABLE) {
+ if (b->flags & (ZEND_BB_REACHABLE|ZEND_BB_UNREACHABLE_FREE)) {
+ if (b->flags & ZEND_BB_UNREACHABLE_FREE) {
+ /* Only keep the FREE for the loop var */
+ ZEND_ASSERT(op_array->opcodes[b->start].opcode == ZEND_FREE
+ || op_array->opcodes[b->start].opcode == ZEND_FE_FREE);
+ len += b->len = 1;
+ continue;
+ }
+
opline = op_array->opcodes + b->start + b->len - 1;
if (opline->opcode == ZEND_JMP) {
zend_basic_block *next = b + 1;
/* Copy code of reachable blocks into a single buffer */
for (b = blocks; b < end; b++) {
- if (b->flags & ZEND_BB_REACHABLE) {
+ if (b->flags & (ZEND_BB_REACHABLE|ZEND_BB_UNREACHABLE_FREE)) {
memcpy(opline, op_array->opcodes + b->start, b->len * sizeof(zend_op));
b->start = opline - new_opcodes;
opline += b->len;
/* rebuild map (just for printing) */
memset(cfg->map, -1, sizeof(int) * op_array->last);
for (n = 0; n < cfg->blocks_count; n++) {
- if (cfg->blocks[n].flags & ZEND_BB_REACHABLE) {
+ if (cfg->blocks[n].flags & (ZEND_BB_REACHABLE|ZEND_BB_UNREACHABLE_FREE)) {
cfg->map[cfg->blocks[n].start] = n;
}
}
}
/* Build CFG, Step 4, Mark Reachable Basic Blocks */
- zend_mark_reachable_blocks(op_array, cfg, 0);
-
cfg->flags |= flags;
+ zend_mark_reachable_blocks(op_array, cfg, 0);
return SUCCESS;
}