Searched refs:chosen (Results 1 - 25 of 258) sorted by relevance

1234567891011

/xsrc/external/mit/MesaLib/dist/src/freedreno/ir3/
H A Dir3_postsched.c182 struct ir3_postsched_node *chosen = NULL; local in function:choose_instr
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
[all...]
H A Dir3_sched.c634 struct ir3_sched_node *chosen = NULL; local in function:choose_instr_dec
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 in function:choose_instr_inc
750 if (!chosen || rank > chosen_rank ||
752 chosen
772 struct ir3_sched_node *chosen = NULL; local in function:choose_instr_prio
821 struct ir3_sched_node *chosen; local in function:choose_instr
[all...]
/xsrc/external/mit/MesaLib/dist/src/compiler/nir/
H A Dnir_schedule.c598 nir_schedule_node *chosen = NULL; local in function:nir_schedule_choose_instruction_fallback
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
644 nir_schedule_node *chosen = NULL; local in function:nir_schedule_choose_instruction_csp
687 nir_schedule_node *chosen = NULL; local in function:nir_schedule_choose_instruction_csr
963 nir_schedule_node *chosen; local in function:nir_schedule_instructions
[all...]
/xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/vc4/
H A Dvc4_qir_schedule.c454 struct schedule_node *chosen = NULL; local in function:choose_instruction
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
626 struct schedule_node *chosen = choose_instruction(state); local in function:schedule_instructions
[all...]
H A Dvc4_qpu_schedule.c554 struct schedule_node *chosen = NULL; local in function:choose_instruction_to_schedule
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 in function:schedule_instructions
887 uint64_t inst = chosen
[all...]
/xsrc/external/mit/MesaLib/dist/src/gallium/drivers/vc4/
H A Dvc4_qir_schedule.c454 struct schedule_node *chosen = NULL; local in function:choose_instruction
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
626 struct schedule_node *chosen = choose_instruction(state); local in function:schedule_instructions
[all...]
H A Dvc4_qpu_schedule.c554 struct schedule_node *chosen = NULL; local in function:choose_instruction_to_schedule
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 in function:schedule_instructions
887 uint64_t inst = chosen
[all...]
/xsrc/external/mit/MesaLib.old/dist/src/intel/compiler/
H A Dbrw_schedule_instructions.cpp1507 schedule_node *chosen = NULL; local in function:fs_instruction_scheduler::choose_instruction_to_schedule
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
1630 schedule_node *chosen = NULL; local in function:vec4_instruction_scheduler::choose_instruction_to_schedule
1680 schedule_node *chosen = choose_instruction_to_schedule(); local in function:instruction_scheduler::schedule_instructions
[all...]
/xsrc/external/mit/MesaLib/dist/src/intel/compiler/
H A Dbrw_schedule_instructions.cpp1581 schedule_node *chosen = NULL; local in function:fs_instruction_scheduler::choose_instruction_to_schedule
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
1711 schedule_node *chosen = NULL; local in function:vec4_instruction_scheduler::choose_instruction_to_schedule
1765 schedule_node *chosen = choose_instruction_to_schedule(); local in function:instruction_scheduler::schedule_instructions
[all...]
/xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/lima/ir/pp/
H A Dregalloc.c551 static bool ppir_regalloc_spill_reg(ppir_compiler *comp, ppir_reg *chosen) argument
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 in function:ppir_regalloc_choose_spill_node
632 chosen = reg;
637 if (chosen)
638 chosen
703 ppir_reg *chosen = ppir_regalloc_choose_spill_node(comp, g); local in function:ppir_regalloc_prog_try
[all...]
/xsrc/external/mit/MesaLib/dist/src/gallium/drivers/lima/ir/pp/
H A Dregalloc.c370 static bool ppir_regalloc_spill_reg(ppir_compiler *comp, ppir_reg *chosen) argument
376 if (dest && ppir_dest_get_reg(dest) == chosen) {
394 if (reg == chosen) {
471 ppir_reg *chosen = NULL; local in function:ppir_regalloc_choose_spill_node
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 local in function:ppir_regalloc_prog_try
[all...]
/xsrc/external/mit/MesaLib.old/dist/src/broadcom/compiler/
H A Dqpu_schedule.c698 struct schedule_node *chosen = NULL; local in function:choose_instruction_to_schedule
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 in function:schedule_instructions
1219 struct qinst *qinst = chosen
[all...]
/xsrc/external/mit/rgb/dist/
H A DREADME.md23 If the dbm or ndbm format are chosen, this package also builds the
28 was chosen by the --with-rgb-db-type option when building.
/xsrc/external/mit/MesaLib/dist/src/broadcom/compiler/
H A Dqpu_schedule.c1023 struct schedule_node *chosen = NULL; local in function:choose_instruction_to_schedule
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
2090 struct schedule_node *chosen = local in function:schedule_instructions
[all...]
/xsrc/external/mit/MesaLib/dist/src/panfrost/midgard/
H A Dmidgard_schedule.c351 /* True if we want to pop off the chosen instruction */
810 midgard_instruction *chosen = mir_choose_instruction(instructions, liveness, worklist, count, &predicate); local in function:mir_choose_bundle
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
[all...]
/xsrc/external/mit/MesaLib/dist/docs/drivers/
H A Dd3d12.rst59 The first adapter matching the substring is chosen. The substring is not
/xsrc/external/mit/MesaLib/dist/src/freedreno/computerator/
H A DREADME.rst7 the order of instructions, the registers chosen, etc, difficult). The
/xsrc/external/mit/MesaLib/dist/docs/relnotes/
H A D7.6.1.rst49 that it returns the actual compressed format chosen.
/xsrc/external/mit/xterm/dist/vttests/
H A Dreport-sgr.pl636 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/freetype/dist/builds/cmake/
H A DiOS.cmake35 # By default, this location is automatically chosen based on the
42 # By default, this location is automatically chosen based on the
/xsrc/external/mit/MesaLib/dist/docs/
H A Dviewperf.rst166 If the chosen visual does not have a depth buffer, you'll see the
169 If (by luck) the chosen visual has a depth buffer, its initial contents
/xsrc/external/mit/ctwm/dist/doc/devman/
H A Dprinciples.adoc118 _vscreen_ is chosen to show the window. If a window is hidden from one
/xsrc/external/mit/fontconfig/dist/m4/
H A Dax_create_stdint_h.m4213 AC_MSG_CHECKING([for extra inttypes in chosen header])
/xsrc/external/mit/MesaLib.old/dist/src/gallium/docs/source/drivers/freedreno/
H A Dir3-notes.rst104 gets flattened out and results chosen with ``sel`` instructions.
/xsrc/external/mit/MesaLib/dist/docs/drivers/freedreno/
H A Dir3-notes.rst104 gets flattened out and results chosen with ``sel`` instructions.

Completed in 25 milliseconds

1234567891011