Searched refs:SAME_VAR (Results 1 – 3 of 3) sorted by relevance
/PHP-8.2/Zend/Optimizer/ |
H A D | pass3.c | 141 SAME_VAR(opline->op1, target->op1)) { in zend_optimizer_pass3() 147 SAME_VAR(opline->op1, target->op1)) { in zend_optimizer_pass3() 177 (SAME_VAR(target->op1, opline->result) || in zend_optimizer_pass3() 178 SAME_VAR(target->op1, opline->op1))) { in zend_optimizer_pass3() 185 (SAME_VAR(target->op1, opline->result) || in zend_optimizer_pass3() 186 SAME_VAR(target->op1, opline->op1))) { in zend_optimizer_pass3() 192 (SAME_VAR(target->op1, opline->result) || in zend_optimizer_pass3() 193 SAME_VAR(target->op1, opline->op1))) { in zend_optimizer_pass3() 199 (SAME_VAR(target->op1, opline->result) || in zend_optimizer_pass3() 200 SAME_VAR(target->op1, opline->op1))) { in zend_optimizer_pass3() [all …]
|
H A D | block_pass.c | 1272 SAME_VAR(target->op1, last_op->op1)) { in zend_jmp_optimization() 1276 SAME_VAR(target->op1, last_op->op1)) { in zend_jmp_optimization() 1346 (SAME_VAR(target->op1, last_op->result) || in zend_jmp_optimization() 1347 SAME_VAR(target->op1, last_op->op1))) { in zend_jmp_optimization() 1352 (SAME_VAR(target->op1, last_op->result) || in zend_jmp_optimization() 1353 SAME_VAR(target->op1, last_op->op1))) { in zend_jmp_optimization() 1357 (SAME_VAR(target->op1, last_op->result) || in zend_jmp_optimization() 1358 SAME_VAR(target->op1, last_op->op1))) { in zend_jmp_optimization() 1363 (SAME_VAR(target->op1, last_op->result) || in zend_jmp_optimization() 1364 SAME_VAR(target->op1, last_op->op1))) { in zend_jmp_optimization() [all …]
|
H A D | zend_optimizer_internal.h | 42 #define SAME_VAR(op1, op2) (op1 ## _type == op2 ## _type && op1.var == op2.var) macro
|
Completed in 14 milliseconds