blob: 0a5b2274a9a5e210ee4ea59ed2bd7bcc452bb1d2 [file] [log] [blame]
Corbin Simpsonc686e172009-12-20 15:00:40 -08001TGSI
2====
3
Michal Krolb6659682010-01-04 12:52:43 +01004TGSI, Tungsten Graphics Shader Infrastructure, is an intermediate language
Corbin Simpsonc686e172009-12-20 15:00:40 -08005for describing shaders. Since Gallium is inherently shaderful, shaders are
6an important part of the API. TGSI is the only intermediate representation
7used by all drivers.
Keith Whitwella62aaa72009-12-21 23:25:15 +00008
Corbin Simpson62ca7b82010-02-02 16:36:34 -08009Basics
10------
11
12All TGSI instructions, known as *opcodes*, operate on arbitrary-precision
13floating-point four-component vectors. An opcode may have up to one
14destination register, known as *dst*, and between zero and three source
15registers, called *src0* through *src2*, or simply *src* if there is only
16one.
17
18Some instructions, like :opcode:`I2F`, permit re-interpretation of vector
19components as integers. Other instructions permit using registers as
20two-component vectors with double precision; see :ref:`Double Opcodes`.
21
Corbin Simpson17c2a442010-02-02 17:02:28 -080022When an instruction has a scalar result, the result is usually copied into
23each 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 Scheideggercb2e6782013-02-16 02:26:14 +010026Modifiers
27^^^^^^^^^^^^^^^
28
29TGSI supports modifiers on inputs (as well as saturate modifier on instructions).
30
31For inputs which have a floating point type, both absolute value and negation
32modifiers are supported (with absolute value being applied first).
33TGSI_OPCODE_MOV is considered to have float input type for applying modifiers.
34
35For inputs which have signed type only the negate modifier is supported. This
36includes instructions which are otherwise ignorant if the type is signed or
37unsigned, such as TGSI_OPCODE_UADD.
38
39For inputs with unsigned type no modifiers are allowed.
40
Corbin Simpson5bcd26c2009-12-21 21:04:10 -080041Instruction Set
42---------------
43
Corbin Simpson9d4cb6e2010-06-16 18:34:32 -070044Core ISA
Corbin Simpson5bcd26c2009-12-21 21:04:10 -080045^^^^^^^^^^^^^^^^^^^^^^^^^
Keith Whitwella62aaa72009-12-21 23:25:15 +000046
Corbin Simpson9d4cb6e2010-06-16 18:34:32 -070047These opcodes are guaranteed to be available regardless of the driver being
48used.
Keith Whitwella62aaa72009-12-21 23:25:15 +000049
Corbin Simpson85805222010-02-02 16:20:12 -080050.. opcode:: ARL - Address Register Load
Corbin Simpsone8ed3b92009-12-21 19:12:55 -080051
52.. math::
Keith Whitwella62aaa72009-12-21 23:25:15 +000053
Corbin Simpsond92a6852009-12-21 19:30:29 -080054 dst.x = \lfloor src.x\rfloor
Corbin Simpsone8ed3b92009-12-21 19:12:55 -080055
Corbin Simpsond92a6852009-12-21 19:30:29 -080056 dst.y = \lfloor src.y\rfloor
Corbin Simpsone8ed3b92009-12-21 19:12:55 -080057
Corbin Simpsond92a6852009-12-21 19:30:29 -080058 dst.z = \lfloor src.z\rfloor
Corbin Simpsone8ed3b92009-12-21 19:12:55 -080059
Corbin Simpsond92a6852009-12-21 19:30:29 -080060 dst.w = \lfloor src.w\rfloor
Keith Whitwella62aaa72009-12-21 23:25:15 +000061
62
Corbin Simpson85805222010-02-02 16:20:12 -080063.. opcode:: MOV - Move
Corbin Simpsone8ed3b92009-12-21 19:12:55 -080064
65.. math::
Keith Whitwella62aaa72009-12-21 23:25:15 +000066
67 dst.x = src.x
Corbin Simpsone8ed3b92009-12-21 19:12:55 -080068
Keith Whitwella62aaa72009-12-21 23:25:15 +000069 dst.y = src.y
Corbin Simpsone8ed3b92009-12-21 19:12:55 -080070
Keith Whitwella62aaa72009-12-21 23:25:15 +000071 dst.z = src.z
Corbin Simpsone8ed3b92009-12-21 19:12:55 -080072
Keith Whitwella62aaa72009-12-21 23:25:15 +000073 dst.w = src.w
74
75
Corbin Simpson85805222010-02-02 16:20:12 -080076.. opcode:: LIT - Light Coefficients
Corbin Simpsone8ed3b92009-12-21 19:12:55 -080077
78.. math::
Keith Whitwella62aaa72009-12-21 23:25:15 +000079
Corbin Simpsonda65ac62009-12-21 20:32:46 -080080 dst.x = 1
Corbin Simpsone8ed3b92009-12-21 19:12:55 -080081
Corbin Simpsonda65ac62009-12-21 20:32:46 -080082 dst.y = max(src.x, 0)
Corbin Simpsone8ed3b92009-12-21 19:12:55 -080083
Corbin Simpsonda65ac62009-12-21 20:32:46 -080084 dst.z = (src.x > 0) ? max(src.y, 0)^{clamp(src.w, -128, 128))} : 0
Corbin Simpsone8ed3b92009-12-21 19:12:55 -080085
Corbin Simpsonda65ac62009-12-21 20:32:46 -080086 dst.w = 1
Keith Whitwella62aaa72009-12-21 23:25:15 +000087
88
Corbin Simpson85805222010-02-02 16:20:12 -080089.. opcode:: RCP - Reciprocal
Corbin Simpsone8ed3b92009-12-21 19:12:55 -080090
Corbin Simpson17c2a442010-02-02 17:02:28 -080091This instruction replicates its result.
92
Corbin Simpsone8ed3b92009-12-21 19:12:55 -080093.. math::
Keith Whitwella62aaa72009-12-21 23:25:15 +000094
Corbin Simpson17c2a442010-02-02 17:02:28 -080095 dst = \frac{1}{src.x}
Keith Whitwella62aaa72009-12-21 23:25:15 +000096
97
Corbin Simpson85805222010-02-02 16:20:12 -080098.. opcode:: RSQ - Reciprocal Square Root
Corbin Simpsone8ed3b92009-12-21 19:12:55 -080099
Corbin Simpson17c2a442010-02-02 17:02:28 -0800100This instruction replicates its result.
101
Corbin Simpsone8ed3b92009-12-21 19:12:55 -0800102.. math::
Keith Whitwella62aaa72009-12-21 23:25:15 +0000103
Corbin Simpson17c2a442010-02-02 17:02:28 -0800104 dst = \frac{1}{\sqrt{|src.x|}}
Keith Whitwella62aaa72009-12-21 23:25:15 +0000105
106
Brian Pauld276a402013-02-01 10:59:43 -0700107.. opcode:: SQRT - Square Root
108
109This instruction replicates its result.
110
111.. math::
112
113 dst = {\sqrt{src.x}}
114
115
Corbin Simpson85805222010-02-02 16:20:12 -0800116.. opcode:: EXP - Approximate Exponential Base 2
Corbin Simpsone8ed3b92009-12-21 19:12:55 -0800117
118.. math::
Keith Whitwella62aaa72009-12-21 23:25:15 +0000119
Corbin Simpsondd801e52009-12-21 19:41:09 -0800120 dst.x = 2^{\lfloor src.x\rfloor}
Corbin Simpsone8ed3b92009-12-21 19:12:55 -0800121
Corbin Simpsond92a6852009-12-21 19:30:29 -0800122 dst.y = src.x - \lfloor src.x\rfloor
Corbin Simpsone8ed3b92009-12-21 19:12:55 -0800123
Corbin Simpsondd801e52009-12-21 19:41:09 -0800124 dst.z = 2^{src.x}
Corbin Simpsone8ed3b92009-12-21 19:12:55 -0800125
Corbin Simpsonda65ac62009-12-21 20:32:46 -0800126 dst.w = 1
Keith Whitwella62aaa72009-12-21 23:25:15 +0000127
128
Corbin Simpson85805222010-02-02 16:20:12 -0800129.. opcode:: LOG - Approximate Logarithm Base 2
Corbin Simpsone8ed3b92009-12-21 19:12:55 -0800130
131.. math::
Keith Whitwella62aaa72009-12-21 23:25:15 +0000132
Corbin Simpson14743ac2009-12-21 19:57:56 -0800133 dst.x = \lfloor\log_2{|src.x|}\rfloor
Corbin Simpsone8ed3b92009-12-21 19:12:55 -0800134
Corbin Simpson14743ac2009-12-21 19:57:56 -0800135 dst.y = \frac{|src.x|}{2^{\lfloor\log_2{|src.x|}\rfloor}}
Corbin Simpsone8ed3b92009-12-21 19:12:55 -0800136
Corbin Simpson14743ac2009-12-21 19:57:56 -0800137 dst.z = \log_2{|src.x|}
Corbin Simpsone8ed3b92009-12-21 19:12:55 -0800138
Corbin Simpson14743ac2009-12-21 19:57:56 -0800139 dst.w = 1
Keith Whitwella62aaa72009-12-21 23:25:15 +0000140
141
Corbin Simpson85805222010-02-02 16:20:12 -0800142.. opcode:: MUL - Multiply
Corbin Simpsone8ed3b92009-12-21 19:12:55 -0800143
144.. math::
Keith Whitwella62aaa72009-12-21 23:25:15 +0000145
Corbin Simpsonecb2f2a2009-12-21 20:07:10 -0800146 dst.x = src0.x \times src1.x
Corbin Simpsone8ed3b92009-12-21 19:12:55 -0800147
Corbin Simpsonecb2f2a2009-12-21 20:07:10 -0800148 dst.y = src0.y \times src1.y
Corbin Simpsone8ed3b92009-12-21 19:12:55 -0800149
Corbin Simpsonecb2f2a2009-12-21 20:07:10 -0800150 dst.z = src0.z \times src1.z
Corbin Simpsone8ed3b92009-12-21 19:12:55 -0800151
Corbin Simpsonecb2f2a2009-12-21 20:07:10 -0800152 dst.w = src0.w \times src1.w
Keith Whitwella62aaa72009-12-21 23:25:15 +0000153
154
Corbin Simpson85805222010-02-02 16:20:12 -0800155.. opcode:: ADD - Add
Corbin Simpsone8ed3b92009-12-21 19:12:55 -0800156
157.. math::
Keith Whitwella62aaa72009-12-21 23:25:15 +0000158
159 dst.x = src0.x + src1.x
Corbin Simpsone8ed3b92009-12-21 19:12:55 -0800160
Keith Whitwella62aaa72009-12-21 23:25:15 +0000161 dst.y = src0.y + src1.y
Corbin Simpsone8ed3b92009-12-21 19:12:55 -0800162
Keith Whitwella62aaa72009-12-21 23:25:15 +0000163 dst.z = src0.z + src1.z
Corbin Simpsone8ed3b92009-12-21 19:12:55 -0800164
Keith Whitwella62aaa72009-12-21 23:25:15 +0000165 dst.w = src0.w + src1.w
166
167
Corbin Simpson85805222010-02-02 16:20:12 -0800168.. opcode:: DP3 - 3-component Dot Product
Corbin Simpsone8ed3b92009-12-21 19:12:55 -0800169
Corbin Simpson17c2a442010-02-02 17:02:28 -0800170This instruction replicates its result.
171
Corbin Simpsone8ed3b92009-12-21 19:12:55 -0800172.. math::
Keith Whitwella62aaa72009-12-21 23:25:15 +0000173
Corbin Simpson17c2a442010-02-02 17:02:28 -0800174 dst = src0.x \times src1.x + src0.y \times src1.y + src0.z \times src1.z
Keith Whitwella62aaa72009-12-21 23:25:15 +0000175
176
Corbin Simpson85805222010-02-02 16:20:12 -0800177.. opcode:: DP4 - 4-component Dot Product
Corbin Simpsone8ed3b92009-12-21 19:12:55 -0800178
Corbin Simpson17c2a442010-02-02 17:02:28 -0800179This instruction replicates its result.
180
Corbin Simpsone8ed3b92009-12-21 19:12:55 -0800181.. math::
Keith Whitwella62aaa72009-12-21 23:25:15 +0000182
Corbin Simpson17c2a442010-02-02 17:02:28 -0800183 dst = src0.x \times src1.x + src0.y \times src1.y + src0.z \times src1.z + src0.w \times src1.w
Keith Whitwella62aaa72009-12-21 23:25:15 +0000184
185
Corbin Simpson85805222010-02-02 16:20:12 -0800186.. opcode:: DST - Distance Vector
Corbin Simpsone8ed3b92009-12-21 19:12:55 -0800187
188.. math::
Keith Whitwella62aaa72009-12-21 23:25:15 +0000189
Corbin Simpsonda65ac62009-12-21 20:32:46 -0800190 dst.x = 1
Corbin Simpsone8ed3b92009-12-21 19:12:55 -0800191
Corbin Simpsonecb2f2a2009-12-21 20:07:10 -0800192 dst.y = src0.y \times src1.y
Corbin Simpsone8ed3b92009-12-21 19:12:55 -0800193
Keith Whitwella62aaa72009-12-21 23:25:15 +0000194 dst.z = src0.z
Corbin Simpsone8ed3b92009-12-21 19:12:55 -0800195
Keith Whitwella62aaa72009-12-21 23:25:15 +0000196 dst.w = src1.w
197
198
Corbin Simpson85805222010-02-02 16:20:12 -0800199.. opcode:: MIN - Minimum
Corbin Simpsone8ed3b92009-12-21 19:12:55 -0800200
201.. math::
Keith Whitwella62aaa72009-12-21 23:25:15 +0000202
203 dst.x = min(src0.x, src1.x)
Corbin Simpsone8ed3b92009-12-21 19:12:55 -0800204
Keith Whitwella62aaa72009-12-21 23:25:15 +0000205 dst.y = min(src0.y, src1.y)
Corbin Simpsone8ed3b92009-12-21 19:12:55 -0800206
Keith Whitwella62aaa72009-12-21 23:25:15 +0000207 dst.z = min(src0.z, src1.z)
Corbin Simpsone8ed3b92009-12-21 19:12:55 -0800208
Keith Whitwella62aaa72009-12-21 23:25:15 +0000209 dst.w = min(src0.w, src1.w)
210
211
Corbin Simpson85805222010-02-02 16:20:12 -0800212.. opcode:: MAX - Maximum
Corbin Simpsone8ed3b92009-12-21 19:12:55 -0800213
214.. math::
Keith Whitwella62aaa72009-12-21 23:25:15 +0000215
216 dst.x = max(src0.x, src1.x)
Corbin Simpsone8ed3b92009-12-21 19:12:55 -0800217
Keith Whitwella62aaa72009-12-21 23:25:15 +0000218 dst.y = max(src0.y, src1.y)
Corbin Simpsone8ed3b92009-12-21 19:12:55 -0800219
Keith Whitwella62aaa72009-12-21 23:25:15 +0000220 dst.z = max(src0.z, src1.z)
Corbin Simpsone8ed3b92009-12-21 19:12:55 -0800221
Keith Whitwella62aaa72009-12-21 23:25:15 +0000222 dst.w = max(src0.w, src1.w)
223
224
Corbin Simpson85805222010-02-02 16:20:12 -0800225.. opcode:: SLT - Set On Less Than
Corbin Simpsone8ed3b92009-12-21 19:12:55 -0800226
227.. math::
Keith Whitwella62aaa72009-12-21 23:25:15 +0000228
Corbin Simpsonda65ac62009-12-21 20:32:46 -0800229 dst.x = (src0.x < src1.x) ? 1 : 0
Corbin Simpsone8ed3b92009-12-21 19:12:55 -0800230
Corbin Simpsonda65ac62009-12-21 20:32:46 -0800231 dst.y = (src0.y < src1.y) ? 1 : 0
Corbin Simpsone8ed3b92009-12-21 19:12:55 -0800232
Corbin Simpsonda65ac62009-12-21 20:32:46 -0800233 dst.z = (src0.z < src1.z) ? 1 : 0
Corbin Simpsone8ed3b92009-12-21 19:12:55 -0800234
Corbin Simpsonda65ac62009-12-21 20:32:46 -0800235 dst.w = (src0.w < src1.w) ? 1 : 0
Keith Whitwella62aaa72009-12-21 23:25:15 +0000236
237
Corbin Simpson85805222010-02-02 16:20:12 -0800238.. opcode:: SGE - Set On Greater Equal Than
Corbin Simpsone8ed3b92009-12-21 19:12:55 -0800239
240.. math::
Keith Whitwella62aaa72009-12-21 23:25:15 +0000241
Corbin Simpsonda65ac62009-12-21 20:32:46 -0800242 dst.x = (src0.x >= src1.x) ? 1 : 0
Corbin Simpsone8ed3b92009-12-21 19:12:55 -0800243
Corbin Simpsonda65ac62009-12-21 20:32:46 -0800244 dst.y = (src0.y >= src1.y) ? 1 : 0
Corbin Simpsone8ed3b92009-12-21 19:12:55 -0800245
Corbin Simpsonda65ac62009-12-21 20:32:46 -0800246 dst.z = (src0.z >= src1.z) ? 1 : 0
Corbin Simpsone8ed3b92009-12-21 19:12:55 -0800247
Corbin Simpsonda65ac62009-12-21 20:32:46 -0800248 dst.w = (src0.w >= src1.w) ? 1 : 0
Keith Whitwella62aaa72009-12-21 23:25:15 +0000249
250
Corbin Simpson85805222010-02-02 16:20:12 -0800251.. opcode:: MAD - Multiply And Add
Corbin Simpsone8ed3b92009-12-21 19:12:55 -0800252
253.. math::
Keith Whitwella62aaa72009-12-21 23:25:15 +0000254
Corbin Simpsonecb2f2a2009-12-21 20:07:10 -0800255 dst.x = src0.x \times src1.x + src2.x
Corbin Simpsone8ed3b92009-12-21 19:12:55 -0800256
Corbin Simpsonecb2f2a2009-12-21 20:07:10 -0800257 dst.y = src0.y \times src1.y + src2.y
Corbin Simpsone8ed3b92009-12-21 19:12:55 -0800258
Corbin Simpsonecb2f2a2009-12-21 20:07:10 -0800259 dst.z = src0.z \times src1.z + src2.z
Corbin Simpsone8ed3b92009-12-21 19:12:55 -0800260
Corbin Simpsonecb2f2a2009-12-21 20:07:10 -0800261 dst.w = src0.w \times src1.w + src2.w
Keith Whitwella62aaa72009-12-21 23:25:15 +0000262
263
Corbin Simpson85805222010-02-02 16:20:12 -0800264.. opcode:: SUB - Subtract
Corbin Simpsone8ed3b92009-12-21 19:12:55 -0800265
266.. math::
Keith Whitwella62aaa72009-12-21 23:25:15 +0000267
268 dst.x = src0.x - src1.x
Corbin Simpsone8ed3b92009-12-21 19:12:55 -0800269
Keith Whitwella62aaa72009-12-21 23:25:15 +0000270 dst.y = src0.y - src1.y
Corbin Simpsone8ed3b92009-12-21 19:12:55 -0800271
Keith Whitwella62aaa72009-12-21 23:25:15 +0000272 dst.z = src0.z - src1.z
Corbin Simpsone8ed3b92009-12-21 19:12:55 -0800273
Keith Whitwella62aaa72009-12-21 23:25:15 +0000274 dst.w = src0.w - src1.w
275
276
Corbin Simpson85805222010-02-02 16:20:12 -0800277.. opcode:: LRP - Linear Interpolate
Corbin Simpsone8ed3b92009-12-21 19:12:55 -0800278
279.. math::
Keith Whitwella62aaa72009-12-21 23:25:15 +0000280
Michal Krolb3567fc2010-01-04 12:59:17 +0100281 dst.x = src0.x \times src1.x + (1 - src0.x) \times src2.x
Corbin Simpsone8ed3b92009-12-21 19:12:55 -0800282
Michal Krolb3567fc2010-01-04 12:59:17 +0100283 dst.y = src0.y \times src1.y + (1 - src0.y) \times src2.y
Corbin Simpsone8ed3b92009-12-21 19:12:55 -0800284
Michal Krolb3567fc2010-01-04 12:59:17 +0100285 dst.z = src0.z \times src1.z + (1 - src0.z) \times src2.z
Corbin Simpsone8ed3b92009-12-21 19:12:55 -0800286
Michal Krolb3567fc2010-01-04 12:59:17 +0100287 dst.w = src0.w \times src1.w + (1 - src0.w) \times src2.w
Keith Whitwella62aaa72009-12-21 23:25:15 +0000288
289
Corbin Simpson85805222010-02-02 16:20:12 -0800290.. opcode:: CND - Condition
Corbin Simpsone8ed3b92009-12-21 19:12:55 -0800291
292.. math::
Keith Whitwella62aaa72009-12-21 23:25:15 +0000293
294 dst.x = (src2.x > 0.5) ? src0.x : src1.x
Corbin Simpsone8ed3b92009-12-21 19:12:55 -0800295
Keith Whitwella62aaa72009-12-21 23:25:15 +0000296 dst.y = (src2.y > 0.5) ? src0.y : src1.y
Corbin Simpsone8ed3b92009-12-21 19:12:55 -0800297
Keith Whitwella62aaa72009-12-21 23:25:15 +0000298 dst.z = (src2.z > 0.5) ? src0.z : src1.z
Corbin Simpsone8ed3b92009-12-21 19:12:55 -0800299
Keith Whitwella62aaa72009-12-21 23:25:15 +0000300 dst.w = (src2.w > 0.5) ? src0.w : src1.w
301
302
Corbin Simpson85805222010-02-02 16:20:12 -0800303.. opcode:: DP2A - 2-component Dot Product And Add
Corbin Simpsone8ed3b92009-12-21 19:12:55 -0800304
305.. math::
Keith Whitwella62aaa72009-12-21 23:25:15 +0000306
Corbin Simpsonecb2f2a2009-12-21 20:07:10 -0800307 dst.x = src0.x \times src1.x + src0.y \times src1.y + src2.x
Corbin Simpsone8ed3b92009-12-21 19:12:55 -0800308
Corbin Simpsonecb2f2a2009-12-21 20:07:10 -0800309 dst.y = src0.x \times src1.x + src0.y \times src1.y + src2.x
Corbin Simpsone8ed3b92009-12-21 19:12:55 -0800310
Corbin Simpsonecb2f2a2009-12-21 20:07:10 -0800311 dst.z = src0.x \times src1.x + src0.y \times src1.y + src2.x
Corbin Simpsone8ed3b92009-12-21 19:12:55 -0800312
Corbin Simpsonecb2f2a2009-12-21 20:07:10 -0800313 dst.w = src0.x \times src1.x + src0.y \times src1.y + src2.x
Keith Whitwella62aaa72009-12-21 23:25:15 +0000314
315
José Fonsecad9c6ebb2010-06-01 16:25:05 +0100316.. opcode:: FRC - Fraction
Corbin Simpsone8ed3b92009-12-21 19:12:55 -0800317
318.. math::
Keith Whitwella62aaa72009-12-21 23:25:15 +0000319
Corbin Simpsond92a6852009-12-21 19:30:29 -0800320 dst.x = src.x - \lfloor src.x\rfloor
Corbin Simpsone8ed3b92009-12-21 19:12:55 -0800321
Corbin Simpsond92a6852009-12-21 19:30:29 -0800322 dst.y = src.y - \lfloor src.y\rfloor
Corbin Simpsone8ed3b92009-12-21 19:12:55 -0800323
Corbin Simpsond92a6852009-12-21 19:30:29 -0800324 dst.z = src.z - \lfloor src.z\rfloor
Corbin Simpsone8ed3b92009-12-21 19:12:55 -0800325
Corbin Simpsond92a6852009-12-21 19:30:29 -0800326 dst.w = src.w - \lfloor src.w\rfloor
Keith Whitwella62aaa72009-12-21 23:25:15 +0000327
328
Corbin Simpson85805222010-02-02 16:20:12 -0800329.. opcode:: CLAMP - Clamp
Corbin Simpsone8ed3b92009-12-21 19:12:55 -0800330
331.. math::
Keith Whitwella62aaa72009-12-21 23:25:15 +0000332
333 dst.x = clamp(src0.x, src1.x, src2.x)
Corbin Simpsonda65ac62009-12-21 20:32:46 -0800334
Keith Whitwella62aaa72009-12-21 23:25:15 +0000335 dst.y = clamp(src0.y, src1.y, src2.y)
Corbin Simpsonda65ac62009-12-21 20:32:46 -0800336
Keith Whitwella62aaa72009-12-21 23:25:15 +0000337 dst.z = clamp(src0.z, src1.z, src2.z)
Corbin Simpsonda65ac62009-12-21 20:32:46 -0800338
Keith Whitwella62aaa72009-12-21 23:25:15 +0000339 dst.w = clamp(src0.w, src1.w, src2.w)
340
341
Corbin Simpson85805222010-02-02 16:20:12 -0800342.. opcode:: FLR - Floor
Corbin Simpsond92a6852009-12-21 19:30:29 -0800343
Corbin Simpson17c2a442010-02-02 17:02:28 -0800344This is identical to :opcode:`ARL`.
Keith Whitwella62aaa72009-12-21 23:25:15 +0000345
Corbin Simpsone8ed3b92009-12-21 19:12:55 -0800346.. math::
347
Corbin Simpsond92a6852009-12-21 19:30:29 -0800348 dst.x = \lfloor src.x\rfloor
349
350 dst.y = \lfloor src.y\rfloor
351
352 dst.z = \lfloor src.z\rfloor
353
354 dst.w = \lfloor src.w\rfloor
Keith Whitwella62aaa72009-12-21 23:25:15 +0000355
356
Corbin Simpson85805222010-02-02 16:20:12 -0800357.. opcode:: ROUND - Round
Keith Whitwella62aaa72009-12-21 23:25:15 +0000358
Corbin Simpsone8ed3b92009-12-21 19:12:55 -0800359.. math::
360
Keith Whitwella62aaa72009-12-21 23:25:15 +0000361 dst.x = round(src.x)
Corbin Simpsonda65ac62009-12-21 20:32:46 -0800362
Keith Whitwella62aaa72009-12-21 23:25:15 +0000363 dst.y = round(src.y)
Corbin Simpsonda65ac62009-12-21 20:32:46 -0800364
Keith Whitwella62aaa72009-12-21 23:25:15 +0000365 dst.z = round(src.z)
Corbin Simpsonda65ac62009-12-21 20:32:46 -0800366
Keith Whitwella62aaa72009-12-21 23:25:15 +0000367 dst.w = round(src.w)
368
369
Corbin Simpson85805222010-02-02 16:20:12 -0800370.. opcode:: EX2 - Exponential Base 2
Keith Whitwella62aaa72009-12-21 23:25:15 +0000371
Corbin Simpson17c2a442010-02-02 17:02:28 -0800372This instruction replicates its result.
373
Corbin Simpsone8ed3b92009-12-21 19:12:55 -0800374.. math::
375
Corbin Simpson17c2a442010-02-02 17:02:28 -0800376 dst = 2^{src.x}
Keith Whitwella62aaa72009-12-21 23:25:15 +0000377
378
Corbin Simpson85805222010-02-02 16:20:12 -0800379.. opcode:: LG2 - Logarithm Base 2
Keith Whitwella62aaa72009-12-21 23:25:15 +0000380
Corbin Simpson17c2a442010-02-02 17:02:28 -0800381This instruction replicates its result.
382
Corbin Simpsone8ed3b92009-12-21 19:12:55 -0800383.. math::
384
Corbin Simpson17c2a442010-02-02 17:02:28 -0800385 dst = \log_2{src.x}
Keith Whitwella62aaa72009-12-21 23:25:15 +0000386
387
Corbin Simpson85805222010-02-02 16:20:12 -0800388.. opcode:: POW - Power
Keith Whitwella62aaa72009-12-21 23:25:15 +0000389
Corbin Simpson17c2a442010-02-02 17:02:28 -0800390This instruction replicates its result.
391
Corbin Simpsone8ed3b92009-12-21 19:12:55 -0800392.. math::
393
Corbin Simpson17c2a442010-02-02 17:02:28 -0800394 dst = src0.x^{src1.x}
Keith Whitwella62aaa72009-12-21 23:25:15 +0000395
Corbin Simpson85805222010-02-02 16:20:12 -0800396.. opcode:: XPD - Cross Product
Keith Whitwella62aaa72009-12-21 23:25:15 +0000397
Corbin Simpsone8ed3b92009-12-21 19:12:55 -0800398.. math::
399
Corbin Simpsonecb2f2a2009-12-21 20:07:10 -0800400 dst.x = src0.y \times src1.z - src1.y \times src0.z
Corbin Simpsonda65ac62009-12-21 20:32:46 -0800401
Corbin Simpsonecb2f2a2009-12-21 20:07:10 -0800402 dst.y = src0.z \times src1.x - src1.z \times src0.x
Corbin Simpsonda65ac62009-12-21 20:32:46 -0800403
Corbin Simpsonecb2f2a2009-12-21 20:07:10 -0800404 dst.z = src0.x \times src1.y - src1.x \times src0.y
Corbin Simpsonda65ac62009-12-21 20:32:46 -0800405
406 dst.w = 1
Keith Whitwella62aaa72009-12-21 23:25:15 +0000407
408
Corbin Simpson85805222010-02-02 16:20:12 -0800409.. opcode:: ABS - Absolute
Keith Whitwella62aaa72009-12-21 23:25:15 +0000410
Corbin Simpsone8ed3b92009-12-21 19:12:55 -0800411.. math::
412
Corbin Simpson14743ac2009-12-21 19:57:56 -0800413 dst.x = |src.x|
414
415 dst.y = |src.y|
416
417 dst.z = |src.z|
418
419 dst.w = |src.w|
Keith Whitwella62aaa72009-12-21 23:25:15 +0000420
421
Corbin Simpson85805222010-02-02 16:20:12 -0800422.. opcode:: RCC - Reciprocal Clamped
Corbin Simpsonda65ac62009-12-21 20:32:46 -0800423
Corbin Simpson17c2a442010-02-02 17:02:28 -0800424This instruction replicates its result.
425
Corbin Simpsonda65ac62009-12-21 20:32:46 -0800426XXX cleanup on aisle three
Keith Whitwella62aaa72009-12-21 23:25:15 +0000427
Corbin Simpsone8ed3b92009-12-21 19:12:55 -0800428.. math::
429
Corbin Simpson17c2a442010-02-02 17:02:28 -0800430 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 Whitwella62aaa72009-12-21 23:25:15 +0000431
432
Corbin Simpson85805222010-02-02 16:20:12 -0800433.. opcode:: DPH - Homogeneous Dot Product
Keith Whitwella62aaa72009-12-21 23:25:15 +0000434
Corbin Simpson17c2a442010-02-02 17:02:28 -0800435This instruction replicates its result.
436
Corbin Simpsone8ed3b92009-12-21 19:12:55 -0800437.. math::
438
Corbin Simpson17c2a442010-02-02 17:02:28 -0800439 dst = src0.x \times src1.x + src0.y \times src1.y + src0.z \times src1.z + src1.w
Keith Whitwella62aaa72009-12-21 23:25:15 +0000440
441
Corbin Simpson85805222010-02-02 16:20:12 -0800442.. opcode:: COS - Cosine
Keith Whitwella62aaa72009-12-21 23:25:15 +0000443
Corbin Simpson17c2a442010-02-02 17:02:28 -0800444This instruction replicates its result.
445
Corbin Simpsone8ed3b92009-12-21 19:12:55 -0800446.. math::
447
Corbin Simpson17c2a442010-02-02 17:02:28 -0800448 dst = \cos{src.x}
Keith Whitwella62aaa72009-12-21 23:25:15 +0000449
450
Corbin Simpson85805222010-02-02 16:20:12 -0800451.. opcode:: DDX - Derivative Relative To X
Keith Whitwella62aaa72009-12-21 23:25:15 +0000452
Corbin Simpsone8ed3b92009-12-21 19:12:55 -0800453.. math::
454
Keith Whitwella62aaa72009-12-21 23:25:15 +0000455 dst.x = partialx(src.x)
Corbin Simpsonda65ac62009-12-21 20:32:46 -0800456
Keith Whitwella62aaa72009-12-21 23:25:15 +0000457 dst.y = partialx(src.y)
Corbin Simpsonda65ac62009-12-21 20:32:46 -0800458
Keith Whitwella62aaa72009-12-21 23:25:15 +0000459 dst.z = partialx(src.z)
Corbin Simpsonda65ac62009-12-21 20:32:46 -0800460
Keith Whitwella62aaa72009-12-21 23:25:15 +0000461 dst.w = partialx(src.w)
462
463
Corbin Simpson85805222010-02-02 16:20:12 -0800464.. opcode:: DDY - Derivative Relative To Y
Keith Whitwella62aaa72009-12-21 23:25:15 +0000465
Corbin Simpsone8ed3b92009-12-21 19:12:55 -0800466.. math::
467
Keith Whitwella62aaa72009-12-21 23:25:15 +0000468 dst.x = partialy(src.x)
Corbin Simpsonda65ac62009-12-21 20:32:46 -0800469
Keith Whitwella62aaa72009-12-21 23:25:15 +0000470 dst.y = partialy(src.y)
Corbin Simpsonda65ac62009-12-21 20:32:46 -0800471
Keith Whitwella62aaa72009-12-21 23:25:15 +0000472 dst.z = partialy(src.z)
Corbin Simpsonda65ac62009-12-21 20:32:46 -0800473
Keith Whitwella62aaa72009-12-21 23:25:15 +0000474 dst.w = partialy(src.w)
475
476
Corbin Simpson85805222010-02-02 16:20:12 -0800477.. opcode:: KILP - Predicated Discard
Corbin Simpsone8ed3b92009-12-21 19:12:55 -0800478
Keith Whitwella62aaa72009-12-21 23:25:15 +0000479 discard
480
481
Corbin Simpson85805222010-02-02 16:20:12 -0800482.. opcode:: PK2H - Pack Two 16-bit Floats
Keith Whitwella62aaa72009-12-21 23:25:15 +0000483
484 TBD
485
486
Corbin Simpson85805222010-02-02 16:20:12 -0800487.. opcode:: PK2US - Pack Two Unsigned 16-bit Scalars
Keith Whitwella62aaa72009-12-21 23:25:15 +0000488
489 TBD
490
491
Corbin Simpson85805222010-02-02 16:20:12 -0800492.. opcode:: PK4B - Pack Four Signed 8-bit Scalars
Keith Whitwella62aaa72009-12-21 23:25:15 +0000493
494 TBD
495
496
Corbin Simpson85805222010-02-02 16:20:12 -0800497.. opcode:: PK4UB - Pack Four Unsigned 8-bit Scalars
Keith Whitwella62aaa72009-12-21 23:25:15 +0000498
499 TBD
500
501
Corbin Simpson85805222010-02-02 16:20:12 -0800502.. opcode:: RFL - Reflection Vector
Keith Whitwella62aaa72009-12-21 23:25:15 +0000503
Corbin Simpsone8ed3b92009-12-21 19:12:55 -0800504.. math::
505
Corbin Simpsonda65ac62009-12-21 20:32:46 -0800506 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
507
508 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
509
510 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
511
512 dst.w = 1
Keith Whitwella62aaa72009-12-21 23:25:15 +0000513
Corbin Simpson17c2a442010-02-02 17:02:28 -0800514.. note::
515
516 Considered for removal.
Keith Whitwell14eacb02009-12-21 23:38:29 +0000517
Keith Whitwella62aaa72009-12-21 23:25:15 +0000518
Corbin Simpson85805222010-02-02 16:20:12 -0800519.. opcode:: SEQ - Set On Equal
Keith Whitwella62aaa72009-12-21 23:25:15 +0000520
Corbin Simpsone8ed3b92009-12-21 19:12:55 -0800521.. math::
522
Corbin Simpsonda65ac62009-12-21 20:32:46 -0800523 dst.x = (src0.x == src1.x) ? 1 : 0
Corbin Simpson04771912010-01-18 17:31:56 -0800524
Corbin Simpsonda65ac62009-12-21 20:32:46 -0800525 dst.y = (src0.y == src1.y) ? 1 : 0
Corbin Simpson04771912010-01-18 17:31:56 -0800526
Corbin Simpsonda65ac62009-12-21 20:32:46 -0800527 dst.z = (src0.z == src1.z) ? 1 : 0
Corbin Simpson04771912010-01-18 17:31:56 -0800528
Corbin Simpsonda65ac62009-12-21 20:32:46 -0800529 dst.w = (src0.w == src1.w) ? 1 : 0
Keith Whitwella62aaa72009-12-21 23:25:15 +0000530
531
Corbin Simpson85805222010-02-02 16:20:12 -0800532.. opcode:: SFL - Set On False
Keith Whitwella62aaa72009-12-21 23:25:15 +0000533
Corbin Simpson17c2a442010-02-02 17:02:28 -0800534This instruction replicates its result.
535
Corbin Simpsone8ed3b92009-12-21 19:12:55 -0800536.. math::
537
Corbin Simpson17c2a442010-02-02 17:02:28 -0800538 dst = 0
Corbin Simpson04771912010-01-18 17:31:56 -0800539
Corbin Simpson17c2a442010-02-02 17:02:28 -0800540.. note::
Corbin Simpson04771912010-01-18 17:31:56 -0800541
Corbin Simpson17c2a442010-02-02 17:02:28 -0800542 Considered for removal.
Corbin Simpson04771912010-01-18 17:31:56 -0800543
Keith Whitwella62aaa72009-12-21 23:25:15 +0000544
Corbin Simpson85805222010-02-02 16:20:12 -0800545.. opcode:: SGT - Set On Greater Than
Keith Whitwella62aaa72009-12-21 23:25:15 +0000546
Corbin Simpsone8ed3b92009-12-21 19:12:55 -0800547.. math::
548
Corbin Simpsonda65ac62009-12-21 20:32:46 -0800549 dst.x = (src0.x > src1.x) ? 1 : 0
Corbin Simpson04771912010-01-18 17:31:56 -0800550
Corbin Simpsonda65ac62009-12-21 20:32:46 -0800551 dst.y = (src0.y > src1.y) ? 1 : 0
Corbin Simpson04771912010-01-18 17:31:56 -0800552
Corbin Simpsonda65ac62009-12-21 20:32:46 -0800553 dst.z = (src0.z > src1.z) ? 1 : 0
Corbin Simpson04771912010-01-18 17:31:56 -0800554
Corbin Simpsonda65ac62009-12-21 20:32:46 -0800555 dst.w = (src0.w > src1.w) ? 1 : 0
Keith Whitwella62aaa72009-12-21 23:25:15 +0000556
557
Corbin Simpson85805222010-02-02 16:20:12 -0800558.. opcode:: SIN - Sine
Keith Whitwella62aaa72009-12-21 23:25:15 +0000559
Corbin Simpson17c2a442010-02-02 17:02:28 -0800560This instruction replicates its result.
561
Corbin Simpsone8ed3b92009-12-21 19:12:55 -0800562.. math::
563
Corbin Simpson17c2a442010-02-02 17:02:28 -0800564 dst = \sin{src.x}
Keith Whitwella62aaa72009-12-21 23:25:15 +0000565
566
Corbin Simpson85805222010-02-02 16:20:12 -0800567.. opcode:: SLE - Set On Less Equal Than
Keith Whitwella62aaa72009-12-21 23:25:15 +0000568
Corbin Simpsone8ed3b92009-12-21 19:12:55 -0800569.. math::
570
Corbin Simpsonda65ac62009-12-21 20:32:46 -0800571 dst.x = (src0.x <= src1.x) ? 1 : 0
Corbin Simpson04771912010-01-18 17:31:56 -0800572
Corbin Simpsonda65ac62009-12-21 20:32:46 -0800573 dst.y = (src0.y <= src1.y) ? 1 : 0
Corbin Simpson04771912010-01-18 17:31:56 -0800574
Corbin Simpsonda65ac62009-12-21 20:32:46 -0800575 dst.z = (src0.z <= src1.z) ? 1 : 0
Corbin Simpson04771912010-01-18 17:31:56 -0800576
Corbin Simpsonda65ac62009-12-21 20:32:46 -0800577 dst.w = (src0.w <= src1.w) ? 1 : 0
Keith Whitwella62aaa72009-12-21 23:25:15 +0000578
579
Corbin Simpson85805222010-02-02 16:20:12 -0800580.. opcode:: SNE - Set On Not Equal
Keith Whitwella62aaa72009-12-21 23:25:15 +0000581
Corbin Simpsone8ed3b92009-12-21 19:12:55 -0800582.. math::
583
Corbin Simpsonda65ac62009-12-21 20:32:46 -0800584 dst.x = (src0.x != src1.x) ? 1 : 0
Corbin Simpson04771912010-01-18 17:31:56 -0800585
Corbin Simpsonda65ac62009-12-21 20:32:46 -0800586 dst.y = (src0.y != src1.y) ? 1 : 0
Corbin Simpson04771912010-01-18 17:31:56 -0800587
Corbin Simpsonda65ac62009-12-21 20:32:46 -0800588 dst.z = (src0.z != src1.z) ? 1 : 0
Corbin Simpson04771912010-01-18 17:31:56 -0800589
Corbin Simpsonda65ac62009-12-21 20:32:46 -0800590 dst.w = (src0.w != src1.w) ? 1 : 0
Keith Whitwella62aaa72009-12-21 23:25:15 +0000591
592
Corbin Simpson85805222010-02-02 16:20:12 -0800593.. opcode:: STR - Set On True
Keith Whitwella62aaa72009-12-21 23:25:15 +0000594
Corbin Simpson17c2a442010-02-02 17:02:28 -0800595This instruction replicates its result.
596
Corbin Simpsone8ed3b92009-12-21 19:12:55 -0800597.. math::
598
Corbin Simpson17c2a442010-02-02 17:02:28 -0800599 dst = 1
Keith Whitwella62aaa72009-12-21 23:25:15 +0000600
601
Corbin Simpson85805222010-02-02 16:20:12 -0800602.. opcode:: TEX - Texture Lookup
Keith Whitwella62aaa72009-12-21 23:25:15 +0000603
Brian Paul2a77c3c2010-12-14 12:45:36 -0700604.. math::
605
606 coord = src0
607
608 bias = 0.0
609
610 dst = texture_sample(unit, coord, bias)
Keith Whitwella62aaa72009-12-21 23:25:15 +0000611
Dave Airlie35db3262011-12-19 16:40:05 +0000612 for array textures src0.y contains the slice for 1D,
613 and src0.z contain the slice for 2D.
614 for shadow textures with no arrays, src0.z contains
615 the reference value.
616 for shadow textures with arrays, src0.z contains
617 the reference value for 1D arrays, and src0.w contains
618 the reference value for 2D arrays.
619 There is no way to pass a bias in the .w value for
620 shadow arrays, and GLSL doesn't allow this.
621 GLSL does allow cube shadows maps to take a bias value,
622 and we have to determine how this will look in TGSI.
Keith Whitwella62aaa72009-12-21 23:25:15 +0000623
Corbin Simpson85805222010-02-02 16:20:12 -0800624.. opcode:: TXD - Texture Lookup with Derivatives
Keith Whitwella62aaa72009-12-21 23:25:15 +0000625
Brian Paul2a77c3c2010-12-14 12:45:36 -0700626.. math::
627
628 coord = src0
629
630 ddx = src1
631
632 ddy = src2
633
634 bias = 0.0
635
636 dst = texture_sample_deriv(unit, coord, bias, ddx, ddy)
Keith Whitwella62aaa72009-12-21 23:25:15 +0000637
638
Corbin Simpson85805222010-02-02 16:20:12 -0800639.. opcode:: TXP - Projective Texture Lookup
Keith Whitwella62aaa72009-12-21 23:25:15 +0000640
Brian Paul2a77c3c2010-12-14 12:45:36 -0700641.. math::
642
643 coord.x = src0.x / src.w
644
645 coord.y = src0.y / src.w
646
647 coord.z = src0.z / src.w
648
649 coord.w = src0.w
650
651 bias = 0.0
652
653 dst = texture_sample(unit, coord, bias)
Keith Whitwella62aaa72009-12-21 23:25:15 +0000654
655
Corbin Simpson85805222010-02-02 16:20:12 -0800656.. opcode:: UP2H - Unpack Two 16-Bit Floats
Keith Whitwella62aaa72009-12-21 23:25:15 +0000657
658 TBD
659
Corbin Simpson17c2a442010-02-02 17:02:28 -0800660.. note::
661
662 Considered for removal.
Keith Whitwella62aaa72009-12-21 23:25:15 +0000663
Corbin Simpson85805222010-02-02 16:20:12 -0800664.. opcode:: UP2US - Unpack Two Unsigned 16-Bit Scalars
Keith Whitwella62aaa72009-12-21 23:25:15 +0000665
666 TBD
667
Corbin Simpson17c2a442010-02-02 17:02:28 -0800668.. note::
669
670 Considered for removal.
Keith Whitwella62aaa72009-12-21 23:25:15 +0000671
Corbin Simpson85805222010-02-02 16:20:12 -0800672.. opcode:: UP4B - Unpack Four Signed 8-Bit Values
Keith Whitwella62aaa72009-12-21 23:25:15 +0000673
674 TBD
675
Corbin Simpson17c2a442010-02-02 17:02:28 -0800676.. note::
677
678 Considered for removal.
Keith Whitwella62aaa72009-12-21 23:25:15 +0000679
Corbin Simpson85805222010-02-02 16:20:12 -0800680.. opcode:: UP4UB - Unpack Four Unsigned 8-Bit Scalars
Keith Whitwella62aaa72009-12-21 23:25:15 +0000681
682 TBD
683
Corbin Simpson17c2a442010-02-02 17:02:28 -0800684.. note::
685
686 Considered for removal.
Keith Whitwella62aaa72009-12-21 23:25:15 +0000687
Corbin Simpson85805222010-02-02 16:20:12 -0800688.. opcode:: X2D - 2D Coordinate Transformation
Keith Whitwella62aaa72009-12-21 23:25:15 +0000689
Corbin Simpsone8ed3b92009-12-21 19:12:55 -0800690.. math::
691
Corbin Simpsonecb2f2a2009-12-21 20:07:10 -0800692 dst.x = src0.x + src1.x \times src2.x + src1.y \times src2.y
Corbin Simpson04771912010-01-18 17:31:56 -0800693
Corbin Simpsonecb2f2a2009-12-21 20:07:10 -0800694 dst.y = src0.y + src1.x \times src2.z + src1.y \times src2.w
Corbin Simpson04771912010-01-18 17:31:56 -0800695
Corbin Simpsonecb2f2a2009-12-21 20:07:10 -0800696 dst.z = src0.x + src1.x \times src2.x + src1.y \times src2.y
Corbin Simpson04771912010-01-18 17:31:56 -0800697
Corbin Simpsonecb2f2a2009-12-21 20:07:10 -0800698 dst.w = src0.y + src1.x \times src2.z + src1.y \times src2.w
Keith Whitwella62aaa72009-12-21 23:25:15 +0000699
Corbin Simpson17c2a442010-02-02 17:02:28 -0800700.. note::
701
702 Considered for removal.
Keith Whitwell14eacb02009-12-21 23:38:29 +0000703
Keith Whitwella62aaa72009-12-21 23:25:15 +0000704
Corbin Simpson85805222010-02-02 16:20:12 -0800705.. opcode:: ARA - Address Register Add
Keith Whitwella62aaa72009-12-21 23:25:15 +0000706
707 TBD
708
Corbin Simpson17c2a442010-02-02 17:02:28 -0800709.. note::
710
711 Considered for removal.
Keith Whitwella62aaa72009-12-21 23:25:15 +0000712
Corbin Simpson85805222010-02-02 16:20:12 -0800713.. opcode:: ARR - Address Register Load With Round
Keith Whitwella62aaa72009-12-21 23:25:15 +0000714
Corbin Simpsone8ed3b92009-12-21 19:12:55 -0800715.. math::
716
Keith Whitwella62aaa72009-12-21 23:25:15 +0000717 dst.x = round(src.x)
Corbin Simpsonda65ac62009-12-21 20:32:46 -0800718
Keith Whitwella62aaa72009-12-21 23:25:15 +0000719 dst.y = round(src.y)
Corbin Simpsonda65ac62009-12-21 20:32:46 -0800720
Keith Whitwella62aaa72009-12-21 23:25:15 +0000721 dst.z = round(src.z)
Corbin Simpsonda65ac62009-12-21 20:32:46 -0800722
Keith Whitwella62aaa72009-12-21 23:25:15 +0000723 dst.w = round(src.w)
724
725
Corbin Simpson85805222010-02-02 16:20:12 -0800726.. opcode:: BRA - Branch
Keith Whitwella62aaa72009-12-21 23:25:15 +0000727
728 pc = target
729
Corbin Simpson17c2a442010-02-02 17:02:28 -0800730.. note::
731
732 Considered for removal.
Keith Whitwella62aaa72009-12-21 23:25:15 +0000733
Corbin Simpson85805222010-02-02 16:20:12 -0800734.. opcode:: CAL - Subroutine Call
Keith Whitwella62aaa72009-12-21 23:25:15 +0000735
736 push(pc)
737 pc = target
738
739
Corbin Simpson85805222010-02-02 16:20:12 -0800740.. opcode:: RET - Subroutine Call Return
Keith Whitwella62aaa72009-12-21 23:25:15 +0000741
742 pc = pop()
743
744
Corbin Simpson85805222010-02-02 16:20:12 -0800745.. opcode:: SSG - Set Sign
Keith Whitwella62aaa72009-12-21 23:25:15 +0000746
Corbin Simpsone8ed3b92009-12-21 19:12:55 -0800747.. math::
748
Corbin Simpsonda65ac62009-12-21 20:32:46 -0800749 dst.x = (src.x > 0) ? 1 : (src.x < 0) ? -1 : 0
750
751 dst.y = (src.y > 0) ? 1 : (src.y < 0) ? -1 : 0
752
753 dst.z = (src.z > 0) ? 1 : (src.z < 0) ? -1 : 0
754
755 dst.w = (src.w > 0) ? 1 : (src.w < 0) ? -1 : 0
Keith Whitwella62aaa72009-12-21 23:25:15 +0000756
757
Corbin Simpson85805222010-02-02 16:20:12 -0800758.. opcode:: CMP - Compare
Keith Whitwella62aaa72009-12-21 23:25:15 +0000759
Corbin Simpsone8ed3b92009-12-21 19:12:55 -0800760.. math::
761
Corbin Simpsonda65ac62009-12-21 20:32:46 -0800762 dst.x = (src0.x < 0) ? src1.x : src2.x
763
764 dst.y = (src0.y < 0) ? src1.y : src2.y
765
766 dst.z = (src0.z < 0) ? src1.z : src2.z
767
768 dst.w = (src0.w < 0) ? src1.w : src2.w
Keith Whitwella62aaa72009-12-21 23:25:15 +0000769
770
Corbin Simpson85805222010-02-02 16:20:12 -0800771.. opcode:: KIL - Conditional Discard
Keith Whitwella62aaa72009-12-21 23:25:15 +0000772
Corbin Simpsone8ed3b92009-12-21 19:12:55 -0800773.. math::
774
Corbin Simpsonda65ac62009-12-21 20:32:46 -0800775 if (src.x < 0 || src.y < 0 || src.z < 0 || src.w < 0)
Keith Whitwella62aaa72009-12-21 23:25:15 +0000776 discard
777 endif
778
779
Corbin Simpson85805222010-02-02 16:20:12 -0800780.. opcode:: SCS - Sine Cosine
Keith Whitwella62aaa72009-12-21 23:25:15 +0000781
Corbin Simpsone8ed3b92009-12-21 19:12:55 -0800782.. math::
783
Corbin Simpsond92a6852009-12-21 19:30:29 -0800784 dst.x = \cos{src.x}
785
786 dst.y = \sin{src.x}
787
Corbin Simpsonda65ac62009-12-21 20:32:46 -0800788 dst.z = 0
Corbin Simpsond92a6852009-12-21 19:30:29 -0800789
Tilman Sauerbeckd3231182010-09-19 09:03:11 +0200790 dst.w = 1
Keith Whitwella62aaa72009-12-21 23:25:15 +0000791
792
Corbin Simpson85805222010-02-02 16:20:12 -0800793.. opcode:: TXB - Texture Lookup With Bias
Keith Whitwella62aaa72009-12-21 23:25:15 +0000794
Brian Paul2a77c3c2010-12-14 12:45:36 -0700795.. math::
796
797 coord.x = src.x
798
799 coord.y = src.y
800
801 coord.z = src.z
802
803 coord.w = 1.0
804
805 bias = src.z
806
807 dst = texture_sample(unit, coord, bias)
Keith Whitwella62aaa72009-12-21 23:25:15 +0000808
809
Corbin Simpson85805222010-02-02 16:20:12 -0800810.. opcode:: NRM - 3-component Vector Normalise
Keith Whitwella62aaa72009-12-21 23:25:15 +0000811
Corbin Simpsone8ed3b92009-12-21 19:12:55 -0800812.. math::
813
Corbin Simpsonecb2f2a2009-12-21 20:07:10 -0800814 dst.x = src.x / (src.x \times src.x + src.y \times src.y + src.z \times src.z)
Corbin Simpsonda65ac62009-12-21 20:32:46 -0800815
Corbin Simpsonecb2f2a2009-12-21 20:07:10 -0800816 dst.y = src.y / (src.x \times src.x + src.y \times src.y + src.z \times src.z)
Corbin Simpsonda65ac62009-12-21 20:32:46 -0800817
Corbin Simpsonecb2f2a2009-12-21 20:07:10 -0800818 dst.z = src.z / (src.x \times src.x + src.y \times src.y + src.z \times src.z)
Corbin Simpsonda65ac62009-12-21 20:32:46 -0800819
820 dst.w = 1
Keith Whitwella62aaa72009-12-21 23:25:15 +0000821
822
Corbin Simpson85805222010-02-02 16:20:12 -0800823.. opcode:: DIV - Divide
Keith Whitwella62aaa72009-12-21 23:25:15 +0000824
Corbin Simpsone8ed3b92009-12-21 19:12:55 -0800825.. math::
826
Corbin Simpsonda65ac62009-12-21 20:32:46 -0800827 dst.x = \frac{src0.x}{src1.x}
828
829 dst.y = \frac{src0.y}{src1.y}
830
831 dst.z = \frac{src0.z}{src1.z}
832
833 dst.w = \frac{src0.w}{src1.w}
Keith Whitwella62aaa72009-12-21 23:25:15 +0000834
835
Corbin Simpson85805222010-02-02 16:20:12 -0800836.. opcode:: DP2 - 2-component Dot Product
Keith Whitwella62aaa72009-12-21 23:25:15 +0000837
Corbin Simpson17c2a442010-02-02 17:02:28 -0800838This instruction replicates its result.
839
Corbin Simpsone8ed3b92009-12-21 19:12:55 -0800840.. math::
841
Corbin Simpson17c2a442010-02-02 17:02:28 -0800842 dst = src0.x \times src1.x + src0.y \times src1.y
Keith Whitwella62aaa72009-12-21 23:25:15 +0000843
844
Brian Paul2a77c3c2010-12-14 12:45:36 -0700845.. opcode:: TXL - Texture Lookup With explicit LOD
Keith Whitwella62aaa72009-12-21 23:25:15 +0000846
Brian Paul2a77c3c2010-12-14 12:45:36 -0700847.. math::
848
849 coord.x = src0.x
850
851 coord.y = src0.y
852
853 coord.z = src0.z
854
855 coord.w = 1.0
856
857 lod = src0.w
858
859 dst = texture_sample(unit, coord, lod)
Keith Whitwella62aaa72009-12-21 23:25:15 +0000860
861
Corbin Simpson85805222010-02-02 16:20:12 -0800862.. opcode:: BRK - Break
Keith Whitwella62aaa72009-12-21 23:25:15 +0000863
Roland Scheidegger79457912013-04-20 00:34:20 +0200864 Unconditionally moves the point of execution to the instruction after the
865 next endloop or endswitch. The instruction must appear within a loop/endloop
866 or switch/endswitch.
867
868
869.. opcode:: BREAKC - Break Conditional
870
871 Conditionally moves the point of execution to the instruction after the
872 next endloop or endswitch. The instruction must appear within a loop/endloop
873 or switch/endswitch.
874 Condition evaluates to true if src0.x != 0 where src0.x is interpreted
875 as an integer register.
Keith Whitwella62aaa72009-12-21 23:25:15 +0000876
877
José Fonseca50b3fc62013-04-17 10:47:03 +0100878.. opcode:: IF - Float If
Keith Whitwella62aaa72009-12-21 23:25:15 +0000879
José Fonseca50b3fc62013-04-17 10:47:03 +0100880 Start an IF ... ELSE .. ENDIF block. Condition evaluates to true if
881
882 src0.x != 0.0
883
884 where src0.x is interpreted as a floating point register.
885
886
887.. opcode:: UIF - Bitwise If
888
889 Start an UIF ... ELSE .. ENDIF block. Condition evaluates to true if
890
891 src0.x != 0
892
893 where src0.x is interpreted as an integer register.
Keith Whitwella62aaa72009-12-21 23:25:15 +0000894
895
Corbin Simpson85805222010-02-02 16:20:12 -0800896.. opcode:: ELSE - Else
Keith Whitwella62aaa72009-12-21 23:25:15 +0000897
José Fonseca50b3fc62013-04-17 10:47:03 +0100898 Starts an else block, after an IF or UIF statement.
Keith Whitwella62aaa72009-12-21 23:25:15 +0000899
900
Corbin Simpson85805222010-02-02 16:20:12 -0800901.. opcode:: ENDIF - End If
Keith Whitwella62aaa72009-12-21 23:25:15 +0000902
José Fonseca50b3fc62013-04-17 10:47:03 +0100903 Ends an IF or UIF block.
Keith Whitwella62aaa72009-12-21 23:25:15 +0000904
905
Roland Scheidegger79457912013-04-20 00:34:20 +0200906.. opcode:: SWITCH - Switch
907
908 Starts a C-style switch expression. The switch consists of one or multiple
909 CASE statements, and at most one DEFAULT statement. Execution of a statement
910 ends when a BRK is hit, but just like in C falling through to other cases
911 without a break is allowed. Similarly, DEFAULT label is allowed anywhere not
912 just as last statement, and fallthrough is allowed into/from it.
913 CASE src arguments are evaluated at bit level against the SWITCH src argument.
914
915 Example:
916 SWITCH src[0].x
917 CASE src[0].x
918 (some instructions here)
919 (optional BRK here)
920 DEFAULT
921 (some instructions here)
922 (optional BRK here)
923 CASE src[0].x
924 (some instructions here)
925 (optional BRK here)
926 ENDSWITCH
927
928
929.. opcode:: CASE - Switch case
930
931 This represents a switch case label. The src arg must be an integer immediate.
932
933
934.. opcode:: DEFAULT - Switch default
935
936 This represents the default case in the switch, which is taken if no other
937 case matches.
938
939
940.. opcode:: ENDSWITCH - End of switch
941
942 Ends a switch expression.
943
944
Corbin Simpson85805222010-02-02 16:20:12 -0800945.. opcode:: PUSHA - Push Address Register On Stack
Keith Whitwella62aaa72009-12-21 23:25:15 +0000946
947 push(src.x)
948 push(src.y)
949 push(src.z)
950 push(src.w)
951
Corbin Simpson17c2a442010-02-02 17:02:28 -0800952.. note::
953
954 Considered for cleanup.
955
956.. note::
957
958 Considered for removal.
Keith Whitwella62aaa72009-12-21 23:25:15 +0000959
Corbin Simpson85805222010-02-02 16:20:12 -0800960.. opcode:: POPA - Pop Address Register From Stack
Keith Whitwella62aaa72009-12-21 23:25:15 +0000961
962 dst.w = pop()
963 dst.z = pop()
964 dst.y = pop()
965 dst.x = pop()
966
Corbin Simpson17c2a442010-02-02 17:02:28 -0800967.. note::
968
969 Considered for cleanup.
970
971.. note::
972
973 Considered for removal.
Keith Whitwell14eacb02009-12-21 23:38:29 +0000974
Keith Whitwella62aaa72009-12-21 23:25:15 +0000975
Corbin Simpson9d4cb6e2010-06-16 18:34:32 -0700976Compute ISA
Corbin Simpson5bcd26c2009-12-21 21:04:10 -0800977^^^^^^^^^^^^^^^^^^^^^^^^
Keith Whitwella62aaa72009-12-21 23:25:15 +0000978
Corbin Simpson9d4cb6e2010-06-16 18:34:32 -0700979These opcodes are primarily provided for special-use computational shaders.
Keith Whitwell14eacb02009-12-21 23:38:29 +0000980Support for these opcodes indicated by a special pipe capability bit (TBD).
Keith Whitwella62aaa72009-12-21 23:25:15 +0000981
Corbin Simpson9d4cb6e2010-06-16 18:34:32 -0700982XXX so let's discuss it, yeah?
983
Corbin Simpson85805222010-02-02 16:20:12 -0800984.. opcode:: CEIL - Ceiling
Keith Whitwella62aaa72009-12-21 23:25:15 +0000985
Corbin Simpsone8ed3b92009-12-21 19:12:55 -0800986.. math::
987
Corbin Simpson14743ac2009-12-21 19:57:56 -0800988 dst.x = \lceil src.x\rceil
989
990 dst.y = \lceil src.y\rceil
991
992 dst.z = \lceil src.z\rceil
993
994 dst.w = \lceil src.w\rceil
Keith Whitwella62aaa72009-12-21 23:25:15 +0000995
996
Corbin Simpson85805222010-02-02 16:20:12 -0800997.. opcode:: I2F - Integer To Float
Keith Whitwella62aaa72009-12-21 23:25:15 +0000998
Corbin Simpsone8ed3b92009-12-21 19:12:55 -0800999.. math::
1000
Keith Whitwella62aaa72009-12-21 23:25:15 +00001001 dst.x = (float) src.x
Corbin Simpsonda65ac62009-12-21 20:32:46 -08001002
Keith Whitwella62aaa72009-12-21 23:25:15 +00001003 dst.y = (float) src.y
Corbin Simpsonda65ac62009-12-21 20:32:46 -08001004
Keith Whitwella62aaa72009-12-21 23:25:15 +00001005 dst.z = (float) src.z
Corbin Simpsonda65ac62009-12-21 20:32:46 -08001006
Keith Whitwella62aaa72009-12-21 23:25:15 +00001007 dst.w = (float) src.w
1008
1009
Corbin Simpson85805222010-02-02 16:20:12 -08001010.. opcode:: NOT - Bitwise Not
Keith Whitwella62aaa72009-12-21 23:25:15 +00001011
Corbin Simpsone8ed3b92009-12-21 19:12:55 -08001012.. math::
1013
Keith Whitwella62aaa72009-12-21 23:25:15 +00001014 dst.x = ~src.x
Corbin Simpsonda65ac62009-12-21 20:32:46 -08001015
Keith Whitwella62aaa72009-12-21 23:25:15 +00001016 dst.y = ~src.y
Corbin Simpsonda65ac62009-12-21 20:32:46 -08001017
Keith Whitwella62aaa72009-12-21 23:25:15 +00001018 dst.z = ~src.z
Corbin Simpsonda65ac62009-12-21 20:32:46 -08001019
Keith Whitwella62aaa72009-12-21 23:25:15 +00001020 dst.w = ~src.w
1021
1022
Corbin Simpson85805222010-02-02 16:20:12 -08001023.. opcode:: TRUNC - Truncate
Corbin Simpsonda65ac62009-12-21 20:32:46 -08001024
Corbin Simpsone8ed3b92009-12-21 19:12:55 -08001025.. math::
1026
Keith Whitwella62aaa72009-12-21 23:25:15 +00001027 dst.x = trunc(src.x)
Corbin Simpsonda65ac62009-12-21 20:32:46 -08001028
Keith Whitwella62aaa72009-12-21 23:25:15 +00001029 dst.y = trunc(src.y)
Corbin Simpsonda65ac62009-12-21 20:32:46 -08001030
Keith Whitwella62aaa72009-12-21 23:25:15 +00001031 dst.z = trunc(src.z)
Corbin Simpsonda65ac62009-12-21 20:32:46 -08001032
Keith Whitwella62aaa72009-12-21 23:25:15 +00001033 dst.w = trunc(src.w)
1034
1035
Corbin Simpson85805222010-02-02 16:20:12 -08001036.. opcode:: SHL - Shift Left
Keith Whitwella62aaa72009-12-21 23:25:15 +00001037
Corbin Simpsone8ed3b92009-12-21 19:12:55 -08001038.. math::
1039
Keith Whitwella62aaa72009-12-21 23:25:15 +00001040 dst.x = src0.x << src1.x
Corbin Simpsonda65ac62009-12-21 20:32:46 -08001041
Keith Whitwella62aaa72009-12-21 23:25:15 +00001042 dst.y = src0.y << src1.x
Corbin Simpsonda65ac62009-12-21 20:32:46 -08001043
Keith Whitwella62aaa72009-12-21 23:25:15 +00001044 dst.z = src0.z << src1.x
Corbin Simpsonda65ac62009-12-21 20:32:46 -08001045
Keith Whitwella62aaa72009-12-21 23:25:15 +00001046 dst.w = src0.w << src1.x
1047
1048
Corbin Simpson85805222010-02-02 16:20:12 -08001049.. opcode:: SHR - Shift Right
Keith Whitwella62aaa72009-12-21 23:25:15 +00001050
Corbin Simpsone8ed3b92009-12-21 19:12:55 -08001051.. math::
1052
Keith Whitwella62aaa72009-12-21 23:25:15 +00001053 dst.x = src0.x >> src1.x
Corbin Simpsonda65ac62009-12-21 20:32:46 -08001054
Keith Whitwella62aaa72009-12-21 23:25:15 +00001055 dst.y = src0.y >> src1.x
Corbin Simpsonda65ac62009-12-21 20:32:46 -08001056
Keith Whitwella62aaa72009-12-21 23:25:15 +00001057 dst.z = src0.z >> src1.x
Corbin Simpsonda65ac62009-12-21 20:32:46 -08001058
Keith Whitwella62aaa72009-12-21 23:25:15 +00001059 dst.w = src0.w >> src1.x
1060
1061
Corbin Simpson85805222010-02-02 16:20:12 -08001062.. opcode:: AND - Bitwise And
Keith Whitwella62aaa72009-12-21 23:25:15 +00001063
Corbin Simpsone8ed3b92009-12-21 19:12:55 -08001064.. math::
1065
Keith Whitwella62aaa72009-12-21 23:25:15 +00001066 dst.x = src0.x & src1.x
Corbin Simpsonda65ac62009-12-21 20:32:46 -08001067
Keith Whitwella62aaa72009-12-21 23:25:15 +00001068 dst.y = src0.y & src1.y
Corbin Simpsonda65ac62009-12-21 20:32:46 -08001069
Keith Whitwella62aaa72009-12-21 23:25:15 +00001070 dst.z = src0.z & src1.z
Corbin Simpsonda65ac62009-12-21 20:32:46 -08001071
Keith Whitwella62aaa72009-12-21 23:25:15 +00001072 dst.w = src0.w & src1.w
1073
1074
Corbin Simpson85805222010-02-02 16:20:12 -08001075.. opcode:: OR - Bitwise Or
Keith Whitwella62aaa72009-12-21 23:25:15 +00001076
Corbin Simpsone8ed3b92009-12-21 19:12:55 -08001077.. math::
1078
Keith Whitwella62aaa72009-12-21 23:25:15 +00001079 dst.x = src0.x | src1.x
Corbin Simpsonda65ac62009-12-21 20:32:46 -08001080
Keith Whitwella62aaa72009-12-21 23:25:15 +00001081 dst.y = src0.y | src1.y
Corbin Simpsonda65ac62009-12-21 20:32:46 -08001082
Keith Whitwella62aaa72009-12-21 23:25:15 +00001083 dst.z = src0.z | src1.z
Corbin Simpsonda65ac62009-12-21 20:32:46 -08001084
Keith Whitwella62aaa72009-12-21 23:25:15 +00001085 dst.w = src0.w | src1.w
1086
1087
Corbin Simpson85805222010-02-02 16:20:12 -08001088.. opcode:: MOD - Modulus
Keith Whitwella62aaa72009-12-21 23:25:15 +00001089
Corbin Simpsone8ed3b92009-12-21 19:12:55 -08001090.. math::
1091
Corbin Simpsonda65ac62009-12-21 20:32:46 -08001092 dst.x = src0.x \bmod src1.x
1093
1094 dst.y = src0.y \bmod src1.y
1095
1096 dst.z = src0.z \bmod src1.z
1097
1098 dst.w = src0.w \bmod src1.w
Keith Whitwella62aaa72009-12-21 23:25:15 +00001099
1100
Corbin Simpson85805222010-02-02 16:20:12 -08001101.. opcode:: XOR - Bitwise Xor
Keith Whitwella62aaa72009-12-21 23:25:15 +00001102
Corbin Simpsone8ed3b92009-12-21 19:12:55 -08001103.. math::
1104
Corbin Simpsonf90733c2010-01-18 17:37:25 -08001105 dst.x = src0.x \oplus src1.x
Corbin Simpsonda65ac62009-12-21 20:32:46 -08001106
Corbin Simpsonf90733c2010-01-18 17:37:25 -08001107 dst.y = src0.y \oplus src1.y
Corbin Simpsonda65ac62009-12-21 20:32:46 -08001108
Corbin Simpsonf90733c2010-01-18 17:37:25 -08001109 dst.z = src0.z \oplus src1.z
Corbin Simpsonda65ac62009-12-21 20:32:46 -08001110
Corbin Simpsonf90733c2010-01-18 17:37:25 -08001111 dst.w = src0.w \oplus src1.w
Keith Whitwella62aaa72009-12-21 23:25:15 +00001112
1113
Bryan Cain324ac982011-09-10 12:31:54 -05001114.. opcode:: UCMP - Integer Conditional Move
1115
1116.. math::
1117
1118 dst.x = src0.x ? src1.x : src2.x
1119
1120 dst.y = src0.y ? src1.y : src2.y
1121
1122 dst.z = src0.z ? src1.z : src2.z
1123
1124 dst.w = src0.w ? src1.w : src2.w
1125
1126
1127.. opcode:: UARL - Integer Address Register Load
1128
1129 Moves the contents of the source register, assumed to be an integer, into the
1130 destination register, which is assumed to be an address (ADDR) register.
1131
1132
Bryan Cain4c0f1fb2012-01-07 10:43:04 -06001133.. opcode:: IABS - Integer Absolute Value
1134
1135.. math::
1136
1137 dst.x = |src.x|
1138
1139 dst.y = |src.y|
1140
1141 dst.z = |src.z|
1142
1143 dst.w = |src.w|
1144
1145
Corbin Simpson85805222010-02-02 16:20:12 -08001146.. opcode:: SAD - Sum Of Absolute Differences
Keith Whitwella62aaa72009-12-21 23:25:15 +00001147
Corbin Simpsone8ed3b92009-12-21 19:12:55 -08001148.. math::
1149
Corbin Simpson14743ac2009-12-21 19:57:56 -08001150 dst.x = |src0.x - src1.x| + src2.x
1151
1152 dst.y = |src0.y - src1.y| + src2.y
1153
1154 dst.z = |src0.z - src1.z| + src2.z
1155
1156 dst.w = |src0.w - src1.w| + src2.w
Keith Whitwella62aaa72009-12-21 23:25:15 +00001157
1158
Dave Airlie2083a272011-08-26 10:59:18 +01001159.. opcode:: TXF - Texel Fetch (as per NV_gpu_shader4), extract a single texel
1160 from a specified texture image. The source sampler may
1161 not be a CUBE or SHADOW.
1162 src 0 is a four-component signed integer vector used to
1163 identify the single texel accessed. 3 components + level.
1164 src 1 is a 3 component constant signed integer vector,
1165 with each component only have a range of
1166 -8..+8 (hw only seems to deal with this range, interface
1167 allows for up to unsigned int).
1168 TXF(uint_vec coord, int_vec offset).
Keith Whitwella62aaa72009-12-21 23:25:15 +00001169
1170
Dave Airlie6fb12bf2011-08-25 13:03:19 +01001171.. opcode:: TXQ - Texture Size Query (as per NV_gpu_program4)
1172 retrieve the dimensions of the texture
1173 depending on the target. For 1D (width), 2D/RECT/CUBE
1174 (width, height), 3D (width, height, depth),
1175 1D array (width, layers), 2D array (width, height, layers)
Keith Whitwella62aaa72009-12-21 23:25:15 +00001176
Dave Airlie6fb12bf2011-08-25 13:03:19 +01001177.. math::
1178
1179 lod = src0
1180
1181 dst.x = texture_width(unit, lod)
1182
1183 dst.y = texture_height(unit, lod)
1184
1185 dst.z = texture_depth(unit, lod)
Keith Whitwella62aaa72009-12-21 23:25:15 +00001186
1187
Corbin Simpson85805222010-02-02 16:20:12 -08001188.. opcode:: CONT - Continue
Keith Whitwella62aaa72009-12-21 23:25:15 +00001189
1190 TBD
1191
Corbin Simpson9d4cb6e2010-06-16 18:34:32 -07001192.. note::
Keith Whitwella62aaa72009-12-21 23:25:15 +00001193
Corbin Simpson9d4cb6e2010-06-16 18:34:32 -07001194 Support for CONT is determined by a special capability bit,
1195 ``TGSI_CONT_SUPPORTED``. See :ref:`Screen` for more information.
1196
1197
1198Geometry ISA
Corbin Simpson5bcd26c2009-12-21 21:04:10 -08001199^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Keith Whitwella62aaa72009-12-21 23:25:15 +00001200
Corbin Simpson9d4cb6e2010-06-16 18:34:32 -07001201These opcodes are only supported in geometry shaders; they have no meaning
1202in any other type of shader.
Keith Whitwella62aaa72009-12-21 23:25:15 +00001203
Corbin Simpson85805222010-02-02 16:20:12 -08001204.. opcode:: EMIT - Emit
Keith Whitwella62aaa72009-12-21 23:25:15 +00001205
1206 TBD
1207
1208
Corbin Simpson85805222010-02-02 16:20:12 -08001209.. opcode:: ENDPRIM - End Primitive
Keith Whitwella62aaa72009-12-21 23:25:15 +00001210
1211 TBD
1212
1213
Corbin Simpson9d4cb6e2010-06-16 18:34:32 -07001214GLSL ISA
Corbin Simpson5bcd26c2009-12-21 21:04:10 -08001215^^^^^^^^^^
Keith Whitwella62aaa72009-12-21 23:25:15 +00001216
Corbin Simpson9d4cb6e2010-06-16 18:34:32 -07001217These opcodes are part of :term:`GLSL`'s opcode set. Support for these
1218opcodes is determined by a special capability bit, ``GLSL``.
Keith Whitwella62aaa72009-12-21 23:25:15 +00001219
Corbin Simpson85805222010-02-02 16:20:12 -08001220.. opcode:: BGNLOOP - Begin a Loop
Keith Whitwella62aaa72009-12-21 23:25:15 +00001221
1222 TBD
1223
1224
Corbin Simpson85805222010-02-02 16:20:12 -08001225.. opcode:: BGNSUB - Begin Subroutine
Keith Whitwella62aaa72009-12-21 23:25:15 +00001226
1227 TBD
1228
1229
Corbin Simpson85805222010-02-02 16:20:12 -08001230.. opcode:: ENDLOOP - End a Loop
Keith Whitwella62aaa72009-12-21 23:25:15 +00001231
1232 TBD
1233
1234
Corbin Simpson85805222010-02-02 16:20:12 -08001235.. opcode:: ENDSUB - End Subroutine
Keith Whitwella62aaa72009-12-21 23:25:15 +00001236
1237 TBD
1238
1239
Corbin Simpson85805222010-02-02 16:20:12 -08001240.. opcode:: NOP - No Operation
Keith Whitwella62aaa72009-12-21 23:25:15 +00001241
Michal Krol8ab89d72010-01-04 13:23:41 +01001242 Do nothing.
1243
Keith Whitwella62aaa72009-12-21 23:25:15 +00001244
Corbin Simpson85805222010-02-02 16:20:12 -08001245.. opcode:: NRM4 - 4-component Vector Normalise
Keith Whitwella62aaa72009-12-21 23:25:15 +00001246
Corbin Simpson17c2a442010-02-02 17:02:28 -08001247This instruction replicates its result.
1248
Corbin Simpsone8ed3b92009-12-21 19:12:55 -08001249.. math::
1250
Corbin Simpson17c2a442010-02-02 17:02:28 -08001251 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 Whitwella62aaa72009-12-21 23:25:15 +00001252
1253
Corbin Simpsonda65ac62009-12-21 20:32:46 -08001254ps_2_x
Corbin Simpson5bcd26c2009-12-21 21:04:10 -08001255^^^^^^^^^^^^
Keith Whitwella62aaa72009-12-21 23:25:15 +00001256
Corbin Simpson9d4cb6e2010-06-16 18:34:32 -07001257XXX wait what
Keith Whitwella62aaa72009-12-21 23:25:15 +00001258
Corbin Simpson85805222010-02-02 16:20:12 -08001259.. opcode:: CALLNZ - Subroutine Call If Not Zero
Keith Whitwella62aaa72009-12-21 23:25:15 +00001260
1261 TBD
1262
Corbin Simpson62ca7b82010-02-02 16:36:34 -08001263.. _doubleopcodes:
1264
Corbin Simpson9d4cb6e2010-06-16 18:34:32 -07001265Double ISA
Igor Oliveiradb89bf42010-01-25 19:23:04 -04001266^^^^^^^^^^^^^^^
1267
Corbin Simpsondbc95e82010-06-16 18:34:51 -07001268The double-precision opcodes reinterpret four-component vectors into
1269two-component vectors with doubled precision in each component.
1270
1271Support for these opcodes is XXX undecided. :T
1272
1273.. opcode:: DADD - Add
Igor Oliveiradb89bf42010-01-25 19:23:04 -04001274
1275.. math::
1276
1277 dst.xy = src0.xy + src1.xy
1278
1279 dst.zw = src0.zw + src1.zw
1280
1281
Corbin Simpsondbc95e82010-06-16 18:34:51 -07001282.. opcode:: DDIV - Divide
Igor Oliveiradb89bf42010-01-25 19:23:04 -04001283
1284.. math::
1285
1286 dst.xy = src0.xy / src1.xy
1287
1288 dst.zw = src0.zw / src1.zw
1289
Corbin Simpsondbc95e82010-06-16 18:34:51 -07001290.. opcode:: DSEQ - Set on Equal
Igor Oliveiradb89bf42010-01-25 19:23:04 -04001291
1292.. math::
1293
1294 dst.xy = src0.xy == src1.xy ? 1.0F : 0.0F
1295
1296 dst.zw = src0.zw == src1.zw ? 1.0F : 0.0F
1297
Corbin Simpsondbc95e82010-06-16 18:34:51 -07001298.. opcode:: DSLT - Set on Less than
Igor Oliveiradb89bf42010-01-25 19:23:04 -04001299
1300.. math::
1301
1302 dst.xy = src0.xy < src1.xy ? 1.0F : 0.0F
1303
1304 dst.zw = src0.zw < src1.zw ? 1.0F : 0.0F
1305
Corbin Simpsondbc95e82010-06-16 18:34:51 -07001306.. opcode:: DFRAC - Fraction
Igor Oliveiradb89bf42010-01-25 19:23:04 -04001307
1308.. math::
1309
1310 dst.xy = src.xy - \lfloor src.xy\rfloor
1311
1312 dst.zw = src.zw - \lfloor src.zw\rfloor
1313
1314
Corbin Simpsondbc95e82010-06-16 18:34:51 -07001315.. opcode:: DFRACEXP - Convert Number to Fractional and Integral Components
Igor Oliveiradb89bf42010-01-25 19:23:04 -04001316
Corbin Simpsonf98c4622010-06-16 18:45:50 -07001317Like the ``frexp()`` routine in many math libraries, this opcode stores the
1318exponent of its source to ``dst0``, and the significand to ``dst1``, such that
1319:math:`dst1 \times 2^{dst0} = src` .
Igor Oliveiradb89bf42010-01-25 19:23:04 -04001320
1321.. math::
1322
Corbin Simpsonf98c4622010-06-16 18:45:50 -07001323 dst0.xy = exp(src.xy)
Igor Oliveiradb89bf42010-01-25 19:23:04 -04001324
Corbin Simpsonf98c4622010-06-16 18:45:50 -07001325 dst1.xy = frac(src.xy)
1326
1327 dst0.zw = exp(src.zw)
1328
1329 dst1.zw = frac(src.zw)
1330
1331.. opcode:: DLDEXP - Multiply Number by Integral Power of 2
1332
1333This opcode is the inverse of :opcode:`DFRACEXP`.
1334
1335.. math::
1336
1337 dst.xy = src0.xy \times 2^{src1.xy}
1338
1339 dst.zw = src0.zw \times 2^{src1.zw}
Igor Oliveiradb89bf42010-01-25 19:23:04 -04001340
Corbin Simpsondbc95e82010-06-16 18:34:51 -07001341.. opcode:: DMIN - Minimum
Igor Oliveiradb89bf42010-01-25 19:23:04 -04001342
1343.. math::
1344
1345 dst.xy = min(src0.xy, src1.xy)
1346
1347 dst.zw = min(src0.zw, src1.zw)
1348
Corbin Simpsondbc95e82010-06-16 18:34:51 -07001349.. opcode:: DMAX - Maximum
Igor Oliveiradb89bf42010-01-25 19:23:04 -04001350
1351.. math::
1352
1353 dst.xy = max(src0.xy, src1.xy)
1354
1355 dst.zw = max(src0.zw, src1.zw)
1356
Corbin Simpsondbc95e82010-06-16 18:34:51 -07001357.. opcode:: DMUL - Multiply
Igor Oliveiradb89bf42010-01-25 19:23:04 -04001358
1359.. math::
1360
1361 dst.xy = src0.xy \times src1.xy
1362
1363 dst.zw = src0.zw \times src1.zw
1364
1365
Corbin Simpsondbc95e82010-06-16 18:34:51 -07001366.. opcode:: DMAD - Multiply And Add
Igor Oliveiradb89bf42010-01-25 19:23:04 -04001367
1368.. math::
1369
1370 dst.xy = src0.xy \times src1.xy + src2.xy
1371
1372 dst.zw = src0.zw \times src1.zw + src2.zw
1373
1374
Corbin Simpsondbc95e82010-06-16 18:34:51 -07001375.. opcode:: DRCP - Reciprocal
Igor Oliveiradb89bf42010-01-25 19:23:04 -04001376
1377.. math::
1378
1379 dst.xy = \frac{1}{src.xy}
1380
1381 dst.zw = \frac{1}{src.zw}
1382
Corbin Simpsondbc95e82010-06-16 18:34:51 -07001383.. opcode:: DSQRT - Square Root
Igor Oliveiradb89bf42010-01-25 19:23:04 -04001384
1385.. math::
1386
1387 dst.xy = \sqrt{src.xy}
1388
1389 dst.zw = \sqrt{src.zw}
1390
Keith Whitwella62aaa72009-12-21 23:25:15 +00001391
Francisco Jereza5f44cc2012-05-01 02:38:51 +02001392.. _samplingopcodes:
Zack Rusinbdbe77f2011-01-24 17:47:10 -05001393
Francisco Jereza5f44cc2012-05-01 02:38:51 +02001394Resource Sampling Opcodes
1395^^^^^^^^^^^^^^^^^^^^^^^^^
Zack Rusinbdbe77f2011-01-24 17:47:10 -05001396
1397Those opcodes follow very closely semantics of the respective Direct3D
1398instructions. If in doubt double check Direct3D documentation.
1399
Francisco Jereza5f44cc2012-05-01 02:38:51 +02001400.. opcode:: SAMPLE - Using provided address, sample data from the
1401 specified texture using the filtering mode identified
1402 by the gven sampler. The source data may come from
1403 any resource type other than buffers.
1404 SAMPLE dst, address, sampler_view, sampler
1405 e.g.
1406 SAMPLE TEMP[0], TEMP[1], SVIEW[0], SAMP[0]
1407
1408.. opcode:: SAMPLE_I - Simplified alternative to the SAMPLE instruction.
1409 Using the provided integer address, SAMPLE_I fetches data
1410 from the specified sampler view without any filtering.
Zack Rusinbdbe77f2011-01-24 17:47:10 -05001411 The source data may come from any resource type other
1412 than CUBE.
Francisco Jereza5f44cc2012-05-01 02:38:51 +02001413 SAMPLE_I dst, address, sampler_view
Zack Rusinbdbe77f2011-01-24 17:47:10 -05001414 e.g.
Francisco Jereza5f44cc2012-05-01 02:38:51 +02001415 SAMPLE_I TEMP[0], TEMP[1], SVIEW[0]
Zack Rusin3fa814d2011-01-24 21:45:37 -05001416 The 'address' is specified as unsigned integers. If the
1417 'address' is out of range [0...(# texels - 1)] the
1418 result of the fetch is always 0 in all components.
1419 As such the instruction doesn't honor address wrap
1420 modes, in cases where that behavior is desirable
Francisco Jereza5f44cc2012-05-01 02:38:51 +02001421 'SAMPLE' instruction should be used.
Zack Rusin3fa814d2011-01-24 21:45:37 -05001422 address.w always provides an unsigned integer mipmap
1423 level. If the value is out of the range then the
1424 instruction always returns 0 in all components.
1425 address.yz are ignored for buffers and 1d textures.
1426 address.z is ignored for 1d texture arrays and 2d
1427 textures.
1428 For 1D texture arrays address.y provides the array
1429 index (also as unsigned integer). If the value is
1430 out of the range of available array indices
1431 [0... (array size - 1)] then the opcode always returns
1432 0 in all components.
1433 For 2D texture arrays address.z provides the array
1434 index, otherwise it exhibits the same behavior as in
1435 the case for 1D texture arrays.
Francisco Jereza5f44cc2012-05-01 02:38:51 +02001436 The exact semantics of the source address are presented
Zack Rusin3fa814d2011-01-24 21:45:37 -05001437 in the table below:
1438 resource type X Y Z W
1439 ------------- ------------------------
1440 PIPE_BUFFER x ignored
1441 PIPE_TEXTURE_1D x mpl
1442 PIPE_TEXTURE_2D x y mpl
1443 PIPE_TEXTURE_3D x y z mpl
1444 PIPE_TEXTURE_RECT x y mpl
1445 PIPE_TEXTURE_CUBE not allowed as source
1446 PIPE_TEXTURE_1D_ARRAY x idx mpl
1447 PIPE_TEXTURE_2D_ARRAY x y idx mpl
1448
1449 Where 'mpl' is a mipmap level and 'idx' is the
1450 array index.
1451
Francisco Jereza5f44cc2012-05-01 02:38:51 +02001452.. opcode:: SAMPLE_I_MS - Just like SAMPLE_I but allows fetch data from
Zack Rusinbdbe77f2011-01-24 17:47:10 -05001453 multi-sampled surfaces.
Roland Scheidegger98704592013-02-12 16:48:52 +01001454 SAMPLE_I_MS dst, address, sampler_view, sample
Zack Rusinbdbe77f2011-01-24 17:47:10 -05001455
Zack Rusinbdbe77f2011-01-24 17:47:10 -05001456.. opcode:: SAMPLE_B - Just like the SAMPLE instruction with the
Roland Scheidegger98704592013-02-12 16:48:52 +01001457 exception that an additional bias is applied to the
Zack Rusinbdbe77f2011-01-24 17:47:10 -05001458 level of detail computed as part of the instruction
1459 execution.
Francisco Jereza5f44cc2012-05-01 02:38:51 +02001460 SAMPLE_B dst, address, sampler_view, sampler, lod_bias
Zack Rusinbdbe77f2011-01-24 17:47:10 -05001461 e.g.
Francisco Jereza5f44cc2012-05-01 02:38:51 +02001462 SAMPLE_B TEMP[0], TEMP[1], SVIEW[0], SAMP[0], TEMP[2].x
Zack Rusinbdbe77f2011-01-24 17:47:10 -05001463
Zack Rusin3fa814d2011-01-24 21:45:37 -05001464.. opcode:: SAMPLE_C - Similar to the SAMPLE instruction but it
Zack Rusinbdbe77f2011-01-24 17:47:10 -05001465 performs a comparison filter. The operands to SAMPLE_C
Roland Scheidegger98704592013-02-12 16:48:52 +01001466 are identical to SAMPLE, except that there is an additional
Zack Rusinbdbe77f2011-01-24 17:47:10 -05001467 float32 operand, reference value, which must be a register
1468 with single-component, or a scalar literal.
1469 SAMPLE_C makes the hardware use the current samplers
1470 compare_func (in pipe_sampler_state) to compare
1471 reference value against the red component value for the
1472 surce resource at each texel that the currently configured
1473 texture filter covers based on the provided coordinates.
Francisco Jereza5f44cc2012-05-01 02:38:51 +02001474 SAMPLE_C dst, address, sampler_view.r, sampler, ref_value
Zack Rusinbdbe77f2011-01-24 17:47:10 -05001475 e.g.
Francisco Jereza5f44cc2012-05-01 02:38:51 +02001476 SAMPLE_C TEMP[0], TEMP[1], SVIEW[0].r, SAMP[0], TEMP[2].x
Zack Rusinbdbe77f2011-01-24 17:47:10 -05001477
1478.. opcode:: SAMPLE_C_LZ - Same as SAMPLE_C, but LOD is 0 and derivatives
1479 are ignored. The LZ stands for level-zero.
Francisco Jereza5f44cc2012-05-01 02:38:51 +02001480 SAMPLE_C_LZ dst, address, sampler_view.r, sampler, ref_value
Zack Rusinbdbe77f2011-01-24 17:47:10 -05001481 e.g.
Francisco Jereza5f44cc2012-05-01 02:38:51 +02001482 SAMPLE_C_LZ TEMP[0], TEMP[1], SVIEW[0].r, SAMP[0], TEMP[2].x
Zack Rusinbdbe77f2011-01-24 17:47:10 -05001483
1484
1485.. opcode:: SAMPLE_D - SAMPLE_D is identical to the SAMPLE opcode except
1486 that the derivatives for the source address in the x
1487 direction and the y direction are provided by extra
1488 parameters.
Francisco Jereza5f44cc2012-05-01 02:38:51 +02001489 SAMPLE_D dst, address, sampler_view, sampler, der_x, der_y
Zack Rusinbdbe77f2011-01-24 17:47:10 -05001490 e.g.
Francisco Jereza5f44cc2012-05-01 02:38:51 +02001491 SAMPLE_D TEMP[0], TEMP[1], SVIEW[0], SAMP[0], TEMP[2], TEMP[3]
Zack Rusinbdbe77f2011-01-24 17:47:10 -05001492
1493.. opcode:: SAMPLE_L - SAMPLE_L is identical to the SAMPLE opcode except
1494 that the LOD is provided directly as a scalar value,
Roland Scheidegger427d36a2013-02-12 16:41:56 +01001495 representing no anisotropy.
1496 SAMPLE_L dst, address, sampler_view, sampler, explicit_lod
Zack Rusinbdbe77f2011-01-24 17:47:10 -05001497 e.g.
Roland Scheidegger427d36a2013-02-12 16:41:56 +01001498 SAMPLE_L TEMP[0], TEMP[1], SVIEW[0], SAMP[0], TEMP[2].x
Zack Rusinbdbe77f2011-01-24 17:47:10 -05001499
1500.. opcode:: GATHER4 - Gathers the four texels to be used in a bi-linear
1501 filtering operation and packs them into a single register.
Brian Paul0cd68002012-03-30 09:41:42 -06001502 Only works with 2D, 2D array, cubemaps, and cubemaps arrays.
Zack Rusinbdbe77f2011-01-24 17:47:10 -05001503 For 2D textures, only the addressing modes of the sampler and
1504 the top level of any mip pyramid are used. Set W to zero.
1505 It behaves like the SAMPLE instruction, but a filtered
1506 sample is not generated. The four samples that contribute
Brian Paul0cd68002012-03-30 09:41:42 -06001507 to filtering are placed into xyzw in counter-clockwise order,
Zack Rusinbdbe77f2011-01-24 17:47:10 -05001508 starting with the (u,v) texture coordinate delta at the
1509 following locations (-, +), (+, +), (+, -), (-, -), where
1510 the magnitude of the deltas are half a texel.
1511
1512
Francisco Jereza5f44cc2012-05-01 02:38:51 +02001513.. opcode:: SVIEWINFO - query the dimensions of a given sampler view.
Zack Rusinbdbe77f2011-01-24 17:47:10 -05001514 dst receives width, height, depth or array size and
Roland Scheidegger614982d32013-02-05 13:37:57 -08001515 number of mipmap levels as int4. The dst can have a writemask
Zack Rusin3fa814d2011-01-24 21:45:37 -05001516 which will specify what info is the caller interested
1517 in.
Francisco Jereza5f44cc2012-05-01 02:38:51 +02001518 SVIEWINFO dst, src_mip_level, sampler_view
Zack Rusinbdbe77f2011-01-24 17:47:10 -05001519 e.g.
Francisco Jereza5f44cc2012-05-01 02:38:51 +02001520 SVIEWINFO TEMP[0], TEMP[1].x, SVIEW[0]
Zack Rusin3fa814d2011-01-24 21:45:37 -05001521 src_mip_level is an unsigned integer scalar. If it's
1522 out of range then returns 0 for width, height and
1523 depth/array size but the total number of mipmap is
Francisco Jereza5f44cc2012-05-01 02:38:51 +02001524 still returned correctly for the given sampler view.
Zack Rusin3fa814d2011-01-24 21:45:37 -05001525 The returned width, height and depth values are for
1526 the mipmap level selected by the src_mip_level and
1527 are in the number of texels.
1528 For 1d texture array width is in dst.x, array size
1529 is in dst.y and dst.zw are always 0.
Zack Rusinbdbe77f2011-01-24 17:47:10 -05001530
1531.. opcode:: SAMPLE_POS - query the position of a given sample.
1532 dst receives float4 (x, y, 0, 0) indicated where the
1533 sample is located. If the resource is not a multi-sample
1534 resource and not a render target, the result is 0.
1535
Zack Rusin3fa814d2011-01-24 21:45:37 -05001536.. opcode:: SAMPLE_INFO - dst receives number of samples in x.
1537 If the resource is not a multi-sample resource and
Zack Rusinbdbe77f2011-01-24 17:47:10 -05001538 not a render target, the result is 0.
1539
1540
Francisco Jereza5f44cc2012-05-01 02:38:51 +02001541.. _resourceopcodes:
1542
1543Resource Access Opcodes
1544^^^^^^^^^^^^^^^^^^^^^^^
1545
1546.. opcode:: LOAD - Fetch data from a shader resource
1547
1548 Syntax: ``LOAD dst, resource, address``
1549
1550 Example: ``LOAD TEMP[0], RES[0], TEMP[1]``
1551
1552 Using the provided integer address, LOAD fetches data
1553 from the specified buffer or texture without any
1554 filtering.
1555
1556 The 'address' is specified as a vector of unsigned
1557 integers. If the 'address' is out of range the result
1558 is unspecified.
1559
1560 Only the first mipmap level of a resource can be read
1561 from using this instruction.
1562
1563 For 1D or 2D texture arrays, the array index is
1564 provided as an unsigned integer in address.y or
1565 address.z, respectively. address.yz are ignored for
1566 buffers and 1D textures. address.z is ignored for 1D
1567 texture arrays and 2D textures. address.w is always
1568 ignored.
1569
Francisco Jerezb8e808f2012-04-30 20:20:29 +02001570.. opcode:: STORE - Write data to a shader resource
1571
1572 Syntax: ``STORE resource, address, src``
1573
1574 Example: ``STORE RES[0], TEMP[0], TEMP[1]``
1575
1576 Using the provided integer address, STORE writes data
1577 to the specified buffer or texture.
1578
1579 The 'address' is specified as a vector of unsigned
1580 integers. If the 'address' is out of range the result
1581 is unspecified.
1582
1583 Only the first mipmap level of a resource can be
1584 written to using this instruction.
1585
1586 For 1D or 2D texture arrays, the array index is
1587 provided as an unsigned integer in address.y or
1588 address.z, respectively. address.yz are ignored for
1589 buffers and 1D textures. address.z is ignored for 1D
1590 texture arrays and 2D textures. address.w is always
1591 ignored.
1592
Francisco Jereza5f44cc2012-05-01 02:38:51 +02001593
Francisco Jerez9e550c32012-04-30 20:21:38 +02001594.. _threadsyncopcodes:
1595
1596Inter-thread synchronization opcodes
1597^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
1598
1599These opcodes are intended for communication between threads running
1600within the same compute grid. For now they're only valid in compute
1601programs.
1602
1603.. opcode:: MFENCE - Memory fence
1604
1605 Syntax: ``MFENCE resource``
1606
1607 Example: ``MFENCE RES[0]``
1608
1609 This opcode forces strong ordering between any memory access
1610 operations that affect the specified resource. This means that
1611 previous loads and stores (and only those) will be performed and
1612 visible to other threads before the program execution continues.
1613
1614
1615.. opcode:: LFENCE - Load memory fence
1616
1617 Syntax: ``LFENCE resource``
1618
1619 Example: ``LFENCE RES[0]``
1620
1621 Similar to MFENCE, but it only affects the ordering of memory loads.
1622
1623
1624.. opcode:: SFENCE - Store memory fence
1625
1626 Syntax: ``SFENCE resource``
1627
1628 Example: ``SFENCE RES[0]``
1629
1630 Similar to MFENCE, but it only affects the ordering of memory stores.
1631
1632
1633.. opcode:: BARRIER - Thread group barrier
1634
1635 ``BARRIER``
1636
1637 This opcode suspends the execution of the current thread until all
1638 the remaining threads in the working group reach the same point of
1639 the program. Results are unspecified if any of the remaining
1640 threads terminates or never reaches an executed BARRIER instruction.
1641
1642
Francisco Jerezc2d31a82012-04-30 20:22:23 +02001643.. _atomopcodes:
1644
1645Atomic opcodes
1646^^^^^^^^^^^^^^
1647
1648These opcodes provide atomic variants of some common arithmetic and
1649logical operations. In this context atomicity means that another
1650concurrent memory access operation that affects the same memory
1651location is guaranteed to be performed strictly before or after the
1652entire execution of the atomic operation.
1653
1654For the moment they're only valid in compute programs.
1655
1656.. opcode:: ATOMUADD - Atomic integer addition
1657
1658 Syntax: ``ATOMUADD dst, resource, offset, src``
1659
1660 Example: ``ATOMUADD TEMP[0], RES[0], TEMP[1], TEMP[2]``
1661
1662 The following operation is performed atomically on each component:
1663
1664.. math::
1665
1666 dst_i = resource[offset]_i
1667
1668 resource[offset]_i = dst_i + src_i
1669
1670
1671.. opcode:: ATOMXCHG - Atomic exchange
1672
1673 Syntax: ``ATOMXCHG dst, resource, offset, src``
1674
1675 Example: ``ATOMXCHG TEMP[0], RES[0], TEMP[1], TEMP[2]``
1676
1677 The following operation is performed atomically on each component:
1678
1679.. math::
1680
1681 dst_i = resource[offset]_i
1682
1683 resource[offset]_i = src_i
1684
1685
1686.. opcode:: ATOMCAS - Atomic compare-and-exchange
1687
1688 Syntax: ``ATOMCAS dst, resource, offset, cmp, src``
1689
1690 Example: ``ATOMCAS TEMP[0], RES[0], TEMP[1], TEMP[2], TEMP[3]``
1691
1692 The following operation is performed atomically on each component:
1693
1694.. math::
1695
1696 dst_i = resource[offset]_i
1697
1698 resource[offset]_i = (dst_i == cmp_i ? src_i : dst_i)
1699
1700
1701.. opcode:: ATOMAND - Atomic bitwise And
1702
1703 Syntax: ``ATOMAND dst, resource, offset, src``
1704
1705 Example: ``ATOMAND TEMP[0], RES[0], TEMP[1], TEMP[2]``
1706
1707 The following operation is performed atomically on each component:
1708
1709.. math::
1710
1711 dst_i = resource[offset]_i
1712
1713 resource[offset]_i = dst_i \& src_i
1714
1715
1716.. opcode:: ATOMOR - Atomic bitwise Or
1717
1718 Syntax: ``ATOMOR dst, resource, offset, src``
1719
1720 Example: ``ATOMOR TEMP[0], RES[0], TEMP[1], TEMP[2]``
1721
1722 The following operation is performed atomically on each component:
1723
1724.. math::
1725
1726 dst_i = resource[offset]_i
1727
1728 resource[offset]_i = dst_i | src_i
1729
1730
1731.. opcode:: ATOMXOR - Atomic bitwise Xor
1732
1733 Syntax: ``ATOMXOR dst, resource, offset, src``
1734
1735 Example: ``ATOMXOR TEMP[0], RES[0], TEMP[1], TEMP[2]``
1736
1737 The following operation is performed atomically on each component:
1738
1739.. math::
1740
1741 dst_i = resource[offset]_i
1742
1743 resource[offset]_i = dst_i \oplus src_i
1744
1745
1746.. opcode:: ATOMUMIN - Atomic unsigned minimum
1747
1748 Syntax: ``ATOMUMIN dst, resource, offset, src``
1749
1750 Example: ``ATOMUMIN TEMP[0], RES[0], TEMP[1], TEMP[2]``
1751
1752 The following operation is performed atomically on each component:
1753
1754.. math::
1755
1756 dst_i = resource[offset]_i
1757
1758 resource[offset]_i = (dst_i < src_i ? dst_i : src_i)
1759
1760
1761.. opcode:: ATOMUMAX - Atomic unsigned maximum
1762
1763 Syntax: ``ATOMUMAX dst, resource, offset, src``
1764
1765 Example: ``ATOMUMAX TEMP[0], RES[0], TEMP[1], TEMP[2]``
1766
1767 The following operation is performed atomically on each component:
1768
1769.. math::
1770
1771 dst_i = resource[offset]_i
1772
1773 resource[offset]_i = (dst_i > src_i ? dst_i : src_i)
1774
1775
1776.. opcode:: ATOMIMIN - Atomic signed minimum
1777
1778 Syntax: ``ATOMIMIN dst, resource, offset, src``
1779
1780 Example: ``ATOMIMIN TEMP[0], RES[0], TEMP[1], TEMP[2]``
1781
1782 The following operation is performed atomically on each component:
1783
1784.. math::
1785
1786 dst_i = resource[offset]_i
1787
1788 resource[offset]_i = (dst_i < src_i ? dst_i : src_i)
1789
1790
1791.. opcode:: ATOMIMAX - Atomic signed maximum
1792
1793 Syntax: ``ATOMIMAX dst, resource, offset, src``
1794
1795 Example: ``ATOMIMAX TEMP[0], RES[0], TEMP[1], TEMP[2]``
1796
1797 The following operation is performed atomically on each component:
1798
1799.. math::
1800
1801 dst_i = resource[offset]_i
1802
1803 resource[offset]_i = (dst_i > src_i ? dst_i : src_i)
1804
1805
1806
Corbin Simpsonda65ac62009-12-21 20:32:46 -08001807Explanation of symbols used
Corbin Simpson5bcd26c2009-12-21 21:04:10 -08001808------------------------------
Keith Whitwella62aaa72009-12-21 23:25:15 +00001809
1810
Corbin Simpsonda65ac62009-12-21 20:32:46 -08001811Functions
Corbin Simpson5bcd26c2009-12-21 21:04:10 -08001812^^^^^^^^^^^^^^
Keith Whitwella62aaa72009-12-21 23:25:15 +00001813
1814
Corbin Simpson14743ac2009-12-21 19:57:56 -08001815 :math:`|x|` Absolute value of `x`.
Keith Whitwella62aaa72009-12-21 23:25:15 +00001816
Corbin Simpson14743ac2009-12-21 19:57:56 -08001817 :math:`\lceil x \rceil` Ceiling of `x`.
Keith Whitwella62aaa72009-12-21 23:25:15 +00001818
1819 clamp(x,y,z) Clamp x between y and z.
1820 (x < y) ? y : (x > z) ? z : x
1821
Corbin Simpsondd801e52009-12-21 19:41:09 -08001822 :math:`\lfloor x\rfloor` Floor of `x`.
Keith Whitwella62aaa72009-12-21 23:25:15 +00001823
Corbin Simpson14743ac2009-12-21 19:57:56 -08001824 :math:`\log_2{x}` Logarithm of `x`, base 2.
Keith Whitwella62aaa72009-12-21 23:25:15 +00001825
1826 max(x,y) Maximum of x and y.
1827 (x > y) ? x : y
1828
1829 min(x,y) Minimum of x and y.
1830 (x < y) ? x : y
1831
1832 partialx(x) Derivative of x relative to fragment's X.
1833
1834 partialy(x) Derivative of x relative to fragment's Y.
1835
1836 pop() Pop from stack.
1837
Corbin Simpsondd801e52009-12-21 19:41:09 -08001838 :math:`x^y` `x` to the power `y`.
Keith Whitwella62aaa72009-12-21 23:25:15 +00001839
1840 push(x) Push x on stack.
1841
1842 round(x) Round x.
1843
Michal Krol07f416c2010-01-04 13:21:32 +01001844 trunc(x) Truncate x, i.e. drop the fraction bits.
Keith Whitwella62aaa72009-12-21 23:25:15 +00001845
1846
Corbin Simpsonda65ac62009-12-21 20:32:46 -08001847Keywords
Corbin Simpson5bcd26c2009-12-21 21:04:10 -08001848^^^^^^^^^^^^^
Keith Whitwella62aaa72009-12-21 23:25:15 +00001849
1850
1851 discard Discard fragment.
1852
Keith Whitwella62aaa72009-12-21 23:25:15 +00001853 pc Program counter.
1854
Keith Whitwella62aaa72009-12-21 23:25:15 +00001855 target Label of target instruction.
1856
1857
Corbin Simpsonda65ac62009-12-21 20:32:46 -08001858Other tokens
Corbin Simpson5bcd26c2009-12-21 21:04:10 -08001859---------------
Keith Whitwella62aaa72009-12-21 23:25:15 +00001860
1861
Michal Krol63d60972010-02-03 15:45:32 +01001862Declaration
1863^^^^^^^^^^^
1864
1865
1866Declares a register that is will be referenced as an operand in Instruction
1867tokens.
1868
1869File field contains register file that is being declared and is one
1870of TGSI_FILE.
1871
1872UsageMask field specifies which of the register components can be accessed
1873and is one of TGSI_WRITEMASK.
1874
Francisco Jerez26449522012-03-18 19:21:36 +01001875The Local flag specifies that a given value isn't intended for
1876subroutine parameter passing and, as a result, the implementation
1877isn't required to give any guarantees of it being preserved across
1878subroutine boundaries. As it's merely a compiler hint, the
1879implementation is free to ignore it.
1880
Michal Krol63d60972010-02-03 15:45:32 +01001881If Dimension flag is set to 1, a Declaration Dimension token follows.
1882
1883If Semantic flag is set to 1, a Declaration Semantic token follows.
1884
Francisco Jerez12799232012-04-30 18:27:52 +02001885If Interpolate flag is set to 1, a Declaration Interpolate token follows.
Michal Krol63d60972010-02-03 15:45:32 +01001886
Zack Rusinbdbe77f2011-01-24 17:47:10 -05001887If file is TGSI_FILE_RESOURCE, a Declaration Resource token follows.
1888
Christian König897303f2013-03-14 11:10:16 +01001889If Array flag is set to 1, a Declaration Array token follows.
1890
1891Array Declaration
1892^^^^^^^^^^^^^^^^^^^^^^^^
1893
1894Declarations can optional have an ArrayID attribute which can be referred by
1895indirect addressing operands. An ArrayID of zero is reserved and treaded as
1896if no ArrayID is specified.
1897
1898If an indirect addressing operand refers to a specific declaration by using
1899an ArrayID only the registers in this declaration are guaranteed to be
1900accessed, accessing any register outside this declaration results in undefined
1901behavior. Note that for compatibility the effective index is zero-based and
1902not relative to the specified declaration
1903
1904If no ArrayID is specified with an indirect addressing operand the whole
1905register file might be accessed by this operand. This is strongly discouraged
1906and will prevent packing of scalar/vec2 arrays and effective alias analysis.
Michal Krol63d60972010-02-03 15:45:32 +01001907
Corbin Simpsonda65ac62009-12-21 20:32:46 -08001908Declaration Semantic
Corbin Simpson5bcd26c2009-12-21 21:04:10 -08001909^^^^^^^^^^^^^^^^^^^^^^^^
Keith Whitwella62aaa72009-12-21 23:25:15 +00001910
Brian Paul05a18f42010-06-24 07:21:15 -06001911 Vertex and fragment shader input and output registers may be labeled
1912 with semantic information consisting of a name and index.
Keith Whitwella62aaa72009-12-21 23:25:15 +00001913
1914 Follows Declaration token if Semantic bit is set.
1915
1916 Since its purpose is to link a shader with other stages of the pipeline,
1917 it is valid to follow only those Declaration tokens that declare a register
1918 either in INPUT or OUTPUT file.
1919
1920 SemanticName field contains the semantic name of the register being declared.
1921 There is no default value.
1922
1923 SemanticIndex is an optional subscript that can be used to distinguish
1924 different register declarations with the same semantic name. The default value
1925 is 0.
1926
1927 The meanings of the individual semantic names are explained in the following
1928 sections.
1929
Corbin Simpson54ddf642009-12-23 23:36:06 -08001930TGSI_SEMANTIC_POSITION
1931""""""""""""""""""""""
Keith Whitwella62aaa72009-12-21 23:25:15 +00001932
Brian Paul50b3f2e2010-06-23 17:00:10 -06001933For vertex shaders, TGSI_SEMANTIC_POSITION indicates the vertex shader
1934output register which contains the homogeneous vertex position in the clip
1935space coordinate system. After clipping, the X, Y and Z components of the
1936vertex will be divided by the W value to get normalized device coordinates.
Keith Whitwella62aaa72009-12-21 23:25:15 +00001937
Brian Paul50b3f2e2010-06-23 17:00:10 -06001938For fragment shaders, TGSI_SEMANTIC_POSITION is used to indicate that
1939fragment shader input contains the fragment's window position. The X
1940component starts at zero and always increases from left to right.
1941The Y component starts at zero and always increases but Y=0 may either
1942indicate the top of the window or the bottom depending on the fragment
1943coordinate origin convention (see TGSI_PROPERTY_FS_COORD_ORIGIN).
1944The Z coordinate ranges from 0 to 1 to represent depth from the front
1945to the back of the Z buffer. The W component contains the reciprocol
1946of the interpolated vertex position W component.
Corbin Simpson54ddf642009-12-23 23:36:06 -08001947
Brian Paul05a18f42010-06-24 07:21:15 -06001948Fragment shaders may also declare an output register with
1949TGSI_SEMANTIC_POSITION. Only the Z component is writable. This allows
1950the fragment shader to change the fragment's Z position.
1951
Corbin Simpson54ddf642009-12-23 23:36:06 -08001952
Corbin Simpson54ddf642009-12-23 23:36:06 -08001953
1954TGSI_SEMANTIC_COLOR
1955"""""""""""""""""""
1956
Brian Paul50b3f2e2010-06-23 17:00:10 -06001957For vertex shader outputs or fragment shader inputs/outputs, this
1958label indicates that the resister contains an R,G,B,A color.
Corbin Simpson54ddf642009-12-23 23:36:06 -08001959
Brian Paul50b3f2e2010-06-23 17:00:10 -06001960Several shader inputs/outputs may contain colors so the semantic index
1961is used to distinguish them. For example, color[0] may be the diffuse
1962color while color[1] may be the specular color.
1963
1964This label is needed so that the flat/smooth shading can be applied
1965to the right interpolants during rasterization.
1966
1967
Corbin Simpson54ddf642009-12-23 23:36:06 -08001968
1969TGSI_SEMANTIC_BCOLOR
1970""""""""""""""""""""
1971
1972Back-facing colors are only used for back-facing polygons, and are only valid
1973in vertex shader outputs. After rasterization, all polygons are front-facing
Brian Paul50b3f2e2010-06-23 17:00:10 -06001974and COLOR and BCOLOR end up occupying the same slots in the fragment shader,
1975so all BCOLORs effectively become regular COLORs in the fragment shader.
1976
Corbin Simpson54ddf642009-12-23 23:36:06 -08001977
1978TGSI_SEMANTIC_FOG
1979"""""""""""""""""
1980
Brian Paul05a18f42010-06-24 07:21:15 -06001981Vertex shader inputs and outputs and fragment shader inputs may be
1982labeled with TGSI_SEMANTIC_FOG to indicate that the register contains
1983a fog coordinate in the form (F, 0, 0, 1). Typically, the fragment
1984shader will use the fog coordinate to compute a fog blend factor which
1985is used to blend the normal fragment color with a constant fog color.
Corbin Simpson54ddf642009-12-23 23:36:06 -08001986
Brian Paul05a18f42010-06-24 07:21:15 -06001987Only the first component matters when writing from the vertex shader;
1988the driver will ensure that the coordinate is in this format when used
1989as a fragment shader input.
1990
Corbin Simpson54ddf642009-12-23 23:36:06 -08001991
1992TGSI_SEMANTIC_PSIZE
1993"""""""""""""""""""
1994
Brian Paul05a18f42010-06-24 07:21:15 -06001995Vertex shader input and output registers may be labeled with
1996TGIS_SEMANTIC_PSIZE to indicate that the register contains a point size
1997in the form (S, 0, 0, 1). The point size controls the width or diameter
1998of points for rasterization. This label cannot be used in fragment
1999shaders.
Corbin Simpson54ddf642009-12-23 23:36:06 -08002000
2001When using this semantic, be sure to set the appropriate state in the
2002:ref:`rasterizer` first.
2003
Brian Paul05a18f42010-06-24 07:21:15 -06002004
Christoph Bumiller8acaf862013-03-15 22:11:31 +01002005TGSI_SEMANTIC_TEXCOORD
2006""""""""""""""""""""""
2007
2008Only available if PIPE_CAP_TGSI_TEXCOORD is exposed !
2009
2010Vertex shader outputs and fragment shader inputs may be labeled with
2011this semantic to make them replaceable by sprite coordinates via the
2012sprite_coord_enable state in the :ref:`rasterizer`.
2013The semantic index permitted with this semantic is limited to <= 7.
2014
2015If the driver does not support TEXCOORD, sprite coordinate replacement
2016applies to inputs with the GENERIC semantic instead.
2017
2018The intended use case for this semantic is gl_TexCoord.
2019
2020
2021TGSI_SEMANTIC_PCOORD
2022""""""""""""""""""""
2023
2024Only available if PIPE_CAP_TGSI_TEXCOORD is exposed !
2025
2026Fragment shader inputs may be labeled with TGSI_SEMANTIC_PCOORD to indicate
2027that the register contains sprite coordinates in the form (x, y, 0, 1), if
2028the current primitive is a point and point sprites are enabled. Otherwise,
2029the contents of the register are undefined.
2030
2031The intended use case for this semantic is gl_PointCoord.
2032
2033
Corbin Simpson54ddf642009-12-23 23:36:06 -08002034TGSI_SEMANTIC_GENERIC
2035"""""""""""""""""""""
2036
Brian Paul05a18f42010-06-24 07:21:15 -06002037All vertex/fragment shader inputs/outputs not labeled with any other
2038semantic label can be considered to be generic attributes. Typical
2039uses of generic inputs/outputs are texcoords and user-defined values.
Corbin Simpson54ddf642009-12-23 23:36:06 -08002040
Corbin Simpson54ddf642009-12-23 23:36:06 -08002041
2042TGSI_SEMANTIC_NORMAL
2043""""""""""""""""""""
2044
Brian Paul05a18f42010-06-24 07:21:15 -06002045Indicates that a vertex shader input is a normal vector. This is
2046typically only used for legacy graphics APIs.
2047
Corbin Simpson54ddf642009-12-23 23:36:06 -08002048
2049TGSI_SEMANTIC_FACE
2050""""""""""""""""""
2051
Brian Paul05a18f42010-06-24 07:21:15 -06002052This label applies to fragment shader inputs only and indicates that
2053the register contains front/back-face information of the form (F, 0,
20540, 1). The first component will be positive when the fragment belongs
2055to a front-facing polygon, and negative when the fragment belongs to a
2056back-facing polygon.
2057
Corbin Simpson54ddf642009-12-23 23:36:06 -08002058
2059TGSI_SEMANTIC_EDGEFLAG
2060""""""""""""""""""""""
2061
Brian Paul73153002010-06-23 17:38:58 -06002062For vertex shaders, this sematic label indicates that an input or
2063output is a boolean edge flag. The register layout is [F, x, x, x]
2064where F is 0.0 or 1.0 and x = don't care. Normally, the vertex shader
2065simply copies the edge flag input to the edgeflag output.
2066
2067Edge flags are used to control which lines or points are actually
2068drawn when the polygon mode converts triangles/quads/polygons into
2069points or lines.
2070
Dave Airlie4ecb2c12010-10-06 09:28:46 +10002071TGSI_SEMANTIC_STENCIL
2072""""""""""""""""""""""
2073
2074For fragment shaders, this semantic label indicates than an output
2075is a writable stencil reference value. Only the Y component is writable.
2076This allows the fragment shader to change the fragments stencilref value.
Luca Barbieri73317132010-01-21 05:36:14 +01002077
2078
Francisco Jerez12799232012-04-30 18:27:52 +02002079Declaration Interpolate
2080^^^^^^^^^^^^^^^^^^^^^^^
2081
2082This token is only valid for fragment shader INPUT declarations.
2083
2084The Interpolate field specifes the way input is being interpolated by
2085the rasteriser and is one of TGSI_INTERPOLATE_*.
2086
2087The CylindricalWrap bitfield specifies which register components
2088should be subject to cylindrical wrapping when interpolating by the
2089rasteriser. If TGSI_CYLINDRICAL_WRAP_X is set to 1, the X component
2090should be interpolated according to cylindrical wrapping rules.
2091
2092
Francisco Jereza5f44cc2012-05-01 02:38:51 +02002093Declaration Sampler View
Zack Rusinbdbe77f2011-01-24 17:47:10 -05002094^^^^^^^^^^^^^^^^^^^^^^^^
2095
Francisco Jereza5f44cc2012-05-01 02:38:51 +02002096 Follows Declaration token if file is TGSI_FILE_SAMPLER_VIEW.
2097
2098 DCL SVIEW[#], resource, type(s)
2099
2100 Declares a shader input sampler view and assigns it to a SVIEW[#]
2101 register.
2102
2103 resource can be one of BUFFER, 1D, 2D, 3D, 1DArray and 2DArray.
2104
2105 type must be 1 or 4 entries (if specifying on a per-component
2106 level) out of UNORM, SNORM, SINT, UINT and FLOAT.
2107
2108
2109Declaration Resource
2110^^^^^^^^^^^^^^^^^^^^
2111
Zack Rusinbdbe77f2011-01-24 17:47:10 -05002112 Follows Declaration token if file is TGSI_FILE_RESOURCE.
2113
Francisco Jerezb8e808f2012-04-30 20:20:29 +02002114 DCL RES[#], resource [, WR] [, RAW]
Zack Rusinbdbe77f2011-01-24 17:47:10 -05002115
2116 Declares a shader input resource and assigns it to a RES[#]
2117 register.
2118
2119 resource can be one of BUFFER, 1D, 2D, 3D, CUBE, 1DArray and
2120 2DArray.
2121
Francisco Jerez82c90b22012-04-30 19:08:55 +02002122 If the RAW keyword is not specified, the texture data will be
2123 subject to conversion, swizzling and scaling as required to yield
2124 the specified data type from the physical data format of the bound
2125 resource.
2126
2127 If the RAW keyword is specified, no channel conversion will be
2128 performed: the values read for each of the channels (X,Y,Z,W) will
2129 correspond to consecutive words in the same order and format
2130 they're found in memory. No element-to-address conversion will be
2131 performed either: the value of the provided X coordinate will be
2132 interpreted in byte units instead of texel units. The result of
2133 accessing a misaligned address is undefined.
2134
Francisco Jerezb8e808f2012-04-30 20:20:29 +02002135 Usage of the STORE opcode is only allowed if the WR (writable) flag
2136 is set.
2137
Zack Rusinbdbe77f2011-01-24 17:47:10 -05002138
Luca Barbieri73317132010-01-21 05:36:14 +01002139Properties
2140^^^^^^^^^^^^^^^^^^^^^^^^
2141
2142
2143 Properties are general directives that apply to the whole TGSI program.
2144
2145FS_COORD_ORIGIN
2146"""""""""""""""
2147
2148Specifies the fragment shader TGSI_SEMANTIC_POSITION coordinate origin.
2149The default value is UPPER_LEFT.
2150
2151If UPPER_LEFT, the position will be (0,0) at the upper left corner and
2152increase downward and rightward.
2153If LOWER_LEFT, the position will be (0,0) at the lower left corner and
2154increase upward and rightward.
2155
2156OpenGL defaults to LOWER_LEFT, and is configurable with the
2157GL_ARB_fragment_coord_conventions extension.
2158
2159DirectX 9/10 use UPPER_LEFT.
2160
2161FS_COORD_PIXEL_CENTER
2162"""""""""""""""""""""
2163
2164Specifies the fragment shader TGSI_SEMANTIC_POSITION pixel center convention.
2165The default value is HALF_INTEGER.
2166
2167If HALF_INTEGER, the fractionary part of the position will be 0.5
2168If INTEGER, the fractionary part of the position will be 0.0
2169
2170Note that this does not affect the set of fragments generated by
José Fonseca2737abb2013-04-23 19:40:05 +01002171rasterization, which is instead controlled by half_pixel_center in the
Luca Barbieri73317132010-01-21 05:36:14 +01002172rasterizer.
2173
2174OpenGL defaults to HALF_INTEGER, and is configurable with the
2175GL_ARB_fragment_coord_conventions extension.
2176
2177DirectX 9 uses INTEGER.
2178DirectX 10 uses HALF_INTEGER.
Brian Paul4778f462010-02-02 08:14:40 -07002179
Dave Airliec9c8a5e2010-12-18 10:34:35 +10002180FS_COLOR0_WRITES_ALL_CBUFS
2181""""""""""""""""""""""""""
2182Specifies that writes to the fragment shader color 0 are replicated to all
2183bound cbufs. This facilitates OpenGL's fragColor output vs fragData[0] where
2184fragData is directed to a single color buffer, but fragColor is broadcast.
Brian Paul4778f462010-02-02 08:14:40 -07002185
Marek Olšákdc4c8212012-01-10 00:19:00 +01002186VS_PROHIBIT_UCPS
2187""""""""""""""""""""""""""
2188If this property is set on the program bound to the shader stage before the
2189fragment shader, user clip planes should have no effect (be disabled) even if
2190that shader does not write to any clip distance outputs and the rasterizer's
2191clip_plane_enable is non-zero.
2192This property is only supported by drivers that also support shader clip
2193distance outputs.
2194This is useful for APIs that don't have UCPs and where clip distances written
2195by a shader cannot be disabled.
2196
Brian Paul4778f462010-02-02 08:14:40 -07002197
2198Texture Sampling and Texture Formats
2199------------------------------------
2200
Corbin Simpson797dcc02010-02-02 17:07:26 -08002201This table shows how texture image components are returned as (x,y,z,w) tuples
2202by TGSI texture instructions, such as :opcode:`TEX`, :opcode:`TXD`, and
2203:opcode:`TXP`. For reference, OpenGL and Direct3D conventions are shown as
2204well.
Brian Paul4778f462010-02-02 08:14:40 -07002205
Corbin Simpson516e7152010-02-02 12:44:22 -08002206+--------------------+--------------+--------------------+--------------+
2207| Texture Components | Gallium | OpenGL | Direct3D 9 |
2208+====================+==============+====================+==============+
Corbin Simpson92867dc2010-06-16 16:56:55 -07002209| R | (r, 0, 0, 1) | (r, 0, 0, 1) | (r, 1, 1, 1) |
Corbin Simpson516e7152010-02-02 12:44:22 -08002210+--------------------+--------------+--------------------+--------------+
Corbin Simpson92867dc2010-06-16 16:56:55 -07002211| RG | (r, g, 0, 1) | (r, g, 0, 1) | (r, g, 1, 1) |
Corbin Simpson516e7152010-02-02 12:44:22 -08002212+--------------------+--------------+--------------------+--------------+
2213| RGB | (r, g, b, 1) | (r, g, b, 1) | (r, g, b, 1) |
2214+--------------------+--------------+--------------------+--------------+
2215| RGBA | (r, g, b, a) | (r, g, b, a) | (r, g, b, a) |
2216+--------------------+--------------+--------------------+--------------+
2217| A | (0, 0, 0, a) | (0, 0, 0, a) | (0, 0, 0, a) |
2218+--------------------+--------------+--------------------+--------------+
2219| L | (l, l, l, 1) | (l, l, l, 1) | (l, l, l, 1) |
2220+--------------------+--------------+--------------------+--------------+
2221| LA | (l, l, l, a) | (l, l, l, a) | (l, l, l, a) |
2222+--------------------+--------------+--------------------+--------------+
2223| I | (i, i, i, i) | (i, i, i, i) | N/A |
2224+--------------------+--------------+--------------------+--------------+
2225| UV | XXX TBD | (0, 0, 0, 1) | (u, v, 1, 1) |
2226| | | [#envmap-bumpmap]_ | |
2227+--------------------+--------------+--------------------+--------------+
Brian Paul3e572eb2010-02-02 16:27:07 -07002228| Z | XXX TBD | (z, z, z, 1) | (0, z, 0, 1) |
Corbin Simpson516e7152010-02-02 12:44:22 -08002229| | | [#depth-tex-mode]_ | |
2230+--------------------+--------------+--------------------+--------------+
Dave Airlie66a0d1e2010-10-06 09:30:17 +10002231| S | (s, s, s, s) | unknown | unknown |
2232+--------------------+--------------+--------------------+--------------+
Brian Paul4778f462010-02-02 08:14:40 -07002233
Corbin Simpson516e7152010-02-02 12:44:22 -08002234.. [#envmap-bumpmap] http://www.opengl.org/registry/specs/ATI/envmap_bumpmap.txt
Brian Paul3e572eb2010-02-02 16:27:07 -07002235.. [#depth-tex-mode] the default is (z, z, z, 1) but may also be (0, 0, 0, z)
Corbin Simpson797dcc02010-02-02 17:07:26 -08002236 or (z, z, z, z) depending on the value of GL_DEPTH_TEXTURE_MODE.