Home
last modified time | relevance | path

Searched refs:IS_UNUSED (Results 1 – 25 of 28) sorted by relevance

12

/php-src/Zend/Optimizer/
H A Dzend_inference.h46 return (opline->opN##_type != IS_UNUSED && \
62 } else if (opline->opN##_type != IS_UNUSED && \
79 } else if (opline->opN##_type != IS_UNUSED && \
96 } else if (opline->opN##_type != IS_UNUSED && \
113 } else if (opline->opN##_type != IS_UNUSED && \
H A Dcompact_literals.c547 if (opline->op1_type == IS_UNUSED && in zend_optimizer_compact_literals()
553 if (opline->op1_type == IS_UNUSED) { in zend_optimizer_compact_literals()
574 if (opline->op1_type == IS_UNUSED && in zend_optimizer_compact_literals()
580 if (opline->op1_type == IS_UNUSED) { in zend_optimizer_compact_literals()
589 if (opline->op1_type == IS_UNUSED && in zend_optimizer_compact_literals()
595 if (opline->op1_type == IS_UNUSED) { in zend_optimizer_compact_literals()
616 if (opline->op1_type == IS_UNUSED && in zend_optimizer_compact_literals()
622 if (opline->op1_type == IS_UNUSED) { in zend_optimizer_compact_literals()
H A Dzend_cfg.h114 ((opline)->result_type != IS_UNUSED)
H A Dpass1.c233 opline->result_type = IS_UNUSED; in zend_optimizer_pass1()
318 opline->op1_type = IS_UNUSED; in zend_optimizer_pass1()
H A Ddce.c255 if ((opline->extended_value & ZEND_BIND_REF) && opline->op2_type != IS_UNUSED) { in may_have_side_effects()
379 def_opline->result_type = IS_UNUSED; in try_remove_var_def()
523 return opline->opcode == ZEND_ADD_ARRAY_ELEMENT && opline->op2_type == IS_UNUSED; in may_throw_dce_exception()
H A Dblock_pass.c307 src->result_type = IS_UNUSED; in zend_optimize_block()
326 src->result_type = IS_UNUSED; in zend_optimize_block()
414 opline->op1_type = IS_UNUSED; in zend_optimize_block()
415 opline->op2_type = IS_UNUSED; in zend_optimize_block()
762 opline->op2_type = IS_UNUSED; in zend_optimize_block()
772 opline->op2_type = IS_UNUSED; in zend_optimize_block()
1550 opline->result_type = IS_UNUSED; in zend_t_usage()
1559 opline->result_type = IS_UNUSED; in zend_t_usage()
H A Ddfa_pass.c847 opline->result_type = IS_UNUSED; in zend_dfa_optimize_jmps()
861 opline->result_type = IS_UNUSED; in zend_dfa_optimize_jmps()
875 opline->result_type = IS_UNUSED; in zend_dfa_optimize_jmps()
901 opline->result_type = IS_UNUSED; in zend_dfa_optimize_jmps()
917 opline->result_type = IS_UNUSED; in zend_dfa_optimize_jmps()
1046 op_array->opcodes[def].result_type = IS_UNUSED; in zend_dfa_try_to_replace_result()
1213 opline->op2_type = IS_UNUSED; in zend_dfa_optimize_op_array()
1262 opline->op2_type = IS_UNUSED; in zend_dfa_optimize_op_array()
1633 opline->op2_type = IS_UNUSED; in zend_dfa_optimize_op_array()
H A Dzend_optimizer_internal.h43 #define RESULT_UNUSED(op) (op->result_type == IS_UNUSED)
H A Dzend_optimizer.c824 } else if (opline->op1_type == IS_UNUSED && op_array->scope in zend_optimizer_get_class_entry_from_op1()
860 } else if (opline->op1_type == IS_UNUSED in zend_fetch_class_const_info()
950 if (opline->op1_type == IS_UNUSED in zend_optimizer_get_called_func()
1314 …uint32_t op1_info = opline->op1_type == IS_UNUSED ? 0 : (OP1_INFO() & (MAY_BE_UNDEF|MAY_BE_ANY|MAY… in zend_redo_pass_two_ex()
1315 …uint32_t op2_info = opline->op1_type == IS_UNUSED ? 0 : (OP2_INFO() & (MAY_BE_UNDEF|MAY_BE_ANY|MAY… in zend_redo_pass_two_ex()
1322 …(opline->result_type == IS_UNUSED ? 0 : (RES_INFO() & (MAY_BE_UNDEF|MAY_BE_ANY|MAY_BE_REF|MAY_BE_A… in zend_redo_pass_two_ex()
H A Dzend_inference.c2204 if (dim_op_type == IS_UNUSED) { in assign_dim_array_result_type()
2467 if (opline->op2_type == IS_UNUSED) { in zend_fetch_static_prop_info()
2809 if (opline->op2_type == IS_UNUSED) { in _zend_update_type_info()
3346 if (opline->op2_type == IS_UNUSED) { in _zend_update_type_info()
3445 if (opline->op1_type != IS_UNUSED in _zend_update_type_info()
3446 && (opline->op2_type == IS_UNUSED in _zend_update_type_info()
3586 if (opline->op2_type == IS_UNUSED) { in _zend_update_type_info()
3745 opline->op2_type == IS_UNUSED); in _zend_update_type_info()
3783 if (opline->op1_type != IS_UNUSED in _zend_update_type_info()
3799 if (opline->op1_type == IS_UNUSED) { in _zend_update_type_info()
[all …]
H A Doptimize_func_calls.c254 && opline->op2_type == IS_UNUSED) { in zend_optimize_func_calls()
H A Dsccp.c2137 opline->result_type = IS_UNUSED; in try_remove_definition()
2168 opline->result_type = IS_UNUSED; in try_remove_definition()
2240 opline->result_type = IS_UNUSED; in try_remove_definition()
2291 if (opline->op2_type == IS_UNUSED) { in try_remove_definition()
2308 opline->result_type = IS_UNUSED; in try_remove_definition()
H A Descape_analysis.c354 if (opline->op2_type == IS_CV || opline->result_type != IS_UNUSED) { in is_escape_use()
/php-src/Zend/
H A Dzend_vm_execute.h10318 if (IS_UNUSED == IS_UNUSED) { in ZEND_FETCH_DIM_FUNC_ARG_SPEC_CONST_UNUSED_HANDLER()
10737 if (IS_UNUSED != IS_UNUSED) { in ZEND_ADD_ARRAY_ELEMENT_SPEC_CONST_UNUSED_HANDLER()
10982 if (IS_UNUSED != IS_UNUSED) { in ZEND_YIELD_SPEC_CONST_UNUSED_HANDLER()
21126 if (IS_UNUSED != IS_UNUSED) { in ZEND_ADD_ARRAY_ELEMENT_SPEC_TMP_UNUSED_HANDLER()
21289 if (IS_UNUSED != IS_UNUSED) { in ZEND_YIELD_SPEC_TMP_UNUSED_HANDLER()
28684 if (IS_UNUSED != IS_UNUSED) { in ZEND_ASSIGN_DIM_SPEC_VAR_UNUSED_OP_DATA_CONST_HANDLER()
28837 if (IS_UNUSED != IS_UNUSED) { in ZEND_ASSIGN_DIM_SPEC_VAR_UNUSED_OP_DATA_TMP_HANDLER()
34294 if (IS_UNUSED == IS_UNUSED in ZEND_INIT_STATIC_METHOD_CALL_SPEC_UNUSED_CONST_HANDLER()
36349 if (IS_UNUSED == IS_UNUSED in ZEND_INIT_STATIC_METHOD_CALL_SPEC_UNUSED_TMPVAR_HANDLER()
36764 if (IS_UNUSED == IS_UNUSED in ZEND_INIT_STATIC_METHOD_CALL_SPEC_UNUSED_UNUSED_HANDLER()
[all …]
H A Dzend_verify_type_inference.h75 if (Z_TYPE_P(value) == IS_UNUSED && op_type == IS_VAR && (type_mask & MAY_BE_NULL)) { in zend_verify_type_inference()
H A Dzend_vm_def.h1167 if (OP2_TYPE == IS_UNUSED) {
2016 if (OP2_TYPE == IS_UNUSED) {
2570 if (OP2_TYPE == IS_UNUSED) {
2700 if (OP2_TYPE != IS_UNUSED) {
2789 if (OP1_TYPE == IS_UNUSED) {
3432 if (OP2_TYPE == IS_UNUSED) {
3510 if (OP1_TYPE == IS_UNUSED) {
3737 if (OP1_TYPE == IS_UNUSED
4280 if (OP1_TYPE == IS_UNUSED) {
6096 if (OP2_TYPE != IS_UNUSED) {
[all …]
H A Dzend.h55 (EX(prev_execute_data)->opline->result_type != IS_UNUSED))
H A Dzend_compile.h35 op ## _type = IS_UNUSED; \
779 #define IS_UNUSED 0 /* Unused operand */ macro
H A Dzend_execute.c131 #define RETURN_VALUE_USED(opline) ((opline)->result_type != IS_UNUSED)
532 if (op_type == IS_UNUSED) { in _get_obj_zval_ptr()
540 if (op_type == IS_UNUSED) { in _get_obj_zval_ptr_undef()
548 if (op_type == IS_UNUSED) { in _get_obj_zval_ptr_ptr()
2324 if (opline->op2_type == IS_UNUSED) { in zend_binary_assign_op_dim_slow()
3166 if (container_op_type != IS_UNUSED && UNEXPECTED(Z_TYPE_P(container) != IS_OBJECT)) { in zend_fetch_property_address()
3338 zend_assign_to_property_reference(container, IS_UNUSED, prop_ptr, IS_CONST, value_ptr in zend_assign_to_property_reference_this_const()
3350 zend_assign_to_property_reference(container, IS_UNUSED, prop_ptr, IS_VAR, value_ptr in zend_assign_to_property_reference_this_var()
3383 if (EXPECTED(op2_type == IS_UNUSED)) { in zend_fetch_static_property_address_ex()
3440 …pe == IS_CONST && (opline->op2_type == IS_CONST || (opline->op2_type == IS_UNUSED && (opline->op2.… in zend_fetch_static_property_address()
H A Dzend_opcode.c1140 if (call->result_type == IS_UNUSED) { in pass_two()
1141 opline->result_type = IS_UNUSED; in pass_two()
H A Dzend_compile.c2803 result->op_type = IS_UNUSED; in zend_compile_class_ref()
2828 result->op_type = IS_UNUSED; in zend_compile_class_ref()
3032 dim_node.op_type = IS_UNUSED; in zend_delayed_compile_dim()
3068 obj_node.op_type = IS_UNUSED; in zend_delayed_compile_prop()
4890 obj_node.op_type = IS_UNUSED; in zend_compile_method_call()
4990 method_node.op_type = IS_UNUSED; in zend_compile_static_call()
7212 default_node.op_type = IS_UNUSED; in zend_compile_params()
7230 default_node.op_type = IS_UNUSED; in zend_compile_params()
7296 default_node.op_type = IS_UNUSED; in zend_compile_params()
8488 opline->result_type = IS_UNUSED; in zend_compile_class_decl()
[all …]
/php-src/ext/opcache/jit/
H A Dzend_jit_ir.c2903 opline.result_type = IS_UNUSED; in zend_jit_setup_disasm()
2913 opline.result_type = IS_UNUSED; in zend_jit_setup_disasm()
2923 opline.result_type = IS_UNUSED; in zend_jit_setup_disasm()
11383 ir_ref if_type = IS_UNUSED;
11734 if_type = IS_UNUSED;
12448 if (opline->op2_type == IS_UNUSED) {
12819 if (opline->op2_type == IS_UNUSED) {
12950 ir_ref if_type = IS_UNUSED;
13110 if_type = IS_UNUSED;
15559 if_type = IS_UNUSED;
[all …]
H A Dzend_jit.c1482 if (opline->result_type != IS_UNUSED) { in zend_jit()
1658 if (opline->op1_type != IS_CV || opline->result_type != IS_UNUSED) { in zend_jit()
1680 if (opline->op1_type != IS_CV || opline->result_type != IS_UNUSED) { in zend_jit()
1725 if (opline->op1_type == IS_UNUSED) { in zend_jit()
1755 if (opline->result_type != IS_UNUSED) { in zend_jit()
1773 if (opline->op1_type == IS_UNUSED) { in zend_jit()
1814 if (opline->op1_type == IS_UNUSED) { in zend_jit()
1863 if (opline->result_type == IS_UNUSED) { in zend_jit()
2283 if (opline->op1_type == IS_UNUSED) { in zend_jit()
2382 if (opline->op1_type == IS_UNUSED) { in zend_jit()
[all …]
H A Dzend_jit_trace.c1774 if (opline->result_type != IS_UNUSED) { in zend_jit_trace_build_tssa()
1832 if (opline->result_type != IS_UNUSED) { in zend_jit_trace_build_tssa()
1913 if (opline->op1_type == IS_UNUSED) { in zend_jit_trace_build_tssa()
2104 if (opline->op1_type == IS_UNUSED) { in zend_jit_trace_build_tssa()
4378 if (opline->result_type != IS_UNUSED in zend_jit_trace()
4653 if (opline->op1_type == IS_UNUSED) { in zend_jit_trace()
4744 if (opline->op1_type == IS_UNUSED) { in zend_jit_trace()
4824 if (opline->op1_type == IS_UNUSED) { in zend_jit_trace()
5874 if (opline->op1_type == IS_UNUSED) { in zend_jit_trace()
6075 if (opline->op1_type == IS_UNUSED) { in zend_jit_trace()
[all …]
/php-src/
H A D.gdbinit561 set $optype = "IS_UNUSED"

Completed in 378 milliseconds

12