Home
last modified time | relevance | path

Searched refs:livein (Results 1 – 11 of 11) sorted by relevance

/external/mesa3d/src/intel/compiler/
Dbrw_vec4_live_variables.cpp147 BITSET_WORD new_liveout = (child_bd->livein[i] & in compute_live_variables()
167 if (new_livein & ~bd->livein[i]) { in compute_live_variables()
168 bd->livein[i] |= new_livein; in compute_live_variables()
196 block_data[i].livein = rzalloc_array(mem_ctx, BITSET_WORD, bitset_words); in vec4_live_variables()
294 if (BITSET_TEST(bd->livein, i)) { in calculate_live_intervals()
Dbrw_fs_copy_propagation.cpp62 BITSET_WORD *livein; member
135 bd[block->num].livein = rzalloc_array(bd, BITSET_WORD, bitset_words); in fs_copy_prop_dataflow()
194 bd[block->num].livein[i] = 0u; in setup_initial_values()
200 bd[block->num].livein[i] = ~0u; in setup_initial_values()
241 bd[block->num].livein[i] = ~0u; in run()
250 bd[block->num].livein[i] &= (bd[parent->num].liveout[i] | in run()
261 bd[block->num].livein[i] &= livein_from_any_block; in run()
265 bd[block->num].copy[i] | (bd[block->num].livein[i] & in run()
288 fprintf(stderr, "%08x", bd[block->num].livein[i]); in dump_block_data()
886 if (BITSET_TEST(dataflow.bd[block->num].livein, i)) { in opt_copy_propagation()
Dbrw_fs_live_variables.cpp170 BITSET_WORD new_liveout = (child_bd->livein[i] & in compute_live_variables()
190 if (new_livein & ~bd->livein[i]) { in compute_live_variables()
191 bd->livein[i] |= new_livein; in compute_live_variables()
239 if (BITSET_TEST(bd->livein, i) && BITSET_TEST(bd->defin, i)) { in compute_start_end()
285 block_data[i].livein = rzalloc_array(mem_ctx, BITSET_WORD, bitset_words); in fs_live_variables()
Dbrw_schedule_instructions.cpp446 this->livein = ralloc_array(mem_ctx, BITSET_WORD *, block_count); in instruction_scheduler()
448 this->livein[i] = rzalloc_array(mem_ctx, BITSET_WORD, in instruction_scheduler()
468 this->livein = NULL; in instruction_scheduler()
531 BITSET_WORD **livein; member in instruction_scheduler
633 if (BITSET_TEST(v->live_intervals->block_data[block].livein, i)) { in setup_liveness()
635 if (!BITSET_TEST(livein[block], vgrf)) { in setup_liveness()
637 BITSET_SET(livein[block], vgrf); in setup_liveness()
654 if (!BITSET_TEST(livein[block + 1], i)) { in setup_liveness()
656 BITSET_SET(livein[block + 1], i); in setup_liveness()
714 if (!BITSET_TEST(livein[block_idx], inst->dst.nr) && in get_register_pressure_benefit()
Dbrw_fs_live_variables.h53 BITSET_WORD *livein; member
Dbrw_vec4_live_variables.h51 BITSET_WORD *livein; member
/external/mesa3d/src/gallium/drivers/freedreno/ir3/
Dir3_ra.c291 BITSET_WORD *livein; /* which defs reach entry point of block */ member
683 bd->livein = rzalloc_array(bd, BITSET_WORD, bitset_words); in ra_block_compute_live_ranges()
839 if (new_livein & ~bd->livein[i]) { in ra_compute_livein_liveout()
840 bd->livein[i] |= new_livein; in ra_compute_livein_liveout()
857 (succ_bd->livein[i] & ~bd->liveout[i]); in ra_compute_livein_liveout()
916 print_bitset("l/i", bd->livein, ctx->alloc_count); in ra_add_interference()
926 if (BITSET_TEST(bd->livein, i)) { in ra_add_interference()
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/ARM/
D2012-05-29-TailDupBug.ll3 ; Teach taildup to update livein set to appease verifier.
/external/llvm/test/CodeGen/ARM/
D2012-05-29-TailDupBug.ll3 ; Teach taildup to update livein set to appease verifier.
/external/swiftshader/third_party/llvm-7.0/llvm/test/DebugInfo/X86/
Dlive-debug-vars-discard-invalid.mir92 …; All DBG_VALUEs here should survive. %2 is livein as it was defined in bb.0, and it has use/def i…
/external/swiftshader/third_party/llvm-7.0/llvm/docs/
DMIRLangRef.rst88 necessary for some passes that care about block livein lists.