Searched refs:target_block (Results 1 – 2 of 2) 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 …]
546 …ine void take_successor_ex(zend_ssa *ssa, int block_num, zend_basic_block *block, int target_block) in take_successor_ex() argument551 if (block->successors[i] != target_block) { in take_successor_ex()555 block->successors[0] = target_block; in take_successor_ex()
Completed in 50 milliseconds