/PHP-7.3/ext/pdo_pgsql/ |
H A D | pgsql_driver.c | 1040 zend_long result_type = PDO_FETCH_USE_DEFAULT; in PHP_METHOD() local 1045 &result_type, &ms_timeout)) { in PHP_METHOD() 1052 if (result_type == PDO_FETCH_USE_DEFAULT) { in PHP_METHOD() 1053 result_type = dbh->default_fetch_type; in PHP_METHOD() 1056 …if (result_type != PDO_FETCH_BOTH && result_type != PDO_FETCH_ASSOC && result_type != PDO_FETCH_NU… in PHP_METHOD() 1096 if (result_type == PDO_FETCH_NUM || result_type == PDO_FETCH_BOTH) { in PHP_METHOD() 1103 if (result_type == PDO_FETCH_ASSOC || result_type == PDO_FETCH_BOTH) { in PHP_METHOD()
|
/PHP-7.3/ext/opcache/Optimizer/ |
H A D | compact_vars.c | 45 if (opline->result_type & (IS_CV|IS_VAR|IS_TMP_VAR)) { in zend_optimizer_compact_vars() 93 if (opline->result_type & (IS_CV|IS_VAR|IS_TMP_VAR)) { in zend_optimizer_compact_vars()
|
H A D | pass3.c | 250 zend_uchar T_type = opline->result_type; in zend_optimizer_pass3() 336 if(op->result_type == IS_TMP_VAR && in zend_optimizer_pass3() 370 if(op->result_type == IS_TMP_VAR && in zend_optimizer_pass3() 446 opline->result_type = IS_UNUSED; in zend_optimizer_pass3()
|
H A D | dce.c | 359 def_opline->result_type = IS_UNUSED; in try_remove_var_def() 492 if ((op_array->opcodes[def].result_type == IS_UNUSED) && in dce_live_ranges() 499 if (op_array->opcodes[def].result_type == IS_UNUSED) { in dce_live_ranges() 504 if ((op_array->opcodes[def].result_type & (IS_TMP_VAR|IS_VAR)) in dce_live_ranges() 516 ZEND_ASSERT(op_array->opcodes[def].result_type & (IS_TMP_VAR|IS_VAR)); in dce_live_ranges() 520 if (!(op_array->opcodes[def].result_type & (IS_TMP_VAR|IS_VAR)) in dce_live_ranges()
|
H A D | zend_cfg.h | 119 ((opline)->result_type != IS_UNUSED)
|
H A D | optimize_temp_vars_5.c | 69 if (opline->result_type & (IS_VAR | IS_TMP_VAR)) { in zend_optimize_temporary_variables() 153 if (opline->result_type & (IS_VAR | IS_TMP_VAR)) { in zend_optimize_temporary_variables()
|
H A D | zend_dfg.c | 196 if (opline->result_type & (IS_CV|IS_VAR|IS_TMP_VAR)) { in zend_build_dfg() 199 && opline->result_type == IS_CV) { in zend_build_dfg()
|
H A D | zend_dump.c | 430 if (opline->result_type & (IS_CV|IS_VAR|IS_TMP_VAR)) { in zend_dump_op() 433 …zend_dump_ssa_var(op_array, ssa, ssa_var_num, opline->result_type, EX_VAR_TO_NUM(opline->result.va… in zend_dump_op() 435 zend_dump_var(op_array, opline->result_type, EX_VAR_TO_NUM(opline->result.var)); in zend_dump_op() 692 if (opline->result_type == IS_CONST) { in zend_dump_op() 695 if (opline->result_type & (IS_CV|IS_VAR|IS_TMP_VAR)) { in zend_dump_op() 700 …zend_dump_ssa_var(op_array, ssa, ssa_var_num, opline->result_type, EX_VAR_TO_NUM(opline->result.va… in zend_dump_op() 704 zend_dump_var(op_array, opline->result_type, EX_VAR_TO_NUM(opline->result.var)); in zend_dump_op() 710 …zend_dump_ssa_var(op_array, ssa, ssa_var_num, opline->result_type, EX_VAR_TO_NUM(opline->result.va… in zend_dump_op()
|
H A D | block_pass.c | 358 src->result_type = IS_UNUSED; in zend_optimize_block() 621 (opline->result_type == opline->op1_type && in zend_optimize_block() 889 if (opline->op1_type == opline->result_type && in zend_optimize_block() 899 if (opline->result_type & (IS_VAR|IS_TMP_VAR)) { in zend_optimize_block() 1449 same_t[VAR_NUM_EX(last_op->result)] |= last_op->result_type; in zend_jmp_optimization() 1694 if (opline->result_type == IS_VAR) { in zend_t_usage() 1697 } else if (opline->result_type == IS_TMP_VAR) { in zend_t_usage() 1757 if (opline->result_type == IS_VAR) { in zend_t_usage() 1780 opline->result_type = IS_UNUSED; in zend_t_usage() 1786 } else if (opline->result_type == IS_TMP_VAR) { in zend_t_usage() [all …]
|
H A D | dfa_pass.c | 828 opline->result_type = IS_UNUSED; in zend_dfa_optimize_jmps() 842 opline->result_type = IS_UNUSED; in zend_dfa_optimize_jmps() 856 opline->result_type = IS_UNUSED; in zend_dfa_optimize_jmps() 881 if (opline->result_type & (IS_TMP_VAR|IS_VAR)) { in zend_dfa_optimize_jmps() 885 opline->result_type = IS_UNUSED; in zend_dfa_optimize_jmps() 1109 op_array->opcodes[op_2].result_type = opline->op1_type; in zend_dfa_optimize_op_array() 1137 opline->result_type = opline->op1_type; in zend_dfa_optimize_op_array() 1227 opline->result_type = opline->op1_type; in zend_dfa_optimize_op_array()
|
H A D | pass2.c | 136 opline->result_type == IS_TMP_VAR && in zend_optimizer_pass2()
|
H A D | zend_optimizer_internal.h | 41 #define RESULT_UNUSED(op) (op->result_type == IS_UNUSED)
|
H A D | pass1_5.c | 95 …if (zend_optimizer_replace_by_const(op_array, opline + 1, opline->result_type, opline->result.var,… in zend_optimizer_pass1() 319 opline->result_type = IS_UNUSED; in zend_optimizer_pass1()
|
H A D | sccp.c | 2175 && opline->result_type & (IS_VAR|IS_TMP_VAR) in try_remove_definition() 2182 zend_uchar old_type = opline->result_type; in try_remove_definition() 2194 opline->result_type = old_type; in try_remove_definition() 2201 if (opline->result_type & (IS_TMP_VAR|IS_VAR)) { in try_remove_definition() 2214 opline->result_type = IS_UNUSED; in try_remove_definition() 2266 if (opline->result_type & (IS_TMP_VAR|IS_VAR)) { in try_remove_definition() 2270 opline->result_type = IS_UNUSED; in try_remove_definition()
|
H A D | zend_ssa.c | 179 if (op->result_type != IS_TMP_VAR || op->result.var != var_num) { in find_adjusted_tmp_var() 782 if (opline->result_type == IS_CV) { in zend_ssa_rename() 791 } else if (opline->result_type & (IS_VAR|IS_TMP_VAR)) { in zend_ssa_rename() 1429 if (op_array->opcodes[j].result_type & (IS_TMP_VAR|IS_VAR)) { in zend_ssa_remove_block()
|
H A D | ssa_integrity.c | 198 if (is_var_type(opline->result_type)) { in ssa_verify_integrity()
|
H A D | escape_analysis.c | 381 if (opline->op2_type == IS_CV || opline->result_type != IS_UNUSED) { in is_escape_use()
|
/PHP-7.3/sapi/phpdbg/ |
H A D | phpdbg_opcode.c | 120 decode[3] = phpdbg_decode_op(ops, opline, &opline->result, opline->result_type); in phpdbg_decode_opline() 123 decode[3] = phpdbg_decode_op(ops, opline, &opline->result, opline->result_type); in phpdbg_decode_opline()
|
/PHP-7.3/ext/pgsql/ |
H A D | pgsql.c | 258 ZEND_ARG_INFO(0, result_type) 269 ZEND_ARG_INFO(0, result_type) 282 ZEND_ARG_INFO(0, result_type) 526 ZEND_ARG_INFO(0, result_type) 589 ZEND_ARG_INFO(0, result_type) 2740 result_type = PGSQL_ASSOC; 2789 if (result_type & PGSQL_NUM) { 2912 long result_type = PGSQL_ASSOC; local 5329 if (result_type & PGSQL_NUM) { 5342 if (result_type & PGSQL_ASSOC) { [all …]
|
/PHP-7.3/ext/mysqli/tests/ |
H A D | mysqli_class_mysqli_result_reflection.phpt | 127 Inspecting parameter 'result_type' of method 'fetch_all' 150 Inspecting parameter 'result_type' of method 'fetch_array'
|
/PHP-7.3/Zend/ |
H A D | zend_opcode.c | 616 if (call->result_type == IS_UNUSED) { in pass_two() 617 opline->result_type = IS_UNUSED; in pass_two() 664 if (opline->result_type & (IS_VAR|IS_TMP_VAR)) { in pass_two()
|
H A D | zend_compile.c | 726 if (opline->result_type == IS_VAR in zend_do_free() 730 opline->result_type = IS_UNUSED; in zend_do_free() 732 opline->result_type = IS_UNUSED; in zend_do_free() 743 if (opline->result_type == IS_VAR in zend_do_free() 1914 opline->result_type = IS_TMP_VAR; in zend_adjust_for_fetch_type() 1924 opline->result_type = IS_TMP_VAR; in zend_adjust_for_fetch_type() 1941 opline->result_type = IS_VAR; in zend_make_var_result() 1949 opline->result_type = IS_TMP_VAR; in zend_make_tmp_result() 2621 opline->result_type = IS_VAR; in zend_separate_if_call_and_write() 5212 opline->result_type = IS_CV; in zend_compile_try() [all …]
|
H A D | zend.h | 51 (EX(prev_execute_data)->opline->result_type != IS_UNUSED))
|
H A D | zend_compile.h | 41 (opline)->result_type = IS_UNUSED; \ 150 zend_uchar result_type; member
|
/PHP-7.3/ext/mysqli/ |
H A D | mysqli_fe.c | 231 ZEND_ARG_INFO(0, result_type) 235 ZEND_ARG_INFO(0, result_type)
|