mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-30 18:40:13 +01:00
aco/sched: Handle calls
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/34531>
This commit is contained in:
parent
2be37a91fa
commit
28dc185966
1 changed files with 2 additions and 1 deletions
|
|
@ -641,7 +641,8 @@ perform_hazard_query(hazard_query* query, Instruction* instr, bool upwards)
|
|||
instr->opcode == aco_opcode::s_sendmsg_rtn_b32 ||
|
||||
instr->opcode == aco_opcode::s_sendmsg_rtn_b64 ||
|
||||
instr->opcode == aco_opcode::p_end_with_regs || instr->opcode == aco_opcode::s_nop ||
|
||||
instr->opcode == aco_opcode::s_sleep || instr->opcode == aco_opcode::s_trap)
|
||||
instr->opcode == aco_opcode::s_sleep || instr->opcode == aco_opcode::s_trap ||
|
||||
instr->opcode == aco_opcode::p_call)
|
||||
return hazard_fail_unreorderable;
|
||||
|
||||
memory_event_set instr_set;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue