mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-08 09:08:10 +02:00
intel/compiler: Rotate instructions ROR and ROL cannot have source modifiers
I checked the Bspec for both Gen11 and Gen12, and it appears that rotate instructions cannot have source modifiers or saturate modifer. Saturate was already handled. Fixes:1e92e83856("intel/compiler: Emit ROR and ROL instruction") Reviewed-by: Caio Marcelo de Oliveira Filho <caio.oliveira@intel.com> Reviewed-by: Sagar Ghuge <sagar.ghuge@intel.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/7650> (cherry picked from commit6edc2a3d40)
This commit is contained in:
parent
45509d12b1
commit
85a5106ca5
2 changed files with 3 additions and 1 deletions
|
|
@ -4090,7 +4090,7 @@
|
|||
"description": "intel/compiler: Rotate instructions ROR and ROL cannot have source modifiers",
|
||||
"nominated": true,
|
||||
"nomination_type": 1,
|
||||
"resolution": 0,
|
||||
"resolution": 1,
|
||||
"master_sha": null,
|
||||
"because_sha": "1e92e83856b1ef8a827a63359d59ed7883ed4994"
|
||||
},
|
||||
|
|
|
|||
|
|
@ -924,6 +924,8 @@ backend_instruction::can_do_source_mods() const
|
|||
case BRW_OPCODE_CBIT:
|
||||
case BRW_OPCODE_FBH:
|
||||
case BRW_OPCODE_FBL:
|
||||
case BRW_OPCODE_ROL:
|
||||
case BRW_OPCODE_ROR:
|
||||
case BRW_OPCODE_SUBB:
|
||||
case SHADER_OPCODE_BROADCAST:
|
||||
case SHADER_OPCODE_CLUSTER_BROADCAST:
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue