Lines Matching refs:idx_b
149 get_dominator(int idx_a, int idx_b, Program* program, bool is_linear)
153 return idx_b;
154 if (idx_b == -1)
157 while (idx_a != idx_b) {
158 if (idx_a > idx_b)
161 idx_b = program->blocks[idx_b].linear_idom;
164 while (idx_a != idx_b) {
165 if (idx_a > idx_b)
168 idx_b = program->blocks[idx_b].logical_idom;