| D | nir_lower_goto_ifs.c | 204 route_to(nir_builder *b, struct routes *routing, nir_block *target) in route_to() argument 206 if (_mesa_set_search(routing->regular.reachable, target)) { in route_to() 207 set_path_vars(b, routing->regular.fork, target); in route_to() 208 } else if (_mesa_set_search(routing->brk.reachable, target)) { in route_to() 209 set_path_vars(b, routing->brk.fork, target); in route_to() 211 } else if (_mesa_set_search(routing->cont.reachable, target)) { in route_to() 212 set_path_vars(b, routing->cont.fork, target); in route_to() 232 route_to_cond(nir_builder *b, struct routes *routing, nir_def *condition, in route_to_cond() argument 235 if (_mesa_set_search(routing->regular.reachable, then_block)) { in route_to_cond() 236 if (_mesa_set_search(routing->regular.reachable, else_block)) { in route_to_cond() [all …]
|