Home
last modified time | relevance | path

Searched refs:last_slot (Results 1 – 5 of 5) sorted by relevance

/third_party/mesa3d/src/intel/compiler/
Dbrw_fs_visitor.cpp817 int last_slot = vue_map->num_slots - 1; in emit_urb_writes() local
818 while (last_slot > 0 && in emit_urb_writes()
819 (vue_map->slot_to_varying[last_slot] == BRW_VARYING_SLOT_PAD || in emit_urb_writes()
820 outputs[vue_map->slot_to_varying[last_slot]].file == BAD_FILE)) { in emit_urb_writes()
821 last_slot--; in emit_urb_writes()
920 if (length == 8 || (length > 0 && slot == last_slot)) in emit_urb_writes()
944 inst->eot = slot == last_slot && stage != MESA_SHADER_GEOMETRY; in emit_urb_writes()
/third_party/mesa3d/src/gallium/drivers/r600/sfn/
Dsfn_emitaluinstruction.cpp417 int last_slot = (instr.dest.write_mask & 0x8) ? 4 : 3; in emit_alu_trans_op1() local
418 for (int i = 0; i < last_slot; ++i) { in emit_alu_trans_op1()
426 if (i == (last_slot - 1)) ir->set_flag(alu_last_instr); in emit_alu_trans_op1()
450 unsigned last_slot = (instr.dest.write_mask & 0x8) ? 4 : 3; in emit_alu_cm_trig() local
453 for (unsigned i = 0; i < last_slot; ++i) { in emit_alu_cm_trig()
461 if (i == (last_slot - 1)) ir->set_flag(alu_last_instr); in emit_alu_cm_trig()
/third_party/mesa3d/src/gallium/drivers/r600/sb/
Dsb_sched.cpp520 int first_slot = ~0, first_nf = ~0, last_slot = ~0; in try_reserve() local
528 last_slot = i; in try_reserve()
550 assert(first_slot != ~0 && last_slot != ~0); in try_reserve()
553 if (last_slot >= 5) in try_reserve()
573 while ((++i <= last_slot) && !slots[i]); in try_reserve()
574 if (i <= last_slot) in try_reserve()
610 if (i == last_slot + 1) { in try_reserve()
/third_party/mesa3d/src/mapi/
Dmapi_abi.py190 last_slot = entries[-1].slot
192 for slot in range(last_slot + 1):
/third_party/mesa3d/src/gallium/drivers/r600/
Dr600_shader.c5070 const int last_slot = 3; in cayman_emit_unary_double_raw() local
5074 for (int i = 0 ; i < last_slot; i++) { in cayman_emit_unary_double_raw()
5088 if (bc->chip_class != CAYMAN || i == last_slot - 1) in cayman_emit_unary_double_raw()
5144 int last_slot = (inst->Dst[0].Register.WriteMask & 0x8) ? 4 : 3; in cayman_emit_float_instr() local
5146 for (i = 0 ; i < last_slot; i++) { in cayman_emit_float_instr()
5160 if (i == last_slot - 1) in cayman_emit_float_instr()
5405 int last_slot = (inst->Dst[0].Register.WriteMask & 0x8) ? 4 : 3; in cayman_trig() local
5413 for (i = 0; i < last_slot; i++) { in cayman_trig()
5423 if (i == last_slot - 1) in cayman_trig()
5731 int last_slot = (inst->Dst[0].Register.WriteMask & 0x8) ? 4 : 3; in cayman_pow() local
[all …]