Searched refs:livein (Results 1 – 11 of 11) sorted by relevance
/external/mesa3d/src/intel/compiler/ |
D | brw_vec4_live_variables.cpp | 147 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()
|
D | brw_fs_copy_propagation.cpp | 62 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()
|
D | brw_fs_live_variables.cpp | 170 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()
|
D | brw_schedule_instructions.cpp | 446 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()
|
D | brw_fs_live_variables.h | 53 BITSET_WORD *livein; member
|
D | brw_vec4_live_variables.h | 51 BITSET_WORD *livein; member
|
/external/mesa3d/src/gallium/drivers/freedreno/ir3/ |
D | ir3_ra.c | 291 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/ |
D | 2012-05-29-TailDupBug.ll | 3 ; Teach taildup to update livein set to appease verifier.
|
/external/llvm/test/CodeGen/ARM/ |
D | 2012-05-29-TailDupBug.ll | 3 ; Teach taildup to update livein set to appease verifier.
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/DebugInfo/X86/ |
D | live-debug-vars-discard-invalid.mir | 92 …; 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/ |
D | MIRLangRef.rst | 88 necessary for some passes that care about block livein lists.
|