Searched refs:ops (Results 51 – 70 of 70) sorted by relevance
123
/PHP-8.0/ext/opcache/Optimizer/ |
H A D | sccp.c | 329 zend_ssa_unlink_use_chain(ctx->scdf.ssa, ssa_op - ctx->scdf.ssa->ops, ssa_op->op2_use); in try_replace_op1() 358 zend_ssa_unlink_use_chain(ctx->scdf.ssa, next_op - ctx->scdf.ssa->ops, next_op->op2_use); in try_replace_op2() 1236 ssa_op = &ctx->scdf.ssa->ops[opline - ctx->scdf.op_array->opcodes]; in sccp_visit_instr() 1838 &ctx->scdf.ssa->ops[opline - ctx->scdf.op_array->opcodes]); in sccp_visit_instr() 2195 &ssa->ops[call->caller_init_opline - op_array->opcodes]); in remove_call() 2199 &ssa->ops[call->arg_info[i].opline - op_array->opcodes]); in remove_call() 2229 zend_ssa_op *ssa_op = &ssa->ops[var->definition]; in try_remove_definition() 2484 zend_ssa_op *ssa_op = &ssa->ops[use]; in replace_constant_operands()
|
H A D | zend_func_info.c | 63 &ssa->ops[call_info->arg_info[0].opline - op_array->opcodes]); in zend_range_info() 65 &ssa->ops[call_info->arg_info[1].opline - op_array->opcodes]); in zend_range_info() 71 &ssa->ops[call_info->arg_info[2].opline - op_array->opcodes]); in zend_range_info()
|
H A D | zend_optimizer.c | 1207 zend_ssa_op *ssa_op = &ssa->ops[opline - op_array->opcodes]; in zend_redo_pass_two_ex() 1215 …((ssa->ops[opline - op_array->opcodes].op1_def >= 0) ? (OP1_DEF_INFO() & (MAY_BE_UNDEF|MAY_BE_ANY|… in zend_redo_pass_two_ex() 1358 zend_ssa_op *ssa_op = &func_info->ssa.ops[def_opline - op_array->opcodes]; in needs_live_range()
|
H A D | zend_dump.c | 728 if (ssa && ssa->ops) { in zend_dump_op_line() 729 ssa_op = &ssa->ops[opline - op_array->opcodes]; in zend_dump_op_line()
|
/PHP-8.0/ext/standard/ |
H A D | filters.c | 1908 const php_stream_filter_ops *ops; member 1926 for (i = 0; standard_filters[i].ops; i++) { in PHP_MINIT_FUNCTION() 1928 standard_filters[i].ops->label, in PHP_MINIT_FUNCTION() 1941 for (i = 0; standard_filters[i].ops; i++) { in PHP_MSHUTDOWN_FUNCTION() 1942 php_stream_filter_unregister_factory(standard_filters[i].ops->label); in PHP_MSHUTDOWN_FUNCTION()
|
H A D | php_fopen_wrapper.c | 400 stream->ops = &php_stream_socket_ops; in php_stream_url_wrap_php()
|
H A D | streamsfuncs.c | 547 add_assoc_string(return_value, "stream_type", (char *)stream->ops->label); in PHP_FUNCTION() 568 …add_assoc_bool(return_value, "seekable", (stream->ops->seek) && (stream->flags & PHP_STREAM_FLAG_N… in PHP_FUNCTION()
|
/PHP-8.0/ext/opcache/jit/ |
H A D | zend_jit_x86.h | 266 zend_ival_is_last_use(ra[ssa_op->op], ssa_op - ssa->ops) \
|
H A D | zend_jit_x86.dasc | 10031 zend_ssa_op *ssa_op = &ssa->ops[opline - op_array->opcodes]; 14819 zend_ssa_op *ssa_op = &ssa->ops[opline - op_array->opcodes]; 15772 if (!zend_jit_opline_supports_reg(op_array, ssa, op_array->opcodes + def, ssa->ops + def, NULL)) { 15781 if (!zend_ssa_is_no_val_use(op_array->opcodes + use, ssa->ops + use, var) && 15782 … !zend_jit_opline_supports_reg(op_array, ssa, op_array->opcodes + use, ssa->ops + use, NULL)) { 15785 use = zend_ssa_next_use(ssa->ops, var, use); 16139 if (ssa_op == ssa->ops 16149 if (ssa_op == ssa->ops 16161 uint32_t b = ssa->cfg.map[ssa_op - ssa->ops]; 16164 && ssa->cfg.blocks[b].start == ssa_op - ssa->ops) {
|
/PHP-8.0/ext/mysqlnd/ |
H A D | mysqlnd_vio.c | 448 int was_blocked = net_stream->ops->set_option(net_stream, opt, 0, NULL); in MYSQLND_METHOD() 465 net_stream->ops->set_option(net_stream, opt, 1, NULL); in MYSQLND_METHOD()
|
H A D | mysqlnd_auth.c | 1220 return strcmp(conn->vio->data->stream->ops->label, "unix_socket") == 0; in is_secure_transport()
|
/PHP-8.0/main/streams/ |
H A D | filter.c | 471 ssize_t count = stream->ops->write(stream, bucket->buf, bucket->buflen); in _php_stream_filter_flush()
|
H A D | memory.c | 758 stream->ops = &php_stream_rfc2397_ops; in php_stream_url_wrap_rfc2397()
|
/PHP-8.0/ext/opcache/jit/dynasm/ |
H A D | dasm_x86.lua | 749 local ops, imm = map_opsize[opsize], toint(tailops) 750 if ops and imm then 752 return imm*map_opsizenum[ops]
|
/PHP-8.0/ext/posix/ |
H A D | posix.c | 502 stream->ops->label); in php_posix_stream_get_fd()
|
/PHP-8.0/sapi/phpdbg/ |
H A D | xml.md | 336 - compiled: yes/no - are there actual compiled ops? 340 - ops: number of opcodes in current executing context
|
/PHP-8.0/ext/openssl/ |
H A D | xp_ssl.c | 1763 if (cparam->inputs.session->ops != &php_openssl_socket_ops) { in php_openssl_setup_crypto() 2295 xparam->outputs.client = php_stream_alloc_rel(stream->ops, clisockdata, NULL, "r+"); in php_openssl_tcp_sockop_accept()
|
/PHP-8.0/ext/opcache/ |
H A D | ZendAccelerator.c | 1005 !stream->ops || in zend_get_file_handle_timestamp() 1006 !stream->ops->stat) { in zend_get_file_handle_timestamp() 1013 ret = stream->ops->stat(stream, &sb); in zend_get_file_handle_timestamp()
|
/PHP-8.0/ext/fileinfo/tests/ |
H A D | magic私はガラスを食べられます | 24234 >12 lelong x %d bytecode ops)
|
H A D | magic | 24234 >12 lelong x %d bytecode ops)
|
Completed in 259 milliseconds
123