HomeSort by: relevance | last modified time | path
    Searched refs:chosen (Results 1 - 25 of 37) sorted by relevancy

1 2

  /xsrc/external/mit/MesaLib/dist/src/freedreno/ir3/
ir3_postsched.c 182 struct ir3_postsched_node *chosen = NULL; local
190 if (!chosen || (chosen->max_delay < n->max_delay))
191 chosen = n;
194 if (chosen) {
195 di(chosen->instr, "prio: chose (meta)");
196 return chosen->instr;
207 if (!chosen || (chosen->max_delay < n->max_delay))
208 chosen = n
    [all...]
ir3_sched.c 634 struct ir3_sched_node *chosen = NULL; local
677 if (!chosen || rank > chosen_rank ||
678 (rank == chosen_rank && chosen->max_delay < n->max_delay)) {
679 chosen = n;
684 if (chosen) {
685 di(chosen->instr, "dec%s: chose (%s)", mode, dec_rank_name(chosen_rank));
686 return chosen;
719 struct ir3_sched_node *chosen = NULL; local
750 if (!chosen || rank > chosen_rank ||
752 chosen = n
772 struct ir3_sched_node *chosen = NULL; local
821 struct ir3_sched_node *chosen; local
    [all...]
  /xsrc/external/mit/MesaLib/dist/src/compiler/nir/
nir_schedule.c 598 nir_schedule_node *chosen = NULL; local
607 if (!chosen || chosen->max_delay > n->max_delay)
608 chosen = n;
610 if (chosen) {
613 nir_print_instr(chosen->instr, stderr);
617 return chosen;
622 if (!chosen || chosen->max_delay > n->max_delay)
623 chosen = n
644 nir_schedule_node *chosen = NULL; local
687 nir_schedule_node *chosen = NULL; local
963 nir_schedule_node *chosen; local
    [all...]
  /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/vc4/
vc4_qir_schedule.c 454 struct schedule_node *chosen = NULL; local
466 if (!chosen) {
467 chosen = n;
476 !locks_scoreboard(chosen->inst)) {
477 chosen = n;
480 locks_scoreboard(chosen->inst)) {
484 /* If we would block on the previously chosen node, but would
487 if (chosen->unblocked_time > state->time &&
488 n->unblocked_time < chosen->unblocked_time) {
489 chosen = n
626 struct schedule_node *chosen = choose_instruction(state); local
    [all...]
vc4_qpu_schedule.c 554 struct schedule_node *chosen = NULL; local
632 if (!chosen) {
633 chosen = n;
639 chosen = n;
645 if (n->delay > chosen->delay) {
646 chosen = n;
648 } else if (n->delay < chosen->delay) {
653 return chosen;
878 struct schedule_node *chosen = local
887 uint64_t inst = chosen ? chosen->inst->inst : qpu_NOP()
    [all...]
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/vc4/
vc4_qir_schedule.c 454 struct schedule_node *chosen = NULL; local
466 if (!chosen) {
467 chosen = n;
476 !locks_scoreboard(chosen->inst)) {
477 chosen = n;
480 locks_scoreboard(chosen->inst)) {
484 /* If we would block on the previously chosen node, but would
487 if (chosen->unblocked_time > state->time &&
488 n->unblocked_time < chosen->unblocked_time) {
489 chosen = n
626 struct schedule_node *chosen = choose_instruction(state); local
    [all...]
vc4_qpu_schedule.c 554 struct schedule_node *chosen = NULL; local
632 if (!chosen) {
633 chosen = n;
639 chosen = n;
645 if (n->delay > chosen->delay) {
646 chosen = n;
648 } else if (n->delay < chosen->delay) {
653 return chosen;
878 struct schedule_node *chosen = local
887 uint64_t inst = chosen ? chosen->inst->inst : qpu_NOP()
    [all...]
  /xsrc/external/mit/MesaLib/dist/src/intel/compiler/
brw_schedule_instructions.cpp 1581 schedule_node *chosen = NULL;
1591 if (!chosen ||
1592 exit_unblocked_time(n) < exit_unblocked_time(chosen) ||
1593 (exit_unblocked_time(n) == exit_unblocked_time(chosen) &&
1595 chosen = n;
1611 if (!chosen) {
1612 chosen = n;
1614 get_register_pressure_benefit(chosen->inst);
1625 chosen = n;
1642 if (n->cand_generation > chosen->cand_generation)
    [all...]
  /xsrc/external/mit/MesaLib.old/dist/src/intel/compiler/
brw_schedule_instructions.cpp 1507 schedule_node *chosen = NULL;
1517 if (!chosen ||
1518 exit_unblocked_time(n) < exit_unblocked_time(chosen) ||
1519 (exit_unblocked_time(n) == exit_unblocked_time(chosen) &&
1521 chosen = n;
1535 if (!chosen) {
1536 chosen = n;
1545 get_register_pressure_benefit(chosen->inst);
1549 chosen = n;
1565 if (n->cand_generation > chosen->cand_generation)
    [all...]
  /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/lima/ir/pp/
regalloc.c 370 static bool ppir_regalloc_spill_reg(ppir_compiler *comp, ppir_reg *chosen)
376 if (dest && ppir_dest_get_reg(dest) == chosen) {
394 if (reg == chosen) {
471 ppir_reg *chosen = NULL;
475 chosen = reg;
479 assert(chosen);
480 chosen->spilled = true;
481 chosen->is_head = true; /* store_temp unable to do swizzle */
483 return chosen;
557 ppir_reg *chosen = ppir_regalloc_choose_spill_node(comp, g) local
    [all...]
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/lima/ir/pp/
regalloc.c 551 static bool ppir_regalloc_spill_reg(ppir_compiler *comp, ppir_reg *chosen)
564 if (reg == chosen)
578 if (reg == chosen) {
589 if (reg == chosen) {
598 if (reg == chosen) {
607 if (reg == chosen) {
626 ppir_reg *chosen = NULL; local
632 chosen = reg;
637 if (chosen)
638 chosen->spilled = true
703 ppir_reg *chosen = ppir_regalloc_choose_spill_node(comp, g); local
    [all...]
  /xsrc/external/mit/MesaLib.old/dist/src/broadcom/compiler/
qpu_schedule.c 698 struct schedule_node *chosen = NULL; local
790 if (!chosen) {
791 chosen = n;
797 chosen = n;
803 if (n->delay > chosen->delay) {
804 chosen = n;
806 } else if (n->delay < chosen->delay) {
811 return chosen;
1210 struct schedule_node *chosen = local
1219 struct qinst *qinst = chosen ? chosen->inst : vir_nop()
    [all...]
  /xsrc/external/mit/MesaLib/dist/src/broadcom/compiler/
qpu_schedule.c 1023 struct schedule_node *chosen = NULL; local
1194 if (!chosen) {
1195 chosen = n;
1201 chosen = n;
1207 if (n->delay > chosen->delay) {
1208 chosen = n;
1210 } else if (n->delay < chosen->delay) {
1218 if (!chosen && !prev_inst && skipped_insts_for_ldvary_pipelining) {
1224 if (chosen && chosen->inst->qpu.sig.ldvary)
2090 struct schedule_node *chosen = local
    [all...]
  /xsrc/external/mit/MesaLib/dist/src/panfrost/midgard/
midgard_schedule.c 344 * worklist to simulate in-order scheduling. Chosen instructions must satisfy a
351 /* True if we want to pop off the chosen instruction */
810 midgard_instruction *chosen = mir_choose_instruction(instructions, liveness, worklist, count, &predicate); local
812 if (chosen && chosen->type == TAG_LOAD_STORE_4 && !(num_ldst % 2)) {
815 predicate.exclude = chosen->dest;
818 chosen = mir_choose_instruction(instructions, liveness, worklist, count, &predicate);
819 if (chosen)
824 chosen = mir_choose_instruction(instructions, liveness, worklist, count, &predicate);
825 assert(chosen == NULL || chosen->type != TAG_LOAD_STORE_4)
    [all...]
  /xsrc/external/mit/xterm/dist/vttests/
report-sgr.pl 636 When direct-colors are chosen, select the red-component of
641 When direct-colors are chosen, select the green-component of
646 When direct-colors are chosen, select the blue-component of
  /xsrc/external/mit/beforelight/dist/
configure 2972 # However, it has the same basename, so the bogon will be chosen
8462 { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: You have chosen not to turn some select compiler warnings into errors. This should not be necessary. Please report why you needed to do so in a bug report at $PACKAGE_BUGREPORT" >&5
8463 $as_echo "$as_me: WARNING: You have chosen not to turn some select compiler warnings into errors. This should not be necessary. Please report why you needed to do so in a bug report at $PACKAGE_BUGREPORT" >&2;}
  /xsrc/external/mit/luit/dist/
configure 3011 # However, it has the same basename, so the bogon will be chosen
8389 { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: You have chosen not to turn some select compiler warnings into errors. This should not be necessary. Please report why you needed to do so in a bug report at $PACKAGE_BUGREPORT" >&5
8390 $as_echo "$as_me: WARNING: You have chosen not to turn some select compiler warnings into errors. This should not be necessary. Please report why you needed to do so in a bug report at $PACKAGE_BUGREPORT" >&2;}
  /xsrc/external/mit/mkfontdir/dist/
configure 2841 # However, it has the same basename, so the bogon will be chosen
7970 { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: You have chosen not to turn some select compiler warnings into errors. This should not be necessary. Please report why you needed to do so in a bug report at $PACKAGE_BUGREPORT" >&5
7971 $as_echo "$as_me: WARNING: You have chosen not to turn some select compiler warnings into errors. This should not be necessary. Please report why you needed to do so in a bug report at $PACKAGE_BUGREPORT" >&2;}
  /xsrc/external/mit/proxymngr/dist/
configure 3130 # However, it has the same basename, so the bogon will be chosen
8616 { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: You have chosen not to turn some select compiler warnings into errors. This should not be necessary. Please report why you needed to do so in a bug report at $PACKAGE_BUGREPORT" >&5
8617 $as_echo "$as_me: WARNING: You have chosen not to turn some select compiler warnings into errors. This should not be necessary. Please report why you needed to do so in a bug report at $PACKAGE_BUGREPORT" >&2;}
  /xsrc/external/mit/xcompmgr/dist/
configure 2955 # However, it has the same basename, so the bogon will be chosen
8445 { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: You have chosen not to turn some select compiler warnings into errors. This should not be necessary. Please report why you needed to do so in a bug report at $PACKAGE_BUGREPORT" >&5
8446 $as_echo "$as_me: WARNING: You have chosen not to turn some select compiler warnings into errors. This should not be necessary. Please report why you needed to do so in a bug report at $PACKAGE_BUGREPORT" >&2;}
  /xsrc/external/mit/xcursor-themes/dist/
configure 2970 # However, it has the same basename, so the bogon will be chosen
8460 { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: You have chosen not to turn some select compiler warnings into errors. This should not be necessary. Please report why you needed to do so in a bug report at $PACKAGE_BUGREPORT" >&5
8461 $as_echo "$as_me: WARNING: You have chosen not to turn some select compiler warnings into errors. This should not be necessary. Please report why you needed to do so in a bug report at $PACKAGE_BUGREPORT" >&2;}
  /xsrc/external/mit/xfindproxy/dist/
configure 2947 # However, it has the same basename, so the bogon will be chosen
8433 { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: You have chosen not to turn some select compiler warnings into errors. This should not be necessary. Please report why you needed to do so in a bug report at $PACKAGE_BUGREPORT" >&5
8434 $as_echo "$as_me: WARNING: You have chosen not to turn some select compiler warnings into errors. This should not be necessary. Please report why you needed to do so in a bug report at $PACKAGE_BUGREPORT" >&2;}
  /xsrc/external/mit/xtrap/dist/
configure 2942 # However, it has the same basename, so the bogon will be chosen
8446 { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: You have chosen not to turn some select compiler warnings into errors. This should not be necessary. Please report why you needed to do so in a bug report at $PACKAGE_BUGREPORT" >&5
8447 $as_echo "$as_me: WARNING: You have chosen not to turn some select compiler warnings into errors. This should not be necessary. Please report why you needed to do so in a bug report at $PACKAGE_BUGREPORT" >&2;}
  /xsrc/external/mit/xvidtune/dist/
configure 2862 # However, it has the same basename, so the bogon will be chosen
8241 { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: You have chosen not to turn some select compiler warnings into errors. This should not be necessary. Please report why you needed to do so in a bug report at $PACKAGE_BUGREPORT" >&5
8242 $as_echo "$as_me: WARNING: You have chosen not to turn some select compiler warnings into errors. This should not be necessary. Please report why you needed to do so in a bug report at $PACKAGE_BUGREPORT" >&2;}
  /xsrc/external/mit/libXxf86misc/dist/
configure 3085 # However, it has the same basename, so the bogon will be chosen
8575 { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: You have chosen not to turn some select compiler warnings into errors. This should not be necessary. Please report why you needed to do so in a bug report at $PACKAGE_BUGREPORT" >&5
8576 $as_echo "$as_me: WARNING: You have chosen not to turn some select compiler warnings into errors. This should not be necessary. Please report why you needed to do so in a bug report at $PACKAGE_BUGREPORT" >&2;}

Completed in 104 milliseconds

1 2