/PHP-8.1/Zend/Optimizer/ |
H A D | scdf.c | 124 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 D | zend_ssa.c | 794 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 D | zend_func_info.c | 60 &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 D | escape_analysis.c | 103 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 D | phpdbg_list.c | 174 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 D | phpdbg_prompt.c | 383 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 D | streams.c | 291 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 D | php_hash_adler32.h | 30 PHP_HASH_API int PHP_ADLER32Copy(const php_hash_ops *ops, PHP_ADLER32_CTX *orig_context, PHP_ADLER3…
|
H A D | hash_xxhash.c | 69 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 D | php_hash_crc32.h | 33 PHP_HASH_API int PHP_CRC32Copy(const php_hash_ops *ops, PHP_CRC32_CTX *orig_context, PHP_CRC32_CTX …
|
H A D | hash_murmur.c | 73 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 D | hash_adler32.c | 55 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 D | php_password_verify.phpt | 33 foreach($opsSet as $ops) { 38 $hash = sodium_crypto_pwhash_str($password, $ops, $mem);
|
/PHP-8.1/sapi/phpdbg/tests/ |
H A D | print_001.phpt | 13 prompt> [User Function foo (8 ops)] 42 prompt> [Context %s (9 ops)]
|
/PHP-8.1/ext/opcache/jit/ |
H A D | zend_jit_trace.c | 1091 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 D | send_val_001.phpt | 15 "ops"
|
H A D | bug81255.phpt | 18 throw new Exception('ops');
|
/PHP-8.1/Zend/tests/float_to_int/ |
H A D | no_warnings_compatible_float_vars.phpt | 6 echo 'Bitwise ops:' . \PHP_EOL; 86 Bitwise ops:
|
/PHP-8.1/Zend/tests/generators/ |
H A D | yield_unary_precedence.phpt | 8 var_dump(yield * -1); // other ops still should behave normally
|
/PHP-8.1/Zend/tests/traits/ |
H A D | bug60809.phpt | 24 public $prop = "ops";
|
/PHP-8.1/Zend/tests/type_declarations/ |
H A D | typed_properties_055.phpt | 14 $n = "ops";
|
H A D | typed_properties_047.phpt | 26 $x->foo = "ops";
|
/PHP-8.1/Zend/tests/ |
H A D | overloaded_prop_assign_op_refs.phpt | 2 Handling of assign-ops and incdecs on overloaded properties using &__get()
|
/PHP-8.1/main/ |
H A D | php_streams.h | 60 #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 D | bug79987.phpt | 11 echo "ops\n";
|