summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--llvm/docs/AMDGPU/gfx7_attr.rst2
-rw-r--r--llvm/docs/AMDGPU/gfx7_hwreg.rst2
-rw-r--r--llvm/docs/AMDGPU/gfx7_label.rst2
-rw-r--r--llvm/docs/AMDGPU/gfx7_msg.rst2
-rw-r--r--llvm/docs/AMDGPU/gfx7_src_exp.rst2
-rw-r--r--llvm/docs/AMDGPU/gfx7_waitcnt.rst2
-rw-r--r--llvm/docs/AMDGPU/gfx8_attr.rst2
-rw-r--r--llvm/docs/AMDGPU/gfx8_hwreg.rst2
-rw-r--r--llvm/docs/AMDGPU/gfx8_label.rst2
-rw-r--r--llvm/docs/AMDGPU/gfx8_msg.rst2
-rw-r--r--llvm/docs/AMDGPU/gfx8_src_exp.rst2
-rw-r--r--llvm/docs/AMDGPU/gfx8_waitcnt.rst2
-rw-r--r--llvm/docs/AMDGPU/gfx9_attr.rst2
-rw-r--r--llvm/docs/AMDGPU/gfx9_hwreg.rst2
-rw-r--r--llvm/docs/AMDGPU/gfx9_label.rst2
-rw-r--r--llvm/docs/AMDGPU/gfx9_msg.rst2
-rw-r--r--llvm/docs/AMDGPU/gfx9_src_exp.rst2
-rw-r--r--llvm/docs/AMDGPU/gfx9_waitcnt.rst2
-rw-r--r--llvm/docs/AMDGPUInstructionNotation.rst2
-rw-r--r--llvm/docs/AMDGPUInstructionSyntax.rst8
-rw-r--r--llvm/docs/AMDGPUModifierSyntax.rst42
-rw-r--r--llvm/docs/AMDGPUOperandSyntax.rst34
22 files changed, 61 insertions, 61 deletions
diff --git a/llvm/docs/AMDGPU/gfx7_attr.rst b/llvm/docs/AMDGPU/gfx7_attr.rst
index 13096f2276a..219b77414ab 100644
--- a/llvm/docs/AMDGPU/gfx7_attr.rst
+++ b/llvm/docs/AMDGPU/gfx7_attr.rst
@@ -23,7 +23,7 @@ Interpolation attribute and channel:
Examples:
-.. code-block:: nasm
+.. parsed-literal::
v_interp_p1_f32 v1, v0, attr0.x
v_interp_p1_f32 v1, v0, attr32.w
diff --git a/llvm/docs/AMDGPU/gfx7_hwreg.rst b/llvm/docs/AMDGPU/gfx7_hwreg.rst
index 1b0c5424973..1e2d96417c3 100644
--- a/llvm/docs/AMDGPU/gfx7_hwreg.rst
+++ b/llvm/docs/AMDGPU/gfx7_hwreg.rst
@@ -51,7 +51,7 @@ Defined register *names* include:
Examples:
-.. code-block:: nasm
+.. parsed-literal::
s_getreg_b32 s2, 0x6
s_getreg_b32 s2, hwreg(15)
diff --git a/llvm/docs/AMDGPU/gfx7_label.rst b/llvm/docs/AMDGPU/gfx7_label.rst
index e0153e7171f..ed2f3a41666 100644
--- a/llvm/docs/AMDGPU/gfx7_label.rst
+++ b/llvm/docs/AMDGPU/gfx7_label.rst
@@ -20,7 +20,7 @@ This operand may be specified as:
Examples:
-.. code-block:: nasm
+.. parsed-literal::
offset = 30
s_branch loop_end
diff --git a/llvm/docs/AMDGPU/gfx7_msg.rst b/llvm/docs/AMDGPU/gfx7_msg.rst
index ad5fd7f640e..5476053ccc1 100644
--- a/llvm/docs/AMDGPU/gfx7_msg.rst
+++ b/llvm/docs/AMDGPU/gfx7_msg.rst
@@ -60,7 +60,7 @@ Each message type supports specific operations:
Examples:
-.. code-block:: nasm
+.. parsed-literal::
s_sendmsg 0x12
s_sendmsg sendmsg(MSG_INTERRUPT)
diff --git a/llvm/docs/AMDGPU/gfx7_src_exp.rst b/llvm/docs/AMDGPU/gfx7_src_exp.rst
index 6d155a54f11..32f71a88b64 100644
--- a/llvm/docs/AMDGPU/gfx7_src_exp.rst
+++ b/llvm/docs/AMDGPU/gfx7_src_exp.rst
@@ -19,7 +19,7 @@ Data to copy to export buffers. This is an optional operand. Must be specified a
An example:
-.. code-block:: nasm
+.. parsed-literal::
exp mrtz v3, v3, off, off compr
diff --git a/llvm/docs/AMDGPU/gfx7_waitcnt.rst b/llvm/docs/AMDGPU/gfx7_waitcnt.rst
index c89a320dc5c..3f5e07d1649 100644
--- a/llvm/docs/AMDGPU/gfx7_waitcnt.rst
+++ b/llvm/docs/AMDGPU/gfx7_waitcnt.rst
@@ -44,7 +44,7 @@ These helpers may be specified in any order. Ampersands and commas may be used a
Examples:
-.. code-block:: nasm
+.. parsed-literal::
s_waitcnt 0
s_waitcnt vmcnt(1)
diff --git a/llvm/docs/AMDGPU/gfx8_attr.rst b/llvm/docs/AMDGPU/gfx8_attr.rst
index 3f28033300a..12fa2cde842 100644
--- a/llvm/docs/AMDGPU/gfx8_attr.rst
+++ b/llvm/docs/AMDGPU/gfx8_attr.rst
@@ -23,7 +23,7 @@ Interpolation attribute and channel:
Examples:
-.. code-block:: nasm
+.. parsed-literal::
v_interp_p1_f32 v1, v0, attr0.x
v_interp_p1_f32 v1, v0, attr32.w
diff --git a/llvm/docs/AMDGPU/gfx8_hwreg.rst b/llvm/docs/AMDGPU/gfx8_hwreg.rst
index d9b4299adae..ffa1ea5afde 100644
--- a/llvm/docs/AMDGPU/gfx8_hwreg.rst
+++ b/llvm/docs/AMDGPU/gfx8_hwreg.rst
@@ -51,7 +51,7 @@ Defined register *names* include:
Examples:
-.. code-block:: nasm
+.. parsed-literal::
s_getreg_b32 s2, 0x6
s_getreg_b32 s2, hwreg(15)
diff --git a/llvm/docs/AMDGPU/gfx8_label.rst b/llvm/docs/AMDGPU/gfx8_label.rst
index af63ad977fc..99e384ee392 100644
--- a/llvm/docs/AMDGPU/gfx8_label.rst
+++ b/llvm/docs/AMDGPU/gfx8_label.rst
@@ -20,7 +20,7 @@ This operand may be specified as:
Examples:
-.. code-block:: nasm
+.. parsed-literal::
offset = 30
s_branch loop_end
diff --git a/llvm/docs/AMDGPU/gfx8_msg.rst b/llvm/docs/AMDGPU/gfx8_msg.rst
index 8140bc2f45a..313d8e68b4b 100644
--- a/llvm/docs/AMDGPU/gfx8_msg.rst
+++ b/llvm/docs/AMDGPU/gfx8_msg.rst
@@ -60,7 +60,7 @@ Each message type supports specific operations:
Examples:
-.. code-block:: nasm
+.. parsed-literal::
s_sendmsg 0x12
s_sendmsg sendmsg(MSG_INTERRUPT)
diff --git a/llvm/docs/AMDGPU/gfx8_src_exp.rst b/llvm/docs/AMDGPU/gfx8_src_exp.rst
index 92340c539fe..10449b4e36e 100644
--- a/llvm/docs/AMDGPU/gfx8_src_exp.rst
+++ b/llvm/docs/AMDGPU/gfx8_src_exp.rst
@@ -19,7 +19,7 @@ Data to copy to export buffers. This is an optional operand. Must be specified a
An example:
-.. code-block:: nasm
+.. parsed-literal::
exp mrtz v3, v3, off, off compr
diff --git a/llvm/docs/AMDGPU/gfx8_waitcnt.rst b/llvm/docs/AMDGPU/gfx8_waitcnt.rst
index d16478817ad..4bad5941711 100644
--- a/llvm/docs/AMDGPU/gfx8_waitcnt.rst
+++ b/llvm/docs/AMDGPU/gfx8_waitcnt.rst
@@ -44,7 +44,7 @@ These helpers may be specified in any order. Ampersands and commas may be used a
Examples:
-.. code-block:: nasm
+.. parsed-literal::
s_waitcnt 0
s_waitcnt vmcnt(1)
diff --git a/llvm/docs/AMDGPU/gfx9_attr.rst b/llvm/docs/AMDGPU/gfx9_attr.rst
index c69589f2032..faffcc7ed18 100644
--- a/llvm/docs/AMDGPU/gfx9_attr.rst
+++ b/llvm/docs/AMDGPU/gfx9_attr.rst
@@ -23,7 +23,7 @@ Interpolation attribute and channel:
Examples:
-.. code-block:: nasm
+.. parsed-literal::
v_interp_p1_f32 v1, v0, attr0.x
v_interp_p1_f32 v1, v0, attr32.w
diff --git a/llvm/docs/AMDGPU/gfx9_hwreg.rst b/llvm/docs/AMDGPU/gfx9_hwreg.rst
index cecba1e3c4e..7ebb38b42fe 100644
--- a/llvm/docs/AMDGPU/gfx9_hwreg.rst
+++ b/llvm/docs/AMDGPU/gfx9_hwreg.rst
@@ -52,7 +52,7 @@ Defined register *names* include:
Examples:
-.. code-block:: nasm
+.. parsed-literal::
s_getreg_b32 s2, 0x6
s_getreg_b32 s2, hwreg(15)
diff --git a/llvm/docs/AMDGPU/gfx9_label.rst b/llvm/docs/AMDGPU/gfx9_label.rst
index 09fde5e696a..32771722f71 100644
--- a/llvm/docs/AMDGPU/gfx9_label.rst
+++ b/llvm/docs/AMDGPU/gfx9_label.rst
@@ -20,7 +20,7 @@ This operand may be specified as:
Examples:
-.. code-block:: nasm
+.. parsed-literal::
offset = 30
s_branch loop_end
diff --git a/llvm/docs/AMDGPU/gfx9_msg.rst b/llvm/docs/AMDGPU/gfx9_msg.rst
index 41cd7da25cc..f18cff46ecb 100644
--- a/llvm/docs/AMDGPU/gfx9_msg.rst
+++ b/llvm/docs/AMDGPU/gfx9_msg.rst
@@ -60,7 +60,7 @@ Each message type supports specific operations:
Examples:
-.. code-block:: nasm
+.. parsed-literal::
s_sendmsg 0x12
s_sendmsg sendmsg(MSG_INTERRUPT)
diff --git a/llvm/docs/AMDGPU/gfx9_src_exp.rst b/llvm/docs/AMDGPU/gfx9_src_exp.rst
index 71eaac01c35..91a5d53b92b 100644
--- a/llvm/docs/AMDGPU/gfx9_src_exp.rst
+++ b/llvm/docs/AMDGPU/gfx9_src_exp.rst
@@ -19,7 +19,7 @@ Data to copy to export buffers. This is an optional operand. Must be specified a
An example:
-.. code-block:: nasm
+.. parsed-literal::
exp mrtz v3, v3, off, off compr
diff --git a/llvm/docs/AMDGPU/gfx9_waitcnt.rst b/llvm/docs/AMDGPU/gfx9_waitcnt.rst
index 5f755fcf48a..015a51ae8c3 100644
--- a/llvm/docs/AMDGPU/gfx9_waitcnt.rst
+++ b/llvm/docs/AMDGPU/gfx9_waitcnt.rst
@@ -45,7 +45,7 @@ These helpers may be specified in any order. Ampersands and commas may be used a
Examples:
-.. code-block:: nasm
+.. parsed-literal::
s_waitcnt 0
s_waitcnt vmcnt(1)
diff --git a/llvm/docs/AMDGPUInstructionNotation.rst b/llvm/docs/AMDGPUInstructionNotation.rst
index a2b617c2b0b..2b41d5b8194 100644
--- a/llvm/docs/AMDGPUInstructionNotation.rst
+++ b/llvm/docs/AMDGPUInstructionNotation.rst
@@ -81,7 +81,7 @@ Where:
Examples:
-.. code-block:: nasm
+.. parsed-literal::
src1:m // src1 operand may be used with operand modifiers
vdata:dst // vdata operand may be used as both source and destination
diff --git a/llvm/docs/AMDGPUInstructionSyntax.rst b/llvm/docs/AMDGPUInstructionSyntax.rst
index 3beb1c3a2ce..90ad54aade8 100644
--- a/llvm/docs/AMDGPUInstructionSyntax.rst
+++ b/llvm/docs/AMDGPUInstructionSyntax.rst
@@ -90,21 +90,21 @@ The size of data is specified by size suffices:
Examples of instructions with different types of source and destination operands:
-.. code-block:: nasm
+.. parsed-literal::
s_bcnt0_i32_b64
v_cvt_f32_u32
Examples of instructions with one data type:
-.. code-block:: nasm
+.. parsed-literal::
v_max3_f32
v_max3_i16
Examples of instructions which operate with packed data:
-.. code-block:: nasm
+.. parsed-literal::
v_pk_add_u16
v_pk_add_i16
@@ -112,7 +112,7 @@ Examples of instructions which operate with packed data:
Examples of typeless instructions which operate on b128 data:
-.. code-block:: nasm
+.. parsed-literal::
buffer_store_dwordx4
flat_load_dwordx4
diff --git a/llvm/docs/AMDGPUModifierSyntax.rst b/llvm/docs/AMDGPUModifierSyntax.rst
index bc2ddd0bffe..e2b8bb3f952 100644
--- a/llvm/docs/AMDGPUModifierSyntax.rst
+++ b/llvm/docs/AMDGPUModifierSyntax.rst
@@ -43,7 +43,7 @@ Used with DS instructions which have 2 addresses.
Examples:
-.. code-block:: nasm
+.. parsed-literal::
offset:255
offset:0xff
@@ -66,7 +66,7 @@ Used with DS instructions which have 1 address.
Examples:
-.. code-block:: nasm
+.. parsed-literal::
offset:65535
offset:0xffff
@@ -133,7 +133,7 @@ Numeric parameters may be specified as either :ref:`integer numbers<amdgpu_synid
Examples:
-.. code-block:: nasm
+.. parsed-literal::
offset:255
offset:0xffff
@@ -221,7 +221,7 @@ Cannot be used with *global/scratch* opcodes. GFX9 only.
Examples:
-.. code-block:: nasm
+.. parsed-literal::
offset:4095
offset:0xff
@@ -244,7 +244,7 @@ Can be used with *global/scratch* opcodes only. GFX9 only.
Examples:
-.. code-block:: nasm
+.. parsed-literal::
offset:-4000
offset:0x10
@@ -309,7 +309,7 @@ This modifier has some limitations depending on instruction kind:
Examples:
-.. code-block:: nasm
+.. parsed-literal::
dmask:0xf
dmask:0b1111
@@ -559,7 +559,7 @@ Specifies an immediate unsigned 12-bit offset, in bytes. The default value is 0.
Examples:
-.. code-block:: nasm
+.. parsed-literal::
offset:0
offset:0x10
@@ -674,7 +674,7 @@ Note: Numeric parameters may be specified as either
Examples:
-.. code-block:: nasm
+.. parsed-literal::
quad_perm:[0, 1, 2, 3]
row_shl:3
@@ -700,7 +700,7 @@ Note. The lanes of a wavefront are organized in four banks and four rows.
Examples:
-.. code-block:: nasm
+.. parsed-literal::
row_mask:0xf
row_mask:0b1010
@@ -727,7 +727,7 @@ Note. The lanes of a wavefront are organized in four banks and four rows.
Examples:
-.. code-block:: nasm
+.. parsed-literal::
bank_mask:0x3
bank_mask:0b0011
@@ -879,7 +879,7 @@ Valid for integer operands only.
Examples:
-.. code-block:: nasm
+.. parsed-literal::
sext(v4)
sext(v255)
@@ -915,7 +915,7 @@ GFX9 only.
Examples:
-.. code-block:: nasm
+.. parsed-literal::
op_sel:[0,0]
op_sel:[0,1]
@@ -994,10 +994,10 @@ Valid for floating point operands only.
Examples:
-.. code-block:: nasm
+.. parsed-literal::
abs(v36)
- |v36|
+ \|v36|
.. _amdgpu_synid_neg:
@@ -1016,7 +1016,7 @@ Valid for floating point operands only.
Examples:
-.. code-block:: nasm
+.. parsed-literal::
neg(v[0])
-v4
@@ -1055,7 +1055,7 @@ The value 0 selects the low bits, while 1 selects the high bits.
Examples:
-.. code-block:: nasm
+.. parsed-literal::
op_sel:[0,0]
op_sel:[0,1,0]
@@ -1084,7 +1084,7 @@ The value 0 selects the low bits, while 1 selects the high bits.
Examples:
-.. code-block:: nasm
+.. parsed-literal::
op_sel_hi:[0,0]
op_sel_hi:[0,0,1]
@@ -1118,7 +1118,7 @@ This modifier is valid for floating point operands only.
Examples:
-.. code-block:: nasm
+.. parsed-literal::
neg_lo:[0]
neg_lo:[0,1]
@@ -1152,7 +1152,7 @@ This modifier is valid for floating point operands only.
Examples:
-.. code-block:: nasm
+.. parsed-literal::
neg_hi:[1,0]
neg_hi:[0,1,1]
@@ -1200,7 +1200,7 @@ By default, low bits are used for all operands.
Examples:
-.. code-block:: nasm
+.. parsed-literal::
op_sel:[0,1]
@@ -1228,7 +1228,7 @@ The location of 16 bits in the operand may be specified by
Examples:
-.. code-block:: nasm
+.. parsed-literal::
op_sel_hi:[1,1,1]
diff --git a/llvm/docs/AMDGPUOperandSyntax.rst b/llvm/docs/AMDGPUOperandSyntax.rst
index e4154525ec1..5f5d8225265 100644
--- a/llvm/docs/AMDGPUOperandSyntax.rst
+++ b/llvm/docs/AMDGPUOperandSyntax.rst
@@ -63,7 +63,7 @@ Note. *N* and *K* must satisfy the following conditions:
Examples:
-.. code-block:: nasm
+.. parsed-literal::
v255
v[0]
@@ -127,7 +127,7 @@ Note. *N* and *K* must satisfy the following conditions:
Examples:
-.. code-block:: nasm
+.. parsed-literal::
s0
s[0]
@@ -141,7 +141,7 @@ Examples:
Examples of *scalar* registers with an invalid alignment:
-.. code-block:: nasm
+.. parsed-literal::
s[1:2]
s[2:5]
@@ -210,7 +210,7 @@ Note. *N* and *K* must satisfy the following conditions:
Examples:
-.. code-block:: nasm
+.. parsed-literal::
ttmp0
ttmp[0]
@@ -224,7 +224,7 @@ Examples:
Examples of *ttmp* registers with an invalid alignment:
-.. code-block:: nasm
+.. parsed-literal::
ttmp[1:2]
ttmp[2:5]
@@ -645,7 +645,7 @@ They may be specified in binary, octal, hexadecimal and decimal formats:
Examples:
-.. code-block:: nasm
+.. parsed-literal::
-1234
0b1010
@@ -671,7 +671,7 @@ Floating-point numbers may be specified in hexadecimal and decimal formats:
Examples:
-.. code-block:: nasm
+.. parsed-literal::
-1.234
234e2
@@ -700,7 +700,7 @@ such as labels.
Examples:
-.. code-block:: nasm
+.. parsed-literal::
x = -1
y = x + 10
@@ -719,7 +719,7 @@ Addition information about relocation may be found :ref:`here<amdgpu-relocation-
Examples:
-.. code-block:: nasm
+.. parsed-literal::
y = x + 10 // x is not yet defined. Undefined symbols are assumed to be PC-relative.
z = .
@@ -736,7 +736,7 @@ No conversion from floating-point to integer is performed.
Examples:
-.. code-block:: nasm
+.. parsed-literal::
x = 0.1 // x is assigned an integer 4591870180066957722 which is a binary representation of 0.1.
y = x + x // y is a sum of two integer values; it is not equal to 0.2!
@@ -897,7 +897,7 @@ No data type conversions are performed.
Examples:
-.. code-block:: nasm
+.. parsed-literal::
// GFX9
@@ -920,7 +920,7 @@ when used as operands they are converted to a floating-point number of
Examples:
-.. code-block:: nasm
+.. parsed-literal::
// GFX9
@@ -969,7 +969,7 @@ There are two cases when the conversion is possible:
Examples of valid literals:
-.. code-block:: nasm
+.. parsed-literal::
// GFX9
@@ -983,7 +983,7 @@ Examples of valid literals:
Examples of invalid literals:
-.. code-block:: nasm
+.. parsed-literal::
// GFX9
@@ -1021,7 +1021,7 @@ Precision lost is allowed.
Examples of valid literals:
-.. code-block:: nasm
+.. parsed-literal::
// GFX9
@@ -1033,7 +1033,7 @@ Examples of valid literals:
Examples of invalid literals:
-.. code-block:: nasm
+.. parsed-literal::
// GFX9
@@ -1052,7 +1052,7 @@ No data type conversions are performed.
Examples:
-.. code-block:: nasm
+.. parsed-literal::
// GFX9
OpenPOWER on IntegriCloud