• Home
  • Raw
  • Download

Lines Matching refs:alloc_count

346 			ctx->alloc_count += n;  in ra_block_name_instructions()
549 ctx->alloc_count += ctx->class_alloc_count[total_class_count]; in ra_init()
552 ctx->r0_xyz_nodes = ctx->alloc_count; in ra_init()
553 ctx->alloc_count += 3; in ra_init()
554 ctx->hr0_xyz_nodes = ctx->alloc_count; in ra_init()
555 ctx->alloc_count += 3; in ra_init()
558 ctx->prefetch_exclude_node = ctx->alloc_count++; in ra_init()
581 ctx->g = ra_alloc_interference_graph(ctx->set->regs, ctx->alloc_count); in ra_init()
583 ctx->def = rzalloc_array(ctx->g, unsigned, ctx->alloc_count); in ra_init()
584 ctx->use = rzalloc_array(ctx->g, unsigned, ctx->alloc_count); in ra_init()
637 ra_assert(ctx, name < ctx->alloc_count); in __def()
654 ra_assert(ctx, name < ctx->alloc_count); in __use()
664 unsigned bitset_words = BITSET_WORDS(ctx->alloc_count); in ra_block_compute_live_ranges()
781 unsigned bitset_words = BITSET_WORDS(ctx->alloc_count); in ra_compute_livein_liveout()
890 rzalloc_array(bd, BITSET_WORD, BITSET_WORDS(ctx->alloc_count)); in ra_calc_block_live_values()
894 BITSET_FOREACH_SET (name, bd->livein, ctx->alloc_count) { in ra_calc_block_live_values()
911 print_bitset("LIVE", live, ctx->alloc_count); in ra_calc_block_live_values()
945 BITSET_FOREACH_SET (name, live, ctx->alloc_count) { in ra_calc_block_live_values()
971 BITSET_FOREACH_SET (name, live, ctx->alloc_count) { in ra_calc_block_live_values()
983 BITSET_FOREACH_SET (name, live, ctx->alloc_count) { in ra_calc_block_live_values()
992 BITSET_FOREACH_SET (name, bd->liveout, ctx->alloc_count) { in ra_calc_block_live_values()
998 print_bitset("LEAKED", live, ctx->alloc_count); in ra_calc_block_live_values()
1066 print_bitset(" def", bd->def, ctx->alloc_count); in ra_add_interference()
1067 print_bitset(" use", bd->use, ctx->alloc_count); in ra_add_interference()
1068 print_bitset(" l/i", bd->livein, ctx->alloc_count); in ra_add_interference()
1069 print_bitset(" l/o", bd->liveout, ctx->alloc_count); in ra_add_interference()
1083 for (unsigned i = 0; i < ctx->alloc_count; i++) { in ra_add_interference()
1112 for (unsigned i = 0; i < ctx->alloc_count; i++) { in ra_add_interference()
1113 for (unsigned j = 0; j < ctx->alloc_count; j++) { in ra_add_interference()