Searched refs:target_block (Results 1 – 3 of 3) sorted by relevance
1115 if (target_block->len == 0 && !(target_block->flags & ZEND_BB_PROTECTED)) { in get_target_block()1117 b = target_block->successors[0]; in get_target_block()1118 target_block = cfg->blocks + b; in get_target_block()1119 } while (target_block->len == 0 && !(target_block->flags & ZEND_BB_PROTECTED)); in get_target_block()1123 return target_block; in get_target_block()1131 if (target_block->len == 0 && !(target_block->flags & ZEND_BB_PROTECTED)) { in get_follow_block()1133 b = target_block->successors[0]; in get_follow_block()1134 target_block = cfg->blocks + b; in get_follow_block()1135 } while (target_block->len == 0 && !(target_block->flags & ZEND_BB_PROTECTED)); in get_follow_block()1139 return target_block; in get_follow_block()[all …]
559 …ine void take_successor_ex(zend_ssa *ssa, int block_num, zend_basic_block *block, int target_block) in take_successor_ex() argument564 if (block->successors[i] != target_block) { in take_successor_ex()568 block->successors[0] = target_block; in take_successor_ex()
3884 static int zend_jit_cond_jmp(zend_jit_ctx *jit, const zend_op *next_opline, int target_block) in zend_jit_cond_jmp() argument3900 ref = jit_IF_ex(jit, jit_CMP_IP(jit, IR_NE, next_opline), target_block); in zend_jit_cond_jmp()
Completed in 50 milliseconds