Searched refs:new_kills (Results 1 – 2 of 2) sorted by relevance
/external/mesa3d/src/compiler/glsl/ |
D | opt_constant_propagation.cpp | 378 hash_table *new_kills = _mesa_pointer_hash_table_create(mem_ctx); in visit_enter() local 382 handle_if_block(&ir->then_instructions, new_kills, &then_killed_all); in visit_enter() 383 handle_if_block(&ir->else_instructions, new_kills, &else_killed_all); in visit_enter() 389 hash_table_foreach(new_kills, htk) in visit_enter() 393 _mesa_hash_table_destroy(new_kills, NULL); in visit_enter() 422 hash_table *new_kills = this->kills; in handle_loop() local 427 hash_table_foreach(new_kills, htk) { in handle_loop()
|
D | opt_copy_propagation_elements.cpp | 569 exec_list *new_kills = new(mem_ctx) exec_list; in visit_enter() local 573 handle_if_block(&ir->then_instructions, new_kills, &then_killed_all); in visit_enter() 574 handle_if_block(&ir->else_instructions, new_kills, &else_killed_all); in visit_enter() 580 foreach_in_list_safe(kill_entry, k, new_kills) in visit_enter() 584 ralloc_free(new_kills); in visit_enter() 616 exec_list *new_kills = this->kills; in handle_loop() local 620 foreach_in_list_safe(kill_entry, k, new_kills) { in handle_loop() 624 ralloc_free(new_kills); in handle_loop()
|