mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-25 13:46:07 +00:00

Summary of changes: - Enable register tuples with 9, 10, 11 and 12 registers (https://reviews.llvm.org/D138205). - Enable abs and neg modifiers for v_cndmask_b32 (https://reviews.llvm.org/D135900). - Correct v_mov_b32_sdwa (it does not support abs and neg input modifiers yet). - Enable tfe modifier for MUBUF loads (https://reviews.llvm.org/D137783). - Minor corrections and improvements.
66 lines
2.7 KiB
ReStructuredText
66 lines
2.7 KiB
ReStructuredText
..
|
|
**************************************************
|
|
* *
|
|
* Automatically generated file, do not edit! *
|
|
* *
|
|
**************************************************
|
|
|
|
.. _amdgpu_synid_gfx8_imask:
|
|
|
|
imask
|
|
=====
|
|
|
|
This operand is a mask which controls indexing mode for operands of subsequent instructions.
|
|
Bits 0, 1 and 2 control indexing of *src0*, *src1* and *src2*, while bit 3 controls indexing of *dst*.
|
|
Value 1 enables indexing, and value 0 disables it.
|
|
|
|
===== ========================================
|
|
Bit Meaning
|
|
===== ========================================
|
|
0 Enables or disables *src0* indexing.
|
|
1 Enables or disables *src1* indexing.
|
|
2 Enables or disables *src2* indexing.
|
|
3 Enables or disables *dst* indexing.
|
|
===== ========================================
|
|
|
|
This operand may be specified as one of the following:
|
|
|
|
* An :ref:`integer_number<amdgpu_synid_integer_number>` or an :ref:`absolute_expression<amdgpu_synid_absolute_expression>`. The value must be in the range from 0 to 15.
|
|
* A *gpr_idx* value which is described below.
|
|
|
|
==================================== =============================================
|
|
Gpr_idx Value Syntax Description
|
|
==================================== =============================================
|
|
gpr_idx(*<operand list>*) Enable indexing for the specified *operands*
|
|
and disable it for the rest.
|
|
*Operand list* is a comma-separated list of
|
|
values which may include:
|
|
|
|
* SRC0 - enable *src0* indexing.
|
|
|
|
* SRC1 - enable *src1* indexing.
|
|
|
|
* SRC2 - enable *src2* indexing.
|
|
|
|
* DST - enable *dst* indexing.
|
|
|
|
Each of these values may be specified only
|
|
once.
|
|
|
|
*Operand list* may be empty; this syntax
|
|
disables indexing for all operands.
|
|
==================================== =============================================
|
|
|
|
Examples:
|
|
|
|
.. parsed-literal::
|
|
|
|
s_set_gpr_idx_mode 0
|
|
s_set_gpr_idx_mode gpr_idx() // the same as above
|
|
|
|
s_set_gpr_idx_mode 15
|
|
s_set_gpr_idx_mode gpr_idx(DST,SRC0,SRC1,SRC2) // the same as above
|
|
s_set_gpr_idx_mode gpr_idx(SRC0,SRC1,SRC2,DST) // the same as above
|
|
|
|
s_set_gpr_idx_mode gpr_idx(DST,SRC1)
|