Home
last modified time | relevance | path

Searched refs:ops (Results 26 – 50 of 86) sorted by relevance

1234

/PHP-8.1/Zend/Optimizer/
H A Dscdf.c124 zend_ssa_op *ssa_op = &ssa->ops[i]; in scdf_solve()
166 scdf->handlers.visit_instr(scdf, opline, &ssa->ops[j]); in scdf_solve()
177 scdf->handlers.mark_feasible_successors(scdf, i, block, opline, &ssa->ops[j-1]); in scdf_solve()
216 if (is_live_loop_var_free(scdf, &op_array->opcodes[i], &scdf->ssa->ops[i])) { in kept_alive_by_loop_var_free()
238 zend_ssa_op *ssa_op = &scdf->ssa->ops[i]; in cleanup_loop_var_free_block()
H A Dzend_ssa.c794 zend_ssa_op *ssa_ops = ssa->ops; in zend_ssa_rename()
1082 zend_ssa_op *op = ssa->ops + i; in zend_ssa_compute_use_def_chains()
1187 if (ssa->ops[use].result_use == var) { in zend_ssa_unlink_use_chain()
1189 ssa->ops[use].res_use_chain = zend_ssa_next_use(ssa->ops, var, op); in zend_ssa_unlink_use_chain()
1192 use = ssa->ops[use].res_use_chain; in zend_ssa_unlink_use_chain()
1196 ssa->ops[use].op1_use_chain = zend_ssa_next_use(ssa->ops, var, op); in zend_ssa_unlink_use_chain()
1199 use = ssa->ops[use].op1_use_chain; in zend_ssa_unlink_use_chain()
1203 ssa->ops[use].op2_use_chain = zend_ssa_next_use(ssa->ops, var, op); in zend_ssa_unlink_use_chain()
1206 use = ssa->ops[use].op2_use_chain; in zend_ssa_unlink_use_chain()
1375 zend_ssa_op *ssa_op = &ssa->ops[use]; in zend_ssa_remove_uses_of_var()
[all …]
H A Dzend_func_info.c60 &ssa->ops[call_info->arg_info[0].opline - op_array->opcodes]); in zend_range_info()
62 &ssa->ops[call_info->arg_info[1].opline - op_array->opcodes]); in zend_range_info()
68 &ssa->ops[call_info->arg_info[2].opline - op_array->opcodes]); in zend_range_info()
H A Descape_analysis.c103 zend_ssa_op *op = ssa->ops + def; in zend_build_equi_escape_sets()
152 zend_ssa_op *ssa_op = ssa->ops + def; in is_allocation_def()
217 zend_ssa_op *op = ssa->ops + def; in is_local_def()
261 zend_ssa_op *ssa_op = ssa->ops + use; in is_escape_use()
466 zend_ssa_op *op = ssa->ops + use; in zend_ssa_escape_analysis()
/PHP-8.1/sapi/phpdbg/
H A Dphpdbg_list.c174 const zend_op_array *ops; in phpdbg_list_function() local
181 ops = (zend_op_array *) fbc; in phpdbg_list_function()
183 phpdbg_list_file(ops->filename, ops->line_end - ops->line_start + 1, ops->line_start, 0); in phpdbg_list_function()
H A Dphpdbg_prompt.c383 if (PHPDBG_G(ops)) { in phpdbg_clean()
384 destroy_op_array(PHPDBG_G(ops)); in phpdbg_clean()
385 efree(PHPDBG_G(ops)); in phpdbg_clean()
386 PHPDBG_G(ops) = NULL; in phpdbg_clean()
423 if (PHPDBG_G(ops)) { in PHPDBG_COMMAND()
569 PHPDBG_G(ops) = zend_compile_file(&fh, ZEND_INCLUDE); in phpdbg_compile()
750 if (PHPDBG_G(ops) || PHPDBG_G(exec)) { in PHPDBG_COMMAND()
762 if (!PHPDBG_G(ops)) { in PHPDBG_COMMAND()
885 zend_execute(PHPDBG_G(ops), &PHPDBG_G(retval)); in PHPDBG_COMMAND()
1112 if (PHPDBG_G(ops)) { in PHPDBG_COMMAND()
[all …]
/PHP-8.1/main/streams/
H A Dstreams.c291 ret->ops = ops; in _php_stream_alloc()
475 ret = stream->ops->close(stream, preserve_handle ? 0 : 1); in _php_stream_free()
708 toread = stream->ops->read(stream, buf, size); in _php_stream_read()
746 (stream->ops != &php_stream_memory_ops) && in _php_stream_read()
747 (stream->ops != &php_stream_temp_ops)) { in _php_stream_read()
841 if (stream->ops->stat == NULL) { in _php_stream_stat()
845 return (stream->ops->stat)(stream, ssb); in _php_stream_stat()
1232 if (stream->ops->flush) { in _php_stream_flush()
1233 ret = stream->ops->flush(stream); in _php_stream_flush()
1248 if (stream->ops->write == NULL) { in _php_stream_write()
[all …]
/PHP-8.1/ext/hash/
H A Dphp_hash_adler32.h30 PHP_HASH_API int PHP_ADLER32Copy(const php_hash_ops *ops, PHP_ADLER32_CTX *orig_context, PHP_ADLER3…
H A Dhash_xxhash.c69 PHP_HASH_API int PHP_XXH32Copy(const php_hash_ops *ops, PHP_XXH32_CTX *orig_context, PHP_XXH32_CTX … in PHP_XXH32Copy() argument
133 PHP_HASH_API int PHP_XXH64Copy(const php_hash_ops *ops, PHP_XXH64_CTX *orig_context, PHP_XXH64_CTX … in PHP_XXH64Copy() argument
213 PHP_HASH_API int PHP_XXH3_64_Copy(const php_hash_ops *ops, PHP_XXH3_64_CTX *orig_context, PHP_XXH3_… in PHP_XXH3_64_Copy() argument
263 PHP_HASH_API int PHP_XXH3_128_Copy(const php_hash_ops *ops, PHP_XXH3_128_CTX *orig_context, PHP_XXH… in PHP_XXH3_128_Copy() argument
H A Dphp_hash_crc32.h33 PHP_HASH_API int PHP_CRC32Copy(const php_hash_ops *ops, PHP_CRC32_CTX *orig_context, PHP_CRC32_CTX …
H A Dhash_murmur.c73 PHP_HASH_API int PHP_MURMUR3ACopy(const php_hash_ops *ops, PHP_MURMUR3A_CTX *orig_context, PHP_MURM… in PHP_MURMUR3ACopy() argument
147 PHP_HASH_API int PHP_MURMUR3CCopy(const php_hash_ops *ops, PHP_MURMUR3C_CTX *orig_context, PHP_MURM… in PHP_MURMUR3CCopy() argument
219 PHP_HASH_API int PHP_MURMUR3FCopy(const php_hash_ops *ops, PHP_MURMUR3F_CTX *orig_context, PHP_MURM… in PHP_MURMUR3FCopy() argument
H A Dhash_adler32.c55 PHP_HASH_API int PHP_ADLER32Copy(const php_hash_ops *ops, PHP_ADLER32_CTX *orig_context, PHP_ADLER3… in PHP_ADLER32Copy() argument
/PHP-8.1/ext/sodium/tests/
H A Dphp_password_verify.phpt33 foreach($opsSet as $ops) {
38 $hash = sodium_crypto_pwhash_str($password, $ops, $mem);
/PHP-8.1/sapi/phpdbg/tests/
H A Dprint_001.phpt13 prompt> [User Function foo (8 ops)]
42 prompt> [Context %s (9 ops)]
/PHP-8.1/ext/opcache/jit/
H A Dzend_jit_trace.c1091 if (tssa->ops[idx].op1_use >= 0 in is_checked_guard()
1104 && tssa->ops[idx].op2_use >= 0 in is_checked_guard()
2797 ssa_op = ssa->ops; in zend_jit_trace_allocate_registers()
3448 uint32_t line = ssa_op - ssa->ops; in zend_jit_trace_clenup_stack()
3492 || ssa->ops[use].op1_use != var in zend_jit_may_delay_fetch_this()
3906 && prev_ssa_op != ssa->ops in zend_jit_may_skip_comparison()
4690 } else if (op_array_ssa->ops in zend_jit_trace()
4781 } else if (op_array_ssa->ops in zend_jit_trace()
4861 } else if (op_array_ssa->ops in zend_jit_trace()
5248 ssa_op != ssa->ops && in zend_jit_trace()
[all …]
/PHP-8.1/ext/opcache/tests/jit/
H A Dsend_val_001.phpt15 "ops"
H A Dbug81255.phpt18 throw new Exception('ops');
/PHP-8.1/Zend/tests/float_to_int/
H A Dno_warnings_compatible_float_vars.phpt6 echo 'Bitwise ops:' . \PHP_EOL;
86 Bitwise ops:
/PHP-8.1/Zend/tests/generators/
H A Dyield_unary_precedence.phpt8 var_dump(yield * -1); // other ops still should behave normally
/PHP-8.1/Zend/tests/traits/
H A Dbug60809.phpt24 public $prop = "ops";
/PHP-8.1/Zend/tests/type_declarations/
H A Dtyped_properties_055.phpt14 $n = "ops";
H A Dtyped_properties_047.phpt26 $x->foo = "ops";
/PHP-8.1/Zend/tests/
H A Doverloaded_prop_assign_op_refs.phpt2 Handling of assign-ops and incdecs on overloaded properties using &__get()
/PHP-8.1/main/
H A Dphp_streams.h60 #define php_stream_alloc_rel(ops, thisptr, persistent, mode) _php_stream_alloc((ops), (thisptr), (p… argument
191 const php_stream_ops *ops; member
250 PHPAPI php_stream *_php_stream_alloc(const php_stream_ops *ops, void *abstract,
253 #define php_stream_alloc(ops, thisptr, persistent_id, mode) _php_stream_alloc((ops), (thisptr), (pe… argument
516 #define php_stream_is(stream, anops) ((stream)->ops == anops)
/PHP-8.1/ext/spl/tests/
H A Dbug79987.phpt11 echo "ops\n";

Completed in 87 milliseconds

1234