Corbin Simpson | c686e17 | 2009-12-20 15:00:40 -0800 | [diff] [blame] | 1 | TGSI |
| 2 | ==== |
| 3 | |
Michal Krol | b665968 | 2010-01-04 12:52:43 +0100 | [diff] [blame] | 4 | TGSI, Tungsten Graphics Shader Infrastructure, is an intermediate language |
Corbin Simpson | c686e17 | 2009-12-20 15:00:40 -0800 | [diff] [blame] | 5 | for describing shaders. Since Gallium is inherently shaderful, shaders are |
| 6 | an important part of the API. TGSI is the only intermediate representation |
| 7 | used by all drivers. |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 8 | |
Corbin Simpson | 62ca7b8 | 2010-02-02 16:36:34 -0800 | [diff] [blame] | 9 | Basics |
| 10 | ------ |
| 11 | |
| 12 | All TGSI instructions, known as *opcodes*, operate on arbitrary-precision |
| 13 | floating-point four-component vectors. An opcode may have up to one |
| 14 | destination register, known as *dst*, and between zero and three source |
| 15 | registers, called *src0* through *src2*, or simply *src* if there is only |
| 16 | one. |
| 17 | |
| 18 | Some instructions, like :opcode:`I2F`, permit re-interpretation of vector |
| 19 | components as integers. Other instructions permit using registers as |
| 20 | two-component vectors with double precision; see :ref:`Double Opcodes`. |
| 21 | |
Corbin Simpson | 17c2a44 | 2010-02-02 17:02:28 -0800 | [diff] [blame] | 22 | When an instruction has a scalar result, the result is usually copied into |
| 23 | each of the components of *dst*. When this happens, the result is said to be |
| 24 | *replicated* to *dst*. :opcode:`RCP` is one such instruction. |
| 25 | |
Roland Scheidegger | cb2e678 | 2013-02-16 02:26:14 +0100 | [diff] [blame] | 26 | Modifiers |
| 27 | ^^^^^^^^^^^^^^^ |
| 28 | |
| 29 | TGSI supports modifiers on inputs (as well as saturate modifier on instructions). |
| 30 | |
| 31 | For inputs which have a floating point type, both absolute value and negation |
| 32 | modifiers are supported (with absolute value being applied first). |
| 33 | TGSI_OPCODE_MOV is considered to have float input type for applying modifiers. |
| 34 | |
Zack Rusin | 999cd79 | 2013-04-28 10:50:55 -0400 | [diff] [blame^] | 35 | For inputs which have signed or unsigned type only the negate modifier is |
| 36 | supported. |
Roland Scheidegger | cb2e678 | 2013-02-16 02:26:14 +0100 | [diff] [blame] | 37 | |
Corbin Simpson | 5bcd26c | 2009-12-21 21:04:10 -0800 | [diff] [blame] | 38 | Instruction Set |
| 39 | --------------- |
| 40 | |
Corbin Simpson | 9d4cb6e | 2010-06-16 18:34:32 -0700 | [diff] [blame] | 41 | Core ISA |
Corbin Simpson | 5bcd26c | 2009-12-21 21:04:10 -0800 | [diff] [blame] | 42 | ^^^^^^^^^^^^^^^^^^^^^^^^^ |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 43 | |
Corbin Simpson | 9d4cb6e | 2010-06-16 18:34:32 -0700 | [diff] [blame] | 44 | These opcodes are guaranteed to be available regardless of the driver being |
| 45 | used. |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 46 | |
Corbin Simpson | 8580522 | 2010-02-02 16:20:12 -0800 | [diff] [blame] | 47 | .. opcode:: ARL - Address Register Load |
Corbin Simpson | e8ed3b9 | 2009-12-21 19:12:55 -0800 | [diff] [blame] | 48 | |
| 49 | .. math:: |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 50 | |
Corbin Simpson | d92a685 | 2009-12-21 19:30:29 -0800 | [diff] [blame] | 51 | dst.x = \lfloor src.x\rfloor |
Corbin Simpson | e8ed3b9 | 2009-12-21 19:12:55 -0800 | [diff] [blame] | 52 | |
Corbin Simpson | d92a685 | 2009-12-21 19:30:29 -0800 | [diff] [blame] | 53 | dst.y = \lfloor src.y\rfloor |
Corbin Simpson | e8ed3b9 | 2009-12-21 19:12:55 -0800 | [diff] [blame] | 54 | |
Corbin Simpson | d92a685 | 2009-12-21 19:30:29 -0800 | [diff] [blame] | 55 | dst.z = \lfloor src.z\rfloor |
Corbin Simpson | e8ed3b9 | 2009-12-21 19:12:55 -0800 | [diff] [blame] | 56 | |
Corbin Simpson | d92a685 | 2009-12-21 19:30:29 -0800 | [diff] [blame] | 57 | dst.w = \lfloor src.w\rfloor |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 58 | |
| 59 | |
Corbin Simpson | 8580522 | 2010-02-02 16:20:12 -0800 | [diff] [blame] | 60 | .. opcode:: MOV - Move |
Corbin Simpson | e8ed3b9 | 2009-12-21 19:12:55 -0800 | [diff] [blame] | 61 | |
| 62 | .. math:: |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 63 | |
| 64 | dst.x = src.x |
Corbin Simpson | e8ed3b9 | 2009-12-21 19:12:55 -0800 | [diff] [blame] | 65 | |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 66 | dst.y = src.y |
Corbin Simpson | e8ed3b9 | 2009-12-21 19:12:55 -0800 | [diff] [blame] | 67 | |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 68 | dst.z = src.z |
Corbin Simpson | e8ed3b9 | 2009-12-21 19:12:55 -0800 | [diff] [blame] | 69 | |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 70 | dst.w = src.w |
| 71 | |
| 72 | |
Corbin Simpson | 8580522 | 2010-02-02 16:20:12 -0800 | [diff] [blame] | 73 | .. opcode:: LIT - Light Coefficients |
Corbin Simpson | e8ed3b9 | 2009-12-21 19:12:55 -0800 | [diff] [blame] | 74 | |
| 75 | .. math:: |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 76 | |
Corbin Simpson | da65ac6 | 2009-12-21 20:32:46 -0800 | [diff] [blame] | 77 | dst.x = 1 |
Corbin Simpson | e8ed3b9 | 2009-12-21 19:12:55 -0800 | [diff] [blame] | 78 | |
Corbin Simpson | da65ac6 | 2009-12-21 20:32:46 -0800 | [diff] [blame] | 79 | dst.y = max(src.x, 0) |
Corbin Simpson | e8ed3b9 | 2009-12-21 19:12:55 -0800 | [diff] [blame] | 80 | |
Corbin Simpson | da65ac6 | 2009-12-21 20:32:46 -0800 | [diff] [blame] | 81 | dst.z = (src.x > 0) ? max(src.y, 0)^{clamp(src.w, -128, 128))} : 0 |
Corbin Simpson | e8ed3b9 | 2009-12-21 19:12:55 -0800 | [diff] [blame] | 82 | |
Corbin Simpson | da65ac6 | 2009-12-21 20:32:46 -0800 | [diff] [blame] | 83 | dst.w = 1 |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 84 | |
| 85 | |
Corbin Simpson | 8580522 | 2010-02-02 16:20:12 -0800 | [diff] [blame] | 86 | .. opcode:: RCP - Reciprocal |
Corbin Simpson | e8ed3b9 | 2009-12-21 19:12:55 -0800 | [diff] [blame] | 87 | |
Corbin Simpson | 17c2a44 | 2010-02-02 17:02:28 -0800 | [diff] [blame] | 88 | This instruction replicates its result. |
| 89 | |
Corbin Simpson | e8ed3b9 | 2009-12-21 19:12:55 -0800 | [diff] [blame] | 90 | .. math:: |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 91 | |
Corbin Simpson | 17c2a44 | 2010-02-02 17:02:28 -0800 | [diff] [blame] | 92 | dst = \frac{1}{src.x} |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 93 | |
| 94 | |
Corbin Simpson | 8580522 | 2010-02-02 16:20:12 -0800 | [diff] [blame] | 95 | .. opcode:: RSQ - Reciprocal Square Root |
Corbin Simpson | e8ed3b9 | 2009-12-21 19:12:55 -0800 | [diff] [blame] | 96 | |
Corbin Simpson | 17c2a44 | 2010-02-02 17:02:28 -0800 | [diff] [blame] | 97 | This instruction replicates its result. |
| 98 | |
Corbin Simpson | e8ed3b9 | 2009-12-21 19:12:55 -0800 | [diff] [blame] | 99 | .. math:: |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 100 | |
Corbin Simpson | 17c2a44 | 2010-02-02 17:02:28 -0800 | [diff] [blame] | 101 | dst = \frac{1}{\sqrt{|src.x|}} |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 102 | |
| 103 | |
Brian Paul | d276a40 | 2013-02-01 10:59:43 -0700 | [diff] [blame] | 104 | .. opcode:: SQRT - Square Root |
| 105 | |
| 106 | This instruction replicates its result. |
| 107 | |
| 108 | .. math:: |
| 109 | |
| 110 | dst = {\sqrt{src.x}} |
| 111 | |
| 112 | |
Corbin Simpson | 8580522 | 2010-02-02 16:20:12 -0800 | [diff] [blame] | 113 | .. opcode:: EXP - Approximate Exponential Base 2 |
Corbin Simpson | e8ed3b9 | 2009-12-21 19:12:55 -0800 | [diff] [blame] | 114 | |
| 115 | .. math:: |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 116 | |
Corbin Simpson | dd801e5 | 2009-12-21 19:41:09 -0800 | [diff] [blame] | 117 | dst.x = 2^{\lfloor src.x\rfloor} |
Corbin Simpson | e8ed3b9 | 2009-12-21 19:12:55 -0800 | [diff] [blame] | 118 | |
Corbin Simpson | d92a685 | 2009-12-21 19:30:29 -0800 | [diff] [blame] | 119 | dst.y = src.x - \lfloor src.x\rfloor |
Corbin Simpson | e8ed3b9 | 2009-12-21 19:12:55 -0800 | [diff] [blame] | 120 | |
Corbin Simpson | dd801e5 | 2009-12-21 19:41:09 -0800 | [diff] [blame] | 121 | dst.z = 2^{src.x} |
Corbin Simpson | e8ed3b9 | 2009-12-21 19:12:55 -0800 | [diff] [blame] | 122 | |
Corbin Simpson | da65ac6 | 2009-12-21 20:32:46 -0800 | [diff] [blame] | 123 | dst.w = 1 |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 124 | |
| 125 | |
Corbin Simpson | 8580522 | 2010-02-02 16:20:12 -0800 | [diff] [blame] | 126 | .. opcode:: LOG - Approximate Logarithm Base 2 |
Corbin Simpson | e8ed3b9 | 2009-12-21 19:12:55 -0800 | [diff] [blame] | 127 | |
| 128 | .. math:: |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 129 | |
Corbin Simpson | 14743ac | 2009-12-21 19:57:56 -0800 | [diff] [blame] | 130 | dst.x = \lfloor\log_2{|src.x|}\rfloor |
Corbin Simpson | e8ed3b9 | 2009-12-21 19:12:55 -0800 | [diff] [blame] | 131 | |
Corbin Simpson | 14743ac | 2009-12-21 19:57:56 -0800 | [diff] [blame] | 132 | dst.y = \frac{|src.x|}{2^{\lfloor\log_2{|src.x|}\rfloor}} |
Corbin Simpson | e8ed3b9 | 2009-12-21 19:12:55 -0800 | [diff] [blame] | 133 | |
Corbin Simpson | 14743ac | 2009-12-21 19:57:56 -0800 | [diff] [blame] | 134 | dst.z = \log_2{|src.x|} |
Corbin Simpson | e8ed3b9 | 2009-12-21 19:12:55 -0800 | [diff] [blame] | 135 | |
Corbin Simpson | 14743ac | 2009-12-21 19:57:56 -0800 | [diff] [blame] | 136 | dst.w = 1 |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 137 | |
| 138 | |
Corbin Simpson | 8580522 | 2010-02-02 16:20:12 -0800 | [diff] [blame] | 139 | .. opcode:: MUL - Multiply |
Corbin Simpson | e8ed3b9 | 2009-12-21 19:12:55 -0800 | [diff] [blame] | 140 | |
| 141 | .. math:: |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 142 | |
Corbin Simpson | ecb2f2a | 2009-12-21 20:07:10 -0800 | [diff] [blame] | 143 | dst.x = src0.x \times src1.x |
Corbin Simpson | e8ed3b9 | 2009-12-21 19:12:55 -0800 | [diff] [blame] | 144 | |
Corbin Simpson | ecb2f2a | 2009-12-21 20:07:10 -0800 | [diff] [blame] | 145 | dst.y = src0.y \times src1.y |
Corbin Simpson | e8ed3b9 | 2009-12-21 19:12:55 -0800 | [diff] [blame] | 146 | |
Corbin Simpson | ecb2f2a | 2009-12-21 20:07:10 -0800 | [diff] [blame] | 147 | dst.z = src0.z \times src1.z |
Corbin Simpson | e8ed3b9 | 2009-12-21 19:12:55 -0800 | [diff] [blame] | 148 | |
Corbin Simpson | ecb2f2a | 2009-12-21 20:07:10 -0800 | [diff] [blame] | 149 | dst.w = src0.w \times src1.w |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 150 | |
| 151 | |
Corbin Simpson | 8580522 | 2010-02-02 16:20:12 -0800 | [diff] [blame] | 152 | .. opcode:: ADD - Add |
Corbin Simpson | e8ed3b9 | 2009-12-21 19:12:55 -0800 | [diff] [blame] | 153 | |
| 154 | .. math:: |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 155 | |
| 156 | dst.x = src0.x + src1.x |
Corbin Simpson | e8ed3b9 | 2009-12-21 19:12:55 -0800 | [diff] [blame] | 157 | |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 158 | dst.y = src0.y + src1.y |
Corbin Simpson | e8ed3b9 | 2009-12-21 19:12:55 -0800 | [diff] [blame] | 159 | |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 160 | dst.z = src0.z + src1.z |
Corbin Simpson | e8ed3b9 | 2009-12-21 19:12:55 -0800 | [diff] [blame] | 161 | |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 162 | dst.w = src0.w + src1.w |
| 163 | |
| 164 | |
Corbin Simpson | 8580522 | 2010-02-02 16:20:12 -0800 | [diff] [blame] | 165 | .. opcode:: DP3 - 3-component Dot Product |
Corbin Simpson | e8ed3b9 | 2009-12-21 19:12:55 -0800 | [diff] [blame] | 166 | |
Corbin Simpson | 17c2a44 | 2010-02-02 17:02:28 -0800 | [diff] [blame] | 167 | This instruction replicates its result. |
| 168 | |
Corbin Simpson | e8ed3b9 | 2009-12-21 19:12:55 -0800 | [diff] [blame] | 169 | .. math:: |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 170 | |
Corbin Simpson | 17c2a44 | 2010-02-02 17:02:28 -0800 | [diff] [blame] | 171 | dst = src0.x \times src1.x + src0.y \times src1.y + src0.z \times src1.z |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 172 | |
| 173 | |
Corbin Simpson | 8580522 | 2010-02-02 16:20:12 -0800 | [diff] [blame] | 174 | .. opcode:: DP4 - 4-component Dot Product |
Corbin Simpson | e8ed3b9 | 2009-12-21 19:12:55 -0800 | [diff] [blame] | 175 | |
Corbin Simpson | 17c2a44 | 2010-02-02 17:02:28 -0800 | [diff] [blame] | 176 | This instruction replicates its result. |
| 177 | |
Corbin Simpson | e8ed3b9 | 2009-12-21 19:12:55 -0800 | [diff] [blame] | 178 | .. math:: |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 179 | |
Corbin Simpson | 17c2a44 | 2010-02-02 17:02:28 -0800 | [diff] [blame] | 180 | dst = src0.x \times src1.x + src0.y \times src1.y + src0.z \times src1.z + src0.w \times src1.w |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 181 | |
| 182 | |
Corbin Simpson | 8580522 | 2010-02-02 16:20:12 -0800 | [diff] [blame] | 183 | .. opcode:: DST - Distance Vector |
Corbin Simpson | e8ed3b9 | 2009-12-21 19:12:55 -0800 | [diff] [blame] | 184 | |
| 185 | .. math:: |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 186 | |
Corbin Simpson | da65ac6 | 2009-12-21 20:32:46 -0800 | [diff] [blame] | 187 | dst.x = 1 |
Corbin Simpson | e8ed3b9 | 2009-12-21 19:12:55 -0800 | [diff] [blame] | 188 | |
Corbin Simpson | ecb2f2a | 2009-12-21 20:07:10 -0800 | [diff] [blame] | 189 | dst.y = src0.y \times src1.y |
Corbin Simpson | e8ed3b9 | 2009-12-21 19:12:55 -0800 | [diff] [blame] | 190 | |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 191 | dst.z = src0.z |
Corbin Simpson | e8ed3b9 | 2009-12-21 19:12:55 -0800 | [diff] [blame] | 192 | |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 193 | dst.w = src1.w |
| 194 | |
| 195 | |
Corbin Simpson | 8580522 | 2010-02-02 16:20:12 -0800 | [diff] [blame] | 196 | .. opcode:: MIN - Minimum |
Corbin Simpson | e8ed3b9 | 2009-12-21 19:12:55 -0800 | [diff] [blame] | 197 | |
| 198 | .. math:: |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 199 | |
| 200 | dst.x = min(src0.x, src1.x) |
Corbin Simpson | e8ed3b9 | 2009-12-21 19:12:55 -0800 | [diff] [blame] | 201 | |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 202 | dst.y = min(src0.y, src1.y) |
Corbin Simpson | e8ed3b9 | 2009-12-21 19:12:55 -0800 | [diff] [blame] | 203 | |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 204 | dst.z = min(src0.z, src1.z) |
Corbin Simpson | e8ed3b9 | 2009-12-21 19:12:55 -0800 | [diff] [blame] | 205 | |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 206 | dst.w = min(src0.w, src1.w) |
| 207 | |
| 208 | |
Corbin Simpson | 8580522 | 2010-02-02 16:20:12 -0800 | [diff] [blame] | 209 | .. opcode:: MAX - Maximum |
Corbin Simpson | e8ed3b9 | 2009-12-21 19:12:55 -0800 | [diff] [blame] | 210 | |
| 211 | .. math:: |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 212 | |
| 213 | dst.x = max(src0.x, src1.x) |
Corbin Simpson | e8ed3b9 | 2009-12-21 19:12:55 -0800 | [diff] [blame] | 214 | |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 215 | dst.y = max(src0.y, src1.y) |
Corbin Simpson | e8ed3b9 | 2009-12-21 19:12:55 -0800 | [diff] [blame] | 216 | |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 217 | dst.z = max(src0.z, src1.z) |
Corbin Simpson | e8ed3b9 | 2009-12-21 19:12:55 -0800 | [diff] [blame] | 218 | |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 219 | dst.w = max(src0.w, src1.w) |
| 220 | |
| 221 | |
Corbin Simpson | 8580522 | 2010-02-02 16:20:12 -0800 | [diff] [blame] | 222 | .. opcode:: SLT - Set On Less Than |
Corbin Simpson | e8ed3b9 | 2009-12-21 19:12:55 -0800 | [diff] [blame] | 223 | |
| 224 | .. math:: |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 225 | |
Corbin Simpson | da65ac6 | 2009-12-21 20:32:46 -0800 | [diff] [blame] | 226 | dst.x = (src0.x < src1.x) ? 1 : 0 |
Corbin Simpson | e8ed3b9 | 2009-12-21 19:12:55 -0800 | [diff] [blame] | 227 | |
Corbin Simpson | da65ac6 | 2009-12-21 20:32:46 -0800 | [diff] [blame] | 228 | dst.y = (src0.y < src1.y) ? 1 : 0 |
Corbin Simpson | e8ed3b9 | 2009-12-21 19:12:55 -0800 | [diff] [blame] | 229 | |
Corbin Simpson | da65ac6 | 2009-12-21 20:32:46 -0800 | [diff] [blame] | 230 | dst.z = (src0.z < src1.z) ? 1 : 0 |
Corbin Simpson | e8ed3b9 | 2009-12-21 19:12:55 -0800 | [diff] [blame] | 231 | |
Corbin Simpson | da65ac6 | 2009-12-21 20:32:46 -0800 | [diff] [blame] | 232 | dst.w = (src0.w < src1.w) ? 1 : 0 |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 233 | |
| 234 | |
Corbin Simpson | 8580522 | 2010-02-02 16:20:12 -0800 | [diff] [blame] | 235 | .. opcode:: SGE - Set On Greater Equal Than |
Corbin Simpson | e8ed3b9 | 2009-12-21 19:12:55 -0800 | [diff] [blame] | 236 | |
| 237 | .. math:: |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 238 | |
Corbin Simpson | da65ac6 | 2009-12-21 20:32:46 -0800 | [diff] [blame] | 239 | dst.x = (src0.x >= src1.x) ? 1 : 0 |
Corbin Simpson | e8ed3b9 | 2009-12-21 19:12:55 -0800 | [diff] [blame] | 240 | |
Corbin Simpson | da65ac6 | 2009-12-21 20:32:46 -0800 | [diff] [blame] | 241 | dst.y = (src0.y >= src1.y) ? 1 : 0 |
Corbin Simpson | e8ed3b9 | 2009-12-21 19:12:55 -0800 | [diff] [blame] | 242 | |
Corbin Simpson | da65ac6 | 2009-12-21 20:32:46 -0800 | [diff] [blame] | 243 | dst.z = (src0.z >= src1.z) ? 1 : 0 |
Corbin Simpson | e8ed3b9 | 2009-12-21 19:12:55 -0800 | [diff] [blame] | 244 | |
Corbin Simpson | da65ac6 | 2009-12-21 20:32:46 -0800 | [diff] [blame] | 245 | dst.w = (src0.w >= src1.w) ? 1 : 0 |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 246 | |
| 247 | |
Corbin Simpson | 8580522 | 2010-02-02 16:20:12 -0800 | [diff] [blame] | 248 | .. opcode:: MAD - Multiply And Add |
Corbin Simpson | e8ed3b9 | 2009-12-21 19:12:55 -0800 | [diff] [blame] | 249 | |
| 250 | .. math:: |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 251 | |
Corbin Simpson | ecb2f2a | 2009-12-21 20:07:10 -0800 | [diff] [blame] | 252 | dst.x = src0.x \times src1.x + src2.x |
Corbin Simpson | e8ed3b9 | 2009-12-21 19:12:55 -0800 | [diff] [blame] | 253 | |
Corbin Simpson | ecb2f2a | 2009-12-21 20:07:10 -0800 | [diff] [blame] | 254 | dst.y = src0.y \times src1.y + src2.y |
Corbin Simpson | e8ed3b9 | 2009-12-21 19:12:55 -0800 | [diff] [blame] | 255 | |
Corbin Simpson | ecb2f2a | 2009-12-21 20:07:10 -0800 | [diff] [blame] | 256 | dst.z = src0.z \times src1.z + src2.z |
Corbin Simpson | e8ed3b9 | 2009-12-21 19:12:55 -0800 | [diff] [blame] | 257 | |
Corbin Simpson | ecb2f2a | 2009-12-21 20:07:10 -0800 | [diff] [blame] | 258 | dst.w = src0.w \times src1.w + src2.w |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 259 | |
| 260 | |
Corbin Simpson | 8580522 | 2010-02-02 16:20:12 -0800 | [diff] [blame] | 261 | .. opcode:: SUB - Subtract |
Corbin Simpson | e8ed3b9 | 2009-12-21 19:12:55 -0800 | [diff] [blame] | 262 | |
| 263 | .. math:: |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 264 | |
| 265 | dst.x = src0.x - src1.x |
Corbin Simpson | e8ed3b9 | 2009-12-21 19:12:55 -0800 | [diff] [blame] | 266 | |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 267 | dst.y = src0.y - src1.y |
Corbin Simpson | e8ed3b9 | 2009-12-21 19:12:55 -0800 | [diff] [blame] | 268 | |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 269 | dst.z = src0.z - src1.z |
Corbin Simpson | e8ed3b9 | 2009-12-21 19:12:55 -0800 | [diff] [blame] | 270 | |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 271 | dst.w = src0.w - src1.w |
| 272 | |
| 273 | |
Corbin Simpson | 8580522 | 2010-02-02 16:20:12 -0800 | [diff] [blame] | 274 | .. opcode:: LRP - Linear Interpolate |
Corbin Simpson | e8ed3b9 | 2009-12-21 19:12:55 -0800 | [diff] [blame] | 275 | |
| 276 | .. math:: |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 277 | |
Michal Krol | b3567fc | 2010-01-04 12:59:17 +0100 | [diff] [blame] | 278 | dst.x = src0.x \times src1.x + (1 - src0.x) \times src2.x |
Corbin Simpson | e8ed3b9 | 2009-12-21 19:12:55 -0800 | [diff] [blame] | 279 | |
Michal Krol | b3567fc | 2010-01-04 12:59:17 +0100 | [diff] [blame] | 280 | dst.y = src0.y \times src1.y + (1 - src0.y) \times src2.y |
Corbin Simpson | e8ed3b9 | 2009-12-21 19:12:55 -0800 | [diff] [blame] | 281 | |
Michal Krol | b3567fc | 2010-01-04 12:59:17 +0100 | [diff] [blame] | 282 | dst.z = src0.z \times src1.z + (1 - src0.z) \times src2.z |
Corbin Simpson | e8ed3b9 | 2009-12-21 19:12:55 -0800 | [diff] [blame] | 283 | |
Michal Krol | b3567fc | 2010-01-04 12:59:17 +0100 | [diff] [blame] | 284 | dst.w = src0.w \times src1.w + (1 - src0.w) \times src2.w |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 285 | |
| 286 | |
Corbin Simpson | 8580522 | 2010-02-02 16:20:12 -0800 | [diff] [blame] | 287 | .. opcode:: CND - Condition |
Corbin Simpson | e8ed3b9 | 2009-12-21 19:12:55 -0800 | [diff] [blame] | 288 | |
| 289 | .. math:: |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 290 | |
| 291 | dst.x = (src2.x > 0.5) ? src0.x : src1.x |
Corbin Simpson | e8ed3b9 | 2009-12-21 19:12:55 -0800 | [diff] [blame] | 292 | |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 293 | dst.y = (src2.y > 0.5) ? src0.y : src1.y |
Corbin Simpson | e8ed3b9 | 2009-12-21 19:12:55 -0800 | [diff] [blame] | 294 | |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 295 | dst.z = (src2.z > 0.5) ? src0.z : src1.z |
Corbin Simpson | e8ed3b9 | 2009-12-21 19:12:55 -0800 | [diff] [blame] | 296 | |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 297 | dst.w = (src2.w > 0.5) ? src0.w : src1.w |
| 298 | |
| 299 | |
Corbin Simpson | 8580522 | 2010-02-02 16:20:12 -0800 | [diff] [blame] | 300 | .. opcode:: DP2A - 2-component Dot Product And Add |
Corbin Simpson | e8ed3b9 | 2009-12-21 19:12:55 -0800 | [diff] [blame] | 301 | |
| 302 | .. math:: |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 303 | |
Corbin Simpson | ecb2f2a | 2009-12-21 20:07:10 -0800 | [diff] [blame] | 304 | dst.x = src0.x \times src1.x + src0.y \times src1.y + src2.x |
Corbin Simpson | e8ed3b9 | 2009-12-21 19:12:55 -0800 | [diff] [blame] | 305 | |
Corbin Simpson | ecb2f2a | 2009-12-21 20:07:10 -0800 | [diff] [blame] | 306 | dst.y = src0.x \times src1.x + src0.y \times src1.y + src2.x |
Corbin Simpson | e8ed3b9 | 2009-12-21 19:12:55 -0800 | [diff] [blame] | 307 | |
Corbin Simpson | ecb2f2a | 2009-12-21 20:07:10 -0800 | [diff] [blame] | 308 | dst.z = src0.x \times src1.x + src0.y \times src1.y + src2.x |
Corbin Simpson | e8ed3b9 | 2009-12-21 19:12:55 -0800 | [diff] [blame] | 309 | |
Corbin Simpson | ecb2f2a | 2009-12-21 20:07:10 -0800 | [diff] [blame] | 310 | dst.w = src0.x \times src1.x + src0.y \times src1.y + src2.x |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 311 | |
| 312 | |
José Fonseca | d9c6ebb | 2010-06-01 16:25:05 +0100 | [diff] [blame] | 313 | .. opcode:: FRC - Fraction |
Corbin Simpson | e8ed3b9 | 2009-12-21 19:12:55 -0800 | [diff] [blame] | 314 | |
| 315 | .. math:: |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 316 | |
Corbin Simpson | d92a685 | 2009-12-21 19:30:29 -0800 | [diff] [blame] | 317 | dst.x = src.x - \lfloor src.x\rfloor |
Corbin Simpson | e8ed3b9 | 2009-12-21 19:12:55 -0800 | [diff] [blame] | 318 | |
Corbin Simpson | d92a685 | 2009-12-21 19:30:29 -0800 | [diff] [blame] | 319 | dst.y = src.y - \lfloor src.y\rfloor |
Corbin Simpson | e8ed3b9 | 2009-12-21 19:12:55 -0800 | [diff] [blame] | 320 | |
Corbin Simpson | d92a685 | 2009-12-21 19:30:29 -0800 | [diff] [blame] | 321 | dst.z = src.z - \lfloor src.z\rfloor |
Corbin Simpson | e8ed3b9 | 2009-12-21 19:12:55 -0800 | [diff] [blame] | 322 | |
Corbin Simpson | d92a685 | 2009-12-21 19:30:29 -0800 | [diff] [blame] | 323 | dst.w = src.w - \lfloor src.w\rfloor |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 324 | |
| 325 | |
Corbin Simpson | 8580522 | 2010-02-02 16:20:12 -0800 | [diff] [blame] | 326 | .. opcode:: CLAMP - Clamp |
Corbin Simpson | e8ed3b9 | 2009-12-21 19:12:55 -0800 | [diff] [blame] | 327 | |
| 328 | .. math:: |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 329 | |
| 330 | dst.x = clamp(src0.x, src1.x, src2.x) |
Corbin Simpson | da65ac6 | 2009-12-21 20:32:46 -0800 | [diff] [blame] | 331 | |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 332 | dst.y = clamp(src0.y, src1.y, src2.y) |
Corbin Simpson | da65ac6 | 2009-12-21 20:32:46 -0800 | [diff] [blame] | 333 | |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 334 | dst.z = clamp(src0.z, src1.z, src2.z) |
Corbin Simpson | da65ac6 | 2009-12-21 20:32:46 -0800 | [diff] [blame] | 335 | |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 336 | dst.w = clamp(src0.w, src1.w, src2.w) |
| 337 | |
| 338 | |
Corbin Simpson | 8580522 | 2010-02-02 16:20:12 -0800 | [diff] [blame] | 339 | .. opcode:: FLR - Floor |
Corbin Simpson | d92a685 | 2009-12-21 19:30:29 -0800 | [diff] [blame] | 340 | |
Corbin Simpson | 17c2a44 | 2010-02-02 17:02:28 -0800 | [diff] [blame] | 341 | This is identical to :opcode:`ARL`. |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 342 | |
Corbin Simpson | e8ed3b9 | 2009-12-21 19:12:55 -0800 | [diff] [blame] | 343 | .. math:: |
| 344 | |
Corbin Simpson | d92a685 | 2009-12-21 19:30:29 -0800 | [diff] [blame] | 345 | dst.x = \lfloor src.x\rfloor |
| 346 | |
| 347 | dst.y = \lfloor src.y\rfloor |
| 348 | |
| 349 | dst.z = \lfloor src.z\rfloor |
| 350 | |
| 351 | dst.w = \lfloor src.w\rfloor |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 352 | |
| 353 | |
Corbin Simpson | 8580522 | 2010-02-02 16:20:12 -0800 | [diff] [blame] | 354 | .. opcode:: ROUND - Round |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 355 | |
Corbin Simpson | e8ed3b9 | 2009-12-21 19:12:55 -0800 | [diff] [blame] | 356 | .. math:: |
| 357 | |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 358 | dst.x = round(src.x) |
Corbin Simpson | da65ac6 | 2009-12-21 20:32:46 -0800 | [diff] [blame] | 359 | |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 360 | dst.y = round(src.y) |
Corbin Simpson | da65ac6 | 2009-12-21 20:32:46 -0800 | [diff] [blame] | 361 | |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 362 | dst.z = round(src.z) |
Corbin Simpson | da65ac6 | 2009-12-21 20:32:46 -0800 | [diff] [blame] | 363 | |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 364 | dst.w = round(src.w) |
| 365 | |
| 366 | |
Corbin Simpson | 8580522 | 2010-02-02 16:20:12 -0800 | [diff] [blame] | 367 | .. opcode:: EX2 - Exponential Base 2 |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 368 | |
Corbin Simpson | 17c2a44 | 2010-02-02 17:02:28 -0800 | [diff] [blame] | 369 | This instruction replicates its result. |
| 370 | |
Corbin Simpson | e8ed3b9 | 2009-12-21 19:12:55 -0800 | [diff] [blame] | 371 | .. math:: |
| 372 | |
Corbin Simpson | 17c2a44 | 2010-02-02 17:02:28 -0800 | [diff] [blame] | 373 | dst = 2^{src.x} |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 374 | |
| 375 | |
Corbin Simpson | 8580522 | 2010-02-02 16:20:12 -0800 | [diff] [blame] | 376 | .. opcode:: LG2 - Logarithm Base 2 |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 377 | |
Corbin Simpson | 17c2a44 | 2010-02-02 17:02:28 -0800 | [diff] [blame] | 378 | This instruction replicates its result. |
| 379 | |
Corbin Simpson | e8ed3b9 | 2009-12-21 19:12:55 -0800 | [diff] [blame] | 380 | .. math:: |
| 381 | |
Corbin Simpson | 17c2a44 | 2010-02-02 17:02:28 -0800 | [diff] [blame] | 382 | dst = \log_2{src.x} |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 383 | |
| 384 | |
Corbin Simpson | 8580522 | 2010-02-02 16:20:12 -0800 | [diff] [blame] | 385 | .. opcode:: POW - Power |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 386 | |
Corbin Simpson | 17c2a44 | 2010-02-02 17:02:28 -0800 | [diff] [blame] | 387 | This instruction replicates its result. |
| 388 | |
Corbin Simpson | e8ed3b9 | 2009-12-21 19:12:55 -0800 | [diff] [blame] | 389 | .. math:: |
| 390 | |
Corbin Simpson | 17c2a44 | 2010-02-02 17:02:28 -0800 | [diff] [blame] | 391 | dst = src0.x^{src1.x} |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 392 | |
Corbin Simpson | 8580522 | 2010-02-02 16:20:12 -0800 | [diff] [blame] | 393 | .. opcode:: XPD - Cross Product |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 394 | |
Corbin Simpson | e8ed3b9 | 2009-12-21 19:12:55 -0800 | [diff] [blame] | 395 | .. math:: |
| 396 | |
Corbin Simpson | ecb2f2a | 2009-12-21 20:07:10 -0800 | [diff] [blame] | 397 | dst.x = src0.y \times src1.z - src1.y \times src0.z |
Corbin Simpson | da65ac6 | 2009-12-21 20:32:46 -0800 | [diff] [blame] | 398 | |
Corbin Simpson | ecb2f2a | 2009-12-21 20:07:10 -0800 | [diff] [blame] | 399 | dst.y = src0.z \times src1.x - src1.z \times src0.x |
Corbin Simpson | da65ac6 | 2009-12-21 20:32:46 -0800 | [diff] [blame] | 400 | |
Corbin Simpson | ecb2f2a | 2009-12-21 20:07:10 -0800 | [diff] [blame] | 401 | dst.z = src0.x \times src1.y - src1.x \times src0.y |
Corbin Simpson | da65ac6 | 2009-12-21 20:32:46 -0800 | [diff] [blame] | 402 | |
| 403 | dst.w = 1 |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 404 | |
| 405 | |
Corbin Simpson | 8580522 | 2010-02-02 16:20:12 -0800 | [diff] [blame] | 406 | .. opcode:: ABS - Absolute |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 407 | |
Corbin Simpson | e8ed3b9 | 2009-12-21 19:12:55 -0800 | [diff] [blame] | 408 | .. math:: |
| 409 | |
Corbin Simpson | 14743ac | 2009-12-21 19:57:56 -0800 | [diff] [blame] | 410 | dst.x = |src.x| |
| 411 | |
| 412 | dst.y = |src.y| |
| 413 | |
| 414 | dst.z = |src.z| |
| 415 | |
| 416 | dst.w = |src.w| |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 417 | |
| 418 | |
Corbin Simpson | 8580522 | 2010-02-02 16:20:12 -0800 | [diff] [blame] | 419 | .. opcode:: RCC - Reciprocal Clamped |
Corbin Simpson | da65ac6 | 2009-12-21 20:32:46 -0800 | [diff] [blame] | 420 | |
Corbin Simpson | 17c2a44 | 2010-02-02 17:02:28 -0800 | [diff] [blame] | 421 | This instruction replicates its result. |
| 422 | |
Corbin Simpson | da65ac6 | 2009-12-21 20:32:46 -0800 | [diff] [blame] | 423 | XXX cleanup on aisle three |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 424 | |
Corbin Simpson | e8ed3b9 | 2009-12-21 19:12:55 -0800 | [diff] [blame] | 425 | .. math:: |
| 426 | |
Corbin Simpson | 17c2a44 | 2010-02-02 17:02:28 -0800 | [diff] [blame] | 427 | dst = (1 / src.x) > 0 ? clamp(1 / src.x, 5.42101e-020, 1.884467e+019) : clamp(1 / src.x, -1.884467e+019, -5.42101e-020) |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 428 | |
| 429 | |
Corbin Simpson | 8580522 | 2010-02-02 16:20:12 -0800 | [diff] [blame] | 430 | .. opcode:: DPH - Homogeneous Dot Product |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 431 | |
Corbin Simpson | 17c2a44 | 2010-02-02 17:02:28 -0800 | [diff] [blame] | 432 | This instruction replicates its result. |
| 433 | |
Corbin Simpson | e8ed3b9 | 2009-12-21 19:12:55 -0800 | [diff] [blame] | 434 | .. math:: |
| 435 | |
Corbin Simpson | 17c2a44 | 2010-02-02 17:02:28 -0800 | [diff] [blame] | 436 | dst = src0.x \times src1.x + src0.y \times src1.y + src0.z \times src1.z + src1.w |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 437 | |
| 438 | |
Corbin Simpson | 8580522 | 2010-02-02 16:20:12 -0800 | [diff] [blame] | 439 | .. opcode:: COS - Cosine |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 440 | |
Corbin Simpson | 17c2a44 | 2010-02-02 17:02:28 -0800 | [diff] [blame] | 441 | This instruction replicates its result. |
| 442 | |
Corbin Simpson | e8ed3b9 | 2009-12-21 19:12:55 -0800 | [diff] [blame] | 443 | .. math:: |
| 444 | |
Corbin Simpson | 17c2a44 | 2010-02-02 17:02:28 -0800 | [diff] [blame] | 445 | dst = \cos{src.x} |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 446 | |
| 447 | |
Corbin Simpson | 8580522 | 2010-02-02 16:20:12 -0800 | [diff] [blame] | 448 | .. opcode:: DDX - Derivative Relative To X |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 449 | |
Corbin Simpson | e8ed3b9 | 2009-12-21 19:12:55 -0800 | [diff] [blame] | 450 | .. math:: |
| 451 | |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 452 | dst.x = partialx(src.x) |
Corbin Simpson | da65ac6 | 2009-12-21 20:32:46 -0800 | [diff] [blame] | 453 | |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 454 | dst.y = partialx(src.y) |
Corbin Simpson | da65ac6 | 2009-12-21 20:32:46 -0800 | [diff] [blame] | 455 | |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 456 | dst.z = partialx(src.z) |
Corbin Simpson | da65ac6 | 2009-12-21 20:32:46 -0800 | [diff] [blame] | 457 | |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 458 | dst.w = partialx(src.w) |
| 459 | |
| 460 | |
Corbin Simpson | 8580522 | 2010-02-02 16:20:12 -0800 | [diff] [blame] | 461 | .. opcode:: DDY - Derivative Relative To Y |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 462 | |
Corbin Simpson | e8ed3b9 | 2009-12-21 19:12:55 -0800 | [diff] [blame] | 463 | .. math:: |
| 464 | |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 465 | dst.x = partialy(src.x) |
Corbin Simpson | da65ac6 | 2009-12-21 20:32:46 -0800 | [diff] [blame] | 466 | |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 467 | dst.y = partialy(src.y) |
Corbin Simpson | da65ac6 | 2009-12-21 20:32:46 -0800 | [diff] [blame] | 468 | |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 469 | dst.z = partialy(src.z) |
Corbin Simpson | da65ac6 | 2009-12-21 20:32:46 -0800 | [diff] [blame] | 470 | |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 471 | dst.w = partialy(src.w) |
| 472 | |
| 473 | |
Corbin Simpson | 8580522 | 2010-02-02 16:20:12 -0800 | [diff] [blame] | 474 | .. opcode:: KILP - Predicated Discard |
Corbin Simpson | e8ed3b9 | 2009-12-21 19:12:55 -0800 | [diff] [blame] | 475 | |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 476 | discard |
| 477 | |
| 478 | |
Corbin Simpson | 8580522 | 2010-02-02 16:20:12 -0800 | [diff] [blame] | 479 | .. opcode:: PK2H - Pack Two 16-bit Floats |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 480 | |
| 481 | TBD |
| 482 | |
| 483 | |
Corbin Simpson | 8580522 | 2010-02-02 16:20:12 -0800 | [diff] [blame] | 484 | .. opcode:: PK2US - Pack Two Unsigned 16-bit Scalars |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 485 | |
| 486 | TBD |
| 487 | |
| 488 | |
Corbin Simpson | 8580522 | 2010-02-02 16:20:12 -0800 | [diff] [blame] | 489 | .. opcode:: PK4B - Pack Four Signed 8-bit Scalars |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 490 | |
| 491 | TBD |
| 492 | |
| 493 | |
Corbin Simpson | 8580522 | 2010-02-02 16:20:12 -0800 | [diff] [blame] | 494 | .. opcode:: PK4UB - Pack Four Unsigned 8-bit Scalars |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 495 | |
| 496 | TBD |
| 497 | |
| 498 | |
Corbin Simpson | 8580522 | 2010-02-02 16:20:12 -0800 | [diff] [blame] | 499 | .. opcode:: RFL - Reflection Vector |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 500 | |
Corbin Simpson | e8ed3b9 | 2009-12-21 19:12:55 -0800 | [diff] [blame] | 501 | .. math:: |
| 502 | |
Corbin Simpson | da65ac6 | 2009-12-21 20:32:46 -0800 | [diff] [blame] | 503 | dst.x = 2 \times (src0.x \times src1.x + src0.y \times src1.y + src0.z \times src1.z) / (src0.x \times src0.x + src0.y \times src0.y + src0.z \times src0.z) \times src0.x - src1.x |
| 504 | |
| 505 | dst.y = 2 \times (src0.x \times src1.x + src0.y \times src1.y + src0.z \times src1.z) / (src0.x \times src0.x + src0.y \times src0.y + src0.z \times src0.z) \times src0.y - src1.y |
| 506 | |
| 507 | dst.z = 2 \times (src0.x \times src1.x + src0.y \times src1.y + src0.z \times src1.z) / (src0.x \times src0.x + src0.y \times src0.y + src0.z \times src0.z) \times src0.z - src1.z |
| 508 | |
| 509 | dst.w = 1 |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 510 | |
Corbin Simpson | 17c2a44 | 2010-02-02 17:02:28 -0800 | [diff] [blame] | 511 | .. note:: |
| 512 | |
| 513 | Considered for removal. |
Keith Whitwell | 14eacb0 | 2009-12-21 23:38:29 +0000 | [diff] [blame] | 514 | |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 515 | |
Corbin Simpson | 8580522 | 2010-02-02 16:20:12 -0800 | [diff] [blame] | 516 | .. opcode:: SEQ - Set On Equal |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 517 | |
Corbin Simpson | e8ed3b9 | 2009-12-21 19:12:55 -0800 | [diff] [blame] | 518 | .. math:: |
| 519 | |
Corbin Simpson | da65ac6 | 2009-12-21 20:32:46 -0800 | [diff] [blame] | 520 | dst.x = (src0.x == src1.x) ? 1 : 0 |
Corbin Simpson | 0477191 | 2010-01-18 17:31:56 -0800 | [diff] [blame] | 521 | |
Corbin Simpson | da65ac6 | 2009-12-21 20:32:46 -0800 | [diff] [blame] | 522 | dst.y = (src0.y == src1.y) ? 1 : 0 |
Corbin Simpson | 0477191 | 2010-01-18 17:31:56 -0800 | [diff] [blame] | 523 | |
Corbin Simpson | da65ac6 | 2009-12-21 20:32:46 -0800 | [diff] [blame] | 524 | dst.z = (src0.z == src1.z) ? 1 : 0 |
Corbin Simpson | 0477191 | 2010-01-18 17:31:56 -0800 | [diff] [blame] | 525 | |
Corbin Simpson | da65ac6 | 2009-12-21 20:32:46 -0800 | [diff] [blame] | 526 | dst.w = (src0.w == src1.w) ? 1 : 0 |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 527 | |
| 528 | |
Corbin Simpson | 8580522 | 2010-02-02 16:20:12 -0800 | [diff] [blame] | 529 | .. opcode:: SFL - Set On False |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 530 | |
Corbin Simpson | 17c2a44 | 2010-02-02 17:02:28 -0800 | [diff] [blame] | 531 | This instruction replicates its result. |
| 532 | |
Corbin Simpson | e8ed3b9 | 2009-12-21 19:12:55 -0800 | [diff] [blame] | 533 | .. math:: |
| 534 | |
Corbin Simpson | 17c2a44 | 2010-02-02 17:02:28 -0800 | [diff] [blame] | 535 | dst = 0 |
Corbin Simpson | 0477191 | 2010-01-18 17:31:56 -0800 | [diff] [blame] | 536 | |
Corbin Simpson | 17c2a44 | 2010-02-02 17:02:28 -0800 | [diff] [blame] | 537 | .. note:: |
Corbin Simpson | 0477191 | 2010-01-18 17:31:56 -0800 | [diff] [blame] | 538 | |
Corbin Simpson | 17c2a44 | 2010-02-02 17:02:28 -0800 | [diff] [blame] | 539 | Considered for removal. |
Corbin Simpson | 0477191 | 2010-01-18 17:31:56 -0800 | [diff] [blame] | 540 | |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 541 | |
Corbin Simpson | 8580522 | 2010-02-02 16:20:12 -0800 | [diff] [blame] | 542 | .. opcode:: SGT - Set On Greater Than |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 543 | |
Corbin Simpson | e8ed3b9 | 2009-12-21 19:12:55 -0800 | [diff] [blame] | 544 | .. math:: |
| 545 | |
Corbin Simpson | da65ac6 | 2009-12-21 20:32:46 -0800 | [diff] [blame] | 546 | dst.x = (src0.x > src1.x) ? 1 : 0 |
Corbin Simpson | 0477191 | 2010-01-18 17:31:56 -0800 | [diff] [blame] | 547 | |
Corbin Simpson | da65ac6 | 2009-12-21 20:32:46 -0800 | [diff] [blame] | 548 | dst.y = (src0.y > src1.y) ? 1 : 0 |
Corbin Simpson | 0477191 | 2010-01-18 17:31:56 -0800 | [diff] [blame] | 549 | |
Corbin Simpson | da65ac6 | 2009-12-21 20:32:46 -0800 | [diff] [blame] | 550 | dst.z = (src0.z > src1.z) ? 1 : 0 |
Corbin Simpson | 0477191 | 2010-01-18 17:31:56 -0800 | [diff] [blame] | 551 | |
Corbin Simpson | da65ac6 | 2009-12-21 20:32:46 -0800 | [diff] [blame] | 552 | dst.w = (src0.w > src1.w) ? 1 : 0 |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 553 | |
| 554 | |
Corbin Simpson | 8580522 | 2010-02-02 16:20:12 -0800 | [diff] [blame] | 555 | .. opcode:: SIN - Sine |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 556 | |
Corbin Simpson | 17c2a44 | 2010-02-02 17:02:28 -0800 | [diff] [blame] | 557 | This instruction replicates its result. |
| 558 | |
Corbin Simpson | e8ed3b9 | 2009-12-21 19:12:55 -0800 | [diff] [blame] | 559 | .. math:: |
| 560 | |
Corbin Simpson | 17c2a44 | 2010-02-02 17:02:28 -0800 | [diff] [blame] | 561 | dst = \sin{src.x} |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 562 | |
| 563 | |
Corbin Simpson | 8580522 | 2010-02-02 16:20:12 -0800 | [diff] [blame] | 564 | .. opcode:: SLE - Set On Less Equal Than |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 565 | |
Corbin Simpson | e8ed3b9 | 2009-12-21 19:12:55 -0800 | [diff] [blame] | 566 | .. math:: |
| 567 | |
Corbin Simpson | da65ac6 | 2009-12-21 20:32:46 -0800 | [diff] [blame] | 568 | dst.x = (src0.x <= src1.x) ? 1 : 0 |
Corbin Simpson | 0477191 | 2010-01-18 17:31:56 -0800 | [diff] [blame] | 569 | |
Corbin Simpson | da65ac6 | 2009-12-21 20:32:46 -0800 | [diff] [blame] | 570 | dst.y = (src0.y <= src1.y) ? 1 : 0 |
Corbin Simpson | 0477191 | 2010-01-18 17:31:56 -0800 | [diff] [blame] | 571 | |
Corbin Simpson | da65ac6 | 2009-12-21 20:32:46 -0800 | [diff] [blame] | 572 | dst.z = (src0.z <= src1.z) ? 1 : 0 |
Corbin Simpson | 0477191 | 2010-01-18 17:31:56 -0800 | [diff] [blame] | 573 | |
Corbin Simpson | da65ac6 | 2009-12-21 20:32:46 -0800 | [diff] [blame] | 574 | dst.w = (src0.w <= src1.w) ? 1 : 0 |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 575 | |
| 576 | |
Corbin Simpson | 8580522 | 2010-02-02 16:20:12 -0800 | [diff] [blame] | 577 | .. opcode:: SNE - Set On Not Equal |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 578 | |
Corbin Simpson | e8ed3b9 | 2009-12-21 19:12:55 -0800 | [diff] [blame] | 579 | .. math:: |
| 580 | |
Corbin Simpson | da65ac6 | 2009-12-21 20:32:46 -0800 | [diff] [blame] | 581 | dst.x = (src0.x != src1.x) ? 1 : 0 |
Corbin Simpson | 0477191 | 2010-01-18 17:31:56 -0800 | [diff] [blame] | 582 | |
Corbin Simpson | da65ac6 | 2009-12-21 20:32:46 -0800 | [diff] [blame] | 583 | dst.y = (src0.y != src1.y) ? 1 : 0 |
Corbin Simpson | 0477191 | 2010-01-18 17:31:56 -0800 | [diff] [blame] | 584 | |
Corbin Simpson | da65ac6 | 2009-12-21 20:32:46 -0800 | [diff] [blame] | 585 | dst.z = (src0.z != src1.z) ? 1 : 0 |
Corbin Simpson | 0477191 | 2010-01-18 17:31:56 -0800 | [diff] [blame] | 586 | |
Corbin Simpson | da65ac6 | 2009-12-21 20:32:46 -0800 | [diff] [blame] | 587 | dst.w = (src0.w != src1.w) ? 1 : 0 |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 588 | |
| 589 | |
Corbin Simpson | 8580522 | 2010-02-02 16:20:12 -0800 | [diff] [blame] | 590 | .. opcode:: STR - Set On True |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 591 | |
Corbin Simpson | 17c2a44 | 2010-02-02 17:02:28 -0800 | [diff] [blame] | 592 | This instruction replicates its result. |
| 593 | |
Corbin Simpson | e8ed3b9 | 2009-12-21 19:12:55 -0800 | [diff] [blame] | 594 | .. math:: |
| 595 | |
Corbin Simpson | 17c2a44 | 2010-02-02 17:02:28 -0800 | [diff] [blame] | 596 | dst = 1 |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 597 | |
| 598 | |
Corbin Simpson | 8580522 | 2010-02-02 16:20:12 -0800 | [diff] [blame] | 599 | .. opcode:: TEX - Texture Lookup |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 600 | |
Brian Paul | 2a77c3c | 2010-12-14 12:45:36 -0700 | [diff] [blame] | 601 | .. math:: |
| 602 | |
| 603 | coord = src0 |
| 604 | |
| 605 | bias = 0.0 |
| 606 | |
| 607 | dst = texture_sample(unit, coord, bias) |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 608 | |
Dave Airlie | 35db326 | 2011-12-19 16:40:05 +0000 | [diff] [blame] | 609 | for array textures src0.y contains the slice for 1D, |
| 610 | and src0.z contain the slice for 2D. |
| 611 | for shadow textures with no arrays, src0.z contains |
| 612 | the reference value. |
| 613 | for shadow textures with arrays, src0.z contains |
| 614 | the reference value for 1D arrays, and src0.w contains |
| 615 | the reference value for 2D arrays. |
| 616 | There is no way to pass a bias in the .w value for |
| 617 | shadow arrays, and GLSL doesn't allow this. |
| 618 | GLSL does allow cube shadows maps to take a bias value, |
| 619 | and we have to determine how this will look in TGSI. |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 620 | |
Corbin Simpson | 8580522 | 2010-02-02 16:20:12 -0800 | [diff] [blame] | 621 | .. opcode:: TXD - Texture Lookup with Derivatives |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 622 | |
Brian Paul | 2a77c3c | 2010-12-14 12:45:36 -0700 | [diff] [blame] | 623 | .. math:: |
| 624 | |
| 625 | coord = src0 |
| 626 | |
| 627 | ddx = src1 |
| 628 | |
| 629 | ddy = src2 |
| 630 | |
| 631 | bias = 0.0 |
| 632 | |
| 633 | dst = texture_sample_deriv(unit, coord, bias, ddx, ddy) |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 634 | |
| 635 | |
Corbin Simpson | 8580522 | 2010-02-02 16:20:12 -0800 | [diff] [blame] | 636 | .. opcode:: TXP - Projective Texture Lookup |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 637 | |
Brian Paul | 2a77c3c | 2010-12-14 12:45:36 -0700 | [diff] [blame] | 638 | .. math:: |
| 639 | |
| 640 | coord.x = src0.x / src.w |
| 641 | |
| 642 | coord.y = src0.y / src.w |
| 643 | |
| 644 | coord.z = src0.z / src.w |
| 645 | |
| 646 | coord.w = src0.w |
| 647 | |
| 648 | bias = 0.0 |
| 649 | |
| 650 | dst = texture_sample(unit, coord, bias) |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 651 | |
| 652 | |
Corbin Simpson | 8580522 | 2010-02-02 16:20:12 -0800 | [diff] [blame] | 653 | .. opcode:: UP2H - Unpack Two 16-Bit Floats |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 654 | |
| 655 | TBD |
| 656 | |
Corbin Simpson | 17c2a44 | 2010-02-02 17:02:28 -0800 | [diff] [blame] | 657 | .. note:: |
| 658 | |
| 659 | Considered for removal. |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 660 | |
Corbin Simpson | 8580522 | 2010-02-02 16:20:12 -0800 | [diff] [blame] | 661 | .. opcode:: UP2US - Unpack Two Unsigned 16-Bit Scalars |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 662 | |
| 663 | TBD |
| 664 | |
Corbin Simpson | 17c2a44 | 2010-02-02 17:02:28 -0800 | [diff] [blame] | 665 | .. note:: |
| 666 | |
| 667 | Considered for removal. |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 668 | |
Corbin Simpson | 8580522 | 2010-02-02 16:20:12 -0800 | [diff] [blame] | 669 | .. opcode:: UP4B - Unpack Four Signed 8-Bit Values |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 670 | |
| 671 | TBD |
| 672 | |
Corbin Simpson | 17c2a44 | 2010-02-02 17:02:28 -0800 | [diff] [blame] | 673 | .. note:: |
| 674 | |
| 675 | Considered for removal. |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 676 | |
Corbin Simpson | 8580522 | 2010-02-02 16:20:12 -0800 | [diff] [blame] | 677 | .. opcode:: UP4UB - Unpack Four Unsigned 8-Bit Scalars |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 678 | |
| 679 | TBD |
| 680 | |
Corbin Simpson | 17c2a44 | 2010-02-02 17:02:28 -0800 | [diff] [blame] | 681 | .. note:: |
| 682 | |
| 683 | Considered for removal. |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 684 | |
Corbin Simpson | 8580522 | 2010-02-02 16:20:12 -0800 | [diff] [blame] | 685 | .. opcode:: X2D - 2D Coordinate Transformation |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 686 | |
Corbin Simpson | e8ed3b9 | 2009-12-21 19:12:55 -0800 | [diff] [blame] | 687 | .. math:: |
| 688 | |
Corbin Simpson | ecb2f2a | 2009-12-21 20:07:10 -0800 | [diff] [blame] | 689 | dst.x = src0.x + src1.x \times src2.x + src1.y \times src2.y |
Corbin Simpson | 0477191 | 2010-01-18 17:31:56 -0800 | [diff] [blame] | 690 | |
Corbin Simpson | ecb2f2a | 2009-12-21 20:07:10 -0800 | [diff] [blame] | 691 | dst.y = src0.y + src1.x \times src2.z + src1.y \times src2.w |
Corbin Simpson | 0477191 | 2010-01-18 17:31:56 -0800 | [diff] [blame] | 692 | |
Corbin Simpson | ecb2f2a | 2009-12-21 20:07:10 -0800 | [diff] [blame] | 693 | dst.z = src0.x + src1.x \times src2.x + src1.y \times src2.y |
Corbin Simpson | 0477191 | 2010-01-18 17:31:56 -0800 | [diff] [blame] | 694 | |
Corbin Simpson | ecb2f2a | 2009-12-21 20:07:10 -0800 | [diff] [blame] | 695 | dst.w = src0.y + src1.x \times src2.z + src1.y \times src2.w |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 696 | |
Corbin Simpson | 17c2a44 | 2010-02-02 17:02:28 -0800 | [diff] [blame] | 697 | .. note:: |
| 698 | |
| 699 | Considered for removal. |
Keith Whitwell | 14eacb0 | 2009-12-21 23:38:29 +0000 | [diff] [blame] | 700 | |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 701 | |
Corbin Simpson | 8580522 | 2010-02-02 16:20:12 -0800 | [diff] [blame] | 702 | .. opcode:: ARA - Address Register Add |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 703 | |
| 704 | TBD |
| 705 | |
Corbin Simpson | 17c2a44 | 2010-02-02 17:02:28 -0800 | [diff] [blame] | 706 | .. note:: |
| 707 | |
| 708 | Considered for removal. |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 709 | |
Corbin Simpson | 8580522 | 2010-02-02 16:20:12 -0800 | [diff] [blame] | 710 | .. opcode:: ARR - Address Register Load With Round |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 711 | |
Corbin Simpson | e8ed3b9 | 2009-12-21 19:12:55 -0800 | [diff] [blame] | 712 | .. math:: |
| 713 | |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 714 | dst.x = round(src.x) |
Corbin Simpson | da65ac6 | 2009-12-21 20:32:46 -0800 | [diff] [blame] | 715 | |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 716 | dst.y = round(src.y) |
Corbin Simpson | da65ac6 | 2009-12-21 20:32:46 -0800 | [diff] [blame] | 717 | |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 718 | dst.z = round(src.z) |
Corbin Simpson | da65ac6 | 2009-12-21 20:32:46 -0800 | [diff] [blame] | 719 | |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 720 | dst.w = round(src.w) |
| 721 | |
| 722 | |
Corbin Simpson | 8580522 | 2010-02-02 16:20:12 -0800 | [diff] [blame] | 723 | .. opcode:: BRA - Branch |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 724 | |
| 725 | pc = target |
| 726 | |
Corbin Simpson | 17c2a44 | 2010-02-02 17:02:28 -0800 | [diff] [blame] | 727 | .. note:: |
| 728 | |
| 729 | Considered for removal. |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 730 | |
Corbin Simpson | 8580522 | 2010-02-02 16:20:12 -0800 | [diff] [blame] | 731 | .. opcode:: CAL - Subroutine Call |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 732 | |
| 733 | push(pc) |
| 734 | pc = target |
| 735 | |
| 736 | |
Corbin Simpson | 8580522 | 2010-02-02 16:20:12 -0800 | [diff] [blame] | 737 | .. opcode:: RET - Subroutine Call Return |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 738 | |
| 739 | pc = pop() |
| 740 | |
| 741 | |
Corbin Simpson | 8580522 | 2010-02-02 16:20:12 -0800 | [diff] [blame] | 742 | .. opcode:: SSG - Set Sign |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 743 | |
Corbin Simpson | e8ed3b9 | 2009-12-21 19:12:55 -0800 | [diff] [blame] | 744 | .. math:: |
| 745 | |
Corbin Simpson | da65ac6 | 2009-12-21 20:32:46 -0800 | [diff] [blame] | 746 | dst.x = (src.x > 0) ? 1 : (src.x < 0) ? -1 : 0 |
| 747 | |
| 748 | dst.y = (src.y > 0) ? 1 : (src.y < 0) ? -1 : 0 |
| 749 | |
| 750 | dst.z = (src.z > 0) ? 1 : (src.z < 0) ? -1 : 0 |
| 751 | |
| 752 | dst.w = (src.w > 0) ? 1 : (src.w < 0) ? -1 : 0 |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 753 | |
| 754 | |
Corbin Simpson | 8580522 | 2010-02-02 16:20:12 -0800 | [diff] [blame] | 755 | .. opcode:: CMP - Compare |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 756 | |
Corbin Simpson | e8ed3b9 | 2009-12-21 19:12:55 -0800 | [diff] [blame] | 757 | .. math:: |
| 758 | |
Corbin Simpson | da65ac6 | 2009-12-21 20:32:46 -0800 | [diff] [blame] | 759 | dst.x = (src0.x < 0) ? src1.x : src2.x |
| 760 | |
| 761 | dst.y = (src0.y < 0) ? src1.y : src2.y |
| 762 | |
| 763 | dst.z = (src0.z < 0) ? src1.z : src2.z |
| 764 | |
| 765 | dst.w = (src0.w < 0) ? src1.w : src2.w |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 766 | |
| 767 | |
Corbin Simpson | 8580522 | 2010-02-02 16:20:12 -0800 | [diff] [blame] | 768 | .. opcode:: KIL - Conditional Discard |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 769 | |
Corbin Simpson | e8ed3b9 | 2009-12-21 19:12:55 -0800 | [diff] [blame] | 770 | .. math:: |
| 771 | |
Corbin Simpson | da65ac6 | 2009-12-21 20:32:46 -0800 | [diff] [blame] | 772 | if (src.x < 0 || src.y < 0 || src.z < 0 || src.w < 0) |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 773 | discard |
| 774 | endif |
| 775 | |
| 776 | |
Corbin Simpson | 8580522 | 2010-02-02 16:20:12 -0800 | [diff] [blame] | 777 | .. opcode:: SCS - Sine Cosine |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 778 | |
Corbin Simpson | e8ed3b9 | 2009-12-21 19:12:55 -0800 | [diff] [blame] | 779 | .. math:: |
| 780 | |
Corbin Simpson | d92a685 | 2009-12-21 19:30:29 -0800 | [diff] [blame] | 781 | dst.x = \cos{src.x} |
| 782 | |
| 783 | dst.y = \sin{src.x} |
| 784 | |
Corbin Simpson | da65ac6 | 2009-12-21 20:32:46 -0800 | [diff] [blame] | 785 | dst.z = 0 |
Corbin Simpson | d92a685 | 2009-12-21 19:30:29 -0800 | [diff] [blame] | 786 | |
Tilman Sauerbeck | d323118 | 2010-09-19 09:03:11 +0200 | [diff] [blame] | 787 | dst.w = 1 |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 788 | |
| 789 | |
Corbin Simpson | 8580522 | 2010-02-02 16:20:12 -0800 | [diff] [blame] | 790 | .. opcode:: TXB - Texture Lookup With Bias |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 791 | |
Brian Paul | 2a77c3c | 2010-12-14 12:45:36 -0700 | [diff] [blame] | 792 | .. math:: |
| 793 | |
| 794 | coord.x = src.x |
| 795 | |
| 796 | coord.y = src.y |
| 797 | |
| 798 | coord.z = src.z |
| 799 | |
| 800 | coord.w = 1.0 |
| 801 | |
| 802 | bias = src.z |
| 803 | |
| 804 | dst = texture_sample(unit, coord, bias) |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 805 | |
| 806 | |
Corbin Simpson | 8580522 | 2010-02-02 16:20:12 -0800 | [diff] [blame] | 807 | .. opcode:: NRM - 3-component Vector Normalise |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 808 | |
Corbin Simpson | e8ed3b9 | 2009-12-21 19:12:55 -0800 | [diff] [blame] | 809 | .. math:: |
| 810 | |
Corbin Simpson | ecb2f2a | 2009-12-21 20:07:10 -0800 | [diff] [blame] | 811 | dst.x = src.x / (src.x \times src.x + src.y \times src.y + src.z \times src.z) |
Corbin Simpson | da65ac6 | 2009-12-21 20:32:46 -0800 | [diff] [blame] | 812 | |
Corbin Simpson | ecb2f2a | 2009-12-21 20:07:10 -0800 | [diff] [blame] | 813 | dst.y = src.y / (src.x \times src.x + src.y \times src.y + src.z \times src.z) |
Corbin Simpson | da65ac6 | 2009-12-21 20:32:46 -0800 | [diff] [blame] | 814 | |
Corbin Simpson | ecb2f2a | 2009-12-21 20:07:10 -0800 | [diff] [blame] | 815 | dst.z = src.z / (src.x \times src.x + src.y \times src.y + src.z \times src.z) |
Corbin Simpson | da65ac6 | 2009-12-21 20:32:46 -0800 | [diff] [blame] | 816 | |
| 817 | dst.w = 1 |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 818 | |
| 819 | |
Corbin Simpson | 8580522 | 2010-02-02 16:20:12 -0800 | [diff] [blame] | 820 | .. opcode:: DIV - Divide |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 821 | |
Corbin Simpson | e8ed3b9 | 2009-12-21 19:12:55 -0800 | [diff] [blame] | 822 | .. math:: |
| 823 | |
Corbin Simpson | da65ac6 | 2009-12-21 20:32:46 -0800 | [diff] [blame] | 824 | dst.x = \frac{src0.x}{src1.x} |
| 825 | |
| 826 | dst.y = \frac{src0.y}{src1.y} |
| 827 | |
| 828 | dst.z = \frac{src0.z}{src1.z} |
| 829 | |
| 830 | dst.w = \frac{src0.w}{src1.w} |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 831 | |
| 832 | |
Corbin Simpson | 8580522 | 2010-02-02 16:20:12 -0800 | [diff] [blame] | 833 | .. opcode:: DP2 - 2-component Dot Product |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 834 | |
Corbin Simpson | 17c2a44 | 2010-02-02 17:02:28 -0800 | [diff] [blame] | 835 | This instruction replicates its result. |
| 836 | |
Corbin Simpson | e8ed3b9 | 2009-12-21 19:12:55 -0800 | [diff] [blame] | 837 | .. math:: |
| 838 | |
Corbin Simpson | 17c2a44 | 2010-02-02 17:02:28 -0800 | [diff] [blame] | 839 | dst = src0.x \times src1.x + src0.y \times src1.y |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 840 | |
| 841 | |
Brian Paul | 2a77c3c | 2010-12-14 12:45:36 -0700 | [diff] [blame] | 842 | .. opcode:: TXL - Texture Lookup With explicit LOD |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 843 | |
Brian Paul | 2a77c3c | 2010-12-14 12:45:36 -0700 | [diff] [blame] | 844 | .. math:: |
| 845 | |
| 846 | coord.x = src0.x |
| 847 | |
| 848 | coord.y = src0.y |
| 849 | |
| 850 | coord.z = src0.z |
| 851 | |
| 852 | coord.w = 1.0 |
| 853 | |
| 854 | lod = src0.w |
| 855 | |
| 856 | dst = texture_sample(unit, coord, lod) |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 857 | |
| 858 | |
Corbin Simpson | 8580522 | 2010-02-02 16:20:12 -0800 | [diff] [blame] | 859 | .. opcode:: BRK - Break |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 860 | |
Roland Scheidegger | 7945791 | 2013-04-20 00:34:20 +0200 | [diff] [blame] | 861 | Unconditionally moves the point of execution to the instruction after the |
| 862 | next endloop or endswitch. The instruction must appear within a loop/endloop |
| 863 | or switch/endswitch. |
| 864 | |
| 865 | |
| 866 | .. opcode:: BREAKC - Break Conditional |
| 867 | |
| 868 | Conditionally moves the point of execution to the instruction after the |
| 869 | next endloop or endswitch. The instruction must appear within a loop/endloop |
| 870 | or switch/endswitch. |
| 871 | Condition evaluates to true if src0.x != 0 where src0.x is interpreted |
| 872 | as an integer register. |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 873 | |
| 874 | |
José Fonseca | 50b3fc6 | 2013-04-17 10:47:03 +0100 | [diff] [blame] | 875 | .. opcode:: IF - Float If |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 876 | |
José Fonseca | 50b3fc6 | 2013-04-17 10:47:03 +0100 | [diff] [blame] | 877 | Start an IF ... ELSE .. ENDIF block. Condition evaluates to true if |
| 878 | |
| 879 | src0.x != 0.0 |
| 880 | |
| 881 | where src0.x is interpreted as a floating point register. |
| 882 | |
| 883 | |
| 884 | .. opcode:: UIF - Bitwise If |
| 885 | |
| 886 | Start an UIF ... ELSE .. ENDIF block. Condition evaluates to true if |
| 887 | |
| 888 | src0.x != 0 |
| 889 | |
| 890 | where src0.x is interpreted as an integer register. |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 891 | |
| 892 | |
Corbin Simpson | 8580522 | 2010-02-02 16:20:12 -0800 | [diff] [blame] | 893 | .. opcode:: ELSE - Else |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 894 | |
José Fonseca | 50b3fc6 | 2013-04-17 10:47:03 +0100 | [diff] [blame] | 895 | Starts an else block, after an IF or UIF statement. |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 896 | |
| 897 | |
Corbin Simpson | 8580522 | 2010-02-02 16:20:12 -0800 | [diff] [blame] | 898 | .. opcode:: ENDIF - End If |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 899 | |
José Fonseca | 50b3fc6 | 2013-04-17 10:47:03 +0100 | [diff] [blame] | 900 | Ends an IF or UIF block. |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 901 | |
| 902 | |
Roland Scheidegger | 7945791 | 2013-04-20 00:34:20 +0200 | [diff] [blame] | 903 | .. opcode:: SWITCH - Switch |
| 904 | |
| 905 | Starts a C-style switch expression. The switch consists of one or multiple |
| 906 | CASE statements, and at most one DEFAULT statement. Execution of a statement |
| 907 | ends when a BRK is hit, but just like in C falling through to other cases |
| 908 | without a break is allowed. Similarly, DEFAULT label is allowed anywhere not |
| 909 | just as last statement, and fallthrough is allowed into/from it. |
| 910 | CASE src arguments are evaluated at bit level against the SWITCH src argument. |
| 911 | |
| 912 | Example: |
| 913 | SWITCH src[0].x |
| 914 | CASE src[0].x |
| 915 | (some instructions here) |
| 916 | (optional BRK here) |
| 917 | DEFAULT |
| 918 | (some instructions here) |
| 919 | (optional BRK here) |
| 920 | CASE src[0].x |
| 921 | (some instructions here) |
| 922 | (optional BRK here) |
| 923 | ENDSWITCH |
| 924 | |
| 925 | |
| 926 | .. opcode:: CASE - Switch case |
| 927 | |
| 928 | This represents a switch case label. The src arg must be an integer immediate. |
| 929 | |
| 930 | |
| 931 | .. opcode:: DEFAULT - Switch default |
| 932 | |
| 933 | This represents the default case in the switch, which is taken if no other |
| 934 | case matches. |
| 935 | |
| 936 | |
| 937 | .. opcode:: ENDSWITCH - End of switch |
| 938 | |
| 939 | Ends a switch expression. |
| 940 | |
| 941 | |
Corbin Simpson | 8580522 | 2010-02-02 16:20:12 -0800 | [diff] [blame] | 942 | .. opcode:: PUSHA - Push Address Register On Stack |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 943 | |
| 944 | push(src.x) |
| 945 | push(src.y) |
| 946 | push(src.z) |
| 947 | push(src.w) |
| 948 | |
Corbin Simpson | 17c2a44 | 2010-02-02 17:02:28 -0800 | [diff] [blame] | 949 | .. note:: |
| 950 | |
| 951 | Considered for cleanup. |
| 952 | |
| 953 | .. note:: |
| 954 | |
| 955 | Considered for removal. |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 956 | |
Corbin Simpson | 8580522 | 2010-02-02 16:20:12 -0800 | [diff] [blame] | 957 | .. opcode:: POPA - Pop Address Register From Stack |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 958 | |
| 959 | dst.w = pop() |
| 960 | dst.z = pop() |
| 961 | dst.y = pop() |
| 962 | dst.x = pop() |
| 963 | |
Corbin Simpson | 17c2a44 | 2010-02-02 17:02:28 -0800 | [diff] [blame] | 964 | .. note:: |
| 965 | |
| 966 | Considered for cleanup. |
| 967 | |
| 968 | .. note:: |
| 969 | |
| 970 | Considered for removal. |
Keith Whitwell | 14eacb0 | 2009-12-21 23:38:29 +0000 | [diff] [blame] | 971 | |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 972 | |
Corbin Simpson | 9d4cb6e | 2010-06-16 18:34:32 -0700 | [diff] [blame] | 973 | Compute ISA |
Corbin Simpson | 5bcd26c | 2009-12-21 21:04:10 -0800 | [diff] [blame] | 974 | ^^^^^^^^^^^^^^^^^^^^^^^^ |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 975 | |
Corbin Simpson | 9d4cb6e | 2010-06-16 18:34:32 -0700 | [diff] [blame] | 976 | These opcodes are primarily provided for special-use computational shaders. |
Keith Whitwell | 14eacb0 | 2009-12-21 23:38:29 +0000 | [diff] [blame] | 977 | Support for these opcodes indicated by a special pipe capability bit (TBD). |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 978 | |
Corbin Simpson | 9d4cb6e | 2010-06-16 18:34:32 -0700 | [diff] [blame] | 979 | XXX so let's discuss it, yeah? |
| 980 | |
Corbin Simpson | 8580522 | 2010-02-02 16:20:12 -0800 | [diff] [blame] | 981 | .. opcode:: CEIL - Ceiling |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 982 | |
Corbin Simpson | e8ed3b9 | 2009-12-21 19:12:55 -0800 | [diff] [blame] | 983 | .. math:: |
| 984 | |
Corbin Simpson | 14743ac | 2009-12-21 19:57:56 -0800 | [diff] [blame] | 985 | dst.x = \lceil src.x\rceil |
| 986 | |
| 987 | dst.y = \lceil src.y\rceil |
| 988 | |
| 989 | dst.z = \lceil src.z\rceil |
| 990 | |
| 991 | dst.w = \lceil src.w\rceil |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 992 | |
| 993 | |
Corbin Simpson | 8580522 | 2010-02-02 16:20:12 -0800 | [diff] [blame] | 994 | .. opcode:: I2F - Integer To Float |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 995 | |
Corbin Simpson | e8ed3b9 | 2009-12-21 19:12:55 -0800 | [diff] [blame] | 996 | .. math:: |
| 997 | |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 998 | dst.x = (float) src.x |
Corbin Simpson | da65ac6 | 2009-12-21 20:32:46 -0800 | [diff] [blame] | 999 | |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 1000 | dst.y = (float) src.y |
Corbin Simpson | da65ac6 | 2009-12-21 20:32:46 -0800 | [diff] [blame] | 1001 | |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 1002 | dst.z = (float) src.z |
Corbin Simpson | da65ac6 | 2009-12-21 20:32:46 -0800 | [diff] [blame] | 1003 | |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 1004 | dst.w = (float) src.w |
| 1005 | |
| 1006 | |
Corbin Simpson | 8580522 | 2010-02-02 16:20:12 -0800 | [diff] [blame] | 1007 | .. opcode:: NOT - Bitwise Not |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 1008 | |
Corbin Simpson | e8ed3b9 | 2009-12-21 19:12:55 -0800 | [diff] [blame] | 1009 | .. math:: |
| 1010 | |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 1011 | dst.x = ~src.x |
Corbin Simpson | da65ac6 | 2009-12-21 20:32:46 -0800 | [diff] [blame] | 1012 | |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 1013 | dst.y = ~src.y |
Corbin Simpson | da65ac6 | 2009-12-21 20:32:46 -0800 | [diff] [blame] | 1014 | |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 1015 | dst.z = ~src.z |
Corbin Simpson | da65ac6 | 2009-12-21 20:32:46 -0800 | [diff] [blame] | 1016 | |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 1017 | dst.w = ~src.w |
| 1018 | |
| 1019 | |
Corbin Simpson | 8580522 | 2010-02-02 16:20:12 -0800 | [diff] [blame] | 1020 | .. opcode:: TRUNC - Truncate |
Corbin Simpson | da65ac6 | 2009-12-21 20:32:46 -0800 | [diff] [blame] | 1021 | |
Corbin Simpson | e8ed3b9 | 2009-12-21 19:12:55 -0800 | [diff] [blame] | 1022 | .. math:: |
| 1023 | |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 1024 | dst.x = trunc(src.x) |
Corbin Simpson | da65ac6 | 2009-12-21 20:32:46 -0800 | [diff] [blame] | 1025 | |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 1026 | dst.y = trunc(src.y) |
Corbin Simpson | da65ac6 | 2009-12-21 20:32:46 -0800 | [diff] [blame] | 1027 | |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 1028 | dst.z = trunc(src.z) |
Corbin Simpson | da65ac6 | 2009-12-21 20:32:46 -0800 | [diff] [blame] | 1029 | |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 1030 | dst.w = trunc(src.w) |
| 1031 | |
| 1032 | |
Corbin Simpson | 8580522 | 2010-02-02 16:20:12 -0800 | [diff] [blame] | 1033 | .. opcode:: SHL - Shift Left |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 1034 | |
Corbin Simpson | e8ed3b9 | 2009-12-21 19:12:55 -0800 | [diff] [blame] | 1035 | .. math:: |
| 1036 | |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 1037 | dst.x = src0.x << src1.x |
Corbin Simpson | da65ac6 | 2009-12-21 20:32:46 -0800 | [diff] [blame] | 1038 | |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 1039 | dst.y = src0.y << src1.x |
Corbin Simpson | da65ac6 | 2009-12-21 20:32:46 -0800 | [diff] [blame] | 1040 | |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 1041 | dst.z = src0.z << src1.x |
Corbin Simpson | da65ac6 | 2009-12-21 20:32:46 -0800 | [diff] [blame] | 1042 | |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 1043 | dst.w = src0.w << src1.x |
| 1044 | |
| 1045 | |
Corbin Simpson | 8580522 | 2010-02-02 16:20:12 -0800 | [diff] [blame] | 1046 | .. opcode:: SHR - Shift Right |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 1047 | |
Corbin Simpson | e8ed3b9 | 2009-12-21 19:12:55 -0800 | [diff] [blame] | 1048 | .. math:: |
| 1049 | |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 1050 | dst.x = src0.x >> src1.x |
Corbin Simpson | da65ac6 | 2009-12-21 20:32:46 -0800 | [diff] [blame] | 1051 | |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 1052 | dst.y = src0.y >> src1.x |
Corbin Simpson | da65ac6 | 2009-12-21 20:32:46 -0800 | [diff] [blame] | 1053 | |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 1054 | dst.z = src0.z >> src1.x |
Corbin Simpson | da65ac6 | 2009-12-21 20:32:46 -0800 | [diff] [blame] | 1055 | |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 1056 | dst.w = src0.w >> src1.x |
| 1057 | |
| 1058 | |
Corbin Simpson | 8580522 | 2010-02-02 16:20:12 -0800 | [diff] [blame] | 1059 | .. opcode:: AND - Bitwise And |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 1060 | |
Corbin Simpson | e8ed3b9 | 2009-12-21 19:12:55 -0800 | [diff] [blame] | 1061 | .. math:: |
| 1062 | |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 1063 | dst.x = src0.x & src1.x |
Corbin Simpson | da65ac6 | 2009-12-21 20:32:46 -0800 | [diff] [blame] | 1064 | |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 1065 | dst.y = src0.y & src1.y |
Corbin Simpson | da65ac6 | 2009-12-21 20:32:46 -0800 | [diff] [blame] | 1066 | |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 1067 | dst.z = src0.z & src1.z |
Corbin Simpson | da65ac6 | 2009-12-21 20:32:46 -0800 | [diff] [blame] | 1068 | |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 1069 | dst.w = src0.w & src1.w |
| 1070 | |
| 1071 | |
Corbin Simpson | 8580522 | 2010-02-02 16:20:12 -0800 | [diff] [blame] | 1072 | .. opcode:: OR - Bitwise Or |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 1073 | |
Corbin Simpson | e8ed3b9 | 2009-12-21 19:12:55 -0800 | [diff] [blame] | 1074 | .. math:: |
| 1075 | |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 1076 | dst.x = src0.x | src1.x |
Corbin Simpson | da65ac6 | 2009-12-21 20:32:46 -0800 | [diff] [blame] | 1077 | |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 1078 | dst.y = src0.y | src1.y |
Corbin Simpson | da65ac6 | 2009-12-21 20:32:46 -0800 | [diff] [blame] | 1079 | |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 1080 | dst.z = src0.z | src1.z |
Corbin Simpson | da65ac6 | 2009-12-21 20:32:46 -0800 | [diff] [blame] | 1081 | |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 1082 | dst.w = src0.w | src1.w |
| 1083 | |
| 1084 | |
Corbin Simpson | 8580522 | 2010-02-02 16:20:12 -0800 | [diff] [blame] | 1085 | .. opcode:: MOD - Modulus |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 1086 | |
Corbin Simpson | e8ed3b9 | 2009-12-21 19:12:55 -0800 | [diff] [blame] | 1087 | .. math:: |
| 1088 | |
Corbin Simpson | da65ac6 | 2009-12-21 20:32:46 -0800 | [diff] [blame] | 1089 | dst.x = src0.x \bmod src1.x |
| 1090 | |
| 1091 | dst.y = src0.y \bmod src1.y |
| 1092 | |
| 1093 | dst.z = src0.z \bmod src1.z |
| 1094 | |
| 1095 | dst.w = src0.w \bmod src1.w |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 1096 | |
| 1097 | |
Corbin Simpson | 8580522 | 2010-02-02 16:20:12 -0800 | [diff] [blame] | 1098 | .. opcode:: XOR - Bitwise Xor |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 1099 | |
Corbin Simpson | e8ed3b9 | 2009-12-21 19:12:55 -0800 | [diff] [blame] | 1100 | .. math:: |
| 1101 | |
Corbin Simpson | f90733c | 2010-01-18 17:37:25 -0800 | [diff] [blame] | 1102 | dst.x = src0.x \oplus src1.x |
Corbin Simpson | da65ac6 | 2009-12-21 20:32:46 -0800 | [diff] [blame] | 1103 | |
Corbin Simpson | f90733c | 2010-01-18 17:37:25 -0800 | [diff] [blame] | 1104 | dst.y = src0.y \oplus src1.y |
Corbin Simpson | da65ac6 | 2009-12-21 20:32:46 -0800 | [diff] [blame] | 1105 | |
Corbin Simpson | f90733c | 2010-01-18 17:37:25 -0800 | [diff] [blame] | 1106 | dst.z = src0.z \oplus src1.z |
Corbin Simpson | da65ac6 | 2009-12-21 20:32:46 -0800 | [diff] [blame] | 1107 | |
Corbin Simpson | f90733c | 2010-01-18 17:37:25 -0800 | [diff] [blame] | 1108 | dst.w = src0.w \oplus src1.w |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 1109 | |
| 1110 | |
Bryan Cain | 324ac98 | 2011-09-10 12:31:54 -0500 | [diff] [blame] | 1111 | .. opcode:: UCMP - Integer Conditional Move |
| 1112 | |
| 1113 | .. math:: |
| 1114 | |
| 1115 | dst.x = src0.x ? src1.x : src2.x |
| 1116 | |
| 1117 | dst.y = src0.y ? src1.y : src2.y |
| 1118 | |
| 1119 | dst.z = src0.z ? src1.z : src2.z |
| 1120 | |
| 1121 | dst.w = src0.w ? src1.w : src2.w |
| 1122 | |
| 1123 | |
| 1124 | .. opcode:: UARL - Integer Address Register Load |
| 1125 | |
| 1126 | Moves the contents of the source register, assumed to be an integer, into the |
| 1127 | destination register, which is assumed to be an address (ADDR) register. |
| 1128 | |
| 1129 | |
Bryan Cain | 4c0f1fb | 2012-01-07 10:43:04 -0600 | [diff] [blame] | 1130 | .. opcode:: IABS - Integer Absolute Value |
| 1131 | |
| 1132 | .. math:: |
| 1133 | |
| 1134 | dst.x = |src.x| |
| 1135 | |
| 1136 | dst.y = |src.y| |
| 1137 | |
| 1138 | dst.z = |src.z| |
| 1139 | |
| 1140 | dst.w = |src.w| |
| 1141 | |
| 1142 | |
Corbin Simpson | 8580522 | 2010-02-02 16:20:12 -0800 | [diff] [blame] | 1143 | .. opcode:: SAD - Sum Of Absolute Differences |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 1144 | |
Corbin Simpson | e8ed3b9 | 2009-12-21 19:12:55 -0800 | [diff] [blame] | 1145 | .. math:: |
| 1146 | |
Corbin Simpson | 14743ac | 2009-12-21 19:57:56 -0800 | [diff] [blame] | 1147 | dst.x = |src0.x - src1.x| + src2.x |
| 1148 | |
| 1149 | dst.y = |src0.y - src1.y| + src2.y |
| 1150 | |
| 1151 | dst.z = |src0.z - src1.z| + src2.z |
| 1152 | |
| 1153 | dst.w = |src0.w - src1.w| + src2.w |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 1154 | |
| 1155 | |
Dave Airlie | 2083a27 | 2011-08-26 10:59:18 +0100 | [diff] [blame] | 1156 | .. opcode:: TXF - Texel Fetch (as per NV_gpu_shader4), extract a single texel |
| 1157 | from a specified texture image. The source sampler may |
| 1158 | not be a CUBE or SHADOW. |
| 1159 | src 0 is a four-component signed integer vector used to |
| 1160 | identify the single texel accessed. 3 components + level. |
| 1161 | src 1 is a 3 component constant signed integer vector, |
| 1162 | with each component only have a range of |
| 1163 | -8..+8 (hw only seems to deal with this range, interface |
| 1164 | allows for up to unsigned int). |
| 1165 | TXF(uint_vec coord, int_vec offset). |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 1166 | |
| 1167 | |
Dave Airlie | 6fb12bf | 2011-08-25 13:03:19 +0100 | [diff] [blame] | 1168 | .. opcode:: TXQ - Texture Size Query (as per NV_gpu_program4) |
| 1169 | retrieve the dimensions of the texture |
| 1170 | depending on the target. For 1D (width), 2D/RECT/CUBE |
| 1171 | (width, height), 3D (width, height, depth), |
| 1172 | 1D array (width, layers), 2D array (width, height, layers) |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 1173 | |
Dave Airlie | 6fb12bf | 2011-08-25 13:03:19 +0100 | [diff] [blame] | 1174 | .. math:: |
| 1175 | |
| 1176 | lod = src0 |
| 1177 | |
| 1178 | dst.x = texture_width(unit, lod) |
| 1179 | |
| 1180 | dst.y = texture_height(unit, lod) |
| 1181 | |
| 1182 | dst.z = texture_depth(unit, lod) |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 1183 | |
| 1184 | |
Corbin Simpson | 8580522 | 2010-02-02 16:20:12 -0800 | [diff] [blame] | 1185 | .. opcode:: CONT - Continue |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 1186 | |
| 1187 | TBD |
| 1188 | |
Corbin Simpson | 9d4cb6e | 2010-06-16 18:34:32 -0700 | [diff] [blame] | 1189 | .. note:: |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 1190 | |
Corbin Simpson | 9d4cb6e | 2010-06-16 18:34:32 -0700 | [diff] [blame] | 1191 | Support for CONT is determined by a special capability bit, |
| 1192 | ``TGSI_CONT_SUPPORTED``. See :ref:`Screen` for more information. |
| 1193 | |
| 1194 | |
| 1195 | Geometry ISA |
Corbin Simpson | 5bcd26c | 2009-12-21 21:04:10 -0800 | [diff] [blame] | 1196 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 1197 | |
Corbin Simpson | 9d4cb6e | 2010-06-16 18:34:32 -0700 | [diff] [blame] | 1198 | These opcodes are only supported in geometry shaders; they have no meaning |
| 1199 | in any other type of shader. |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 1200 | |
Corbin Simpson | 8580522 | 2010-02-02 16:20:12 -0800 | [diff] [blame] | 1201 | .. opcode:: EMIT - Emit |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 1202 | |
| 1203 | TBD |
| 1204 | |
| 1205 | |
Corbin Simpson | 8580522 | 2010-02-02 16:20:12 -0800 | [diff] [blame] | 1206 | .. opcode:: ENDPRIM - End Primitive |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 1207 | |
| 1208 | TBD |
| 1209 | |
| 1210 | |
Corbin Simpson | 9d4cb6e | 2010-06-16 18:34:32 -0700 | [diff] [blame] | 1211 | GLSL ISA |
Corbin Simpson | 5bcd26c | 2009-12-21 21:04:10 -0800 | [diff] [blame] | 1212 | ^^^^^^^^^^ |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 1213 | |
Corbin Simpson | 9d4cb6e | 2010-06-16 18:34:32 -0700 | [diff] [blame] | 1214 | These opcodes are part of :term:`GLSL`'s opcode set. Support for these |
| 1215 | opcodes is determined by a special capability bit, ``GLSL``. |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 1216 | |
Corbin Simpson | 8580522 | 2010-02-02 16:20:12 -0800 | [diff] [blame] | 1217 | .. opcode:: BGNLOOP - Begin a Loop |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 1218 | |
| 1219 | TBD |
| 1220 | |
| 1221 | |
Corbin Simpson | 8580522 | 2010-02-02 16:20:12 -0800 | [diff] [blame] | 1222 | .. opcode:: BGNSUB - Begin Subroutine |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 1223 | |
| 1224 | TBD |
| 1225 | |
| 1226 | |
Corbin Simpson | 8580522 | 2010-02-02 16:20:12 -0800 | [diff] [blame] | 1227 | .. opcode:: ENDLOOP - End a Loop |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 1228 | |
| 1229 | TBD |
| 1230 | |
| 1231 | |
Corbin Simpson | 8580522 | 2010-02-02 16:20:12 -0800 | [diff] [blame] | 1232 | .. opcode:: ENDSUB - End Subroutine |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 1233 | |
| 1234 | TBD |
| 1235 | |
| 1236 | |
Corbin Simpson | 8580522 | 2010-02-02 16:20:12 -0800 | [diff] [blame] | 1237 | .. opcode:: NOP - No Operation |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 1238 | |
Michal Krol | 8ab89d7 | 2010-01-04 13:23:41 +0100 | [diff] [blame] | 1239 | Do nothing. |
| 1240 | |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 1241 | |
Corbin Simpson | 8580522 | 2010-02-02 16:20:12 -0800 | [diff] [blame] | 1242 | .. opcode:: NRM4 - 4-component Vector Normalise |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 1243 | |
Corbin Simpson | 17c2a44 | 2010-02-02 17:02:28 -0800 | [diff] [blame] | 1244 | This instruction replicates its result. |
| 1245 | |
Corbin Simpson | e8ed3b9 | 2009-12-21 19:12:55 -0800 | [diff] [blame] | 1246 | .. math:: |
| 1247 | |
Corbin Simpson | 17c2a44 | 2010-02-02 17:02:28 -0800 | [diff] [blame] | 1248 | dst = \frac{src.x}{src.x \times src.x + src.y \times src.y + src.z \times src.z + src.w \times src.w} |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 1249 | |
| 1250 | |
Corbin Simpson | da65ac6 | 2009-12-21 20:32:46 -0800 | [diff] [blame] | 1251 | ps_2_x |
Corbin Simpson | 5bcd26c | 2009-12-21 21:04:10 -0800 | [diff] [blame] | 1252 | ^^^^^^^^^^^^ |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 1253 | |
Corbin Simpson | 9d4cb6e | 2010-06-16 18:34:32 -0700 | [diff] [blame] | 1254 | XXX wait what |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 1255 | |
Corbin Simpson | 8580522 | 2010-02-02 16:20:12 -0800 | [diff] [blame] | 1256 | .. opcode:: CALLNZ - Subroutine Call If Not Zero |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 1257 | |
| 1258 | TBD |
| 1259 | |
Corbin Simpson | 62ca7b8 | 2010-02-02 16:36:34 -0800 | [diff] [blame] | 1260 | .. _doubleopcodes: |
| 1261 | |
Corbin Simpson | 9d4cb6e | 2010-06-16 18:34:32 -0700 | [diff] [blame] | 1262 | Double ISA |
Igor Oliveira | db89bf4 | 2010-01-25 19:23:04 -0400 | [diff] [blame] | 1263 | ^^^^^^^^^^^^^^^ |
| 1264 | |
Corbin Simpson | dbc95e8 | 2010-06-16 18:34:51 -0700 | [diff] [blame] | 1265 | The double-precision opcodes reinterpret four-component vectors into |
| 1266 | two-component vectors with doubled precision in each component. |
| 1267 | |
| 1268 | Support for these opcodes is XXX undecided. :T |
| 1269 | |
| 1270 | .. opcode:: DADD - Add |
Igor Oliveira | db89bf4 | 2010-01-25 19:23:04 -0400 | [diff] [blame] | 1271 | |
| 1272 | .. math:: |
| 1273 | |
| 1274 | dst.xy = src0.xy + src1.xy |
| 1275 | |
| 1276 | dst.zw = src0.zw + src1.zw |
| 1277 | |
| 1278 | |
Corbin Simpson | dbc95e8 | 2010-06-16 18:34:51 -0700 | [diff] [blame] | 1279 | .. opcode:: DDIV - Divide |
Igor Oliveira | db89bf4 | 2010-01-25 19:23:04 -0400 | [diff] [blame] | 1280 | |
| 1281 | .. math:: |
| 1282 | |
| 1283 | dst.xy = src0.xy / src1.xy |
| 1284 | |
| 1285 | dst.zw = src0.zw / src1.zw |
| 1286 | |
Corbin Simpson | dbc95e8 | 2010-06-16 18:34:51 -0700 | [diff] [blame] | 1287 | .. opcode:: DSEQ - Set on Equal |
Igor Oliveira | db89bf4 | 2010-01-25 19:23:04 -0400 | [diff] [blame] | 1288 | |
| 1289 | .. math:: |
| 1290 | |
| 1291 | dst.xy = src0.xy == src1.xy ? 1.0F : 0.0F |
| 1292 | |
| 1293 | dst.zw = src0.zw == src1.zw ? 1.0F : 0.0F |
| 1294 | |
Corbin Simpson | dbc95e8 | 2010-06-16 18:34:51 -0700 | [diff] [blame] | 1295 | .. opcode:: DSLT - Set on Less than |
Igor Oliveira | db89bf4 | 2010-01-25 19:23:04 -0400 | [diff] [blame] | 1296 | |
| 1297 | .. math:: |
| 1298 | |
| 1299 | dst.xy = src0.xy < src1.xy ? 1.0F : 0.0F |
| 1300 | |
| 1301 | dst.zw = src0.zw < src1.zw ? 1.0F : 0.0F |
| 1302 | |
Corbin Simpson | dbc95e8 | 2010-06-16 18:34:51 -0700 | [diff] [blame] | 1303 | .. opcode:: DFRAC - Fraction |
Igor Oliveira | db89bf4 | 2010-01-25 19:23:04 -0400 | [diff] [blame] | 1304 | |
| 1305 | .. math:: |
| 1306 | |
| 1307 | dst.xy = src.xy - \lfloor src.xy\rfloor |
| 1308 | |
| 1309 | dst.zw = src.zw - \lfloor src.zw\rfloor |
| 1310 | |
| 1311 | |
Corbin Simpson | dbc95e8 | 2010-06-16 18:34:51 -0700 | [diff] [blame] | 1312 | .. opcode:: DFRACEXP - Convert Number to Fractional and Integral Components |
Igor Oliveira | db89bf4 | 2010-01-25 19:23:04 -0400 | [diff] [blame] | 1313 | |
Corbin Simpson | f98c462 | 2010-06-16 18:45:50 -0700 | [diff] [blame] | 1314 | Like the ``frexp()`` routine in many math libraries, this opcode stores the |
| 1315 | exponent of its source to ``dst0``, and the significand to ``dst1``, such that |
| 1316 | :math:`dst1 \times 2^{dst0} = src` . |
Igor Oliveira | db89bf4 | 2010-01-25 19:23:04 -0400 | [diff] [blame] | 1317 | |
| 1318 | .. math:: |
| 1319 | |
Corbin Simpson | f98c462 | 2010-06-16 18:45:50 -0700 | [diff] [blame] | 1320 | dst0.xy = exp(src.xy) |
Igor Oliveira | db89bf4 | 2010-01-25 19:23:04 -0400 | [diff] [blame] | 1321 | |
Corbin Simpson | f98c462 | 2010-06-16 18:45:50 -0700 | [diff] [blame] | 1322 | dst1.xy = frac(src.xy) |
| 1323 | |
| 1324 | dst0.zw = exp(src.zw) |
| 1325 | |
| 1326 | dst1.zw = frac(src.zw) |
| 1327 | |
| 1328 | .. opcode:: DLDEXP - Multiply Number by Integral Power of 2 |
| 1329 | |
| 1330 | This opcode is the inverse of :opcode:`DFRACEXP`. |
| 1331 | |
| 1332 | .. math:: |
| 1333 | |
| 1334 | dst.xy = src0.xy \times 2^{src1.xy} |
| 1335 | |
| 1336 | dst.zw = src0.zw \times 2^{src1.zw} |
Igor Oliveira | db89bf4 | 2010-01-25 19:23:04 -0400 | [diff] [blame] | 1337 | |
Corbin Simpson | dbc95e8 | 2010-06-16 18:34:51 -0700 | [diff] [blame] | 1338 | .. opcode:: DMIN - Minimum |
Igor Oliveira | db89bf4 | 2010-01-25 19:23:04 -0400 | [diff] [blame] | 1339 | |
| 1340 | .. math:: |
| 1341 | |
| 1342 | dst.xy = min(src0.xy, src1.xy) |
| 1343 | |
| 1344 | dst.zw = min(src0.zw, src1.zw) |
| 1345 | |
Corbin Simpson | dbc95e8 | 2010-06-16 18:34:51 -0700 | [diff] [blame] | 1346 | .. opcode:: DMAX - Maximum |
Igor Oliveira | db89bf4 | 2010-01-25 19:23:04 -0400 | [diff] [blame] | 1347 | |
| 1348 | .. math:: |
| 1349 | |
| 1350 | dst.xy = max(src0.xy, src1.xy) |
| 1351 | |
| 1352 | dst.zw = max(src0.zw, src1.zw) |
| 1353 | |
Corbin Simpson | dbc95e8 | 2010-06-16 18:34:51 -0700 | [diff] [blame] | 1354 | .. opcode:: DMUL - Multiply |
Igor Oliveira | db89bf4 | 2010-01-25 19:23:04 -0400 | [diff] [blame] | 1355 | |
| 1356 | .. math:: |
| 1357 | |
| 1358 | dst.xy = src0.xy \times src1.xy |
| 1359 | |
| 1360 | dst.zw = src0.zw \times src1.zw |
| 1361 | |
| 1362 | |
Corbin Simpson | dbc95e8 | 2010-06-16 18:34:51 -0700 | [diff] [blame] | 1363 | .. opcode:: DMAD - Multiply And Add |
Igor Oliveira | db89bf4 | 2010-01-25 19:23:04 -0400 | [diff] [blame] | 1364 | |
| 1365 | .. math:: |
| 1366 | |
| 1367 | dst.xy = src0.xy \times src1.xy + src2.xy |
| 1368 | |
| 1369 | dst.zw = src0.zw \times src1.zw + src2.zw |
| 1370 | |
| 1371 | |
Corbin Simpson | dbc95e8 | 2010-06-16 18:34:51 -0700 | [diff] [blame] | 1372 | .. opcode:: DRCP - Reciprocal |
Igor Oliveira | db89bf4 | 2010-01-25 19:23:04 -0400 | [diff] [blame] | 1373 | |
| 1374 | .. math:: |
| 1375 | |
| 1376 | dst.xy = \frac{1}{src.xy} |
| 1377 | |
| 1378 | dst.zw = \frac{1}{src.zw} |
| 1379 | |
Corbin Simpson | dbc95e8 | 2010-06-16 18:34:51 -0700 | [diff] [blame] | 1380 | .. opcode:: DSQRT - Square Root |
Igor Oliveira | db89bf4 | 2010-01-25 19:23:04 -0400 | [diff] [blame] | 1381 | |
| 1382 | .. math:: |
| 1383 | |
| 1384 | dst.xy = \sqrt{src.xy} |
| 1385 | |
| 1386 | dst.zw = \sqrt{src.zw} |
| 1387 | |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 1388 | |
Francisco Jerez | a5f44cc | 2012-05-01 02:38:51 +0200 | [diff] [blame] | 1389 | .. _samplingopcodes: |
Zack Rusin | bdbe77f | 2011-01-24 17:47:10 -0500 | [diff] [blame] | 1390 | |
Francisco Jerez | a5f44cc | 2012-05-01 02:38:51 +0200 | [diff] [blame] | 1391 | Resource Sampling Opcodes |
| 1392 | ^^^^^^^^^^^^^^^^^^^^^^^^^ |
Zack Rusin | bdbe77f | 2011-01-24 17:47:10 -0500 | [diff] [blame] | 1393 | |
| 1394 | Those opcodes follow very closely semantics of the respective Direct3D |
| 1395 | instructions. If in doubt double check Direct3D documentation. |
| 1396 | |
Francisco Jerez | a5f44cc | 2012-05-01 02:38:51 +0200 | [diff] [blame] | 1397 | .. opcode:: SAMPLE - Using provided address, sample data from the |
| 1398 | specified texture using the filtering mode identified |
| 1399 | by the gven sampler. The source data may come from |
| 1400 | any resource type other than buffers. |
| 1401 | SAMPLE dst, address, sampler_view, sampler |
| 1402 | e.g. |
| 1403 | SAMPLE TEMP[0], TEMP[1], SVIEW[0], SAMP[0] |
| 1404 | |
| 1405 | .. opcode:: SAMPLE_I - Simplified alternative to the SAMPLE instruction. |
| 1406 | Using the provided integer address, SAMPLE_I fetches data |
| 1407 | from the specified sampler view without any filtering. |
Zack Rusin | bdbe77f | 2011-01-24 17:47:10 -0500 | [diff] [blame] | 1408 | The source data may come from any resource type other |
| 1409 | than CUBE. |
Francisco Jerez | a5f44cc | 2012-05-01 02:38:51 +0200 | [diff] [blame] | 1410 | SAMPLE_I dst, address, sampler_view |
Zack Rusin | bdbe77f | 2011-01-24 17:47:10 -0500 | [diff] [blame] | 1411 | e.g. |
Francisco Jerez | a5f44cc | 2012-05-01 02:38:51 +0200 | [diff] [blame] | 1412 | SAMPLE_I TEMP[0], TEMP[1], SVIEW[0] |
Zack Rusin | 3fa814d | 2011-01-24 21:45:37 -0500 | [diff] [blame] | 1413 | The 'address' is specified as unsigned integers. If the |
| 1414 | 'address' is out of range [0...(# texels - 1)] the |
| 1415 | result of the fetch is always 0 in all components. |
| 1416 | As such the instruction doesn't honor address wrap |
| 1417 | modes, in cases where that behavior is desirable |
Francisco Jerez | a5f44cc | 2012-05-01 02:38:51 +0200 | [diff] [blame] | 1418 | 'SAMPLE' instruction should be used. |
Zack Rusin | 3fa814d | 2011-01-24 21:45:37 -0500 | [diff] [blame] | 1419 | address.w always provides an unsigned integer mipmap |
| 1420 | level. If the value is out of the range then the |
| 1421 | instruction always returns 0 in all components. |
| 1422 | address.yz are ignored for buffers and 1d textures. |
| 1423 | address.z is ignored for 1d texture arrays and 2d |
| 1424 | textures. |
| 1425 | For 1D texture arrays address.y provides the array |
| 1426 | index (also as unsigned integer). If the value is |
| 1427 | out of the range of available array indices |
| 1428 | [0... (array size - 1)] then the opcode always returns |
| 1429 | 0 in all components. |
| 1430 | For 2D texture arrays address.z provides the array |
| 1431 | index, otherwise it exhibits the same behavior as in |
| 1432 | the case for 1D texture arrays. |
Francisco Jerez | a5f44cc | 2012-05-01 02:38:51 +0200 | [diff] [blame] | 1433 | The exact semantics of the source address are presented |
Zack Rusin | 3fa814d | 2011-01-24 21:45:37 -0500 | [diff] [blame] | 1434 | in the table below: |
| 1435 | resource type X Y Z W |
| 1436 | ------------- ------------------------ |
| 1437 | PIPE_BUFFER x ignored |
| 1438 | PIPE_TEXTURE_1D x mpl |
| 1439 | PIPE_TEXTURE_2D x y mpl |
| 1440 | PIPE_TEXTURE_3D x y z mpl |
| 1441 | PIPE_TEXTURE_RECT x y mpl |
| 1442 | PIPE_TEXTURE_CUBE not allowed as source |
| 1443 | PIPE_TEXTURE_1D_ARRAY x idx mpl |
| 1444 | PIPE_TEXTURE_2D_ARRAY x y idx mpl |
| 1445 | |
| 1446 | Where 'mpl' is a mipmap level and 'idx' is the |
| 1447 | array index. |
| 1448 | |
Francisco Jerez | a5f44cc | 2012-05-01 02:38:51 +0200 | [diff] [blame] | 1449 | .. opcode:: SAMPLE_I_MS - Just like SAMPLE_I but allows fetch data from |
Zack Rusin | bdbe77f | 2011-01-24 17:47:10 -0500 | [diff] [blame] | 1450 | multi-sampled surfaces. |
Roland Scheidegger | 9870459 | 2013-02-12 16:48:52 +0100 | [diff] [blame] | 1451 | SAMPLE_I_MS dst, address, sampler_view, sample |
Zack Rusin | bdbe77f | 2011-01-24 17:47:10 -0500 | [diff] [blame] | 1452 | |
Zack Rusin | bdbe77f | 2011-01-24 17:47:10 -0500 | [diff] [blame] | 1453 | .. opcode:: SAMPLE_B - Just like the SAMPLE instruction with the |
Roland Scheidegger | 9870459 | 2013-02-12 16:48:52 +0100 | [diff] [blame] | 1454 | exception that an additional bias is applied to the |
Zack Rusin | bdbe77f | 2011-01-24 17:47:10 -0500 | [diff] [blame] | 1455 | level of detail computed as part of the instruction |
| 1456 | execution. |
Francisco Jerez | a5f44cc | 2012-05-01 02:38:51 +0200 | [diff] [blame] | 1457 | SAMPLE_B dst, address, sampler_view, sampler, lod_bias |
Zack Rusin | bdbe77f | 2011-01-24 17:47:10 -0500 | [diff] [blame] | 1458 | e.g. |
Francisco Jerez | a5f44cc | 2012-05-01 02:38:51 +0200 | [diff] [blame] | 1459 | SAMPLE_B TEMP[0], TEMP[1], SVIEW[0], SAMP[0], TEMP[2].x |
Zack Rusin | bdbe77f | 2011-01-24 17:47:10 -0500 | [diff] [blame] | 1460 | |
Zack Rusin | 3fa814d | 2011-01-24 21:45:37 -0500 | [diff] [blame] | 1461 | .. opcode:: SAMPLE_C - Similar to the SAMPLE instruction but it |
Zack Rusin | bdbe77f | 2011-01-24 17:47:10 -0500 | [diff] [blame] | 1462 | performs a comparison filter. The operands to SAMPLE_C |
Roland Scheidegger | 9870459 | 2013-02-12 16:48:52 +0100 | [diff] [blame] | 1463 | are identical to SAMPLE, except that there is an additional |
Zack Rusin | bdbe77f | 2011-01-24 17:47:10 -0500 | [diff] [blame] | 1464 | float32 operand, reference value, which must be a register |
| 1465 | with single-component, or a scalar literal. |
| 1466 | SAMPLE_C makes the hardware use the current samplers |
| 1467 | compare_func (in pipe_sampler_state) to compare |
| 1468 | reference value against the red component value for the |
| 1469 | surce resource at each texel that the currently configured |
| 1470 | texture filter covers based on the provided coordinates. |
Francisco Jerez | a5f44cc | 2012-05-01 02:38:51 +0200 | [diff] [blame] | 1471 | SAMPLE_C dst, address, sampler_view.r, sampler, ref_value |
Zack Rusin | bdbe77f | 2011-01-24 17:47:10 -0500 | [diff] [blame] | 1472 | e.g. |
Francisco Jerez | a5f44cc | 2012-05-01 02:38:51 +0200 | [diff] [blame] | 1473 | SAMPLE_C TEMP[0], TEMP[1], SVIEW[0].r, SAMP[0], TEMP[2].x |
Zack Rusin | bdbe77f | 2011-01-24 17:47:10 -0500 | [diff] [blame] | 1474 | |
| 1475 | .. opcode:: SAMPLE_C_LZ - Same as SAMPLE_C, but LOD is 0 and derivatives |
| 1476 | are ignored. The LZ stands for level-zero. |
Francisco Jerez | a5f44cc | 2012-05-01 02:38:51 +0200 | [diff] [blame] | 1477 | SAMPLE_C_LZ dst, address, sampler_view.r, sampler, ref_value |
Zack Rusin | bdbe77f | 2011-01-24 17:47:10 -0500 | [diff] [blame] | 1478 | e.g. |
Francisco Jerez | a5f44cc | 2012-05-01 02:38:51 +0200 | [diff] [blame] | 1479 | SAMPLE_C_LZ TEMP[0], TEMP[1], SVIEW[0].r, SAMP[0], TEMP[2].x |
Zack Rusin | bdbe77f | 2011-01-24 17:47:10 -0500 | [diff] [blame] | 1480 | |
| 1481 | |
| 1482 | .. opcode:: SAMPLE_D - SAMPLE_D is identical to the SAMPLE opcode except |
| 1483 | that the derivatives for the source address in the x |
| 1484 | direction and the y direction are provided by extra |
| 1485 | parameters. |
Francisco Jerez | a5f44cc | 2012-05-01 02:38:51 +0200 | [diff] [blame] | 1486 | SAMPLE_D dst, address, sampler_view, sampler, der_x, der_y |
Zack Rusin | bdbe77f | 2011-01-24 17:47:10 -0500 | [diff] [blame] | 1487 | e.g. |
Francisco Jerez | a5f44cc | 2012-05-01 02:38:51 +0200 | [diff] [blame] | 1488 | SAMPLE_D TEMP[0], TEMP[1], SVIEW[0], SAMP[0], TEMP[2], TEMP[3] |
Zack Rusin | bdbe77f | 2011-01-24 17:47:10 -0500 | [diff] [blame] | 1489 | |
| 1490 | .. opcode:: SAMPLE_L - SAMPLE_L is identical to the SAMPLE opcode except |
| 1491 | that the LOD is provided directly as a scalar value, |
Roland Scheidegger | 427d36a | 2013-02-12 16:41:56 +0100 | [diff] [blame] | 1492 | representing no anisotropy. |
| 1493 | SAMPLE_L dst, address, sampler_view, sampler, explicit_lod |
Zack Rusin | bdbe77f | 2011-01-24 17:47:10 -0500 | [diff] [blame] | 1494 | e.g. |
Roland Scheidegger | 427d36a | 2013-02-12 16:41:56 +0100 | [diff] [blame] | 1495 | SAMPLE_L TEMP[0], TEMP[1], SVIEW[0], SAMP[0], TEMP[2].x |
Zack Rusin | bdbe77f | 2011-01-24 17:47:10 -0500 | [diff] [blame] | 1496 | |
| 1497 | .. opcode:: GATHER4 - Gathers the four texels to be used in a bi-linear |
| 1498 | filtering operation and packs them into a single register. |
Brian Paul | 0cd6800 | 2012-03-30 09:41:42 -0600 | [diff] [blame] | 1499 | Only works with 2D, 2D array, cubemaps, and cubemaps arrays. |
Zack Rusin | bdbe77f | 2011-01-24 17:47:10 -0500 | [diff] [blame] | 1500 | For 2D textures, only the addressing modes of the sampler and |
| 1501 | the top level of any mip pyramid are used. Set W to zero. |
| 1502 | It behaves like the SAMPLE instruction, but a filtered |
| 1503 | sample is not generated. The four samples that contribute |
Brian Paul | 0cd6800 | 2012-03-30 09:41:42 -0600 | [diff] [blame] | 1504 | to filtering are placed into xyzw in counter-clockwise order, |
Zack Rusin | bdbe77f | 2011-01-24 17:47:10 -0500 | [diff] [blame] | 1505 | starting with the (u,v) texture coordinate delta at the |
| 1506 | following locations (-, +), (+, +), (+, -), (-, -), where |
| 1507 | the magnitude of the deltas are half a texel. |
| 1508 | |
| 1509 | |
Francisco Jerez | a5f44cc | 2012-05-01 02:38:51 +0200 | [diff] [blame] | 1510 | .. opcode:: SVIEWINFO - query the dimensions of a given sampler view. |
Zack Rusin | bdbe77f | 2011-01-24 17:47:10 -0500 | [diff] [blame] | 1511 | dst receives width, height, depth or array size and |
Roland Scheidegger | 614982d3 | 2013-02-05 13:37:57 -0800 | [diff] [blame] | 1512 | number of mipmap levels as int4. The dst can have a writemask |
Zack Rusin | 3fa814d | 2011-01-24 21:45:37 -0500 | [diff] [blame] | 1513 | which will specify what info is the caller interested |
| 1514 | in. |
Francisco Jerez | a5f44cc | 2012-05-01 02:38:51 +0200 | [diff] [blame] | 1515 | SVIEWINFO dst, src_mip_level, sampler_view |
Zack Rusin | bdbe77f | 2011-01-24 17:47:10 -0500 | [diff] [blame] | 1516 | e.g. |
Francisco Jerez | a5f44cc | 2012-05-01 02:38:51 +0200 | [diff] [blame] | 1517 | SVIEWINFO TEMP[0], TEMP[1].x, SVIEW[0] |
Zack Rusin | 3fa814d | 2011-01-24 21:45:37 -0500 | [diff] [blame] | 1518 | src_mip_level is an unsigned integer scalar. If it's |
| 1519 | out of range then returns 0 for width, height and |
| 1520 | depth/array size but the total number of mipmap is |
Francisco Jerez | a5f44cc | 2012-05-01 02:38:51 +0200 | [diff] [blame] | 1521 | still returned correctly for the given sampler view. |
Zack Rusin | 3fa814d | 2011-01-24 21:45:37 -0500 | [diff] [blame] | 1522 | The returned width, height and depth values are for |
| 1523 | the mipmap level selected by the src_mip_level and |
| 1524 | are in the number of texels. |
| 1525 | For 1d texture array width is in dst.x, array size |
| 1526 | is in dst.y and dst.zw are always 0. |
Zack Rusin | bdbe77f | 2011-01-24 17:47:10 -0500 | [diff] [blame] | 1527 | |
| 1528 | .. opcode:: SAMPLE_POS - query the position of a given sample. |
| 1529 | dst receives float4 (x, y, 0, 0) indicated where the |
| 1530 | sample is located. If the resource is not a multi-sample |
| 1531 | resource and not a render target, the result is 0. |
| 1532 | |
Zack Rusin | 3fa814d | 2011-01-24 21:45:37 -0500 | [diff] [blame] | 1533 | .. opcode:: SAMPLE_INFO - dst receives number of samples in x. |
| 1534 | If the resource is not a multi-sample resource and |
Zack Rusin | bdbe77f | 2011-01-24 17:47:10 -0500 | [diff] [blame] | 1535 | not a render target, the result is 0. |
| 1536 | |
| 1537 | |
Francisco Jerez | a5f44cc | 2012-05-01 02:38:51 +0200 | [diff] [blame] | 1538 | .. _resourceopcodes: |
| 1539 | |
| 1540 | Resource Access Opcodes |
| 1541 | ^^^^^^^^^^^^^^^^^^^^^^^ |
| 1542 | |
| 1543 | .. opcode:: LOAD - Fetch data from a shader resource |
| 1544 | |
| 1545 | Syntax: ``LOAD dst, resource, address`` |
| 1546 | |
| 1547 | Example: ``LOAD TEMP[0], RES[0], TEMP[1]`` |
| 1548 | |
| 1549 | Using the provided integer address, LOAD fetches data |
| 1550 | from the specified buffer or texture without any |
| 1551 | filtering. |
| 1552 | |
| 1553 | The 'address' is specified as a vector of unsigned |
| 1554 | integers. If the 'address' is out of range the result |
| 1555 | is unspecified. |
| 1556 | |
| 1557 | Only the first mipmap level of a resource can be read |
| 1558 | from using this instruction. |
| 1559 | |
| 1560 | For 1D or 2D texture arrays, the array index is |
| 1561 | provided as an unsigned integer in address.y or |
| 1562 | address.z, respectively. address.yz are ignored for |
| 1563 | buffers and 1D textures. address.z is ignored for 1D |
| 1564 | texture arrays and 2D textures. address.w is always |
| 1565 | ignored. |
| 1566 | |
Francisco Jerez | b8e808f | 2012-04-30 20:20:29 +0200 | [diff] [blame] | 1567 | .. opcode:: STORE - Write data to a shader resource |
| 1568 | |
| 1569 | Syntax: ``STORE resource, address, src`` |
| 1570 | |
| 1571 | Example: ``STORE RES[0], TEMP[0], TEMP[1]`` |
| 1572 | |
| 1573 | Using the provided integer address, STORE writes data |
| 1574 | to the specified buffer or texture. |
| 1575 | |
| 1576 | The 'address' is specified as a vector of unsigned |
| 1577 | integers. If the 'address' is out of range the result |
| 1578 | is unspecified. |
| 1579 | |
| 1580 | Only the first mipmap level of a resource can be |
| 1581 | written to using this instruction. |
| 1582 | |
| 1583 | For 1D or 2D texture arrays, the array index is |
| 1584 | provided as an unsigned integer in address.y or |
| 1585 | address.z, respectively. address.yz are ignored for |
| 1586 | buffers and 1D textures. address.z is ignored for 1D |
| 1587 | texture arrays and 2D textures. address.w is always |
| 1588 | ignored. |
| 1589 | |
Francisco Jerez | a5f44cc | 2012-05-01 02:38:51 +0200 | [diff] [blame] | 1590 | |
Francisco Jerez | 9e550c3 | 2012-04-30 20:21:38 +0200 | [diff] [blame] | 1591 | .. _threadsyncopcodes: |
| 1592 | |
| 1593 | Inter-thread synchronization opcodes |
| 1594 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ |
| 1595 | |
| 1596 | These opcodes are intended for communication between threads running |
| 1597 | within the same compute grid. For now they're only valid in compute |
| 1598 | programs. |
| 1599 | |
| 1600 | .. opcode:: MFENCE - Memory fence |
| 1601 | |
| 1602 | Syntax: ``MFENCE resource`` |
| 1603 | |
| 1604 | Example: ``MFENCE RES[0]`` |
| 1605 | |
| 1606 | This opcode forces strong ordering between any memory access |
| 1607 | operations that affect the specified resource. This means that |
| 1608 | previous loads and stores (and only those) will be performed and |
| 1609 | visible to other threads before the program execution continues. |
| 1610 | |
| 1611 | |
| 1612 | .. opcode:: LFENCE - Load memory fence |
| 1613 | |
| 1614 | Syntax: ``LFENCE resource`` |
| 1615 | |
| 1616 | Example: ``LFENCE RES[0]`` |
| 1617 | |
| 1618 | Similar to MFENCE, but it only affects the ordering of memory loads. |
| 1619 | |
| 1620 | |
| 1621 | .. opcode:: SFENCE - Store memory fence |
| 1622 | |
| 1623 | Syntax: ``SFENCE resource`` |
| 1624 | |
| 1625 | Example: ``SFENCE RES[0]`` |
| 1626 | |
| 1627 | Similar to MFENCE, but it only affects the ordering of memory stores. |
| 1628 | |
| 1629 | |
| 1630 | .. opcode:: BARRIER - Thread group barrier |
| 1631 | |
| 1632 | ``BARRIER`` |
| 1633 | |
| 1634 | This opcode suspends the execution of the current thread until all |
| 1635 | the remaining threads in the working group reach the same point of |
| 1636 | the program. Results are unspecified if any of the remaining |
| 1637 | threads terminates or never reaches an executed BARRIER instruction. |
| 1638 | |
| 1639 | |
Francisco Jerez | c2d31a8 | 2012-04-30 20:22:23 +0200 | [diff] [blame] | 1640 | .. _atomopcodes: |
| 1641 | |
| 1642 | Atomic opcodes |
| 1643 | ^^^^^^^^^^^^^^ |
| 1644 | |
| 1645 | These opcodes provide atomic variants of some common arithmetic and |
| 1646 | logical operations. In this context atomicity means that another |
| 1647 | concurrent memory access operation that affects the same memory |
| 1648 | location is guaranteed to be performed strictly before or after the |
| 1649 | entire execution of the atomic operation. |
| 1650 | |
| 1651 | For the moment they're only valid in compute programs. |
| 1652 | |
| 1653 | .. opcode:: ATOMUADD - Atomic integer addition |
| 1654 | |
| 1655 | Syntax: ``ATOMUADD dst, resource, offset, src`` |
| 1656 | |
| 1657 | Example: ``ATOMUADD TEMP[0], RES[0], TEMP[1], TEMP[2]`` |
| 1658 | |
| 1659 | The following operation is performed atomically on each component: |
| 1660 | |
| 1661 | .. math:: |
| 1662 | |
| 1663 | dst_i = resource[offset]_i |
| 1664 | |
| 1665 | resource[offset]_i = dst_i + src_i |
| 1666 | |
| 1667 | |
| 1668 | .. opcode:: ATOMXCHG - Atomic exchange |
| 1669 | |
| 1670 | Syntax: ``ATOMXCHG dst, resource, offset, src`` |
| 1671 | |
| 1672 | Example: ``ATOMXCHG TEMP[0], RES[0], TEMP[1], TEMP[2]`` |
| 1673 | |
| 1674 | The following operation is performed atomically on each component: |
| 1675 | |
| 1676 | .. math:: |
| 1677 | |
| 1678 | dst_i = resource[offset]_i |
| 1679 | |
| 1680 | resource[offset]_i = src_i |
| 1681 | |
| 1682 | |
| 1683 | .. opcode:: ATOMCAS - Atomic compare-and-exchange |
| 1684 | |
| 1685 | Syntax: ``ATOMCAS dst, resource, offset, cmp, src`` |
| 1686 | |
| 1687 | Example: ``ATOMCAS TEMP[0], RES[0], TEMP[1], TEMP[2], TEMP[3]`` |
| 1688 | |
| 1689 | The following operation is performed atomically on each component: |
| 1690 | |
| 1691 | .. math:: |
| 1692 | |
| 1693 | dst_i = resource[offset]_i |
| 1694 | |
| 1695 | resource[offset]_i = (dst_i == cmp_i ? src_i : dst_i) |
| 1696 | |
| 1697 | |
| 1698 | .. opcode:: ATOMAND - Atomic bitwise And |
| 1699 | |
| 1700 | Syntax: ``ATOMAND dst, resource, offset, src`` |
| 1701 | |
| 1702 | Example: ``ATOMAND TEMP[0], RES[0], TEMP[1], TEMP[2]`` |
| 1703 | |
| 1704 | The following operation is performed atomically on each component: |
| 1705 | |
| 1706 | .. math:: |
| 1707 | |
| 1708 | dst_i = resource[offset]_i |
| 1709 | |
| 1710 | resource[offset]_i = dst_i \& src_i |
| 1711 | |
| 1712 | |
| 1713 | .. opcode:: ATOMOR - Atomic bitwise Or |
| 1714 | |
| 1715 | Syntax: ``ATOMOR dst, resource, offset, src`` |
| 1716 | |
| 1717 | Example: ``ATOMOR TEMP[0], RES[0], TEMP[1], TEMP[2]`` |
| 1718 | |
| 1719 | The following operation is performed atomically on each component: |
| 1720 | |
| 1721 | .. math:: |
| 1722 | |
| 1723 | dst_i = resource[offset]_i |
| 1724 | |
| 1725 | resource[offset]_i = dst_i | src_i |
| 1726 | |
| 1727 | |
| 1728 | .. opcode:: ATOMXOR - Atomic bitwise Xor |
| 1729 | |
| 1730 | Syntax: ``ATOMXOR dst, resource, offset, src`` |
| 1731 | |
| 1732 | Example: ``ATOMXOR TEMP[0], RES[0], TEMP[1], TEMP[2]`` |
| 1733 | |
| 1734 | The following operation is performed atomically on each component: |
| 1735 | |
| 1736 | .. math:: |
| 1737 | |
| 1738 | dst_i = resource[offset]_i |
| 1739 | |
| 1740 | resource[offset]_i = dst_i \oplus src_i |
| 1741 | |
| 1742 | |
| 1743 | .. opcode:: ATOMUMIN - Atomic unsigned minimum |
| 1744 | |
| 1745 | Syntax: ``ATOMUMIN dst, resource, offset, src`` |
| 1746 | |
| 1747 | Example: ``ATOMUMIN TEMP[0], RES[0], TEMP[1], TEMP[2]`` |
| 1748 | |
| 1749 | The following operation is performed atomically on each component: |
| 1750 | |
| 1751 | .. math:: |
| 1752 | |
| 1753 | dst_i = resource[offset]_i |
| 1754 | |
| 1755 | resource[offset]_i = (dst_i < src_i ? dst_i : src_i) |
| 1756 | |
| 1757 | |
| 1758 | .. opcode:: ATOMUMAX - Atomic unsigned maximum |
| 1759 | |
| 1760 | Syntax: ``ATOMUMAX dst, resource, offset, src`` |
| 1761 | |
| 1762 | Example: ``ATOMUMAX TEMP[0], RES[0], TEMP[1], TEMP[2]`` |
| 1763 | |
| 1764 | The following operation is performed atomically on each component: |
| 1765 | |
| 1766 | .. math:: |
| 1767 | |
| 1768 | dst_i = resource[offset]_i |
| 1769 | |
| 1770 | resource[offset]_i = (dst_i > src_i ? dst_i : src_i) |
| 1771 | |
| 1772 | |
| 1773 | .. opcode:: ATOMIMIN - Atomic signed minimum |
| 1774 | |
| 1775 | Syntax: ``ATOMIMIN dst, resource, offset, src`` |
| 1776 | |
| 1777 | Example: ``ATOMIMIN TEMP[0], RES[0], TEMP[1], TEMP[2]`` |
| 1778 | |
| 1779 | The following operation is performed atomically on each component: |
| 1780 | |
| 1781 | .. math:: |
| 1782 | |
| 1783 | dst_i = resource[offset]_i |
| 1784 | |
| 1785 | resource[offset]_i = (dst_i < src_i ? dst_i : src_i) |
| 1786 | |
| 1787 | |
| 1788 | .. opcode:: ATOMIMAX - Atomic signed maximum |
| 1789 | |
| 1790 | Syntax: ``ATOMIMAX dst, resource, offset, src`` |
| 1791 | |
| 1792 | Example: ``ATOMIMAX TEMP[0], RES[0], TEMP[1], TEMP[2]`` |
| 1793 | |
| 1794 | The following operation is performed atomically on each component: |
| 1795 | |
| 1796 | .. math:: |
| 1797 | |
| 1798 | dst_i = resource[offset]_i |
| 1799 | |
| 1800 | resource[offset]_i = (dst_i > src_i ? dst_i : src_i) |
| 1801 | |
| 1802 | |
| 1803 | |
Corbin Simpson | da65ac6 | 2009-12-21 20:32:46 -0800 | [diff] [blame] | 1804 | Explanation of symbols used |
Corbin Simpson | 5bcd26c | 2009-12-21 21:04:10 -0800 | [diff] [blame] | 1805 | ------------------------------ |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 1806 | |
| 1807 | |
Corbin Simpson | da65ac6 | 2009-12-21 20:32:46 -0800 | [diff] [blame] | 1808 | Functions |
Corbin Simpson | 5bcd26c | 2009-12-21 21:04:10 -0800 | [diff] [blame] | 1809 | ^^^^^^^^^^^^^^ |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 1810 | |
| 1811 | |
Corbin Simpson | 14743ac | 2009-12-21 19:57:56 -0800 | [diff] [blame] | 1812 | :math:`|x|` Absolute value of `x`. |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 1813 | |
Corbin Simpson | 14743ac | 2009-12-21 19:57:56 -0800 | [diff] [blame] | 1814 | :math:`\lceil x \rceil` Ceiling of `x`. |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 1815 | |
| 1816 | clamp(x,y,z) Clamp x between y and z. |
| 1817 | (x < y) ? y : (x > z) ? z : x |
| 1818 | |
Corbin Simpson | dd801e5 | 2009-12-21 19:41:09 -0800 | [diff] [blame] | 1819 | :math:`\lfloor x\rfloor` Floor of `x`. |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 1820 | |
Corbin Simpson | 14743ac | 2009-12-21 19:57:56 -0800 | [diff] [blame] | 1821 | :math:`\log_2{x}` Logarithm of `x`, base 2. |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 1822 | |
| 1823 | max(x,y) Maximum of x and y. |
| 1824 | (x > y) ? x : y |
| 1825 | |
| 1826 | min(x,y) Minimum of x and y. |
| 1827 | (x < y) ? x : y |
| 1828 | |
| 1829 | partialx(x) Derivative of x relative to fragment's X. |
| 1830 | |
| 1831 | partialy(x) Derivative of x relative to fragment's Y. |
| 1832 | |
| 1833 | pop() Pop from stack. |
| 1834 | |
Corbin Simpson | dd801e5 | 2009-12-21 19:41:09 -0800 | [diff] [blame] | 1835 | :math:`x^y` `x` to the power `y`. |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 1836 | |
| 1837 | push(x) Push x on stack. |
| 1838 | |
| 1839 | round(x) Round x. |
| 1840 | |
Michal Krol | 07f416c | 2010-01-04 13:21:32 +0100 | [diff] [blame] | 1841 | trunc(x) Truncate x, i.e. drop the fraction bits. |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 1842 | |
| 1843 | |
Corbin Simpson | da65ac6 | 2009-12-21 20:32:46 -0800 | [diff] [blame] | 1844 | Keywords |
Corbin Simpson | 5bcd26c | 2009-12-21 21:04:10 -0800 | [diff] [blame] | 1845 | ^^^^^^^^^^^^^ |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 1846 | |
| 1847 | |
| 1848 | discard Discard fragment. |
| 1849 | |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 1850 | pc Program counter. |
| 1851 | |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 1852 | target Label of target instruction. |
| 1853 | |
| 1854 | |
Corbin Simpson | da65ac6 | 2009-12-21 20:32:46 -0800 | [diff] [blame] | 1855 | Other tokens |
Corbin Simpson | 5bcd26c | 2009-12-21 21:04:10 -0800 | [diff] [blame] | 1856 | --------------- |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 1857 | |
| 1858 | |
Michal Krol | 63d6097 | 2010-02-03 15:45:32 +0100 | [diff] [blame] | 1859 | Declaration |
| 1860 | ^^^^^^^^^^^ |
| 1861 | |
| 1862 | |
| 1863 | Declares a register that is will be referenced as an operand in Instruction |
| 1864 | tokens. |
| 1865 | |
| 1866 | File field contains register file that is being declared and is one |
| 1867 | of TGSI_FILE. |
| 1868 | |
| 1869 | UsageMask field specifies which of the register components can be accessed |
| 1870 | and is one of TGSI_WRITEMASK. |
| 1871 | |
Francisco Jerez | 2644952 | 2012-03-18 19:21:36 +0100 | [diff] [blame] | 1872 | The Local flag specifies that a given value isn't intended for |
| 1873 | subroutine parameter passing and, as a result, the implementation |
| 1874 | isn't required to give any guarantees of it being preserved across |
| 1875 | subroutine boundaries. As it's merely a compiler hint, the |
| 1876 | implementation is free to ignore it. |
| 1877 | |
Michal Krol | 63d6097 | 2010-02-03 15:45:32 +0100 | [diff] [blame] | 1878 | If Dimension flag is set to 1, a Declaration Dimension token follows. |
| 1879 | |
| 1880 | If Semantic flag is set to 1, a Declaration Semantic token follows. |
| 1881 | |
Francisco Jerez | 1279923 | 2012-04-30 18:27:52 +0200 | [diff] [blame] | 1882 | If Interpolate flag is set to 1, a Declaration Interpolate token follows. |
Michal Krol | 63d6097 | 2010-02-03 15:45:32 +0100 | [diff] [blame] | 1883 | |
Zack Rusin | bdbe77f | 2011-01-24 17:47:10 -0500 | [diff] [blame] | 1884 | If file is TGSI_FILE_RESOURCE, a Declaration Resource token follows. |
| 1885 | |
Christian König | 897303f | 2013-03-14 11:10:16 +0100 | [diff] [blame] | 1886 | If Array flag is set to 1, a Declaration Array token follows. |
| 1887 | |
| 1888 | Array Declaration |
| 1889 | ^^^^^^^^^^^^^^^^^^^^^^^^ |
| 1890 | |
| 1891 | Declarations can optional have an ArrayID attribute which can be referred by |
| 1892 | indirect addressing operands. An ArrayID of zero is reserved and treaded as |
| 1893 | if no ArrayID is specified. |
| 1894 | |
| 1895 | If an indirect addressing operand refers to a specific declaration by using |
| 1896 | an ArrayID only the registers in this declaration are guaranteed to be |
| 1897 | accessed, accessing any register outside this declaration results in undefined |
| 1898 | behavior. Note that for compatibility the effective index is zero-based and |
| 1899 | not relative to the specified declaration |
| 1900 | |
| 1901 | If no ArrayID is specified with an indirect addressing operand the whole |
| 1902 | register file might be accessed by this operand. This is strongly discouraged |
| 1903 | and will prevent packing of scalar/vec2 arrays and effective alias analysis. |
Michal Krol | 63d6097 | 2010-02-03 15:45:32 +0100 | [diff] [blame] | 1904 | |
Corbin Simpson | da65ac6 | 2009-12-21 20:32:46 -0800 | [diff] [blame] | 1905 | Declaration Semantic |
Corbin Simpson | 5bcd26c | 2009-12-21 21:04:10 -0800 | [diff] [blame] | 1906 | ^^^^^^^^^^^^^^^^^^^^^^^^ |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 1907 | |
Brian Paul | 05a18f4 | 2010-06-24 07:21:15 -0600 | [diff] [blame] | 1908 | Vertex and fragment shader input and output registers may be labeled |
| 1909 | with semantic information consisting of a name and index. |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 1910 | |
| 1911 | Follows Declaration token if Semantic bit is set. |
| 1912 | |
| 1913 | Since its purpose is to link a shader with other stages of the pipeline, |
| 1914 | it is valid to follow only those Declaration tokens that declare a register |
| 1915 | either in INPUT or OUTPUT file. |
| 1916 | |
| 1917 | SemanticName field contains the semantic name of the register being declared. |
| 1918 | There is no default value. |
| 1919 | |
| 1920 | SemanticIndex is an optional subscript that can be used to distinguish |
| 1921 | different register declarations with the same semantic name. The default value |
| 1922 | is 0. |
| 1923 | |
| 1924 | The meanings of the individual semantic names are explained in the following |
| 1925 | sections. |
| 1926 | |
Corbin Simpson | 54ddf64 | 2009-12-23 23:36:06 -0800 | [diff] [blame] | 1927 | TGSI_SEMANTIC_POSITION |
| 1928 | """""""""""""""""""""" |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 1929 | |
Brian Paul | 50b3f2e | 2010-06-23 17:00:10 -0600 | [diff] [blame] | 1930 | For vertex shaders, TGSI_SEMANTIC_POSITION indicates the vertex shader |
| 1931 | output register which contains the homogeneous vertex position in the clip |
| 1932 | space coordinate system. After clipping, the X, Y and Z components of the |
| 1933 | vertex will be divided by the W value to get normalized device coordinates. |
Keith Whitwell | a62aaa7 | 2009-12-21 23:25:15 +0000 | [diff] [blame] | 1934 | |
Brian Paul | 50b3f2e | 2010-06-23 17:00:10 -0600 | [diff] [blame] | 1935 | For fragment shaders, TGSI_SEMANTIC_POSITION is used to indicate that |
| 1936 | fragment shader input contains the fragment's window position. The X |
| 1937 | component starts at zero and always increases from left to right. |
| 1938 | The Y component starts at zero and always increases but Y=0 may either |
| 1939 | indicate the top of the window or the bottom depending on the fragment |
| 1940 | coordinate origin convention (see TGSI_PROPERTY_FS_COORD_ORIGIN). |
| 1941 | The Z coordinate ranges from 0 to 1 to represent depth from the front |
| 1942 | to the back of the Z buffer. The W component contains the reciprocol |
| 1943 | of the interpolated vertex position W component. |
Corbin Simpson | 54ddf64 | 2009-12-23 23:36:06 -0800 | [diff] [blame] | 1944 | |
Brian Paul | 05a18f4 | 2010-06-24 07:21:15 -0600 | [diff] [blame] | 1945 | Fragment shaders may also declare an output register with |
| 1946 | TGSI_SEMANTIC_POSITION. Only the Z component is writable. This allows |
| 1947 | the fragment shader to change the fragment's Z position. |
| 1948 | |
Corbin Simpson | 54ddf64 | 2009-12-23 23:36:06 -0800 | [diff] [blame] | 1949 | |
Corbin Simpson | 54ddf64 | 2009-12-23 23:36:06 -0800 | [diff] [blame] | 1950 | |
| 1951 | TGSI_SEMANTIC_COLOR |
| 1952 | """"""""""""""""""" |
| 1953 | |
Brian Paul | 50b3f2e | 2010-06-23 17:00:10 -0600 | [diff] [blame] | 1954 | For vertex shader outputs or fragment shader inputs/outputs, this |
| 1955 | label indicates that the resister contains an R,G,B,A color. |
Corbin Simpson | 54ddf64 | 2009-12-23 23:36:06 -0800 | [diff] [blame] | 1956 | |
Brian Paul | 50b3f2e | 2010-06-23 17:00:10 -0600 | [diff] [blame] | 1957 | Several shader inputs/outputs may contain colors so the semantic index |
| 1958 | is used to distinguish them. For example, color[0] may be the diffuse |
| 1959 | color while color[1] may be the specular color. |
| 1960 | |
| 1961 | This label is needed so that the flat/smooth shading can be applied |
| 1962 | to the right interpolants during rasterization. |
| 1963 | |
| 1964 | |
Corbin Simpson | 54ddf64 | 2009-12-23 23:36:06 -0800 | [diff] [blame] | 1965 | |
| 1966 | TGSI_SEMANTIC_BCOLOR |
| 1967 | """""""""""""""""""" |
| 1968 | |
| 1969 | Back-facing colors are only used for back-facing polygons, and are only valid |
| 1970 | in vertex shader outputs. After rasterization, all polygons are front-facing |
Brian Paul | 50b3f2e | 2010-06-23 17:00:10 -0600 | [diff] [blame] | 1971 | and COLOR and BCOLOR end up occupying the same slots in the fragment shader, |
| 1972 | so all BCOLORs effectively become regular COLORs in the fragment shader. |
| 1973 | |
Corbin Simpson | 54ddf64 | 2009-12-23 23:36:06 -0800 | [diff] [blame] | 1974 | |
| 1975 | TGSI_SEMANTIC_FOG |
| 1976 | """"""""""""""""" |
| 1977 | |
Brian Paul | 05a18f4 | 2010-06-24 07:21:15 -0600 | [diff] [blame] | 1978 | Vertex shader inputs and outputs and fragment shader inputs may be |
| 1979 | labeled with TGSI_SEMANTIC_FOG to indicate that the register contains |
| 1980 | a fog coordinate in the form (F, 0, 0, 1). Typically, the fragment |
| 1981 | shader will use the fog coordinate to compute a fog blend factor which |
| 1982 | is used to blend the normal fragment color with a constant fog color. |
Corbin Simpson | 54ddf64 | 2009-12-23 23:36:06 -0800 | [diff] [blame] | 1983 | |
Brian Paul | 05a18f4 | 2010-06-24 07:21:15 -0600 | [diff] [blame] | 1984 | Only the first component matters when writing from the vertex shader; |
| 1985 | the driver will ensure that the coordinate is in this format when used |
| 1986 | as a fragment shader input. |
| 1987 | |
Corbin Simpson | 54ddf64 | 2009-12-23 23:36:06 -0800 | [diff] [blame] | 1988 | |
| 1989 | TGSI_SEMANTIC_PSIZE |
| 1990 | """"""""""""""""""" |
| 1991 | |
Brian Paul | 05a18f4 | 2010-06-24 07:21:15 -0600 | [diff] [blame] | 1992 | Vertex shader input and output registers may be labeled with |
| 1993 | TGIS_SEMANTIC_PSIZE to indicate that the register contains a point size |
| 1994 | in the form (S, 0, 0, 1). The point size controls the width or diameter |
| 1995 | of points for rasterization. This label cannot be used in fragment |
| 1996 | shaders. |
Corbin Simpson | 54ddf64 | 2009-12-23 23:36:06 -0800 | [diff] [blame] | 1997 | |
| 1998 | When using this semantic, be sure to set the appropriate state in the |
| 1999 | :ref:`rasterizer` first. |
| 2000 | |
Brian Paul | 05a18f4 | 2010-06-24 07:21:15 -0600 | [diff] [blame] | 2001 | |
Christoph Bumiller | 8acaf86 | 2013-03-15 22:11:31 +0100 | [diff] [blame] | 2002 | TGSI_SEMANTIC_TEXCOORD |
| 2003 | """""""""""""""""""""" |
| 2004 | |
| 2005 | Only available if PIPE_CAP_TGSI_TEXCOORD is exposed ! |
| 2006 | |
| 2007 | Vertex shader outputs and fragment shader inputs may be labeled with |
| 2008 | this semantic to make them replaceable by sprite coordinates via the |
| 2009 | sprite_coord_enable state in the :ref:`rasterizer`. |
| 2010 | The semantic index permitted with this semantic is limited to <= 7. |
| 2011 | |
| 2012 | If the driver does not support TEXCOORD, sprite coordinate replacement |
| 2013 | applies to inputs with the GENERIC semantic instead. |
| 2014 | |
| 2015 | The intended use case for this semantic is gl_TexCoord. |
| 2016 | |
| 2017 | |
| 2018 | TGSI_SEMANTIC_PCOORD |
| 2019 | """""""""""""""""""" |
| 2020 | |
| 2021 | Only available if PIPE_CAP_TGSI_TEXCOORD is exposed ! |
| 2022 | |
| 2023 | Fragment shader inputs may be labeled with TGSI_SEMANTIC_PCOORD to indicate |
| 2024 | that the register contains sprite coordinates in the form (x, y, 0, 1), if |
| 2025 | the current primitive is a point and point sprites are enabled. Otherwise, |
| 2026 | the contents of the register are undefined. |
| 2027 | |
| 2028 | The intended use case for this semantic is gl_PointCoord. |
| 2029 | |
| 2030 | |
Corbin Simpson | 54ddf64 | 2009-12-23 23:36:06 -0800 | [diff] [blame] | 2031 | TGSI_SEMANTIC_GENERIC |
| 2032 | """"""""""""""""""""" |
| 2033 | |
Brian Paul | 05a18f4 | 2010-06-24 07:21:15 -0600 | [diff] [blame] | 2034 | All vertex/fragment shader inputs/outputs not labeled with any other |
| 2035 | semantic label can be considered to be generic attributes. Typical |
| 2036 | uses of generic inputs/outputs are texcoords and user-defined values. |
Corbin Simpson | 54ddf64 | 2009-12-23 23:36:06 -0800 | [diff] [blame] | 2037 | |
Corbin Simpson | 54ddf64 | 2009-12-23 23:36:06 -0800 | [diff] [blame] | 2038 | |
| 2039 | TGSI_SEMANTIC_NORMAL |
| 2040 | """""""""""""""""""" |
| 2041 | |
Brian Paul | 05a18f4 | 2010-06-24 07:21:15 -0600 | [diff] [blame] | 2042 | Indicates that a vertex shader input is a normal vector. This is |
| 2043 | typically only used for legacy graphics APIs. |
| 2044 | |
Corbin Simpson | 54ddf64 | 2009-12-23 23:36:06 -0800 | [diff] [blame] | 2045 | |
| 2046 | TGSI_SEMANTIC_FACE |
| 2047 | """""""""""""""""" |
| 2048 | |
Brian Paul | 05a18f4 | 2010-06-24 07:21:15 -0600 | [diff] [blame] | 2049 | This label applies to fragment shader inputs only and indicates that |
| 2050 | the register contains front/back-face information of the form (F, 0, |
| 2051 | 0, 1). The first component will be positive when the fragment belongs |
| 2052 | to a front-facing polygon, and negative when the fragment belongs to a |
| 2053 | back-facing polygon. |
| 2054 | |
Corbin Simpson | 54ddf64 | 2009-12-23 23:36:06 -0800 | [diff] [blame] | 2055 | |
| 2056 | TGSI_SEMANTIC_EDGEFLAG |
| 2057 | """""""""""""""""""""" |
| 2058 | |
Brian Paul | 7315300 | 2010-06-23 17:38:58 -0600 | [diff] [blame] | 2059 | For vertex shaders, this sematic label indicates that an input or |
| 2060 | output is a boolean edge flag. The register layout is [F, x, x, x] |
| 2061 | where F is 0.0 or 1.0 and x = don't care. Normally, the vertex shader |
| 2062 | simply copies the edge flag input to the edgeflag output. |
| 2063 | |
| 2064 | Edge flags are used to control which lines or points are actually |
| 2065 | drawn when the polygon mode converts triangles/quads/polygons into |
| 2066 | points or lines. |
| 2067 | |
Dave Airlie | 4ecb2c1 | 2010-10-06 09:28:46 +1000 | [diff] [blame] | 2068 | TGSI_SEMANTIC_STENCIL |
| 2069 | """""""""""""""""""""" |
| 2070 | |
| 2071 | For fragment shaders, this semantic label indicates than an output |
| 2072 | is a writable stencil reference value. Only the Y component is writable. |
| 2073 | This allows the fragment shader to change the fragments stencilref value. |
Luca Barbieri | 7331713 | 2010-01-21 05:36:14 +0100 | [diff] [blame] | 2074 | |
| 2075 | |
Francisco Jerez | 1279923 | 2012-04-30 18:27:52 +0200 | [diff] [blame] | 2076 | Declaration Interpolate |
| 2077 | ^^^^^^^^^^^^^^^^^^^^^^^ |
| 2078 | |
| 2079 | This token is only valid for fragment shader INPUT declarations. |
| 2080 | |
| 2081 | The Interpolate field specifes the way input is being interpolated by |
| 2082 | the rasteriser and is one of TGSI_INTERPOLATE_*. |
| 2083 | |
| 2084 | The CylindricalWrap bitfield specifies which register components |
| 2085 | should be subject to cylindrical wrapping when interpolating by the |
| 2086 | rasteriser. If TGSI_CYLINDRICAL_WRAP_X is set to 1, the X component |
| 2087 | should be interpolated according to cylindrical wrapping rules. |
| 2088 | |
| 2089 | |
Francisco Jerez | a5f44cc | 2012-05-01 02:38:51 +0200 | [diff] [blame] | 2090 | Declaration Sampler View |
Zack Rusin | bdbe77f | 2011-01-24 17:47:10 -0500 | [diff] [blame] | 2091 | ^^^^^^^^^^^^^^^^^^^^^^^^ |
| 2092 | |
Francisco Jerez | a5f44cc | 2012-05-01 02:38:51 +0200 | [diff] [blame] | 2093 | Follows Declaration token if file is TGSI_FILE_SAMPLER_VIEW. |
| 2094 | |
| 2095 | DCL SVIEW[#], resource, type(s) |
| 2096 | |
| 2097 | Declares a shader input sampler view and assigns it to a SVIEW[#] |
| 2098 | register. |
| 2099 | |
| 2100 | resource can be one of BUFFER, 1D, 2D, 3D, 1DArray and 2DArray. |
| 2101 | |
| 2102 | type must be 1 or 4 entries (if specifying on a per-component |
| 2103 | level) out of UNORM, SNORM, SINT, UINT and FLOAT. |
| 2104 | |
| 2105 | |
| 2106 | Declaration Resource |
| 2107 | ^^^^^^^^^^^^^^^^^^^^ |
| 2108 | |
Zack Rusin | bdbe77f | 2011-01-24 17:47:10 -0500 | [diff] [blame] | 2109 | Follows Declaration token if file is TGSI_FILE_RESOURCE. |
| 2110 | |
Francisco Jerez | b8e808f | 2012-04-30 20:20:29 +0200 | [diff] [blame] | 2111 | DCL RES[#], resource [, WR] [, RAW] |
Zack Rusin | bdbe77f | 2011-01-24 17:47:10 -0500 | [diff] [blame] | 2112 | |
| 2113 | Declares a shader input resource and assigns it to a RES[#] |
| 2114 | register. |
| 2115 | |
| 2116 | resource can be one of BUFFER, 1D, 2D, 3D, CUBE, 1DArray and |
| 2117 | 2DArray. |
| 2118 | |
Francisco Jerez | 82c90b2 | 2012-04-30 19:08:55 +0200 | [diff] [blame] | 2119 | If the RAW keyword is not specified, the texture data will be |
| 2120 | subject to conversion, swizzling and scaling as required to yield |
| 2121 | the specified data type from the physical data format of the bound |
| 2122 | resource. |
| 2123 | |
| 2124 | If the RAW keyword is specified, no channel conversion will be |
| 2125 | performed: the values read for each of the channels (X,Y,Z,W) will |
| 2126 | correspond to consecutive words in the same order and format |
| 2127 | they're found in memory. No element-to-address conversion will be |
| 2128 | performed either: the value of the provided X coordinate will be |
| 2129 | interpreted in byte units instead of texel units. The result of |
| 2130 | accessing a misaligned address is undefined. |
| 2131 | |
Francisco Jerez | b8e808f | 2012-04-30 20:20:29 +0200 | [diff] [blame] | 2132 | Usage of the STORE opcode is only allowed if the WR (writable) flag |
| 2133 | is set. |
| 2134 | |
Zack Rusin | bdbe77f | 2011-01-24 17:47:10 -0500 | [diff] [blame] | 2135 | |
Luca Barbieri | 7331713 | 2010-01-21 05:36:14 +0100 | [diff] [blame] | 2136 | Properties |
| 2137 | ^^^^^^^^^^^^^^^^^^^^^^^^ |
| 2138 | |
| 2139 | |
| 2140 | Properties are general directives that apply to the whole TGSI program. |
| 2141 | |
| 2142 | FS_COORD_ORIGIN |
| 2143 | """"""""""""""" |
| 2144 | |
| 2145 | Specifies the fragment shader TGSI_SEMANTIC_POSITION coordinate origin. |
| 2146 | The default value is UPPER_LEFT. |
| 2147 | |
| 2148 | If UPPER_LEFT, the position will be (0,0) at the upper left corner and |
| 2149 | increase downward and rightward. |
| 2150 | If LOWER_LEFT, the position will be (0,0) at the lower left corner and |
| 2151 | increase upward and rightward. |
| 2152 | |
| 2153 | OpenGL defaults to LOWER_LEFT, and is configurable with the |
| 2154 | GL_ARB_fragment_coord_conventions extension. |
| 2155 | |
| 2156 | DirectX 9/10 use UPPER_LEFT. |
| 2157 | |
| 2158 | FS_COORD_PIXEL_CENTER |
| 2159 | """"""""""""""""""""" |
| 2160 | |
| 2161 | Specifies the fragment shader TGSI_SEMANTIC_POSITION pixel center convention. |
| 2162 | The default value is HALF_INTEGER. |
| 2163 | |
| 2164 | If HALF_INTEGER, the fractionary part of the position will be 0.5 |
| 2165 | If INTEGER, the fractionary part of the position will be 0.0 |
| 2166 | |
| 2167 | Note that this does not affect the set of fragments generated by |
José Fonseca | 2737abb | 2013-04-23 19:40:05 +0100 | [diff] [blame] | 2168 | rasterization, which is instead controlled by half_pixel_center in the |
Luca Barbieri | 7331713 | 2010-01-21 05:36:14 +0100 | [diff] [blame] | 2169 | rasterizer. |
| 2170 | |
| 2171 | OpenGL defaults to HALF_INTEGER, and is configurable with the |
| 2172 | GL_ARB_fragment_coord_conventions extension. |
| 2173 | |
| 2174 | DirectX 9 uses INTEGER. |
| 2175 | DirectX 10 uses HALF_INTEGER. |
Brian Paul | 4778f46 | 2010-02-02 08:14:40 -0700 | [diff] [blame] | 2176 | |
Dave Airlie | c9c8a5e | 2010-12-18 10:34:35 +1000 | [diff] [blame] | 2177 | FS_COLOR0_WRITES_ALL_CBUFS |
| 2178 | """""""""""""""""""""""""" |
| 2179 | Specifies that writes to the fragment shader color 0 are replicated to all |
| 2180 | bound cbufs. This facilitates OpenGL's fragColor output vs fragData[0] where |
| 2181 | fragData is directed to a single color buffer, but fragColor is broadcast. |
Brian Paul | 4778f46 | 2010-02-02 08:14:40 -0700 | [diff] [blame] | 2182 | |
Marek Olšák | dc4c821 | 2012-01-10 00:19:00 +0100 | [diff] [blame] | 2183 | VS_PROHIBIT_UCPS |
| 2184 | """""""""""""""""""""""""" |
| 2185 | If this property is set on the program bound to the shader stage before the |
| 2186 | fragment shader, user clip planes should have no effect (be disabled) even if |
| 2187 | that shader does not write to any clip distance outputs and the rasterizer's |
| 2188 | clip_plane_enable is non-zero. |
| 2189 | This property is only supported by drivers that also support shader clip |
| 2190 | distance outputs. |
| 2191 | This is useful for APIs that don't have UCPs and where clip distances written |
| 2192 | by a shader cannot be disabled. |
| 2193 | |
Brian Paul | 4778f46 | 2010-02-02 08:14:40 -0700 | [diff] [blame] | 2194 | |
| 2195 | Texture Sampling and Texture Formats |
| 2196 | ------------------------------------ |
| 2197 | |
Corbin Simpson | 797dcc0 | 2010-02-02 17:07:26 -0800 | [diff] [blame] | 2198 | This table shows how texture image components are returned as (x,y,z,w) tuples |
| 2199 | by TGSI texture instructions, such as :opcode:`TEX`, :opcode:`TXD`, and |
| 2200 | :opcode:`TXP`. For reference, OpenGL and Direct3D conventions are shown as |
| 2201 | well. |
Brian Paul | 4778f46 | 2010-02-02 08:14:40 -0700 | [diff] [blame] | 2202 | |
Corbin Simpson | 516e715 | 2010-02-02 12:44:22 -0800 | [diff] [blame] | 2203 | +--------------------+--------------+--------------------+--------------+ |
| 2204 | | Texture Components | Gallium | OpenGL | Direct3D 9 | |
| 2205 | +====================+==============+====================+==============+ |
Corbin Simpson | 92867dc | 2010-06-16 16:56:55 -0700 | [diff] [blame] | 2206 | | R | (r, 0, 0, 1) | (r, 0, 0, 1) | (r, 1, 1, 1) | |
Corbin Simpson | 516e715 | 2010-02-02 12:44:22 -0800 | [diff] [blame] | 2207 | +--------------------+--------------+--------------------+--------------+ |
Corbin Simpson | 92867dc | 2010-06-16 16:56:55 -0700 | [diff] [blame] | 2208 | | RG | (r, g, 0, 1) | (r, g, 0, 1) | (r, g, 1, 1) | |
Corbin Simpson | 516e715 | 2010-02-02 12:44:22 -0800 | [diff] [blame] | 2209 | +--------------------+--------------+--------------------+--------------+ |
| 2210 | | RGB | (r, g, b, 1) | (r, g, b, 1) | (r, g, b, 1) | |
| 2211 | +--------------------+--------------+--------------------+--------------+ |
| 2212 | | RGBA | (r, g, b, a) | (r, g, b, a) | (r, g, b, a) | |
| 2213 | +--------------------+--------------+--------------------+--------------+ |
| 2214 | | A | (0, 0, 0, a) | (0, 0, 0, a) | (0, 0, 0, a) | |
| 2215 | +--------------------+--------------+--------------------+--------------+ |
| 2216 | | L | (l, l, l, 1) | (l, l, l, 1) | (l, l, l, 1) | |
| 2217 | +--------------------+--------------+--------------------+--------------+ |
| 2218 | | LA | (l, l, l, a) | (l, l, l, a) | (l, l, l, a) | |
| 2219 | +--------------------+--------------+--------------------+--------------+ |
| 2220 | | I | (i, i, i, i) | (i, i, i, i) | N/A | |
| 2221 | +--------------------+--------------+--------------------+--------------+ |
| 2222 | | UV | XXX TBD | (0, 0, 0, 1) | (u, v, 1, 1) | |
| 2223 | | | | [#envmap-bumpmap]_ | | |
| 2224 | +--------------------+--------------+--------------------+--------------+ |
Brian Paul | 3e572eb | 2010-02-02 16:27:07 -0700 | [diff] [blame] | 2225 | | Z | XXX TBD | (z, z, z, 1) | (0, z, 0, 1) | |
Corbin Simpson | 516e715 | 2010-02-02 12:44:22 -0800 | [diff] [blame] | 2226 | | | | [#depth-tex-mode]_ | | |
| 2227 | +--------------------+--------------+--------------------+--------------+ |
Dave Airlie | 66a0d1e | 2010-10-06 09:30:17 +1000 | [diff] [blame] | 2228 | | S | (s, s, s, s) | unknown | unknown | |
| 2229 | +--------------------+--------------+--------------------+--------------+ |
Brian Paul | 4778f46 | 2010-02-02 08:14:40 -0700 | [diff] [blame] | 2230 | |
Corbin Simpson | 516e715 | 2010-02-02 12:44:22 -0800 | [diff] [blame] | 2231 | .. [#envmap-bumpmap] http://www.opengl.org/registry/specs/ATI/envmap_bumpmap.txt |
Brian Paul | 3e572eb | 2010-02-02 16:27:07 -0700 | [diff] [blame] | 2232 | .. [#depth-tex-mode] the default is (z, z, z, 1) but may also be (0, 0, 0, z) |
Corbin Simpson | 797dcc0 | 2010-02-02 17:07:26 -0800 | [diff] [blame] | 2233 | or (z, z, z, z) depending on the value of GL_DEPTH_TEXTURE_MODE. |