Searched refs:true_block (Results 1 – 6 of 6) sorted by relevance
/PHP-8.4/ext/opcache/jit/ir/ |
H A D | ir_aarch64.dasc | 2045 | beq =>true_block 2047 | bne =>true_block 2051 | bvc =>true_block 2053 | bvs =>true_block 2057 | bcc =>true_block 2059 | bcs =>true_block 2908 | b =>true_block 2984 | beq =>true_block 2987 | bne =>true_block 3125 | b =>true_block [all …]
|
H A D | ir_x86.dasc | 4020 | jno =>true_block 4022 | jo =>true_block 4026 | jnc =>true_block 4028 | jc =>true_block 5913 | jmp =>true_block 5954 | je =>true_block 5960 | jl =>true_block 5969 | jg =>true_block 5972 | jb =>true_block 5981 | ja =>true_block [all …]
|
H A D | ir_dump.c | 734 uint32_t true_block, false_block; in ir_dump_codegen() local 736 ir_get_true_false_blocks(ctx, b, &true_block, &false_block); in ir_dump_codegen() 737 fprintf(f, "\t# IF_TRUE BB%d, IF_FALSE BB%d\n", true_block, false_block); in ir_dump_codegen()
|
H A D | ir_cfg.c | 1895 void ir_get_true_false_blocks(const ir_ctx *ctx, uint32_t b, uint32_t *true_block, uint32_t *false_… in ir_get_true_false_blocks() argument 1900 *true_block = 0; in ir_get_true_false_blocks() 1908 *true_block = ir_skip_empty_target_blocks(ctx, use_block); in ir_get_true_false_blocks() 1917 *true_block = ir_skip_empty_target_blocks(ctx, use_block); in ir_get_true_false_blocks() 1919 IR_ASSERT(*true_block && *false_block); in ir_get_true_false_blocks()
|
H A D | ir_private.h | 1113 void ir_get_true_false_blocks(const ir_ctx *ctx, uint32_t b, uint32_t *true_block, uint32_t *false_…
|
/PHP-8.4/ext/opcache/jit/ |
H A D | zend_jit_ir.c | 3406 static ir_ref jit_IF_ex(zend_jit_ctx *jit, ir_ref condition, ir_ref true_block) in jit_IF_ex() argument 3414 ir_set_op(&jit->ctx, ref, 3, true_block); in jit_IF_ex() 3418 static void jit_IF_TRUE_FALSE_ex(zend_jit_ctx *jit, ir_ref if_ref, ir_ref true_block) in jit_IF_TRUE_FALSE_ex() argument 3424 if (jit->ctx.ir_base[if_ref].op3 == true_block) { in jit_IF_TRUE_FALSE_ex()
|
Completed in 90 milliseconds