Home
last modified time | relevance | path

Searched refs:result_type (Results 1 – 25 of 31) sorted by relevance

12

/PHP-7.3/ext/pdo_pgsql/
H A Dpgsql_driver.c1040 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 Dcompact_vars.c45 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 Dpass3.c250 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 Ddce.c359 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 Dzend_cfg.h119 ((opline)->result_type != IS_UNUSED)
H A Doptimize_temp_vars_5.c69 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 Dzend_dfg.c196 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 Dzend_dump.c430 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 Dblock_pass.c358 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 Ddfa_pass.c828 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 Dpass2.c136 opline->result_type == IS_TMP_VAR && in zend_optimizer_pass2()
H A Dzend_optimizer_internal.h41 #define RESULT_UNUSED(op) (op->result_type == IS_UNUSED)
H A Dpass1_5.c95 …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 Dsccp.c2175 && 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 Dzend_ssa.c179 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 Dssa_integrity.c198 if (is_var_type(opline->result_type)) { in ssa_verify_integrity()
H A Descape_analysis.c381 if (opline->op2_type == IS_CV || opline->result_type != IS_UNUSED) { in is_escape_use()
/PHP-7.3/sapi/phpdbg/
H A Dphpdbg_opcode.c120 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 Dpgsql.c258 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 Dmysqli_class_mysqli_result_reflection.phpt127 Inspecting parameter 'result_type' of method 'fetch_all'
150 Inspecting parameter 'result_type' of method 'fetch_array'
/PHP-7.3/Zend/
H A Dzend_opcode.c616 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 Dzend_compile.c726 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 Dzend.h51 (EX(prev_execute_data)->opline->result_type != IS_UNUSED))
H A Dzend_compile.h41 (opline)->result_type = IS_UNUSED; \
150 zend_uchar result_type; member
/PHP-7.3/ext/mysqli/
H A Dmysqli_fe.c231 ZEND_ARG_INFO(0, result_type)
235 ZEND_ARG_INFO(0, result_type)

Completed in 88 milliseconds

12