blob: cbfbf56d33b941110e0cbc44e7ba09659cbf66a8 [file] [log] [blame]
Nicolas Capens0bac2852016-05-07 06:09:58 -04001// Copyright 2016 The SwiftShader Authors. All Rights Reserved.
2//
3// Licensed under the Apache License, Version 2.0 (the "License");
4// you may not use this file except in compliance with the License.
5// You may obtain a copy of the License at
6//
7// http://www.apache.org/licenses/LICENSE-2.0
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS,
11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12// See the License for the specific language governing permissions and
13// limitations under the License.
14
15#include "OutputASM.h"
16#include "Common/Math.hpp"
17
18#include "common/debug.h"
19#include "InfoSink.h"
20
21#include "libGLESv2/Shader.h"
22
23#include <GLES2/gl2.h>
24#include <GLES2/gl2ext.h>
25#include <GLES3/gl3.h>
26
Nicolas Capens930b7002017-01-06 17:22:13 -050027#include <stdlib.h>
28
Alexis Hetu924513c2018-01-05 15:48:12 -050029namespace
30{
31 GLenum glVariableType(const TType &type)
32 {
33 switch(type.getBasicType())
34 {
35 case EbtFloat:
36 if(type.isScalar())
37 {
38 return GL_FLOAT;
39 }
40 else if(type.isVector())
41 {
42 switch(type.getNominalSize())
43 {
44 case 2: return GL_FLOAT_VEC2;
45 case 3: return GL_FLOAT_VEC3;
46 case 4: return GL_FLOAT_VEC4;
47 default: UNREACHABLE(type.getNominalSize());
48 }
49 }
50 else if(type.isMatrix())
51 {
52 switch(type.getNominalSize())
53 {
54 case 2:
55 switch(type.getSecondarySize())
56 {
57 case 2: return GL_FLOAT_MAT2;
58 case 3: return GL_FLOAT_MAT2x3;
59 case 4: return GL_FLOAT_MAT2x4;
60 default: UNREACHABLE(type.getSecondarySize());
61 }
62 case 3:
63 switch(type.getSecondarySize())
64 {
65 case 2: return GL_FLOAT_MAT3x2;
66 case 3: return GL_FLOAT_MAT3;
67 case 4: return GL_FLOAT_MAT3x4;
68 default: UNREACHABLE(type.getSecondarySize());
69 }
70 case 4:
71 switch(type.getSecondarySize())
72 {
73 case 2: return GL_FLOAT_MAT4x2;
74 case 3: return GL_FLOAT_MAT4x3;
75 case 4: return GL_FLOAT_MAT4;
76 default: UNREACHABLE(type.getSecondarySize());
77 }
78 default: UNREACHABLE(type.getNominalSize());
79 }
80 }
81 else UNREACHABLE(0);
82 break;
83 case EbtInt:
84 if(type.isScalar())
85 {
86 return GL_INT;
87 }
88 else if(type.isVector())
89 {
90 switch(type.getNominalSize())
91 {
92 case 2: return GL_INT_VEC2;
93 case 3: return GL_INT_VEC3;
94 case 4: return GL_INT_VEC4;
95 default: UNREACHABLE(type.getNominalSize());
96 }
97 }
98 else UNREACHABLE(0);
99 break;
100 case EbtUInt:
101 if(type.isScalar())
102 {
103 return GL_UNSIGNED_INT;
104 }
105 else if(type.isVector())
106 {
107 switch(type.getNominalSize())
108 {
109 case 2: return GL_UNSIGNED_INT_VEC2;
110 case 3: return GL_UNSIGNED_INT_VEC3;
111 case 4: return GL_UNSIGNED_INT_VEC4;
112 default: UNREACHABLE(type.getNominalSize());
113 }
114 }
115 else UNREACHABLE(0);
116 break;
117 case EbtBool:
118 if(type.isScalar())
119 {
120 return GL_BOOL;
121 }
122 else if(type.isVector())
123 {
124 switch(type.getNominalSize())
125 {
126 case 2: return GL_BOOL_VEC2;
127 case 3: return GL_BOOL_VEC3;
128 case 4: return GL_BOOL_VEC4;
129 default: UNREACHABLE(type.getNominalSize());
130 }
131 }
132 else UNREACHABLE(0);
133 break;
134 case EbtSampler2D:
135 return GL_SAMPLER_2D;
136 case EbtISampler2D:
137 return GL_INT_SAMPLER_2D;
138 case EbtUSampler2D:
139 return GL_UNSIGNED_INT_SAMPLER_2D;
140 case EbtSamplerCube:
141 return GL_SAMPLER_CUBE;
Alexis Hetu46768622018-01-16 22:09:28 -0500142 case EbtSampler2DRect:
143 return GL_SAMPLER_2D_RECT_ARB;
Alexis Hetu924513c2018-01-05 15:48:12 -0500144 case EbtISamplerCube:
145 return GL_INT_SAMPLER_CUBE;
146 case EbtUSamplerCube:
147 return GL_UNSIGNED_INT_SAMPLER_CUBE;
148 case EbtSamplerExternalOES:
149 return GL_SAMPLER_EXTERNAL_OES;
150 case EbtSampler3D:
151 return GL_SAMPLER_3D_OES;
152 case EbtISampler3D:
153 return GL_INT_SAMPLER_3D;
154 case EbtUSampler3D:
155 return GL_UNSIGNED_INT_SAMPLER_3D;
156 case EbtSampler2DArray:
157 return GL_SAMPLER_2D_ARRAY;
158 case EbtISampler2DArray:
159 return GL_INT_SAMPLER_2D_ARRAY;
160 case EbtUSampler2DArray:
161 return GL_UNSIGNED_INT_SAMPLER_2D_ARRAY;
162 case EbtSampler2DShadow:
163 return GL_SAMPLER_2D_SHADOW;
164 case EbtSamplerCubeShadow:
165 return GL_SAMPLER_CUBE_SHADOW;
166 case EbtSampler2DArrayShadow:
167 return GL_SAMPLER_2D_ARRAY_SHADOW;
168 default:
169 UNREACHABLE(type.getBasicType());
170 break;
171 }
172
173 return GL_NONE;
174 }
175
176 GLenum glVariablePrecision(const TType &type)
177 {
178 if(type.getBasicType() == EbtFloat)
179 {
180 switch(type.getPrecision())
181 {
182 case EbpHigh: return GL_HIGH_FLOAT;
183 case EbpMedium: return GL_MEDIUM_FLOAT;
184 case EbpLow: return GL_LOW_FLOAT;
185 case EbpUndefined:
186 // Should be defined as the default precision by the parser
187 default: UNREACHABLE(type.getPrecision());
188 }
189 }
190 else if(type.getBasicType() == EbtInt)
191 {
192 switch(type.getPrecision())
193 {
194 case EbpHigh: return GL_HIGH_INT;
195 case EbpMedium: return GL_MEDIUM_INT;
196 case EbpLow: return GL_LOW_INT;
197 case EbpUndefined:
198 // Should be defined as the default precision by the parser
199 default: UNREACHABLE(type.getPrecision());
200 }
201 }
202
203 // Other types (boolean, sampler) don't have a precision
204 return GL_NONE;
205 }
206}
207
Nicolas Capens0bac2852016-05-07 06:09:58 -0400208namespace glsl
209{
210 // Integer to TString conversion
211 TString str(int i)
212 {
213 char buffer[20];
214 sprintf(buffer, "%d", i);
215 return buffer;
216 }
217
218 class Temporary : public TIntermSymbol
219 {
220 public:
221 Temporary(OutputASM *assembler) : TIntermSymbol(TSymbolTableLevel::nextUniqueId(), "tmp", TType(EbtFloat, EbpHigh, EvqTemporary, 4, 1, false)), assembler(assembler)
222 {
223 }
224
225 ~Temporary()
226 {
227 assembler->freeTemporary(this);
228 }
229
230 private:
231 OutputASM *const assembler;
232 };
233
234 class Constant : public TIntermConstantUnion
235 {
236 public:
237 Constant(float x, float y, float z, float w) : TIntermConstantUnion(constants, TType(EbtFloat, EbpHigh, EvqConstExpr, 4, 1, false))
238 {
239 constants[0].setFConst(x);
240 constants[1].setFConst(y);
241 constants[2].setFConst(z);
242 constants[3].setFConst(w);
243 }
244
245 Constant(bool b) : TIntermConstantUnion(constants, TType(EbtBool, EbpHigh, EvqConstExpr, 1, 1, false))
246 {
247 constants[0].setBConst(b);
248 }
249
250 Constant(int i) : TIntermConstantUnion(constants, TType(EbtInt, EbpHigh, EvqConstExpr, 1, 1, false))
251 {
252 constants[0].setIConst(i);
253 }
254
255 ~Constant()
256 {
257 }
258
259 private:
260 ConstantUnion constants[4];
261 };
262
Alexis Hetu924513c2018-01-05 15:48:12 -0500263 ShaderVariable::ShaderVariable(const TType& type, const std::string& name, int registerIndex) :
264 type(type.isStruct() ? GL_NONE : glVariableType(type)), precision(glVariablePrecision(type)),
265 name(name), arraySize(type.getArraySize()), registerIndex(registerIndex)
266 {
267 if(type.isStruct())
268 {
269 for(const auto& field : type.getStruct()->fields())
270 {
271 fields.push_back(ShaderVariable(*(field->type()), field->name().c_str(), -1));
272 }
273 }
274 }
275
276 Uniform::Uniform(const TType& type, const std::string &name, int registerIndex, int blockId, const BlockMemberInfo& blockMemberInfo) :
277 ShaderVariable(type, name, registerIndex), blockId(blockId), blockInfo(blockMemberInfo)
Nicolas Capens0bac2852016-05-07 06:09:58 -0400278 {
279 }
280
281 UniformBlock::UniformBlock(const std::string& name, unsigned int dataSize, unsigned int arraySize,
282 TLayoutBlockStorage layout, bool isRowMajorLayout, int registerIndex, int blockId) :
283 name(name), dataSize(dataSize), arraySize(arraySize), layout(layout),
284 isRowMajorLayout(isRowMajorLayout), registerIndex(registerIndex), blockId(blockId)
285 {
286 }
287
Alexis Hetud2742532018-01-23 16:53:41 -0500288 BlockLayoutEncoder::BlockLayoutEncoder()
289 : mCurrentOffset(0)
Nicolas Capens0bac2852016-05-07 06:09:58 -0400290 {
291 }
292
293 BlockMemberInfo BlockLayoutEncoder::encodeType(const TType &type)
294 {
295 int arrayStride;
296 int matrixStride;
297
Alexis Hetud2742532018-01-23 16:53:41 -0500298 bool isRowMajor = type.getLayoutQualifier().matrixPacking == EmpRowMajor;
299 getBlockLayoutInfo(type, type.getArraySize(), isRowMajor, &arrayStride, &matrixStride);
Nicolas Capens0bac2852016-05-07 06:09:58 -0400300
301 const BlockMemberInfo memberInfo(static_cast<int>(mCurrentOffset * BytesPerComponent),
302 static_cast<int>(arrayStride * BytesPerComponent),
303 static_cast<int>(matrixStride * BytesPerComponent),
Alexis Hetud2742532018-01-23 16:53:41 -0500304 (matrixStride > 0) && isRowMajor);
Nicolas Capens0bac2852016-05-07 06:09:58 -0400305
Alexis Hetud2742532018-01-23 16:53:41 -0500306 advanceOffset(type, type.getArraySize(), isRowMajor, arrayStride, matrixStride);
Nicolas Capens0bac2852016-05-07 06:09:58 -0400307
308 return memberInfo;
309 }
310
311 // static
312 size_t BlockLayoutEncoder::getBlockRegister(const BlockMemberInfo &info)
313 {
314 return (info.offset / BytesPerComponent) / ComponentsPerRegister;
315 }
316
317 // static
318 size_t BlockLayoutEncoder::getBlockRegisterElement(const BlockMemberInfo &info)
319 {
320 return (info.offset / BytesPerComponent) % ComponentsPerRegister;
321 }
322
323 void BlockLayoutEncoder::nextRegister()
324 {
325 mCurrentOffset = sw::align(mCurrentOffset, ComponentsPerRegister);
326 }
327
Alexis Hetud2742532018-01-23 16:53:41 -0500328 Std140BlockEncoder::Std140BlockEncoder() : BlockLayoutEncoder()
Nicolas Capens0bac2852016-05-07 06:09:58 -0400329 {
330 }
331
332 void Std140BlockEncoder::enterAggregateType()
333 {
334 nextRegister();
335 }
336
337 void Std140BlockEncoder::exitAggregateType()
338 {
339 nextRegister();
340 }
341
342 void Std140BlockEncoder::getBlockLayoutInfo(const TType &type, unsigned int arraySize, bool isRowMajorMatrix, int *arrayStrideOut, int *matrixStrideOut)
343 {
344 size_t baseAlignment = 0;
345 int matrixStride = 0;
346 int arrayStride = 0;
347
348 if(type.isMatrix())
349 {
350 baseAlignment = ComponentsPerRegister;
351 matrixStride = ComponentsPerRegister;
352
353 if(arraySize > 0)
354 {
355 const int numRegisters = isRowMajorMatrix ? type.getSecondarySize() : type.getNominalSize();
356 arrayStride = ComponentsPerRegister * numRegisters;
357 }
358 }
359 else if(arraySize > 0)
360 {
361 baseAlignment = ComponentsPerRegister;
362 arrayStride = ComponentsPerRegister;
363 }
364 else
365 {
366 const size_t numComponents = type.getElementSize();
367 baseAlignment = (numComponents == 3 ? 4u : numComponents);
368 }
369
370 mCurrentOffset = sw::align(mCurrentOffset, baseAlignment);
371
372 *matrixStrideOut = matrixStride;
373 *arrayStrideOut = arrayStride;
374 }
375
376 void Std140BlockEncoder::advanceOffset(const TType &type, unsigned int arraySize, bool isRowMajorMatrix, int arrayStride, int matrixStride)
377 {
378 if(arraySize > 0)
379 {
380 mCurrentOffset += arrayStride * arraySize;
381 }
382 else if(type.isMatrix())
383 {
384 ASSERT(matrixStride == ComponentsPerRegister);
385 const int numRegisters = isRowMajorMatrix ? type.getSecondarySize() : type.getNominalSize();
386 mCurrentOffset += ComponentsPerRegister * numRegisters;
387 }
388 else
389 {
390 mCurrentOffset += type.getElementSize();
391 }
392 }
393
394 Attribute::Attribute()
395 {
396 type = GL_NONE;
397 arraySize = 0;
398 registerIndex = 0;
399 }
400
401 Attribute::Attribute(GLenum type, const std::string &name, int arraySize, int location, int registerIndex)
402 {
403 this->type = type;
404 this->name = name;
405 this->arraySize = arraySize;
406 this->location = location;
407 this->registerIndex = registerIndex;
408 }
409
410 sw::PixelShader *Shader::getPixelShader() const
411 {
Nicolas Capens7cbb1de2017-12-22 08:54:18 -0500412 return nullptr;
Nicolas Capens0bac2852016-05-07 06:09:58 -0400413 }
414
415 sw::VertexShader *Shader::getVertexShader() const
416 {
Nicolas Capens7cbb1de2017-12-22 08:54:18 -0500417 return nullptr;
Nicolas Capens0bac2852016-05-07 06:09:58 -0400418 }
419
420 OutputASM::TextureFunction::TextureFunction(const TString& nodeName) : method(IMPLICIT), proj(false), offset(false)
421 {
422 TString name = TFunction::unmangleName(nodeName);
423
Alexis Hetuc0632c92018-03-02 15:10:16 -0500424 if(name == "texture2D" || name == "textureCube" || name == "texture" || name == "texture3D" || name == "texture2DRect")
Nicolas Capens0bac2852016-05-07 06:09:58 -0400425 {
426 method = IMPLICIT;
427 }
Alexis Hetuc0632c92018-03-02 15:10:16 -0500428 else if(name == "texture2DProj" || name == "textureProj" || name == "texture2DRectProj")
Nicolas Capens0bac2852016-05-07 06:09:58 -0400429 {
430 method = IMPLICIT;
431 proj = true;
432 }
433 else if(name == "texture2DLod" || name == "textureCubeLod" || name == "textureLod")
434 {
435 method = LOD;
436 }
437 else if(name == "texture2DProjLod" || name == "textureProjLod")
438 {
439 method = LOD;
440 proj = true;
441 }
442 else if(name == "textureSize")
443 {
444 method = SIZE;
445 }
446 else if(name == "textureOffset")
447 {
448 method = IMPLICIT;
449 offset = true;
450 }
451 else if(name == "textureProjOffset")
452 {
453 method = IMPLICIT;
454 offset = true;
455 proj = true;
456 }
457 else if(name == "textureLodOffset")
458 {
459 method = LOD;
460 offset = true;
461 }
462 else if(name == "textureProjLodOffset")
463 {
464 method = LOD;
465 proj = true;
466 offset = true;
467 }
468 else if(name == "texelFetch")
469 {
470 method = FETCH;
471 }
472 else if(name == "texelFetchOffset")
473 {
474 method = FETCH;
475 offset = true;
476 }
477 else if(name == "textureGrad")
478 {
479 method = GRAD;
480 }
481 else if(name == "textureGradOffset")
482 {
483 method = GRAD;
484 offset = true;
485 }
486 else if(name == "textureProjGrad")
487 {
488 method = GRAD;
489 proj = true;
490 }
491 else if(name == "textureProjGradOffset")
492 {
493 method = GRAD;
494 proj = true;
495 offset = true;
496 }
497 else UNREACHABLE(0);
498 }
499
500 OutputASM::OutputASM(TParseContext &context, Shader *shaderObject) : TIntermTraverser(true, true, true), shaderObject(shaderObject), mContext(context)
501 {
Nicolas Capens7cbb1de2017-12-22 08:54:18 -0500502 shader = nullptr;
503 pixelShader = nullptr;
504 vertexShader = nullptr;
Nicolas Capens0bac2852016-05-07 06:09:58 -0400505
506 if(shaderObject)
507 {
508 shader = shaderObject->getShader();
509 pixelShader = shaderObject->getPixelShader();
510 vertexShader = shaderObject->getVertexShader();
511 }
512
Nicolas Capens7cbb1de2017-12-22 08:54:18 -0500513 functionArray.push_back(Function(0, "main(", nullptr, nullptr));
Nicolas Capens0bac2852016-05-07 06:09:58 -0400514 currentFunction = 0;
Nicolas Capens7cbb1de2017-12-22 08:54:18 -0500515 outputQualifier = EvqOutput; // Initialize outputQualifier to any value other than EvqFragColor or EvqFragData
Nicolas Capens0bac2852016-05-07 06:09:58 -0400516 }
517
518 OutputASM::~OutputASM()
519 {
520 }
521
522 void OutputASM::output()
523 {
524 if(shader)
525 {
526 emitShader(GLOBAL);
527
528 if(functionArray.size() > 1) // Only call main() when there are other functions
529 {
530 Instruction *callMain = emit(sw::Shader::OPCODE_CALL);
531 callMain->dst.type = sw::Shader::PARAMETER_LABEL;
532 callMain->dst.index = 0; // main()
533
534 emit(sw::Shader::OPCODE_RET);
535 }
536
537 emitShader(FUNCTION);
538 }
539 }
540
541 void OutputASM::emitShader(Scope scope)
542 {
543 emitScope = scope;
544 currentScope = GLOBAL;
545 mContext.getTreeRoot()->traverse(this);
546 }
547
548 void OutputASM::freeTemporary(Temporary *temporary)
549 {
550 free(temporaries, temporary);
551 }
552
553 sw::Shader::Opcode OutputASM::getOpcode(sw::Shader::Opcode op, TIntermTyped *in) const
554 {
555 TBasicType baseType = in->getType().getBasicType();
556
557 switch(op)
558 {
559 case sw::Shader::OPCODE_NEG:
560 switch(baseType)
561 {
562 case EbtInt:
563 case EbtUInt:
564 return sw::Shader::OPCODE_INEG;
565 case EbtFloat:
566 default:
567 return op;
568 }
569 case sw::Shader::OPCODE_ABS:
570 switch(baseType)
571 {
572 case EbtInt:
573 return sw::Shader::OPCODE_IABS;
574 case EbtFloat:
575 default:
576 return op;
577 }
578 case sw::Shader::OPCODE_SGN:
579 switch(baseType)
580 {
581 case EbtInt:
582 return sw::Shader::OPCODE_ISGN;
583 case EbtFloat:
584 default:
585 return op;
586 }
587 case sw::Shader::OPCODE_ADD:
588 switch(baseType)
589 {
590 case EbtInt:
591 case EbtUInt:
592 return sw::Shader::OPCODE_IADD;
593 case EbtFloat:
594 default:
595 return op;
596 }
597 case sw::Shader::OPCODE_SUB:
598 switch(baseType)
599 {
600 case EbtInt:
601 case EbtUInt:
602 return sw::Shader::OPCODE_ISUB;
603 case EbtFloat:
604 default:
605 return op;
606 }
607 case sw::Shader::OPCODE_MUL:
608 switch(baseType)
609 {
610 case EbtInt:
611 case EbtUInt:
612 return sw::Shader::OPCODE_IMUL;
613 case EbtFloat:
614 default:
615 return op;
616 }
617 case sw::Shader::OPCODE_DIV:
618 switch(baseType)
619 {
620 case EbtInt:
621 return sw::Shader::OPCODE_IDIV;
622 case EbtUInt:
623 return sw::Shader::OPCODE_UDIV;
624 case EbtFloat:
625 default:
626 return op;
627 }
628 case sw::Shader::OPCODE_IMOD:
629 return baseType == EbtUInt ? sw::Shader::OPCODE_UMOD : op;
630 case sw::Shader::OPCODE_ISHR:
631 return baseType == EbtUInt ? sw::Shader::OPCODE_USHR : op;
632 case sw::Shader::OPCODE_MIN:
633 switch(baseType)
634 {
635 case EbtInt:
636 return sw::Shader::OPCODE_IMIN;
637 case EbtUInt:
638 return sw::Shader::OPCODE_UMIN;
639 case EbtFloat:
640 default:
641 return op;
642 }
643 case sw::Shader::OPCODE_MAX:
644 switch(baseType)
645 {
646 case EbtInt:
647 return sw::Shader::OPCODE_IMAX;
648 case EbtUInt:
649 return sw::Shader::OPCODE_UMAX;
650 case EbtFloat:
651 default:
652 return op;
653 }
654 default:
655 return op;
656 }
657 }
658
659 void OutputASM::visitSymbol(TIntermSymbol *symbol)
660 {
Nicolas Capens6896e352018-01-10 12:46:52 -0500661 // The type of vertex outputs and fragment inputs with the same name must match (validated at link time),
662 // so declare them but don't assign a register index yet (one will be assigned when referenced in reachable code).
663 switch(symbol->getQualifier())
Nicolas Capens0bac2852016-05-07 06:09:58 -0400664 {
Nicolas Capens6896e352018-01-10 12:46:52 -0500665 case EvqVaryingIn:
666 case EvqVaryingOut:
667 case EvqInvariantVaryingIn:
668 case EvqInvariantVaryingOut:
669 case EvqVertexOut:
670 case EvqFragmentIn:
Nicolas Capens0bac2852016-05-07 06:09:58 -0400671 if(symbol->getBasicType() != EbtInvariant) // Typeless declarations are not new varyings
672 {
673 declareVarying(symbol, -1);
674 }
Nicolas Capens6896e352018-01-10 12:46:52 -0500675 break;
Alexis Hetu930df972018-01-30 16:54:13 -0500676 case EvqFragmentOut:
677 declareFragmentOutput(symbol);
678 break;
Nicolas Capens6896e352018-01-10 12:46:52 -0500679 default:
680 break;
Nicolas Capens0bac2852016-05-07 06:09:58 -0400681 }
682
683 TInterfaceBlock* block = symbol->getType().getInterfaceBlock();
684 // OpenGL ES 3.0.4 spec, section 2.12.6 Uniform Variables:
685 // "All members of a named uniform block declared with a shared or std140 layout qualifier
686 // are considered active, even if they are not referenced in any shader in the program.
687 // The uniform block itself is also considered active, even if no member of the block is referenced."
688 if(block && ((block->blockStorage() == EbsShared) || (block->blockStorage() == EbsStd140)))
689 {
690 uniformRegister(symbol);
691 }
692 }
693
694 bool OutputASM::visitBinary(Visit visit, TIntermBinary *node)
695 {
696 if(currentScope != emitScope)
697 {
698 return false;
699 }
700
701 TIntermTyped *result = node;
702 TIntermTyped *left = node->getLeft();
703 TIntermTyped *right = node->getRight();
704 const TType &leftType = left->getType();
705 const TType &rightType = right->getType();
Nicolas Capens0bac2852016-05-07 06:09:58 -0400706
707 if(isSamplerRegister(result))
708 {
709 return false; // Don't traverse, the register index is determined statically
710 }
711
712 switch(node->getOp())
713 {
714 case EOpAssign:
Nicolas Capens84249fd2017-11-09 11:20:51 -0500715 assert(visit == PreVisit);
716 right->traverse(this);
717 assignLvalue(left, right);
718 copy(result, right);
719 return false;
Nicolas Capens0bac2852016-05-07 06:09:58 -0400720 case EOpInitialize:
Nicolas Capens84249fd2017-11-09 11:20:51 -0500721 assert(visit == PreVisit);
Nicolas Capens7cbb1de2017-12-22 08:54:18 -0500722 // Constant arrays go into the constant register file.
723 if(leftType.getQualifier() == EvqConstExpr && leftType.isArray() && leftType.getArraySize() > 1)
724 {
725 for(int i = 0; i < left->totalRegisterCount(); i++)
726 {
727 emit(sw::Shader::OPCODE_DEF, left, i, right, i);
728 }
729 }
730 else
731 {
732 right->traverse(this);
733 copy(left, right);
734 }
Nicolas Capens84249fd2017-11-09 11:20:51 -0500735 return false;
Nicolas Capens0bac2852016-05-07 06:09:58 -0400736 case EOpMatrixTimesScalarAssign:
Nicolas Capens84249fd2017-11-09 11:20:51 -0500737 assert(visit == PreVisit);
738 right->traverse(this);
739 for(int i = 0; i < leftType.getNominalSize(); i++)
Nicolas Capens0bac2852016-05-07 06:09:58 -0400740 {
Nicolas Capens84249fd2017-11-09 11:20:51 -0500741 emit(sw::Shader::OPCODE_MUL, result, i, left, i, right);
Nicolas Capens0bac2852016-05-07 06:09:58 -0400742 }
Nicolas Capens84249fd2017-11-09 11:20:51 -0500743
744 assignLvalue(left, result);
745 return false;
Nicolas Capens0bac2852016-05-07 06:09:58 -0400746 case EOpVectorTimesMatrixAssign:
Nicolas Capens84249fd2017-11-09 11:20:51 -0500747 assert(visit == PreVisit);
Nicolas Capens0bac2852016-05-07 06:09:58 -0400748 {
Nicolas Capens84249fd2017-11-09 11:20:51 -0500749 right->traverse(this);
Nicolas Capens0bac2852016-05-07 06:09:58 -0400750 int size = leftType.getNominalSize();
751
752 for(int i = 0; i < size; i++)
753 {
754 Instruction *dot = emit(sw::Shader::OPCODE_DP(size), result, 0, left, 0, right, i);
755 dot->dst.mask = 1 << i;
756 }
757
758 assignLvalue(left, result);
759 }
Nicolas Capens84249fd2017-11-09 11:20:51 -0500760 return false;
Nicolas Capens0bac2852016-05-07 06:09:58 -0400761 case EOpMatrixTimesMatrixAssign:
Nicolas Capens84249fd2017-11-09 11:20:51 -0500762 assert(visit == PreVisit);
Nicolas Capens0bac2852016-05-07 06:09:58 -0400763 {
Nicolas Capens84249fd2017-11-09 11:20:51 -0500764 right->traverse(this);
Nicolas Capens0bac2852016-05-07 06:09:58 -0400765 int dim = leftType.getNominalSize();
766
767 for(int i = 0; i < dim; i++)
768 {
769 Instruction *mul = emit(sw::Shader::OPCODE_MUL, result, i, left, 0, right, i);
770 mul->src[1].swizzle = 0x00;
771
772 for(int j = 1; j < dim; j++)
773 {
774 Instruction *mad = emit(sw::Shader::OPCODE_MAD, result, i, left, j, right, i, result, i);
775 mad->src[1].swizzle = j * 0x55;
776 }
777 }
778
779 assignLvalue(left, result);
780 }
Nicolas Capens84249fd2017-11-09 11:20:51 -0500781 return false;
Nicolas Capens0bac2852016-05-07 06:09:58 -0400782 case EOpIndexDirect:
Nicolas Capens0bac2852016-05-07 06:09:58 -0400783 case EOpIndexIndirect:
Nicolas Capens0bac2852016-05-07 06:09:58 -0400784 case EOpIndexDirectStruct:
785 case EOpIndexDirectInterfaceBlock:
Nicolas Capensd469de22017-11-16 10:42:20 -0500786 assert(visit == PreVisit);
787 evaluateRvalue(node);
788 return false;
Nicolas Capens0bac2852016-05-07 06:09:58 -0400789 case EOpVectorSwizzle:
790 if(visit == PostVisit)
791 {
792 int swizzle = 0;
793 TIntermAggregate *components = right->getAsAggregate();
794
795 if(components)
796 {
797 TIntermSequence &sequence = components->getSequence();
798 int component = 0;
799
800 for(TIntermSequence::iterator sit = sequence.begin(); sit != sequence.end(); sit++)
801 {
802 TIntermConstantUnion *element = (*sit)->getAsConstantUnion();
803
804 if(element)
805 {
806 int i = element->getUnionArrayPointer()[0].getIConst();
807 swizzle |= i << (component * 2);
808 component++;
809 }
810 else UNREACHABLE(0);
811 }
812 }
813 else UNREACHABLE(0);
814
815 Instruction *mov = emit(sw::Shader::OPCODE_MOV, result, left);
816 mov->src[0].swizzle = swizzle;
817 }
818 break;
819 case EOpAddAssign: if(visit == PostVisit) emitAssign(getOpcode(sw::Shader::OPCODE_ADD, result), result, left, left, right); break;
820 case EOpAdd: if(visit == PostVisit) emitBinary(getOpcode(sw::Shader::OPCODE_ADD, result), result, left, right); break;
821 case EOpSubAssign: if(visit == PostVisit) emitAssign(getOpcode(sw::Shader::OPCODE_SUB, result), result, left, left, right); break;
822 case EOpSub: if(visit == PostVisit) emitBinary(getOpcode(sw::Shader::OPCODE_SUB, result), result, left, right); break;
823 case EOpMulAssign: if(visit == PostVisit) emitAssign(getOpcode(sw::Shader::OPCODE_MUL, result), result, left, left, right); break;
824 case EOpMul: if(visit == PostVisit) emitBinary(getOpcode(sw::Shader::OPCODE_MUL, result), result, left, right); break;
825 case EOpDivAssign: if(visit == PostVisit) emitAssign(getOpcode(sw::Shader::OPCODE_DIV, result), result, left, left, right); break;
826 case EOpDiv: if(visit == PostVisit) emitBinary(getOpcode(sw::Shader::OPCODE_DIV, result), result, left, right); break;
827 case EOpIModAssign: if(visit == PostVisit) emitAssign(getOpcode(sw::Shader::OPCODE_IMOD, result), result, left, left, right); break;
828 case EOpIMod: if(visit == PostVisit) emitBinary(getOpcode(sw::Shader::OPCODE_IMOD, result), result, left, right); break;
829 case EOpBitShiftLeftAssign: if(visit == PostVisit) emitAssign(sw::Shader::OPCODE_SHL, result, left, left, right); break;
830 case EOpBitShiftLeft: if(visit == PostVisit) emitBinary(sw::Shader::OPCODE_SHL, result, left, right); break;
831 case EOpBitShiftRightAssign: if(visit == PostVisit) emitAssign(getOpcode(sw::Shader::OPCODE_ISHR, result), result, left, left, right); break;
832 case EOpBitShiftRight: if(visit == PostVisit) emitBinary(getOpcode(sw::Shader::OPCODE_ISHR, result), result, left, right); break;
833 case EOpBitwiseAndAssign: if(visit == PostVisit) emitAssign(sw::Shader::OPCODE_AND, result, left, left, right); break;
834 case EOpBitwiseAnd: if(visit == PostVisit) emitBinary(sw::Shader::OPCODE_AND, result, left, right); break;
835 case EOpBitwiseXorAssign: if(visit == PostVisit) emitAssign(sw::Shader::OPCODE_XOR, result, left, left, right); break;
836 case EOpBitwiseXor: if(visit == PostVisit) emitBinary(sw::Shader::OPCODE_XOR, result, left, right); break;
837 case EOpBitwiseOrAssign: if(visit == PostVisit) emitAssign(sw::Shader::OPCODE_OR, result, left, left, right); break;
838 case EOpBitwiseOr: if(visit == PostVisit) emitBinary(sw::Shader::OPCODE_OR, result, left, right); break;
839 case EOpEqual:
840 if(visit == PostVisit)
841 {
842 emitBinary(sw::Shader::OPCODE_EQ, result, left, right);
843
844 for(int index = 1; index < left->totalRegisterCount(); index++)
845 {
846 Temporary equal(this);
847 emit(sw::Shader::OPCODE_EQ, &equal, 0, left, index, right, index);
848 emit(sw::Shader::OPCODE_AND, result, result, &equal);
849 }
850 }
851 break;
852 case EOpNotEqual:
853 if(visit == PostVisit)
854 {
855 emitBinary(sw::Shader::OPCODE_NE, result, left, right);
856
857 for(int index = 1; index < left->totalRegisterCount(); index++)
858 {
859 Temporary notEqual(this);
860 emit(sw::Shader::OPCODE_NE, &notEqual, 0, left, index, right, index);
861 emit(sw::Shader::OPCODE_OR, result, result, &notEqual);
862 }
863 }
864 break;
865 case EOpLessThan: if(visit == PostVisit) emitCmp(sw::Shader::CONTROL_LT, result, left, right); break;
866 case EOpGreaterThan: if(visit == PostVisit) emitCmp(sw::Shader::CONTROL_GT, result, left, right); break;
867 case EOpLessThanEqual: if(visit == PostVisit) emitCmp(sw::Shader::CONTROL_LE, result, left, right); break;
868 case EOpGreaterThanEqual: if(visit == PostVisit) emitCmp(sw::Shader::CONTROL_GE, result, left, right); break;
869 case EOpVectorTimesScalarAssign: if(visit == PostVisit) emitAssign(getOpcode(sw::Shader::OPCODE_MUL, left), result, left, left, right); break;
870 case EOpVectorTimesScalar: if(visit == PostVisit) emit(getOpcode(sw::Shader::OPCODE_MUL, left), result, left, right); break;
871 case EOpMatrixTimesScalar:
872 if(visit == PostVisit)
873 {
874 if(left->isMatrix())
875 {
876 for(int i = 0; i < leftType.getNominalSize(); i++)
877 {
878 emit(sw::Shader::OPCODE_MUL, result, i, left, i, right, 0);
879 }
880 }
881 else if(right->isMatrix())
882 {
883 for(int i = 0; i < rightType.getNominalSize(); i++)
884 {
885 emit(sw::Shader::OPCODE_MUL, result, i, left, 0, right, i);
886 }
887 }
888 else UNREACHABLE(0);
889 }
890 break;
891 case EOpVectorTimesMatrix:
892 if(visit == PostVisit)
893 {
894 sw::Shader::Opcode dpOpcode = sw::Shader::OPCODE_DP(leftType.getNominalSize());
895
896 int size = rightType.getNominalSize();
897 for(int i = 0; i < size; i++)
898 {
899 Instruction *dot = emit(dpOpcode, result, 0, left, 0, right, i);
900 dot->dst.mask = 1 << i;
901 }
902 }
903 break;
904 case EOpMatrixTimesVector:
905 if(visit == PostVisit)
906 {
907 Instruction *mul = emit(sw::Shader::OPCODE_MUL, result, left, right);
908 mul->src[1].swizzle = 0x00;
909
910 int size = rightType.getNominalSize();
911 for(int i = 1; i < size; i++)
912 {
913 Instruction *mad = emit(sw::Shader::OPCODE_MAD, result, 0, left, i, right, 0, result);
914 mad->src[1].swizzle = i * 0x55;
915 }
916 }
917 break;
918 case EOpMatrixTimesMatrix:
919 if(visit == PostVisit)
920 {
921 int dim = leftType.getNominalSize();
922
923 int size = rightType.getNominalSize();
924 for(int i = 0; i < size; i++)
925 {
926 Instruction *mul = emit(sw::Shader::OPCODE_MUL, result, i, left, 0, right, i);
927 mul->src[1].swizzle = 0x00;
928
929 for(int j = 1; j < dim; j++)
930 {
931 Instruction *mad = emit(sw::Shader::OPCODE_MAD, result, i, left, j, right, i, result, i);
932 mad->src[1].swizzle = j * 0x55;
933 }
934 }
935 }
936 break;
937 case EOpLogicalOr:
938 if(trivial(right, 6))
939 {
940 if(visit == PostVisit)
941 {
942 emit(sw::Shader::OPCODE_OR, result, left, right);
943 }
944 }
945 else // Short-circuit evaluation
946 {
947 if(visit == InVisit)
948 {
949 emit(sw::Shader::OPCODE_MOV, result, left);
950 Instruction *ifnot = emit(sw::Shader::OPCODE_IF, 0, result);
951 ifnot->src[0].modifier = sw::Shader::MODIFIER_NOT;
952 }
953 else if(visit == PostVisit)
954 {
955 emit(sw::Shader::OPCODE_MOV, result, right);
956 emit(sw::Shader::OPCODE_ENDIF);
957 }
958 }
959 break;
960 case EOpLogicalXor: if(visit == PostVisit) emit(sw::Shader::OPCODE_XOR, result, left, right); break;
961 case EOpLogicalAnd:
962 if(trivial(right, 6))
963 {
964 if(visit == PostVisit)
965 {
966 emit(sw::Shader::OPCODE_AND, result, left, right);
967 }
968 }
969 else // Short-circuit evaluation
970 {
971 if(visit == InVisit)
972 {
973 emit(sw::Shader::OPCODE_MOV, result, left);
974 emit(sw::Shader::OPCODE_IF, 0, result);
975 }
976 else if(visit == PostVisit)
977 {
978 emit(sw::Shader::OPCODE_MOV, result, right);
979 emit(sw::Shader::OPCODE_ENDIF);
980 }
981 }
982 break;
983 default: UNREACHABLE(node->getOp());
984 }
985
986 return true;
987 }
988
989 void OutputASM::emitDeterminant(TIntermTyped *result, TIntermTyped *arg, int size, int col, int row, int outCol, int outRow)
990 {
991 switch(size)
992 {
993 case 1: // Used for cofactor computation only
994 {
995 // For a 2x2 matrix, the cofactor is simply a transposed move or negate
996 bool isMov = (row == col);
997 sw::Shader::Opcode op = isMov ? sw::Shader::OPCODE_MOV : sw::Shader::OPCODE_NEG;
998 Instruction *mov = emit(op, result, outCol, arg, isMov ? 1 - row : row);
999 mov->src[0].swizzle = 0x55 * (isMov ? 1 - col : col);
1000 mov->dst.mask = 1 << outRow;
1001 }
1002 break;
1003 case 2:
1004 {
1005 static const unsigned int swizzle[3] = { 0x99, 0x88, 0x44 }; // xy?? : yzyz, xzxz, xyxy
1006
1007 bool isCofactor = (col >= 0) && (row >= 0);
1008 int col0 = (isCofactor && (col <= 0)) ? 1 : 0;
1009 int col1 = (isCofactor && (col <= 1)) ? 2 : 1;
1010 bool negate = isCofactor && ((col & 0x01) ^ (row & 0x01));
1011
1012 Instruction *det = emit(sw::Shader::OPCODE_DET2, result, outCol, arg, negate ? col1 : col0, arg, negate ? col0 : col1);
1013 det->src[0].swizzle = det->src[1].swizzle = swizzle[isCofactor ? row : 2];
1014 det->dst.mask = 1 << outRow;
1015 }
1016 break;
1017 case 3:
1018 {
1019 static const unsigned int swizzle[4] = { 0xF9, 0xF8, 0xF4, 0xE4 }; // xyz? : yzww, xzww, xyww, xyzw
1020
1021 bool isCofactor = (col >= 0) && (row >= 0);
1022 int col0 = (isCofactor && (col <= 0)) ? 1 : 0;
1023 int col1 = (isCofactor && (col <= 1)) ? 2 : 1;
1024 int col2 = (isCofactor && (col <= 2)) ? 3 : 2;
1025 bool negate = isCofactor && ((col & 0x01) ^ (row & 0x01));
1026
1027 Instruction *det = emit(sw::Shader::OPCODE_DET3, result, outCol, arg, col0, arg, negate ? col2 : col1, arg, negate ? col1 : col2);
1028 det->src[0].swizzle = det->src[1].swizzle = det->src[2].swizzle = swizzle[isCofactor ? row : 3];
1029 det->dst.mask = 1 << outRow;
1030 }
1031 break;
1032 case 4:
1033 {
1034 Instruction *det = emit(sw::Shader::OPCODE_DET4, result, outCol, arg, 0, arg, 1, arg, 2, arg, 3);
1035 det->dst.mask = 1 << outRow;
1036 }
1037 break;
1038 default:
1039 UNREACHABLE(size);
1040 break;
1041 }
1042 }
1043
1044 bool OutputASM::visitUnary(Visit visit, TIntermUnary *node)
1045 {
1046 if(currentScope != emitScope)
1047 {
1048 return false;
1049 }
1050
1051 TIntermTyped *result = node;
1052 TIntermTyped *arg = node->getOperand();
1053 TBasicType basicType = arg->getType().getBasicType();
1054
1055 union
1056 {
1057 float f;
1058 int i;
1059 } one_value;
1060
1061 if(basicType == EbtInt || basicType == EbtUInt)
1062 {
1063 one_value.i = 1;
1064 }
1065 else
1066 {
1067 one_value.f = 1.0f;
1068 }
1069
1070 Constant one(one_value.f, one_value.f, one_value.f, one_value.f);
1071 Constant rad(1.74532925e-2f, 1.74532925e-2f, 1.74532925e-2f, 1.74532925e-2f);
1072 Constant deg(5.72957795e+1f, 5.72957795e+1f, 5.72957795e+1f, 5.72957795e+1f);
1073
1074 switch(node->getOp())
1075 {
1076 case EOpNegative:
1077 if(visit == PostVisit)
1078 {
1079 sw::Shader::Opcode negOpcode = getOpcode(sw::Shader::OPCODE_NEG, arg);
1080 for(int index = 0; index < arg->totalRegisterCount(); index++)
1081 {
1082 emit(negOpcode, result, index, arg, index);
1083 }
1084 }
1085 break;
1086 case EOpVectorLogicalNot: if(visit == PostVisit) emit(sw::Shader::OPCODE_NOT, result, arg); break;
1087 case EOpLogicalNot: if(visit == PostVisit) emit(sw::Shader::OPCODE_NOT, result, arg); break;
Alexis Hetu18e2a972017-07-28 13:43:25 -04001088 case EOpBitwiseNot: if(visit == PostVisit) emit(sw::Shader::OPCODE_NOT, result, arg); break;
Nicolas Capens0bac2852016-05-07 06:09:58 -04001089 case EOpPostIncrement:
1090 if(visit == PostVisit)
1091 {
1092 copy(result, arg);
1093
1094 sw::Shader::Opcode addOpcode = getOpcode(sw::Shader::OPCODE_ADD, arg);
1095 for(int index = 0; index < arg->totalRegisterCount(); index++)
1096 {
1097 emit(addOpcode, arg, index, arg, index, &one);
1098 }
1099
1100 assignLvalue(arg, arg);
1101 }
1102 break;
1103 case EOpPostDecrement:
1104 if(visit == PostVisit)
1105 {
1106 copy(result, arg);
1107
1108 sw::Shader::Opcode subOpcode = getOpcode(sw::Shader::OPCODE_SUB, arg);
1109 for(int index = 0; index < arg->totalRegisterCount(); index++)
1110 {
1111 emit(subOpcode, arg, index, arg, index, &one);
1112 }
1113
1114 assignLvalue(arg, arg);
1115 }
1116 break;
1117 case EOpPreIncrement:
1118 if(visit == PostVisit)
1119 {
1120 sw::Shader::Opcode addOpcode = getOpcode(sw::Shader::OPCODE_ADD, arg);
1121 for(int index = 0; index < arg->totalRegisterCount(); index++)
1122 {
1123 emit(addOpcode, result, index, arg, index, &one);
1124 }
1125
1126 assignLvalue(arg, result);
1127 }
1128 break;
1129 case EOpPreDecrement:
1130 if(visit == PostVisit)
1131 {
1132 sw::Shader::Opcode subOpcode = getOpcode(sw::Shader::OPCODE_SUB, arg);
1133 for(int index = 0; index < arg->totalRegisterCount(); index++)
1134 {
1135 emit(subOpcode, result, index, arg, index, &one);
1136 }
1137
1138 assignLvalue(arg, result);
1139 }
1140 break;
1141 case EOpRadians: if(visit == PostVisit) emit(sw::Shader::OPCODE_MUL, result, arg, &rad); break;
1142 case EOpDegrees: if(visit == PostVisit) emit(sw::Shader::OPCODE_MUL, result, arg, &deg); break;
1143 case EOpSin: if(visit == PostVisit) emit(sw::Shader::OPCODE_SIN, result, arg); break;
1144 case EOpCos: if(visit == PostVisit) emit(sw::Shader::OPCODE_COS, result, arg); break;
1145 case EOpTan: if(visit == PostVisit) emit(sw::Shader::OPCODE_TAN, result, arg); break;
1146 case EOpAsin: if(visit == PostVisit) emit(sw::Shader::OPCODE_ASIN, result, arg); break;
1147 case EOpAcos: if(visit == PostVisit) emit(sw::Shader::OPCODE_ACOS, result, arg); break;
1148 case EOpAtan: if(visit == PostVisit) emit(sw::Shader::OPCODE_ATAN, result, arg); break;
1149 case EOpSinh: if(visit == PostVisit) emit(sw::Shader::OPCODE_SINH, result, arg); break;
1150 case EOpCosh: if(visit == PostVisit) emit(sw::Shader::OPCODE_COSH, result, arg); break;
1151 case EOpTanh: if(visit == PostVisit) emit(sw::Shader::OPCODE_TANH, result, arg); break;
1152 case EOpAsinh: if(visit == PostVisit) emit(sw::Shader::OPCODE_ASINH, result, arg); break;
1153 case EOpAcosh: if(visit == PostVisit) emit(sw::Shader::OPCODE_ACOSH, result, arg); break;
1154 case EOpAtanh: if(visit == PostVisit) emit(sw::Shader::OPCODE_ATANH, result, arg); break;
1155 case EOpExp: if(visit == PostVisit) emit(sw::Shader::OPCODE_EXP, result, arg); break;
1156 case EOpLog: if(visit == PostVisit) emit(sw::Shader::OPCODE_LOG, result, arg); break;
1157 case EOpExp2: if(visit == PostVisit) emit(sw::Shader::OPCODE_EXP2, result, arg); break;
1158 case EOpLog2: if(visit == PostVisit) emit(sw::Shader::OPCODE_LOG2, result, arg); break;
1159 case EOpSqrt: if(visit == PostVisit) emit(sw::Shader::OPCODE_SQRT, result, arg); break;
1160 case EOpInverseSqrt: if(visit == PostVisit) emit(sw::Shader::OPCODE_RSQ, result, arg); break;
1161 case EOpAbs: if(visit == PostVisit) emit(getOpcode(sw::Shader::OPCODE_ABS, result), result, arg); break;
1162 case EOpSign: if(visit == PostVisit) emit(getOpcode(sw::Shader::OPCODE_SGN, result), result, arg); break;
1163 case EOpFloor: if(visit == PostVisit) emit(sw::Shader::OPCODE_FLOOR, result, arg); break;
1164 case EOpTrunc: if(visit == PostVisit) emit(sw::Shader::OPCODE_TRUNC, result, arg); break;
1165 case EOpRound: if(visit == PostVisit) emit(sw::Shader::OPCODE_ROUND, result, arg); break;
1166 case EOpRoundEven: if(visit == PostVisit) emit(sw::Shader::OPCODE_ROUNDEVEN, result, arg); break;
1167 case EOpCeil: if(visit == PostVisit) emit(sw::Shader::OPCODE_CEIL, result, arg, result); break;
1168 case EOpFract: if(visit == PostVisit) emit(sw::Shader::OPCODE_FRC, result, arg); break;
1169 case EOpIsNan: if(visit == PostVisit) emit(sw::Shader::OPCODE_ISNAN, result, arg); break;
1170 case EOpIsInf: if(visit == PostVisit) emit(sw::Shader::OPCODE_ISINF, result, arg); break;
1171 case EOpLength: if(visit == PostVisit) emit(sw::Shader::OPCODE_LEN(dim(arg)), result, arg); break;
1172 case EOpNormalize: if(visit == PostVisit) emit(sw::Shader::OPCODE_NRM(dim(arg)), result, arg); break;
1173 case EOpDFdx: if(visit == PostVisit) emit(sw::Shader::OPCODE_DFDX, result, arg); break;
1174 case EOpDFdy: if(visit == PostVisit) emit(sw::Shader::OPCODE_DFDY, result, arg); break;
1175 case EOpFwidth: if(visit == PostVisit) emit(sw::Shader::OPCODE_FWIDTH, result, arg); break;
1176 case EOpAny: if(visit == PostVisit) emit(sw::Shader::OPCODE_ANY, result, arg); break;
1177 case EOpAll: if(visit == PostVisit) emit(sw::Shader::OPCODE_ALL, result, arg); break;
1178 case EOpFloatBitsToInt: if(visit == PostVisit) emit(sw::Shader::OPCODE_FLOATBITSTOINT, result, arg); break;
1179 case EOpFloatBitsToUint: if(visit == PostVisit) emit(sw::Shader::OPCODE_FLOATBITSTOUINT, result, arg); break;
1180 case EOpIntBitsToFloat: if(visit == PostVisit) emit(sw::Shader::OPCODE_INTBITSTOFLOAT, result, arg); break;
1181 case EOpUintBitsToFloat: if(visit == PostVisit) emit(sw::Shader::OPCODE_UINTBITSTOFLOAT, result, arg); break;
1182 case EOpPackSnorm2x16: if(visit == PostVisit) emit(sw::Shader::OPCODE_PACKSNORM2x16, result, arg); break;
1183 case EOpPackUnorm2x16: if(visit == PostVisit) emit(sw::Shader::OPCODE_PACKUNORM2x16, result, arg); break;
1184 case EOpPackHalf2x16: if(visit == PostVisit) emit(sw::Shader::OPCODE_PACKHALF2x16, result, arg); break;
1185 case EOpUnpackSnorm2x16: if(visit == PostVisit) emit(sw::Shader::OPCODE_UNPACKSNORM2x16, result, arg); break;
1186 case EOpUnpackUnorm2x16: if(visit == PostVisit) emit(sw::Shader::OPCODE_UNPACKUNORM2x16, result, arg); break;
1187 case EOpUnpackHalf2x16: if(visit == PostVisit) emit(sw::Shader::OPCODE_UNPACKHALF2x16, result, arg); break;
1188 case EOpTranspose:
1189 if(visit == PostVisit)
1190 {
1191 int numCols = arg->getNominalSize();
1192 int numRows = arg->getSecondarySize();
1193 for(int i = 0; i < numCols; ++i)
1194 {
1195 for(int j = 0; j < numRows; ++j)
1196 {
1197 Instruction *mov = emit(sw::Shader::OPCODE_MOV, result, j, arg, i);
1198 mov->src[0].swizzle = 0x55 * j;
1199 mov->dst.mask = 1 << i;
1200 }
1201 }
1202 }
1203 break;
1204 case EOpDeterminant:
1205 if(visit == PostVisit)
1206 {
1207 int size = arg->getNominalSize();
1208 ASSERT(size == arg->getSecondarySize());
1209
1210 emitDeterminant(result, arg, size);
1211 }
1212 break;
1213 case EOpInverse:
1214 if(visit == PostVisit)
1215 {
1216 int size = arg->getNominalSize();
1217 ASSERT(size == arg->getSecondarySize());
1218
1219 // Compute transposed matrix of cofactors
1220 for(int i = 0; i < size; ++i)
1221 {
1222 for(int j = 0; j < size; ++j)
1223 {
1224 // For a 2x2 matrix, the cofactor is simply a transposed move or negate
1225 // For a 3x3 or 4x4 matrix, the cofactor is a transposed determinant
1226 emitDeterminant(result, arg, size - 1, j, i, i, j);
1227 }
1228 }
1229
1230 // Compute 1 / determinant
1231 Temporary invDet(this);
1232 emitDeterminant(&invDet, arg, size);
1233 Constant one(1.0f, 1.0f, 1.0f, 1.0f);
1234 Instruction *div = emit(sw::Shader::OPCODE_DIV, &invDet, &one, &invDet);
1235 div->src[1].swizzle = 0x00; // xxxx
1236
1237 // Divide transposed matrix of cofactors by determinant
1238 for(int i = 0; i < size; ++i)
1239 {
1240 emit(sw::Shader::OPCODE_MUL, result, i, result, i, &invDet);
1241 }
1242 }
1243 break;
1244 default: UNREACHABLE(node->getOp());
1245 }
1246
1247 return true;
1248 }
1249
1250 bool OutputASM::visitAggregate(Visit visit, TIntermAggregate *node)
1251 {
1252 if(currentScope != emitScope && node->getOp() != EOpFunction && node->getOp() != EOpSequence)
1253 {
1254 return false;
1255 }
1256
1257 Constant zero(0.0f, 0.0f, 0.0f, 0.0f);
1258
1259 TIntermTyped *result = node;
1260 const TType &resultType = node->getType();
1261 TIntermSequence &arg = node->getSequence();
1262 size_t argumentCount = arg.size();
1263
1264 switch(node->getOp())
1265 {
1266 case EOpSequence: break;
1267 case EOpDeclaration: break;
1268 case EOpInvariantDeclaration: break;
1269 case EOpPrototype: break;
1270 case EOpComma:
1271 if(visit == PostVisit)
1272 {
1273 copy(result, arg[1]);
1274 }
1275 break;
1276 case EOpFunction:
1277 if(visit == PreVisit)
1278 {
1279 const TString &name = node->getName();
1280
1281 if(emitScope == FUNCTION)
1282 {
1283 if(functionArray.size() > 1) // No need for a label when there's only main()
1284 {
1285 Instruction *label = emit(sw::Shader::OPCODE_LABEL);
1286 label->dst.type = sw::Shader::PARAMETER_LABEL;
1287
1288 const Function *function = findFunction(name);
1289 ASSERT(function); // Should have been added during global pass
1290 label->dst.index = function->label;
1291 currentFunction = function->label;
1292 }
1293 }
1294 else if(emitScope == GLOBAL)
1295 {
1296 if(name != "main(")
1297 {
1298 TIntermSequence &arguments = node->getSequence()[0]->getAsAggregate()->getSequence();
1299 functionArray.push_back(Function(functionArray.size(), name, &arguments, node));
1300 }
1301 }
1302 else UNREACHABLE(emitScope);
1303
1304 currentScope = FUNCTION;
1305 }
1306 else if(visit == PostVisit)
1307 {
1308 if(emitScope == FUNCTION)
1309 {
1310 if(functionArray.size() > 1) // No need to return when there's only main()
1311 {
1312 emit(sw::Shader::OPCODE_RET);
1313 }
1314 }
1315
1316 currentScope = GLOBAL;
1317 }
1318 break;
1319 case EOpFunctionCall:
1320 if(visit == PostVisit)
1321 {
1322 if(node->isUserDefined())
1323 {
1324 const TString &name = node->getName();
1325 const Function *function = findFunction(name);
1326
1327 if(!function)
1328 {
1329 mContext.error(node->getLine(), "function definition not found", name.c_str());
1330 return false;
1331 }
1332
1333 TIntermSequence &arguments = *function->arg;
1334
1335 for(size_t i = 0; i < argumentCount; i++)
1336 {
1337 TIntermTyped *in = arguments[i]->getAsTyped();
1338
1339 if(in->getQualifier() == EvqIn ||
1340 in->getQualifier() == EvqInOut ||
1341 in->getQualifier() == EvqConstReadOnly)
1342 {
1343 copy(in, arg[i]);
1344 }
1345 }
1346
1347 Instruction *call = emit(sw::Shader::OPCODE_CALL);
1348 call->dst.type = sw::Shader::PARAMETER_LABEL;
1349 call->dst.index = function->label;
1350
1351 if(function->ret && function->ret->getType().getBasicType() != EbtVoid)
1352 {
1353 copy(result, function->ret);
1354 }
1355
1356 for(size_t i = 0; i < argumentCount; i++)
1357 {
1358 TIntermTyped *argument = arguments[i]->getAsTyped();
1359 TIntermTyped *out = arg[i]->getAsTyped();
1360
1361 if(argument->getQualifier() == EvqOut ||
1362 argument->getQualifier() == EvqInOut)
1363 {
Nicolas Capens5da2d3f2016-06-11 00:41:49 -04001364 assignLvalue(out, argument);
Nicolas Capens0bac2852016-05-07 06:09:58 -04001365 }
1366 }
1367 }
1368 else
1369 {
1370 const TextureFunction textureFunction(node->getName());
Nicolas Capensa0b57832017-11-07 13:07:53 -05001371 TIntermTyped *s = arg[0]->getAsTyped();
Nicolas Capens0bac2852016-05-07 06:09:58 -04001372 TIntermTyped *t = arg[1]->getAsTyped();
1373
1374 Temporary coord(this);
1375
1376 if(textureFunction.proj)
1377 {
Nicolas Capens0484c792016-06-13 22:02:36 -04001378 Instruction *rcp = emit(sw::Shader::OPCODE_RCPX, &coord, arg[1]);
1379 rcp->src[0].swizzle = 0x55 * (t->getNominalSize() - 1);
1380 rcp->dst.mask = 0x7;
Nicolas Capens0bac2852016-05-07 06:09:58 -04001381
Nicolas Capens0484c792016-06-13 22:02:36 -04001382 Instruction *mul = emit(sw::Shader::OPCODE_MUL, &coord, arg[1], &coord);
1383 mul->dst.mask = 0x7;
Nicolas Capensa0b57832017-11-07 13:07:53 -05001384
1385 if(IsShadowSampler(s->getBasicType()))
1386 {
1387 ASSERT(s->getBasicType() == EbtSampler2DShadow);
1388 Instruction *mov = emit(sw::Shader::OPCODE_MOV, &coord, &coord);
1389 mov->src[0].swizzle = 0xA4;
1390 }
Nicolas Capens0bac2852016-05-07 06:09:58 -04001391 }
1392 else
1393 {
Nicolas Capensa0b57832017-11-07 13:07:53 -05001394 Instruction *mov = emit(sw::Shader::OPCODE_MOV, &coord, arg[1]);
1395
1396 if(IsShadowSampler(s->getBasicType()) && t->getNominalSize() == 3)
1397 {
1398 ASSERT(s->getBasicType() == EbtSampler2DShadow);
1399 mov->src[0].swizzle = 0xA4;
1400 }
Nicolas Capens0bac2852016-05-07 06:09:58 -04001401 }
1402
1403 switch(textureFunction.method)
1404 {
1405 case TextureFunction::IMPLICIT:
Nicolas Capensa0b57832017-11-07 13:07:53 -05001406 if(!textureFunction.offset)
Nicolas Capens0bac2852016-05-07 06:09:58 -04001407 {
Nicolas Capensa0b57832017-11-07 13:07:53 -05001408 if(argumentCount == 2)
Nicolas Capens0bac2852016-05-07 06:09:58 -04001409 {
Nicolas Capensa0b57832017-11-07 13:07:53 -05001410 emit(sw::Shader::OPCODE_TEX, result, &coord, s);
Nicolas Capens0bac2852016-05-07 06:09:58 -04001411 }
Nicolas Capensa0b57832017-11-07 13:07:53 -05001412 else if(argumentCount == 3) // Bias
Nicolas Capens0bac2852016-05-07 06:09:58 -04001413 {
Nicolas Capensa0b57832017-11-07 13:07:53 -05001414 emit(sw::Shader::OPCODE_TEXBIAS, result, &coord, s, arg[2]);
1415 }
1416 else UNREACHABLE(argumentCount);
1417 }
1418 else // Offset
1419 {
1420 if(argumentCount == 3)
1421 {
1422 emit(sw::Shader::OPCODE_TEXOFFSET, result, &coord, s, arg[2]);
1423 }
1424 else if(argumentCount == 4) // Bias
1425 {
1426 emit(sw::Shader::OPCODE_TEXOFFSETBIAS, result, &coord, s, arg[2], arg[3]);
Nicolas Capens0bac2852016-05-07 06:09:58 -04001427 }
1428 else UNREACHABLE(argumentCount);
1429 }
1430 break;
1431 case TextureFunction::LOD:
Nicolas Capensa0b57832017-11-07 13:07:53 -05001432 if(!textureFunction.offset && argumentCount == 3)
Nicolas Capens0bac2852016-05-07 06:09:58 -04001433 {
Nicolas Capensa0b57832017-11-07 13:07:53 -05001434 emit(sw::Shader::OPCODE_TEXLOD, result, &coord, s, arg[2]);
Nicolas Capens0bac2852016-05-07 06:09:58 -04001435 }
Nicolas Capensa0b57832017-11-07 13:07:53 -05001436 else if(argumentCount == 4) // Offset
1437 {
1438 emit(sw::Shader::OPCODE_TEXLODOFFSET, result, &coord, s, arg[3], arg[2]);
1439 }
1440 else UNREACHABLE(argumentCount);
Nicolas Capens0bac2852016-05-07 06:09:58 -04001441 break;
1442 case TextureFunction::FETCH:
Nicolas Capensa0b57832017-11-07 13:07:53 -05001443 if(!textureFunction.offset && argumentCount == 3)
Nicolas Capens0bac2852016-05-07 06:09:58 -04001444 {
Nicolas Capensa0b57832017-11-07 13:07:53 -05001445 emit(sw::Shader::OPCODE_TEXELFETCH, result, &coord, s, arg[2]);
Nicolas Capens0bac2852016-05-07 06:09:58 -04001446 }
Nicolas Capensa0b57832017-11-07 13:07:53 -05001447 else if(argumentCount == 4) // Offset
1448 {
1449 emit(sw::Shader::OPCODE_TEXELFETCHOFFSET, result, &coord, s, arg[3], arg[2]);
1450 }
1451 else UNREACHABLE(argumentCount);
Nicolas Capens0bac2852016-05-07 06:09:58 -04001452 break;
1453 case TextureFunction::GRAD:
Nicolas Capensa0b57832017-11-07 13:07:53 -05001454 if(!textureFunction.offset && argumentCount == 4)
Nicolas Capens0bac2852016-05-07 06:09:58 -04001455 {
Nicolas Capensa0b57832017-11-07 13:07:53 -05001456 emit(sw::Shader::OPCODE_TEXGRAD, result, &coord, s, arg[2], arg[3]);
Nicolas Capens0bac2852016-05-07 06:09:58 -04001457 }
Nicolas Capensa0b57832017-11-07 13:07:53 -05001458 else if(argumentCount == 5) // Offset
1459 {
1460 emit(sw::Shader::OPCODE_TEXGRADOFFSET, result, &coord, s, arg[2], arg[3], arg[4]);
1461 }
1462 else UNREACHABLE(argumentCount);
Nicolas Capens0bac2852016-05-07 06:09:58 -04001463 break;
1464 case TextureFunction::SIZE:
Nicolas Capensa0b57832017-11-07 13:07:53 -05001465 emit(sw::Shader::OPCODE_TEXSIZE, result, arg[1], s);
Nicolas Capens0bac2852016-05-07 06:09:58 -04001466 break;
1467 default:
1468 UNREACHABLE(textureFunction.method);
1469 }
1470 }
1471 }
1472 break;
1473 case EOpParameters:
1474 break;
1475 case EOpConstructFloat:
1476 case EOpConstructVec2:
1477 case EOpConstructVec3:
1478 case EOpConstructVec4:
1479 case EOpConstructBool:
1480 case EOpConstructBVec2:
1481 case EOpConstructBVec3:
1482 case EOpConstructBVec4:
1483 case EOpConstructInt:
1484 case EOpConstructIVec2:
1485 case EOpConstructIVec3:
1486 case EOpConstructIVec4:
1487 case EOpConstructUInt:
1488 case EOpConstructUVec2:
1489 case EOpConstructUVec3:
1490 case EOpConstructUVec4:
1491 if(visit == PostVisit)
1492 {
1493 int component = 0;
Alexis Hetu2a198552016-09-27 20:50:45 -04001494 int arrayMaxIndex = result->isArray() ? result->getArraySize() - 1 : 0;
1495 int arrayComponents = result->getType().getElementSize();
Nicolas Capens0bac2852016-05-07 06:09:58 -04001496 for(size_t i = 0; i < argumentCount; i++)
1497 {
1498 TIntermTyped *argi = arg[i]->getAsTyped();
1499 int size = argi->getNominalSize();
Alexis Hetu2a198552016-09-27 20:50:45 -04001500 int arrayIndex = std::min(component / arrayComponents, arrayMaxIndex);
1501 int swizzle = component - (arrayIndex * arrayComponents);
Nicolas Capens0bac2852016-05-07 06:09:58 -04001502
1503 if(!argi->isMatrix())
1504 {
Alexis Hetu2a198552016-09-27 20:50:45 -04001505 Instruction *mov = emitCast(result, arrayIndex, argi, 0);
1506 mov->dst.mask = (0xF << swizzle) & 0xF;
1507 mov->src[0].swizzle = readSwizzle(argi, size) << (swizzle * 2);
Nicolas Capens0bac2852016-05-07 06:09:58 -04001508
1509 component += size;
1510 }
Alexis Hetu38338612018-01-18 15:53:36 -05001511 else if(!result->isMatrix()) // Construct a non matrix from a matrix
1512 {
1513 Instruction *mov = emitCast(result, arrayIndex, argi, 0);
1514 mov->dst.mask = (0xF << swizzle) & 0xF;
1515 mov->src[0].swizzle = readSwizzle(argi, size) << (swizzle * 2);
1516
1517 // At most one more instruction when constructing a vec3 from a mat2 or a vec4 from a mat2/mat3
1518 if(result->getNominalSize() > size)
1519 {
1520 Instruction *mov = emitCast(result, arrayIndex, argi, 1);
1521 mov->dst.mask = (0xF << (swizzle + size)) & 0xF;
1522 // mat2: xxxy (0x40), mat3: xxxx (0x00)
1523 mov->src[0].swizzle = ((size == 2) ? 0x40 : 0x00) << (swizzle * 2);
1524 }
1525
1526 component += size;
1527 }
Nicolas Capens0bac2852016-05-07 06:09:58 -04001528 else // Matrix
1529 {
1530 int column = 0;
1531
1532 while(component < resultType.getNominalSize())
1533 {
Alexis Hetu2a198552016-09-27 20:50:45 -04001534 Instruction *mov = emitCast(result, arrayIndex, argi, column);
1535 mov->dst.mask = (0xF << swizzle) & 0xF;
1536 mov->src[0].swizzle = readSwizzle(argi, size) << (swizzle * 2);
Nicolas Capens0bac2852016-05-07 06:09:58 -04001537
1538 column++;
1539 component += size;
1540 }
1541 }
1542 }
1543 }
1544 break;
1545 case EOpConstructMat2:
1546 case EOpConstructMat2x3:
1547 case EOpConstructMat2x4:
1548 case EOpConstructMat3x2:
1549 case EOpConstructMat3:
1550 case EOpConstructMat3x4:
1551 case EOpConstructMat4x2:
1552 case EOpConstructMat4x3:
1553 case EOpConstructMat4:
1554 if(visit == PostVisit)
1555 {
1556 TIntermTyped *arg0 = arg[0]->getAsTyped();
1557 const int outCols = result->getNominalSize();
1558 const int outRows = result->getSecondarySize();
1559
1560 if(arg0->isScalar() && arg.size() == 1) // Construct scale matrix
1561 {
1562 for(int i = 0; i < outCols; i++)
1563 {
Alexis Hetu7208e932016-06-02 11:19:24 -04001564 emit(sw::Shader::OPCODE_MOV, result, i, &zero);
Nicolas Capens0bac2852016-05-07 06:09:58 -04001565 Instruction *mov = emitCast(result, i, arg0, 0);
1566 mov->dst.mask = 1 << i;
1567 ASSERT(mov->src[0].swizzle == 0x00);
1568 }
1569 }
1570 else if(arg0->isMatrix())
1571 {
Alexis Hetu2a198552016-09-27 20:50:45 -04001572 int arraySize = result->isArray() ? result->getArraySize() : 1;
Nicolas Capens0bac2852016-05-07 06:09:58 -04001573
Alexis Hetu2a198552016-09-27 20:50:45 -04001574 for(int n = 0; n < arraySize; n++)
Nicolas Capens0bac2852016-05-07 06:09:58 -04001575 {
Alexis Hetu2a198552016-09-27 20:50:45 -04001576 TIntermTyped *argi = arg[n]->getAsTyped();
1577 const int inCols = argi->getNominalSize();
1578 const int inRows = argi->getSecondarySize();
Nicolas Capens0bac2852016-05-07 06:09:58 -04001579
Alexis Hetu2a198552016-09-27 20:50:45 -04001580 for(int i = 0; i < outCols; i++)
Nicolas Capens0bac2852016-05-07 06:09:58 -04001581 {
Alexis Hetu2a198552016-09-27 20:50:45 -04001582 if(i >= inCols || outRows > inRows)
1583 {
1584 // Initialize to identity matrix
1585 Constant col((i == 0 ? 1.0f : 0.0f), (i == 1 ? 1.0f : 0.0f), (i == 2 ? 1.0f : 0.0f), (i == 3 ? 1.0f : 0.0f));
1586 emitCast(result, i + n * outCols, &col, 0);
1587 }
1588
1589 if(i < inCols)
1590 {
1591 Instruction *mov = emitCast(result, i + n * outCols, argi, i);
1592 mov->dst.mask = 0xF >> (4 - inRows);
1593 }
Nicolas Capens0bac2852016-05-07 06:09:58 -04001594 }
1595 }
1596 }
1597 else
1598 {
1599 int column = 0;
1600 int row = 0;
1601
1602 for(size_t i = 0; i < argumentCount; i++)
1603 {
1604 TIntermTyped *argi = arg[i]->getAsTyped();
1605 int size = argi->getNominalSize();
1606 int element = 0;
1607
1608 while(element < size)
1609 {
1610 Instruction *mov = emitCast(result, column, argi, 0);
1611 mov->dst.mask = (0xF << row) & 0xF;
1612 mov->src[0].swizzle = (readSwizzle(argi, size) << (row * 2)) + 0x55 * element;
1613
1614 int end = row + size - element;
1615 column = end >= outRows ? column + 1 : column;
1616 element = element + outRows - row;
1617 row = end >= outRows ? 0 : end;
1618 }
1619 }
1620 }
1621 }
1622 break;
1623 case EOpConstructStruct:
1624 if(visit == PostVisit)
1625 {
1626 int offset = 0;
1627 for(size_t i = 0; i < argumentCount; i++)
1628 {
1629 TIntermTyped *argi = arg[i]->getAsTyped();
1630 int size = argi->totalRegisterCount();
1631
1632 for(int index = 0; index < size; index++)
1633 {
1634 Instruction *mov = emit(sw::Shader::OPCODE_MOV, result, index + offset, argi, index);
1635 mov->dst.mask = writeMask(result, offset + index);
1636 }
1637
1638 offset += size;
1639 }
1640 }
1641 break;
1642 case EOpLessThan: if(visit == PostVisit) emitCmp(sw::Shader::CONTROL_LT, result, arg[0], arg[1]); break;
1643 case EOpGreaterThan: if(visit == PostVisit) emitCmp(sw::Shader::CONTROL_GT, result, arg[0], arg[1]); break;
1644 case EOpLessThanEqual: if(visit == PostVisit) emitCmp(sw::Shader::CONTROL_LE, result, arg[0], arg[1]); break;
1645 case EOpGreaterThanEqual: if(visit == PostVisit) emitCmp(sw::Shader::CONTROL_GE, result, arg[0], arg[1]); break;
1646 case EOpVectorEqual: if(visit == PostVisit) emitCmp(sw::Shader::CONTROL_EQ, result, arg[0], arg[1]); break;
1647 case EOpVectorNotEqual: if(visit == PostVisit) emitCmp(sw::Shader::CONTROL_NE, result, arg[0], arg[1]); break;
1648 case EOpMod: if(visit == PostVisit) emit(sw::Shader::OPCODE_MOD, result, arg[0], arg[1]); break;
1649 case EOpModf:
1650 if(visit == PostVisit)
1651 {
1652 TIntermTyped* arg1 = arg[1]->getAsTyped();
1653 emit(sw::Shader::OPCODE_TRUNC, arg1, arg[0]);
1654 assignLvalue(arg1, arg1);
1655 emitBinary(sw::Shader::OPCODE_SUB, result, arg[0], arg1);
1656 }
1657 break;
1658 case EOpPow: if(visit == PostVisit) emit(sw::Shader::OPCODE_POW, result, arg[0], arg[1]); break;
1659 case EOpAtan: if(visit == PostVisit) emit(sw::Shader::OPCODE_ATAN2, result, arg[0], arg[1]); break;
1660 case EOpMin: if(visit == PostVisit) emit(getOpcode(sw::Shader::OPCODE_MIN, result), result, arg[0], arg[1]); break;
1661 case EOpMax: if(visit == PostVisit) emit(getOpcode(sw::Shader::OPCODE_MAX, result), result, arg[0], arg[1]); break;
1662 case EOpClamp:
1663 if(visit == PostVisit)
1664 {
1665 emit(getOpcode(sw::Shader::OPCODE_MAX, result), result, arg[0], arg[1]);
1666 emit(getOpcode(sw::Shader::OPCODE_MIN, result), result, result, arg[2]);
1667 }
1668 break;
Alexis Hetuc4711fa2018-01-12 11:59:35 -05001669 case EOpMix:
1670 if(visit == PostVisit)
1671 {
1672 if(arg[2]->getAsTyped()->getBasicType() == EbtBool)
1673 {
1674 emit(sw::Shader::OPCODE_SELECT, result, arg[2], arg[1], arg[0]);
1675 }
1676 else
1677 {
1678 emit(sw::Shader::OPCODE_LRP, result, arg[2], arg[1], arg[0]);
1679 }
1680 }
1681 break;
Nicolas Capens0bac2852016-05-07 06:09:58 -04001682 case EOpStep: if(visit == PostVisit) emit(sw::Shader::OPCODE_STEP, result, arg[0], arg[1]); break;
1683 case EOpSmoothStep: if(visit == PostVisit) emit(sw::Shader::OPCODE_SMOOTH, result, arg[0], arg[1], arg[2]); break;
1684 case EOpDistance: if(visit == PostVisit) emit(sw::Shader::OPCODE_DIST(dim(arg[0])), result, arg[0], arg[1]); break;
1685 case EOpDot: if(visit == PostVisit) emit(sw::Shader::OPCODE_DP(dim(arg[0])), result, arg[0], arg[1]); break;
1686 case EOpCross: if(visit == PostVisit) emit(sw::Shader::OPCODE_CRS, result, arg[0], arg[1]); break;
1687 case EOpFaceForward: if(visit == PostVisit) emit(sw::Shader::OPCODE_FORWARD(dim(arg[0])), result, arg[0], arg[1], arg[2]); break;
1688 case EOpReflect: if(visit == PostVisit) emit(sw::Shader::OPCODE_REFLECT(dim(arg[0])), result, arg[0], arg[1]); break;
1689 case EOpRefract: if(visit == PostVisit) emit(sw::Shader::OPCODE_REFRACT(dim(arg[0])), result, arg[0], arg[1], arg[2]); break;
1690 case EOpMul:
1691 if(visit == PostVisit)
1692 {
1693 TIntermTyped *arg0 = arg[0]->getAsTyped();
Alexis Hetue97a31e2016-11-14 14:10:47 -05001694 ASSERT((arg0->getNominalSize() == arg[1]->getAsTyped()->getNominalSize()) &&
1695 (arg0->getSecondarySize() == arg[1]->getAsTyped()->getSecondarySize()));
Nicolas Capens0bac2852016-05-07 06:09:58 -04001696
1697 int size = arg0->getNominalSize();
1698 for(int i = 0; i < size; i++)
1699 {
1700 emit(sw::Shader::OPCODE_MUL, result, i, arg[0], i, arg[1], i);
1701 }
1702 }
1703 break;
1704 case EOpOuterProduct:
1705 if(visit == PostVisit)
1706 {
1707 for(int i = 0; i < dim(arg[1]); i++)
1708 {
1709 Instruction *mul = emit(sw::Shader::OPCODE_MUL, result, i, arg[0], 0, arg[1]);
1710 mul->src[1].swizzle = 0x55 * i;
1711 }
1712 }
1713 break;
1714 default: UNREACHABLE(node->getOp());
1715 }
1716
1717 return true;
1718 }
1719
1720 bool OutputASM::visitSelection(Visit visit, TIntermSelection *node)
1721 {
1722 if(currentScope != emitScope)
1723 {
1724 return false;
1725 }
1726
1727 TIntermTyped *condition = node->getCondition();
1728 TIntermNode *trueBlock = node->getTrueBlock();
1729 TIntermNode *falseBlock = node->getFalseBlock();
1730 TIntermConstantUnion *constantCondition = condition->getAsConstantUnion();
1731
1732 condition->traverse(this);
1733
1734 if(node->usesTernaryOperator())
1735 {
1736 if(constantCondition)
1737 {
1738 bool trueCondition = constantCondition->getUnionArrayPointer()->getBConst();
1739
1740 if(trueCondition)
1741 {
1742 trueBlock->traverse(this);
1743 copy(node, trueBlock);
1744 }
1745 else
1746 {
1747 falseBlock->traverse(this);
1748 copy(node, falseBlock);
1749 }
1750 }
1751 else if(trivial(node, 6)) // Fast to compute both potential results and no side effects
1752 {
1753 trueBlock->traverse(this);
1754 falseBlock->traverse(this);
1755 emit(sw::Shader::OPCODE_SELECT, node, condition, trueBlock, falseBlock);
1756 }
1757 else
1758 {
1759 emit(sw::Shader::OPCODE_IF, 0, condition);
1760
1761 if(trueBlock)
1762 {
1763 trueBlock->traverse(this);
1764 copy(node, trueBlock);
1765 }
1766
1767 if(falseBlock)
1768 {
1769 emit(sw::Shader::OPCODE_ELSE);
1770 falseBlock->traverse(this);
1771 copy(node, falseBlock);
1772 }
1773
1774 emit(sw::Shader::OPCODE_ENDIF);
1775 }
1776 }
1777 else // if/else statement
1778 {
1779 if(constantCondition)
1780 {
1781 bool trueCondition = constantCondition->getUnionArrayPointer()->getBConst();
1782
1783 if(trueCondition)
1784 {
1785 if(trueBlock)
1786 {
1787 trueBlock->traverse(this);
1788 }
1789 }
1790 else
1791 {
1792 if(falseBlock)
1793 {
1794 falseBlock->traverse(this);
1795 }
1796 }
1797 }
1798 else
1799 {
1800 emit(sw::Shader::OPCODE_IF, 0, condition);
1801
1802 if(trueBlock)
1803 {
1804 trueBlock->traverse(this);
1805 }
1806
1807 if(falseBlock)
1808 {
1809 emit(sw::Shader::OPCODE_ELSE);
1810 falseBlock->traverse(this);
1811 }
1812
1813 emit(sw::Shader::OPCODE_ENDIF);
1814 }
1815 }
1816
1817 return false;
1818 }
1819
1820 bool OutputASM::visitLoop(Visit visit, TIntermLoop *node)
1821 {
1822 if(currentScope != emitScope)
1823 {
1824 return false;
1825 }
1826
Nicolas Capensac3f2fa2018-05-28 12:25:57 -04001827 LoopInfo loop(node);
Nicolas Capens0bac2852016-05-07 06:09:58 -04001828
Nicolas Capensac3f2fa2018-05-28 12:25:57 -04001829 if(loop.iterations == 0)
Nicolas Capens0bac2852016-05-07 06:09:58 -04001830 {
1831 return false;
1832 }
1833
Nicolas Capensac3f2fa2018-05-28 12:25:57 -04001834 bool unroll = (loop.iterations <= 4);
Nicolas Capens0bac2852016-05-07 06:09:58 -04001835
1836 TIntermNode *init = node->getInit();
1837 TIntermTyped *condition = node->getCondition();
1838 TIntermTyped *expression = node->getExpression();
1839 TIntermNode *body = node->getBody();
1840 Constant True(true);
1841
1842 if(node->getType() == ELoopDoWhile)
1843 {
1844 Temporary iterate(this);
1845 emit(sw::Shader::OPCODE_MOV, &iterate, &True);
1846
1847 emit(sw::Shader::OPCODE_WHILE, 0, &iterate); // FIXME: Implement real do-while
1848
1849 if(body)
1850 {
1851 body->traverse(this);
1852 }
1853
1854 emit(sw::Shader::OPCODE_TEST);
1855
1856 condition->traverse(this);
1857 emit(sw::Shader::OPCODE_MOV, &iterate, condition);
1858
1859 emit(sw::Shader::OPCODE_ENDWHILE);
1860 }
1861 else
1862 {
1863 if(init)
1864 {
1865 init->traverse(this);
1866 }
1867
1868 if(unroll)
1869 {
Nicolas Capensac3f2fa2018-05-28 12:25:57 -04001870 for(unsigned int i = 0; i < loop.iterations; i++)
Nicolas Capens0bac2852016-05-07 06:09:58 -04001871 {
1872 // condition->traverse(this); // Condition could contain statements, but not in an unrollable loop
1873
1874 if(body)
1875 {
1876 body->traverse(this);
1877 }
1878
1879 if(expression)
1880 {
1881 expression->traverse(this);
1882 }
1883 }
1884 }
1885 else
1886 {
1887 if(condition)
1888 {
1889 condition->traverse(this);
1890 }
1891 else
1892 {
1893 condition = &True;
1894 }
1895
1896 emit(sw::Shader::OPCODE_WHILE, 0, condition);
1897
1898 if(body)
1899 {
1900 body->traverse(this);
1901 }
1902
1903 emit(sw::Shader::OPCODE_TEST);
1904
1905 if(expression)
1906 {
1907 expression->traverse(this);
1908 }
1909
1910 if(condition)
1911 {
1912 condition->traverse(this);
1913 }
1914
1915 emit(sw::Shader::OPCODE_ENDWHILE);
1916 }
1917 }
1918
1919 return false;
1920 }
1921
1922 bool OutputASM::visitBranch(Visit visit, TIntermBranch *node)
1923 {
1924 if(currentScope != emitScope)
1925 {
1926 return false;
1927 }
1928
1929 switch(node->getFlowOp())
1930 {
1931 case EOpKill: if(visit == PostVisit) emit(sw::Shader::OPCODE_DISCARD); break;
1932 case EOpBreak: if(visit == PostVisit) emit(sw::Shader::OPCODE_BREAK); break;
1933 case EOpContinue: if(visit == PostVisit) emit(sw::Shader::OPCODE_CONTINUE); break;
1934 case EOpReturn:
1935 if(visit == PostVisit)
1936 {
1937 TIntermTyped *value = node->getExpression();
1938
1939 if(value)
1940 {
1941 copy(functionArray[currentFunction].ret, value);
1942 }
1943
1944 emit(sw::Shader::OPCODE_LEAVE);
1945 }
1946 break;
1947 default: UNREACHABLE(node->getFlowOp());
1948 }
1949
1950 return true;
1951 }
1952
Alexis Hetu9aa83a92016-05-02 17:34:46 -04001953 bool OutputASM::visitSwitch(Visit visit, TIntermSwitch *node)
1954 {
1955 if(currentScope != emitScope)
1956 {
1957 return false;
1958 }
1959
1960 TIntermTyped* switchValue = node->getInit();
1961 TIntermAggregate* opList = node->getStatementList();
1962
1963 if(!switchValue || !opList)
1964 {
1965 return false;
1966 }
1967
1968 switchValue->traverse(this);
1969
1970 emit(sw::Shader::OPCODE_SWITCH);
1971
1972 TIntermSequence& sequence = opList->getSequence();
1973 TIntermSequence::iterator it = sequence.begin();
1974 TIntermSequence::iterator defaultIt = sequence.end();
1975 int nbCases = 0;
1976 for(; it != sequence.end(); ++it)
1977 {
1978 TIntermCase* currentCase = (*it)->getAsCaseNode();
1979 if(currentCase)
1980 {
1981 TIntermSequence::iterator caseIt = it;
1982
1983 TIntermTyped* condition = currentCase->getCondition();
1984 if(condition) // non default case
1985 {
1986 if(nbCases != 0)
1987 {
1988 emit(sw::Shader::OPCODE_ELSE);
1989 }
1990
1991 condition->traverse(this);
1992 Temporary result(this);
1993 emitBinary(sw::Shader::OPCODE_EQ, &result, switchValue, condition);
1994 emit(sw::Shader::OPCODE_IF, 0, &result);
1995 nbCases++;
1996
Nicolas Capens6d123312018-01-08 12:57:52 -05001997 // Emit the code for this case and all subsequent cases until we hit a break statement.
1998 // TODO: This can repeat a lot of code for switches with many fall-through cases.
Alexis Hetu9aa83a92016-05-02 17:34:46 -04001999 for(++caseIt; caseIt != sequence.end(); ++caseIt)
2000 {
2001 (*caseIt)->traverse(this);
Nicolas Capens6d123312018-01-08 12:57:52 -05002002
2003 // Stop if we encounter an unconditional branch (break, continue, return, or kill).
2004 // TODO: This doesn't work if the statement is at a deeper scope level (e.g. {break;}).
2005 // Note that this eliminates useless operations but shouldn't affect correctness.
2006 if((*caseIt)->getAsBranchNode())
Alexis Hetu9aa83a92016-05-02 17:34:46 -04002007 {
2008 break;
2009 }
2010 }
2011 }
2012 else
2013 {
2014 defaultIt = it; // The default case might not be the last case, keep it for last
2015 }
2016 }
2017 }
2018
2019 // If there's a default case, traverse it here
2020 if(defaultIt != sequence.end())
2021 {
2022 emit(sw::Shader::OPCODE_ELSE);
2023 for(++defaultIt; defaultIt != sequence.end(); ++defaultIt)
2024 {
2025 (*defaultIt)->traverse(this);
2026 if((*defaultIt)->getAsBranchNode()) // Kill, Break, Continue or Return
2027 {
2028 break;
2029 }
2030 }
2031 }
2032
2033 for(int i = 0; i < nbCases; ++i)
2034 {
2035 emit(sw::Shader::OPCODE_ENDIF);
2036 }
2037
2038 emit(sw::Shader::OPCODE_ENDSWITCH);
2039
2040 return false;
2041 }
2042
Nicolas Capens0bac2852016-05-07 06:09:58 -04002043 Instruction *OutputASM::emit(sw::Shader::Opcode op, TIntermTyped *dst, TIntermNode *src0, TIntermNode *src1, TIntermNode *src2, TIntermNode *src3, TIntermNode *src4)
2044 {
2045 return emit(op, dst, 0, src0, 0, src1, 0, src2, 0, src3, 0, src4, 0);
2046 }
2047
2048 Instruction *OutputASM::emit(sw::Shader::Opcode op, TIntermTyped *dst, int dstIndex, TIntermNode *src0, int index0, TIntermNode *src1, int index1,
2049 TIntermNode *src2, int index2, TIntermNode *src3, int index3, TIntermNode *src4, int index4)
2050 {
2051 Instruction *instruction = new Instruction(op);
2052
2053 if(dst)
2054 {
Nicolas Capens0530b452017-11-15 16:39:47 -05002055 destination(instruction->dst, dst, dstIndex);
Nicolas Capens0bac2852016-05-07 06:09:58 -04002056 }
2057
Alexis Hetu929c6b02017-11-07 16:04:25 -05002058 if(src0)
2059 {
2060 TIntermTyped* src = src0->getAsTyped();
2061 instruction->dst.partialPrecision = src && (src->getPrecision() <= EbpLow);
2062 }
2063
Nicolas Capens0530b452017-11-15 16:39:47 -05002064 source(instruction->src[0], src0, index0);
2065 source(instruction->src[1], src1, index1);
2066 source(instruction->src[2], src2, index2);
2067 source(instruction->src[3], src3, index3);
2068 source(instruction->src[4], src4, index4);
Nicolas Capens0bac2852016-05-07 06:09:58 -04002069
2070 shader->append(instruction);
2071
2072 return instruction;
2073 }
2074
2075 Instruction *OutputASM::emitCast(TIntermTyped *dst, TIntermTyped *src)
2076 {
2077 return emitCast(dst, 0, src, 0);
2078 }
2079
2080 Instruction *OutputASM::emitCast(TIntermTyped *dst, int dstIndex, TIntermTyped *src, int srcIndex)
2081 {
2082 switch(src->getBasicType())
2083 {
2084 case EbtBool:
2085 switch(dst->getBasicType())
2086 {
2087 case EbtInt: return emit(sw::Shader::OPCODE_B2I, dst, dstIndex, src, srcIndex);
2088 case EbtUInt: return emit(sw::Shader::OPCODE_B2I, dst, dstIndex, src, srcIndex);
2089 case EbtFloat: return emit(sw::Shader::OPCODE_B2F, dst, dstIndex, src, srcIndex);
2090 default: break;
2091 }
2092 break;
2093 case EbtInt:
2094 switch(dst->getBasicType())
2095 {
2096 case EbtBool: return emit(sw::Shader::OPCODE_I2B, dst, dstIndex, src, srcIndex);
2097 case EbtFloat: return emit(sw::Shader::OPCODE_I2F, dst, dstIndex, src, srcIndex);
2098 default: break;
2099 }
2100 break;
2101 case EbtUInt:
2102 switch(dst->getBasicType())
2103 {
2104 case EbtBool: return emit(sw::Shader::OPCODE_I2B, dst, dstIndex, src, srcIndex);
2105 case EbtFloat: return emit(sw::Shader::OPCODE_U2F, dst, dstIndex, src, srcIndex);
2106 default: break;
2107 }
2108 break;
2109 case EbtFloat:
2110 switch(dst->getBasicType())
2111 {
2112 case EbtBool: return emit(sw::Shader::OPCODE_F2B, dst, dstIndex, src, srcIndex);
2113 case EbtInt: return emit(sw::Shader::OPCODE_F2I, dst, dstIndex, src, srcIndex);
2114 case EbtUInt: return emit(sw::Shader::OPCODE_F2U, dst, dstIndex, src, srcIndex);
2115 default: break;
2116 }
2117 break;
2118 default:
2119 break;
2120 }
2121
2122 ASSERT((src->getBasicType() == dst->getBasicType()) ||
2123 ((src->getBasicType() == EbtInt) && (dst->getBasicType() == EbtUInt)) ||
2124 ((src->getBasicType() == EbtUInt) && (dst->getBasicType() == EbtInt)));
2125
2126 return emit(sw::Shader::OPCODE_MOV, dst, dstIndex, src, srcIndex);
2127 }
2128
2129 void OutputASM::emitBinary(sw::Shader::Opcode op, TIntermTyped *dst, TIntermNode *src0, TIntermNode *src1, TIntermNode *src2)
2130 {
2131 for(int index = 0; index < dst->elementRegisterCount(); index++)
2132 {
2133 emit(op, dst, index, src0, index, src1, index, src2, index);
2134 }
2135 }
2136
2137 void OutputASM::emitAssign(sw::Shader::Opcode op, TIntermTyped *result, TIntermTyped *lhs, TIntermTyped *src0, TIntermTyped *src1)
2138 {
2139 emitBinary(op, result, src0, src1);
2140 assignLvalue(lhs, result);
2141 }
2142
2143 void OutputASM::emitCmp(sw::Shader::Control cmpOp, TIntermTyped *dst, TIntermNode *left, TIntermNode *right, int index)
2144 {
2145 sw::Shader::Opcode opcode;
2146 switch(left->getAsTyped()->getBasicType())
2147 {
2148 case EbtBool:
2149 case EbtInt:
2150 opcode = sw::Shader::OPCODE_ICMP;
2151 break;
2152 case EbtUInt:
2153 opcode = sw::Shader::OPCODE_UCMP;
2154 break;
2155 default:
2156 opcode = sw::Shader::OPCODE_CMP;
2157 break;
2158 }
2159
2160 Instruction *cmp = emit(opcode, dst, 0, left, index, right, index);
2161 cmp->control = cmpOp;
2162 }
2163
2164 int componentCount(const TType &type, int registers)
2165 {
2166 if(registers == 0)
2167 {
2168 return 0;
2169 }
2170
2171 if(type.isArray() && registers >= type.elementRegisterCount())
2172 {
2173 int index = registers / type.elementRegisterCount();
2174 registers -= index * type.elementRegisterCount();
2175 return index * type.getElementSize() + componentCount(type, registers);
2176 }
2177
2178 if(type.isStruct() || type.isInterfaceBlock())
2179 {
2180 const TFieldList& fields = type.getStruct() ? type.getStruct()->fields() : type.getInterfaceBlock()->fields();
2181 int elements = 0;
2182
Alexis Hetuda163ed2018-01-03 16:36:14 -05002183 for(const auto &field : fields)
Nicolas Capens0bac2852016-05-07 06:09:58 -04002184 {
Alexis Hetuda163ed2018-01-03 16:36:14 -05002185 const TType &fieldType = *(field->type());
Nicolas Capens0bac2852016-05-07 06:09:58 -04002186
2187 if(fieldType.totalRegisterCount() <= registers)
2188 {
2189 registers -= fieldType.totalRegisterCount();
2190 elements += fieldType.getObjectSize();
2191 }
2192 else // Register within this field
2193 {
2194 return elements + componentCount(fieldType, registers);
2195 }
2196 }
2197 }
2198 else if(type.isMatrix())
2199 {
2200 return registers * type.registerSize();
2201 }
2202
2203 UNREACHABLE(0);
2204 return 0;
2205 }
2206
2207 int registerSize(const TType &type, int registers)
2208 {
2209 if(registers == 0)
2210 {
2211 if(type.isStruct())
2212 {
2213 return registerSize(*((*(type.getStruct()->fields().begin()))->type()), 0);
2214 }
2215 else if(type.isInterfaceBlock())
2216 {
2217 return registerSize(*((*(type.getInterfaceBlock()->fields().begin()))->type()), 0);
2218 }
2219
2220 return type.registerSize();
2221 }
2222
2223 if(type.isArray() && registers >= type.elementRegisterCount())
2224 {
2225 int index = registers / type.elementRegisterCount();
2226 registers -= index * type.elementRegisterCount();
2227 return registerSize(type, registers);
2228 }
2229
2230 if(type.isStruct() || type.isInterfaceBlock())
2231 {
2232 const TFieldList& fields = type.getStruct() ? type.getStruct()->fields() : type.getInterfaceBlock()->fields();
2233 int elements = 0;
2234
Alexis Hetuda163ed2018-01-03 16:36:14 -05002235 for(const auto &field : fields)
Nicolas Capens0bac2852016-05-07 06:09:58 -04002236 {
Alexis Hetuda163ed2018-01-03 16:36:14 -05002237 const TType &fieldType = *(field->type());
Nicolas Capens0bac2852016-05-07 06:09:58 -04002238
2239 if(fieldType.totalRegisterCount() <= registers)
2240 {
2241 registers -= fieldType.totalRegisterCount();
2242 elements += fieldType.getObjectSize();
2243 }
2244 else // Register within this field
2245 {
2246 return registerSize(fieldType, registers);
2247 }
2248 }
2249 }
2250 else if(type.isMatrix())
2251 {
2252 return registerSize(type, 0);
2253 }
2254
2255 UNREACHABLE(0);
2256 return 0;
2257 }
2258
2259 int OutputASM::getBlockId(TIntermTyped *arg)
2260 {
2261 if(arg)
2262 {
2263 const TType &type = arg->getType();
2264 TInterfaceBlock* block = type.getInterfaceBlock();
2265 if(block && (type.getQualifier() == EvqUniform))
2266 {
2267 // Make sure the uniform block is declared
2268 uniformRegister(arg);
2269
2270 const char* blockName = block->name().c_str();
2271
2272 // Fetch uniform block index from array of blocks
2273 for(ActiveUniformBlocks::const_iterator it = shaderObject->activeUniformBlocks.begin(); it != shaderObject->activeUniformBlocks.end(); ++it)
2274 {
2275 if(blockName == it->name)
2276 {
2277 return it->blockId;
2278 }
2279 }
2280
2281 ASSERT(false);
2282 }
2283 }
2284
2285 return -1;
2286 }
2287
2288 OutputASM::ArgumentInfo OutputASM::getArgumentInfo(TIntermTyped *arg, int index)
2289 {
2290 const TType &type = arg->getType();
2291 int blockId = getBlockId(arg);
2292 ArgumentInfo argumentInfo(BlockMemberInfo::getDefaultBlockInfo(), type, -1, -1);
2293 if(blockId != -1)
2294 {
2295 argumentInfo.bufferIndex = 0;
2296 for(int i = 0; i < blockId; ++i)
2297 {
2298 int blockArraySize = shaderObject->activeUniformBlocks[i].arraySize;
2299 argumentInfo.bufferIndex += blockArraySize > 0 ? blockArraySize : 1;
2300 }
2301
2302 const BlockDefinitionIndexMap& blockDefinition = blockDefinitions[blockId];
2303
2304 BlockDefinitionIndexMap::const_iterator itEnd = blockDefinition.end();
2305 BlockDefinitionIndexMap::const_iterator it = itEnd;
2306
2307 argumentInfo.clampedIndex = index;
2308 if(type.isInterfaceBlock())
2309 {
2310 // Offset index to the beginning of the selected instance
2311 int blockRegisters = type.elementRegisterCount();
2312 int bufferOffset = argumentInfo.clampedIndex / blockRegisters;
2313 argumentInfo.bufferIndex += bufferOffset;
2314 argumentInfo.clampedIndex -= bufferOffset * blockRegisters;
2315 }
2316
2317 int regIndex = registerIndex(arg);
2318 for(int i = regIndex + argumentInfo.clampedIndex; i >= regIndex; --i)
2319 {
2320 it = blockDefinition.find(i);
2321 if(it != itEnd)
2322 {
2323 argumentInfo.clampedIndex -= (i - regIndex);
2324 break;
2325 }
2326 }
2327 ASSERT(it != itEnd);
2328
2329 argumentInfo.typedMemberInfo = it->second;
2330
2331 int registerCount = argumentInfo.typedMemberInfo.type.totalRegisterCount();
2332 argumentInfo.clampedIndex = (argumentInfo.clampedIndex >= registerCount) ? registerCount - 1 : argumentInfo.clampedIndex;
2333 }
2334 else
2335 {
2336 argumentInfo.clampedIndex = (index >= arg->totalRegisterCount()) ? arg->totalRegisterCount() - 1 : index;
2337 }
2338
2339 return argumentInfo;
2340 }
2341
Nicolas Capens0530b452017-11-15 16:39:47 -05002342 void OutputASM::source(sw::Shader::SourceParameter &parameter, TIntermNode *argument, int index)
Nicolas Capens0bac2852016-05-07 06:09:58 -04002343 {
2344 if(argument)
2345 {
2346 TIntermTyped *arg = argument->getAsTyped();
2347 Temporary unpackedUniform(this);
2348
2349 const TType& srcType = arg->getType();
2350 TInterfaceBlock* srcBlock = srcType.getInterfaceBlock();
2351 if(srcBlock && (srcType.getQualifier() == EvqUniform))
2352 {
2353 const ArgumentInfo argumentInfo = getArgumentInfo(arg, index);
2354 const TType &memberType = argumentInfo.typedMemberInfo.type;
2355
2356 if(memberType.getBasicType() == EbtBool)
2357 {
Alexis Hetue97a31e2016-11-14 14:10:47 -05002358 ASSERT(argumentInfo.clampedIndex < (memberType.isArray() ? memberType.getArraySize() : 1)); // index < arraySize
Nicolas Capens0bac2852016-05-07 06:09:58 -04002359
2360 // Convert the packed bool, which is currently an int, to a true bool
2361 Instruction *instruction = new Instruction(sw::Shader::OPCODE_I2B);
2362 instruction->dst.type = sw::Shader::PARAMETER_TEMP;
2363 instruction->dst.index = registerIndex(&unpackedUniform);
2364 instruction->src[0].type = sw::Shader::PARAMETER_CONST;
2365 instruction->src[0].bufferIndex = argumentInfo.bufferIndex;
2366 instruction->src[0].index = argumentInfo.typedMemberInfo.offset + argumentInfo.clampedIndex * argumentInfo.typedMemberInfo.arrayStride;
2367
2368 shader->append(instruction);
2369
2370 arg = &unpackedUniform;
2371 index = 0;
2372 }
Alexis Hetud2742532018-01-23 16:53:41 -05002373 else if((memberType.getLayoutQualifier().matrixPacking == EmpRowMajor) && memberType.isMatrix())
Nicolas Capens0bac2852016-05-07 06:09:58 -04002374 {
2375 int numCols = memberType.getNominalSize();
2376 int numRows = memberType.getSecondarySize();
Nicolas Capens0bac2852016-05-07 06:09:58 -04002377
Alexis Hetue97a31e2016-11-14 14:10:47 -05002378 ASSERT(argumentInfo.clampedIndex < (numCols * (memberType.isArray() ? memberType.getArraySize() : 1))); // index < cols * arraySize
Nicolas Capens0bac2852016-05-07 06:09:58 -04002379
2380 unsigned int dstIndex = registerIndex(&unpackedUniform);
2381 unsigned int srcSwizzle = (argumentInfo.clampedIndex % numCols) * 0x55;
2382 int arrayIndex = argumentInfo.clampedIndex / numCols;
2383 int matrixStartOffset = argumentInfo.typedMemberInfo.offset + arrayIndex * argumentInfo.typedMemberInfo.arrayStride;
2384
2385 for(int j = 0; j < numRows; ++j)
2386 {
2387 // Transpose the row major matrix
2388 Instruction *instruction = new Instruction(sw::Shader::OPCODE_MOV);
2389 instruction->dst.type = sw::Shader::PARAMETER_TEMP;
2390 instruction->dst.index = dstIndex;
2391 instruction->dst.mask = 1 << j;
2392 instruction->src[0].type = sw::Shader::PARAMETER_CONST;
2393 instruction->src[0].bufferIndex = argumentInfo.bufferIndex;
2394 instruction->src[0].index = matrixStartOffset + j * argumentInfo.typedMemberInfo.matrixStride;
2395 instruction->src[0].swizzle = srcSwizzle;
2396
2397 shader->append(instruction);
2398 }
2399
2400 arg = &unpackedUniform;
2401 index = 0;
2402 }
2403 }
2404
2405 const ArgumentInfo argumentInfo = getArgumentInfo(arg, index);
2406 const TType &type = argumentInfo.typedMemberInfo.type;
2407
2408 int size = registerSize(type, argumentInfo.clampedIndex);
2409
2410 parameter.type = registerType(arg);
2411 parameter.bufferIndex = argumentInfo.bufferIndex;
2412
2413 if(arg->getAsConstantUnion() && arg->getAsConstantUnion()->getUnionArrayPointer())
2414 {
2415 int component = componentCount(type, argumentInfo.clampedIndex);
2416 ConstantUnion *constants = arg->getAsConstantUnion()->getUnionArrayPointer();
2417
2418 for(int i = 0; i < 4; i++)
2419 {
2420 if(size == 1) // Replicate
2421 {
2422 parameter.value[i] = constants[component + 0].getAsFloat();
2423 }
2424 else if(i < size)
2425 {
2426 parameter.value[i] = constants[component + i].getAsFloat();
2427 }
2428 else
2429 {
2430 parameter.value[i] = 0.0f;
2431 }
2432 }
2433 }
2434 else
2435 {
2436 parameter.index = registerIndex(arg) + argumentInfo.clampedIndex;
2437
2438 if(parameter.bufferIndex != -1)
2439 {
2440 int stride = (argumentInfo.typedMemberInfo.matrixStride > 0) ? argumentInfo.typedMemberInfo.matrixStride : argumentInfo.typedMemberInfo.arrayStride;
2441 parameter.index = argumentInfo.typedMemberInfo.offset + argumentInfo.clampedIndex * stride;
2442 }
2443 }
2444
2445 if(!IsSampler(arg->getBasicType()))
2446 {
2447 parameter.swizzle = readSwizzle(arg, size);
2448 }
2449 }
2450 }
2451
Nicolas Capens0530b452017-11-15 16:39:47 -05002452 void OutputASM::destination(sw::Shader::DestinationParameter &parameter, TIntermTyped *arg, int index)
2453 {
2454 parameter.type = registerType(arg);
2455 parameter.index = registerIndex(arg) + index;
Nicolas Capens3ae571e2017-11-16 15:28:14 -05002456 parameter.mask = writeMask(arg, index);
Nicolas Capens0530b452017-11-15 16:39:47 -05002457 }
2458
Nicolas Capens0bac2852016-05-07 06:09:58 -04002459 void OutputASM::copy(TIntermTyped *dst, TIntermNode *src, int offset)
2460 {
2461 for(int index = 0; index < dst->totalRegisterCount(); index++)
2462 {
2463 Instruction *mov = emit(sw::Shader::OPCODE_MOV, dst, index, src, offset + index);
Nicolas Capens0bac2852016-05-07 06:09:58 -04002464 }
2465 }
2466
2467 int swizzleElement(int swizzle, int index)
2468 {
2469 return (swizzle >> (index * 2)) & 0x03;
2470 }
2471
2472 int swizzleSwizzle(int leftSwizzle, int rightSwizzle)
2473 {
2474 return (swizzleElement(leftSwizzle, swizzleElement(rightSwizzle, 0)) << 0) |
2475 (swizzleElement(leftSwizzle, swizzleElement(rightSwizzle, 1)) << 2) |
2476 (swizzleElement(leftSwizzle, swizzleElement(rightSwizzle, 2)) << 4) |
2477 (swizzleElement(leftSwizzle, swizzleElement(rightSwizzle, 3)) << 6);
2478 }
2479
2480 void OutputASM::assignLvalue(TIntermTyped *dst, TIntermTyped *src)
2481 {
Nicolas Capens84249fd2017-11-09 11:20:51 -05002482 if((src->isVector() && (!dst->isVector() || (src->getNominalSize() != dst->getNominalSize()))) ||
2483 (src->isMatrix() && (!dst->isMatrix() || (src->getNominalSize() != dst->getNominalSize()) || (src->getSecondarySize() != dst->getSecondarySize()))))
Nicolas Capens0bac2852016-05-07 06:09:58 -04002484 {
2485 return mContext.error(src->getLine(), "Result type should match the l-value type in compound assignment", src->isVector() ? "vector" : "matrix");
2486 }
2487
2488 TIntermBinary *binary = dst->getAsBinaryNode();
2489
2490 if(binary && binary->getOp() == EOpIndexIndirect && binary->getLeft()->isVector() && dst->isScalar())
2491 {
2492 Instruction *insert = new Instruction(sw::Shader::OPCODE_INSERT);
2493
Nicolas Capens6986b282017-11-16 10:38:19 -05002494 lvalue(insert->dst, dst);
Nicolas Capens0bac2852016-05-07 06:09:58 -04002495
2496 insert->src[0].type = insert->dst.type;
2497 insert->src[0].index = insert->dst.index;
2498 insert->src[0].rel = insert->dst.rel;
Nicolas Capens0530b452017-11-15 16:39:47 -05002499 source(insert->src[1], src);
2500 source(insert->src[2], binary->getRight());
Nicolas Capens0bac2852016-05-07 06:09:58 -04002501
2502 shader->append(insert);
2503 }
2504 else
2505 {
Nicolas Capens84249fd2017-11-09 11:20:51 -05002506 Instruction *mov1 = new Instruction(sw::Shader::OPCODE_MOV);
2507
Nicolas Capens6986b282017-11-16 10:38:19 -05002508 int swizzle = lvalue(mov1->dst, dst);
Nicolas Capens84249fd2017-11-09 11:20:51 -05002509
Nicolas Capens0530b452017-11-15 16:39:47 -05002510 source(mov1->src[0], src);
Nicolas Capens84249fd2017-11-09 11:20:51 -05002511 mov1->src[0].swizzle = swizzleSwizzle(mov1->src[0].swizzle, swizzle);
2512
2513 shader->append(mov1);
2514
2515 for(int offset = 1; offset < dst->totalRegisterCount(); offset++)
Nicolas Capens0bac2852016-05-07 06:09:58 -04002516 {
2517 Instruction *mov = new Instruction(sw::Shader::OPCODE_MOV);
2518
Nicolas Capens84249fd2017-11-09 11:20:51 -05002519 mov->dst = mov1->dst;
Nicolas Capens0bac2852016-05-07 06:09:58 -04002520 mov->dst.index += offset;
Nicolas Capens84249fd2017-11-09 11:20:51 -05002521 mov->dst.mask = writeMask(dst, offset);
Nicolas Capens0bac2852016-05-07 06:09:58 -04002522
Nicolas Capens0530b452017-11-15 16:39:47 -05002523 source(mov->src[0], src, offset);
Nicolas Capens0bac2852016-05-07 06:09:58 -04002524
2525 shader->append(mov);
2526 }
2527 }
2528 }
2529
Nicolas Capensd469de22017-11-16 10:42:20 -05002530 void OutputASM::evaluateRvalue(TIntermTyped *node)
2531 {
2532 TIntermBinary *binary = node->getAsBinaryNode();
2533
2534 if(binary && binary->getOp() == EOpIndexIndirect && binary->getLeft()->isVector() && node->isScalar())
2535 {
2536 Instruction *insert = new Instruction(sw::Shader::OPCODE_EXTRACT);
2537
2538 destination(insert->dst, node);
2539
2540 Temporary address(this);
2541 unsigned char mask;
2542 TIntermTyped *root = nullptr;
2543 unsigned int offset = 0;
2544 int swizzle = lvalue(root, offset, insert->src[0].rel, mask, address, node);
2545
2546 source(insert->src[0], root, offset);
2547 insert->src[0].swizzle = swizzleSwizzle(insert->src[0].swizzle, swizzle);
2548
2549 source(insert->src[1], binary->getRight());
2550
2551 shader->append(insert);
2552 }
2553 else
2554 {
2555 Instruction *mov1 = new Instruction(sw::Shader::OPCODE_MOV);
2556
2557 destination(mov1->dst, node, 0);
2558
2559 Temporary address(this);
2560 unsigned char mask;
2561 TIntermTyped *root = nullptr;
2562 unsigned int offset = 0;
2563 int swizzle = lvalue(root, offset, mov1->src[0].rel, mask, address, node);
2564
2565 source(mov1->src[0], root, offset);
2566 mov1->src[0].swizzle = swizzleSwizzle(mov1->src[0].swizzle, swizzle);
2567
2568 shader->append(mov1);
2569
2570 for(int i = 1; i < node->totalRegisterCount(); i++)
2571 {
2572 Instruction *mov = emit(sw::Shader::OPCODE_MOV, node, i, root, offset + i);
2573 mov->src[0].rel = mov1->src[0].rel;
2574 }
2575 }
2576 }
2577
Nicolas Capens6986b282017-11-16 10:38:19 -05002578 int OutputASM::lvalue(sw::Shader::DestinationParameter &dst, TIntermTyped *node)
Nicolas Capens0bac2852016-05-07 06:09:58 -04002579 {
Nicolas Capens6986b282017-11-16 10:38:19 -05002580 Temporary address(this);
Nicolas Capens0530b452017-11-15 16:39:47 -05002581 TIntermTyped *root = nullptr;
2582 unsigned int offset = 0;
2583 unsigned char mask = 0xF;
2584 int swizzle = lvalue(root, offset, dst.rel, mask, address, node);
2585
2586 dst.type = registerType(root);
2587 dst.index = registerIndex(root) + offset;
2588 dst.mask = mask;
2589
2590 return swizzle;
2591 }
2592
2593 int OutputASM::lvalue(TIntermTyped *&root, unsigned int &offset, sw::Shader::Relative &rel, unsigned char &mask, Temporary &address, TIntermTyped *node)
2594 {
Nicolas Capens0bac2852016-05-07 06:09:58 -04002595 TIntermTyped *result = node;
2596 TIntermBinary *binary = node->getAsBinaryNode();
2597 TIntermSymbol *symbol = node->getAsSymbolNode();
2598
2599 if(binary)
2600 {
2601 TIntermTyped *left = binary->getLeft();
2602 TIntermTyped *right = binary->getRight();
2603
Nicolas Capens0530b452017-11-15 16:39:47 -05002604 int leftSwizzle = lvalue(root, offset, rel, mask, address, left); // Resolve the l-value of the left side
Nicolas Capens0bac2852016-05-07 06:09:58 -04002605
2606 switch(binary->getOp())
2607 {
2608 case EOpIndexDirect:
2609 {
2610 int rightIndex = right->getAsConstantUnion()->getIConst(0);
2611
2612 if(left->isRegister())
2613 {
Nicolas Capens0530b452017-11-15 16:39:47 -05002614 int leftMask = mask;
Nicolas Capens0bac2852016-05-07 06:09:58 -04002615
Nicolas Capens0530b452017-11-15 16:39:47 -05002616 mask = 1;
2617 while((leftMask & mask) == 0)
Nicolas Capens0bac2852016-05-07 06:09:58 -04002618 {
Nicolas Capens0530b452017-11-15 16:39:47 -05002619 mask = mask << 1;
Nicolas Capens0bac2852016-05-07 06:09:58 -04002620 }
2621
2622 int element = swizzleElement(leftSwizzle, rightIndex);
Nicolas Capens0530b452017-11-15 16:39:47 -05002623 mask = 1 << element;
Nicolas Capens0bac2852016-05-07 06:09:58 -04002624
2625 return element;
2626 }
2627 else if(left->isArray() || left->isMatrix())
2628 {
Nicolas Capens0530b452017-11-15 16:39:47 -05002629 offset += rightIndex * result->totalRegisterCount();
Nicolas Capens0bac2852016-05-07 06:09:58 -04002630 return 0xE4;
2631 }
2632 else UNREACHABLE(0);
2633 }
2634 break;
2635 case EOpIndexIndirect:
2636 {
Nicolas Capens84249fd2017-11-09 11:20:51 -05002637 right->traverse(this);
2638
Nicolas Capens0bac2852016-05-07 06:09:58 -04002639 if(left->isRegister())
2640 {
2641 // Requires INSERT instruction (handled by calling function)
2642 }
2643 else if(left->isArray() || left->isMatrix())
2644 {
2645 int scale = result->totalRegisterCount();
2646
Nicolas Capens0530b452017-11-15 16:39:47 -05002647 if(rel.type == sw::Shader::PARAMETER_VOID) // Use the index register as the relative address directly
Nicolas Capens0bac2852016-05-07 06:09:58 -04002648 {
2649 if(left->totalRegisterCount() > 1)
2650 {
2651 sw::Shader::SourceParameter relativeRegister;
Nicolas Capens0530b452017-11-15 16:39:47 -05002652 source(relativeRegister, right);
Nicolas Capens0bac2852016-05-07 06:09:58 -04002653
Nicolas Capens0530b452017-11-15 16:39:47 -05002654 rel.index = relativeRegister.index;
2655 rel.type = relativeRegister.type;
2656 rel.scale = scale;
2657 rel.deterministic = !(vertexShader && left->getQualifier() == EvqUniform);
Nicolas Capens0bac2852016-05-07 06:09:58 -04002658 }
2659 }
Nicolas Capens0530b452017-11-15 16:39:47 -05002660 else if(rel.index != registerIndex(&address)) // Move the previous index register to the address register
Nicolas Capens0bac2852016-05-07 06:09:58 -04002661 {
2662 if(scale == 1)
2663 {
Nicolas Capens0530b452017-11-15 16:39:47 -05002664 Constant oldScale((int)rel.scale);
Nicolas Capens0bac2852016-05-07 06:09:58 -04002665 Instruction *mad = emit(sw::Shader::OPCODE_IMAD, &address, &address, &oldScale, right);
Nicolas Capens0530b452017-11-15 16:39:47 -05002666 mad->src[0].index = rel.index;
2667 mad->src[0].type = rel.type;
Nicolas Capens0bac2852016-05-07 06:09:58 -04002668 }
2669 else
2670 {
Nicolas Capens0530b452017-11-15 16:39:47 -05002671 Constant oldScale((int)rel.scale);
Nicolas Capens0bac2852016-05-07 06:09:58 -04002672 Instruction *mul = emit(sw::Shader::OPCODE_IMUL, &address, &address, &oldScale);
Nicolas Capens0530b452017-11-15 16:39:47 -05002673 mul->src[0].index = rel.index;
2674 mul->src[0].type = rel.type;
Nicolas Capens0bac2852016-05-07 06:09:58 -04002675
2676 Constant newScale(scale);
2677 emit(sw::Shader::OPCODE_IMAD, &address, right, &newScale, &address);
2678 }
2679
Nicolas Capens0530b452017-11-15 16:39:47 -05002680 rel.type = sw::Shader::PARAMETER_TEMP;
2681 rel.index = registerIndex(&address);
2682 rel.scale = 1;
Nicolas Capens0bac2852016-05-07 06:09:58 -04002683 }
2684 else // Just add the new index to the address register
2685 {
2686 if(scale == 1)
2687 {
2688 emit(sw::Shader::OPCODE_IADD, &address, &address, right);
2689 }
2690 else
2691 {
2692 Constant newScale(scale);
2693 emit(sw::Shader::OPCODE_IMAD, &address, right, &newScale, &address);
2694 }
2695 }
2696 }
2697 else UNREACHABLE(0);
2698 }
2699 break;
2700 case EOpIndexDirectStruct:
2701 case EOpIndexDirectInterfaceBlock:
2702 {
2703 const TFieldList& fields = (binary->getOp() == EOpIndexDirectStruct) ?
2704 left->getType().getStruct()->fields() :
2705 left->getType().getInterfaceBlock()->fields();
2706 int index = right->getAsConstantUnion()->getIConst(0);
2707 int fieldOffset = 0;
2708
2709 for(int i = 0; i < index; i++)
2710 {
2711 fieldOffset += fields[i]->type()->totalRegisterCount();
2712 }
2713
Nicolas Capens0530b452017-11-15 16:39:47 -05002714 offset += fieldOffset;
2715 mask = writeMask(result);
Nicolas Capens0bac2852016-05-07 06:09:58 -04002716
2717 return 0xE4;
2718 }
2719 break;
2720 case EOpVectorSwizzle:
2721 {
2722 ASSERT(left->isRegister());
2723
Nicolas Capens0530b452017-11-15 16:39:47 -05002724 int leftMask = mask;
Nicolas Capens0bac2852016-05-07 06:09:58 -04002725
2726 int swizzle = 0;
2727 int rightMask = 0;
2728
2729 TIntermSequence &sequence = right->getAsAggregate()->getSequence();
2730
2731 for(unsigned int i = 0; i < sequence.size(); i++)
2732 {
2733 int index = sequence[i]->getAsConstantUnion()->getIConst(0);
2734
2735 int element = swizzleElement(leftSwizzle, index);
2736 rightMask = rightMask | (1 << element);
2737 swizzle = swizzle | swizzleElement(leftSwizzle, i) << (element * 2);
2738 }
2739
Nicolas Capens0530b452017-11-15 16:39:47 -05002740 mask = leftMask & rightMask;
Nicolas Capens0bac2852016-05-07 06:09:58 -04002741
2742 return swizzle;
2743 }
2744 break;
2745 default:
2746 UNREACHABLE(binary->getOp()); // Not an l-value operator
2747 break;
2748 }
2749 }
2750 else if(symbol)
2751 {
Nicolas Capens0530b452017-11-15 16:39:47 -05002752 root = symbol;
2753 offset = 0;
2754 mask = writeMask(symbol);
2755
2756 return 0xE4;
2757 }
2758 else
2759 {
2760 node->traverse(this);
2761
2762 root = node;
2763 offset = 0;
2764 mask = writeMask(node);
2765
Nicolas Capens0bac2852016-05-07 06:09:58 -04002766 return 0xE4;
2767 }
2768
2769 return 0xE4;
2770 }
2771
2772 sw::Shader::ParameterType OutputASM::registerType(TIntermTyped *operand)
2773 {
2774 if(isSamplerRegister(operand))
2775 {
2776 return sw::Shader::PARAMETER_SAMPLER;
2777 }
2778
2779 const TQualifier qualifier = operand->getQualifier();
Nicolas Capens0530b452017-11-15 16:39:47 -05002780 if((qualifier == EvqFragColor) || (qualifier == EvqFragData))
Nicolas Capens0bac2852016-05-07 06:09:58 -04002781 {
Nicolas Capens0530b452017-11-15 16:39:47 -05002782 if(((qualifier == EvqFragData) && (outputQualifier == EvqFragColor)) ||
2783 ((qualifier == EvqFragColor) && (outputQualifier == EvqFragData)))
Nicolas Capens0bac2852016-05-07 06:09:58 -04002784 {
2785 mContext.error(operand->getLine(), "static assignment to both gl_FragData and gl_FragColor", "");
2786 }
2787 outputQualifier = qualifier;
2788 }
2789
2790 if(qualifier == EvqConstExpr && (!operand->getAsConstantUnion() || !operand->getAsConstantUnion()->getUnionArrayPointer()))
2791 {
Nicolas Capens7cbb1de2017-12-22 08:54:18 -05002792 // Constant arrays are in the constant register file.
2793 if(operand->isArray() && operand->getArraySize() > 1)
2794 {
2795 return sw::Shader::PARAMETER_CONST;
2796 }
2797 else
2798 {
2799 return sw::Shader::PARAMETER_TEMP;
2800 }
Nicolas Capens0bac2852016-05-07 06:09:58 -04002801 }
2802
2803 switch(qualifier)
2804 {
2805 case EvqTemporary: return sw::Shader::PARAMETER_TEMP;
2806 case EvqGlobal: return sw::Shader::PARAMETER_TEMP;
2807 case EvqConstExpr: return sw::Shader::PARAMETER_FLOAT4LITERAL; // All converted to float
2808 case EvqAttribute: return sw::Shader::PARAMETER_INPUT;
2809 case EvqVaryingIn: return sw::Shader::PARAMETER_INPUT;
2810 case EvqVaryingOut: return sw::Shader::PARAMETER_OUTPUT;
2811 case EvqVertexIn: return sw::Shader::PARAMETER_INPUT;
2812 case EvqFragmentOut: return sw::Shader::PARAMETER_COLOROUT;
2813 case EvqVertexOut: return sw::Shader::PARAMETER_OUTPUT;
2814 case EvqFragmentIn: return sw::Shader::PARAMETER_INPUT;
2815 case EvqInvariantVaryingIn: return sw::Shader::PARAMETER_INPUT; // FIXME: Guarantee invariance at the backend
2816 case EvqInvariantVaryingOut: return sw::Shader::PARAMETER_OUTPUT; // FIXME: Guarantee invariance at the backend
2817 case EvqSmooth: return sw::Shader::PARAMETER_OUTPUT;
2818 case EvqFlat: return sw::Shader::PARAMETER_OUTPUT;
2819 case EvqCentroidOut: return sw::Shader::PARAMETER_OUTPUT;
2820 case EvqSmoothIn: return sw::Shader::PARAMETER_INPUT;
2821 case EvqFlatIn: return sw::Shader::PARAMETER_INPUT;
2822 case EvqCentroidIn: return sw::Shader::PARAMETER_INPUT;
2823 case EvqUniform: return sw::Shader::PARAMETER_CONST;
2824 case EvqIn: return sw::Shader::PARAMETER_TEMP;
2825 case EvqOut: return sw::Shader::PARAMETER_TEMP;
2826 case EvqInOut: return sw::Shader::PARAMETER_TEMP;
2827 case EvqConstReadOnly: return sw::Shader::PARAMETER_TEMP;
2828 case EvqPosition: return sw::Shader::PARAMETER_OUTPUT;
2829 case EvqPointSize: return sw::Shader::PARAMETER_OUTPUT;
2830 case EvqInstanceID: return sw::Shader::PARAMETER_MISCTYPE;
Alexis Hetu877ddfc2017-07-25 17:48:00 -04002831 case EvqVertexID: return sw::Shader::PARAMETER_MISCTYPE;
Nicolas Capens0bac2852016-05-07 06:09:58 -04002832 case EvqFragCoord: return sw::Shader::PARAMETER_MISCTYPE;
2833 case EvqFrontFacing: return sw::Shader::PARAMETER_MISCTYPE;
2834 case EvqPointCoord: return sw::Shader::PARAMETER_INPUT;
2835 case EvqFragColor: return sw::Shader::PARAMETER_COLOROUT;
2836 case EvqFragData: return sw::Shader::PARAMETER_COLOROUT;
2837 case EvqFragDepth: return sw::Shader::PARAMETER_DEPTHOUT;
2838 default: UNREACHABLE(qualifier);
2839 }
2840
2841 return sw::Shader::PARAMETER_VOID;
2842 }
2843
Alexis Hetu12b00502016-05-20 13:01:11 -04002844 bool OutputASM::hasFlatQualifier(TIntermTyped *operand)
2845 {
2846 const TQualifier qualifier = operand->getQualifier();
2847 return qualifier == EvqFlat || qualifier == EvqFlatOut || qualifier == EvqFlatIn;
2848 }
2849
Nicolas Capens0bac2852016-05-07 06:09:58 -04002850 unsigned int OutputASM::registerIndex(TIntermTyped *operand)
2851 {
2852 if(isSamplerRegister(operand))
2853 {
2854 return samplerRegister(operand);
2855 }
Alexis Hetud87b3a82018-04-24 11:13:33 -04002856 else if(operand->getType().totalSamplerRegisterCount() > 0) // Struct containing a sampler
2857 {
2858 samplerRegister(operand); // Make sure the sampler is declared
2859 }
Nicolas Capens0bac2852016-05-07 06:09:58 -04002860
2861 switch(operand->getQualifier())
2862 {
2863 case EvqTemporary: return temporaryRegister(operand);
2864 case EvqGlobal: return temporaryRegister(operand);
2865 case EvqConstExpr: return temporaryRegister(operand); // Unevaluated constant expression
2866 case EvqAttribute: return attributeRegister(operand);
2867 case EvqVaryingIn: return varyingRegister(operand);
2868 case EvqVaryingOut: return varyingRegister(operand);
2869 case EvqVertexIn: return attributeRegister(operand);
2870 case EvqFragmentOut: return fragmentOutputRegister(operand);
2871 case EvqVertexOut: return varyingRegister(operand);
2872 case EvqFragmentIn: return varyingRegister(operand);
2873 case EvqInvariantVaryingIn: return varyingRegister(operand);
2874 case EvqInvariantVaryingOut: return varyingRegister(operand);
2875 case EvqSmooth: return varyingRegister(operand);
2876 case EvqFlat: return varyingRegister(operand);
2877 case EvqCentroidOut: return varyingRegister(operand);
2878 case EvqSmoothIn: return varyingRegister(operand);
2879 case EvqFlatIn: return varyingRegister(operand);
2880 case EvqCentroidIn: return varyingRegister(operand);
2881 case EvqUniform: return uniformRegister(operand);
2882 case EvqIn: return temporaryRegister(operand);
2883 case EvqOut: return temporaryRegister(operand);
2884 case EvqInOut: return temporaryRegister(operand);
2885 case EvqConstReadOnly: return temporaryRegister(operand);
2886 case EvqPosition: return varyingRegister(operand);
2887 case EvqPointSize: return varyingRegister(operand);
Alexis Hetu877ddfc2017-07-25 17:48:00 -04002888 case EvqInstanceID: vertexShader->declareInstanceId(); return sw::Shader::InstanceIDIndex;
2889 case EvqVertexID: vertexShader->declareVertexId(); return sw::Shader::VertexIDIndex;
2890 case EvqFragCoord: pixelShader->declareVPos(); return sw::Shader::VPosIndex;
2891 case EvqFrontFacing: pixelShader->declareVFace(); return sw::Shader::VFaceIndex;
Nicolas Capens0bac2852016-05-07 06:09:58 -04002892 case EvqPointCoord: return varyingRegister(operand);
2893 case EvqFragColor: return 0;
2894 case EvqFragData: return fragmentOutputRegister(operand);
2895 case EvqFragDepth: return 0;
2896 default: UNREACHABLE(operand->getQualifier());
2897 }
2898
2899 return 0;
2900 }
2901
2902 int OutputASM::writeMask(TIntermTyped *destination, int index)
2903 {
2904 if(destination->getQualifier() == EvqPointSize)
2905 {
2906 return 0x2; // Point size stored in the y component
2907 }
2908
2909 return 0xF >> (4 - registerSize(destination->getType(), index));
2910 }
2911
2912 int OutputASM::readSwizzle(TIntermTyped *argument, int size)
2913 {
2914 if(argument->getQualifier() == EvqPointSize)
2915 {
2916 return 0x55; // Point size stored in the y component
2917 }
2918
2919 static const unsigned char swizzleSize[5] = {0x00, 0x00, 0x54, 0xA4, 0xE4}; // (void), xxxx, xyyy, xyzz, xyzw
2920
2921 return swizzleSize[size];
2922 }
2923
2924 // Conservatively checks whether an expression is fast to compute and has no side effects
2925 bool OutputASM::trivial(TIntermTyped *expression, int budget)
2926 {
2927 if(!expression->isRegister())
2928 {
2929 return false;
2930 }
2931
2932 return cost(expression, budget) >= 0;
2933 }
2934
2935 // Returns the remaining computing budget (if < 0 the expression is too expensive or has side effects)
2936 int OutputASM::cost(TIntermNode *expression, int budget)
2937 {
2938 if(budget < 0)
2939 {
2940 return budget;
2941 }
2942
2943 if(expression->getAsSymbolNode())
2944 {
2945 return budget;
2946 }
2947 else if(expression->getAsConstantUnion())
2948 {
2949 return budget;
2950 }
2951 else if(expression->getAsBinaryNode())
2952 {
2953 TIntermBinary *binary = expression->getAsBinaryNode();
2954
2955 switch(binary->getOp())
2956 {
2957 case EOpVectorSwizzle:
2958 case EOpIndexDirect:
2959 case EOpIndexDirectStruct:
2960 case EOpIndexDirectInterfaceBlock:
2961 return cost(binary->getLeft(), budget - 0);
2962 case EOpAdd:
2963 case EOpSub:
2964 case EOpMul:
2965 return cost(binary->getLeft(), cost(binary->getRight(), budget - 1));
2966 default:
2967 return -1;
2968 }
2969 }
2970 else if(expression->getAsUnaryNode())
2971 {
2972 TIntermUnary *unary = expression->getAsUnaryNode();
2973
2974 switch(unary->getOp())
2975 {
2976 case EOpAbs:
2977 case EOpNegative:
2978 return cost(unary->getOperand(), budget - 1);
2979 default:
2980 return -1;
2981 }
2982 }
2983 else if(expression->getAsSelectionNode())
2984 {
2985 TIntermSelection *selection = expression->getAsSelectionNode();
2986
2987 if(selection->usesTernaryOperator())
2988 {
2989 TIntermTyped *condition = selection->getCondition();
2990 TIntermNode *trueBlock = selection->getTrueBlock();
2991 TIntermNode *falseBlock = selection->getFalseBlock();
2992 TIntermConstantUnion *constantCondition = condition->getAsConstantUnion();
2993
2994 if(constantCondition)
2995 {
2996 bool trueCondition = constantCondition->getUnionArrayPointer()->getBConst();
2997
2998 if(trueCondition)
2999 {
3000 return cost(trueBlock, budget - 0);
3001 }
3002 else
3003 {
3004 return cost(falseBlock, budget - 0);
3005 }
3006 }
3007 else
3008 {
3009 return cost(trueBlock, cost(falseBlock, budget - 2));
3010 }
3011 }
3012 }
3013
3014 return -1;
3015 }
3016
3017 const Function *OutputASM::findFunction(const TString &name)
3018 {
3019 for(unsigned int f = 0; f < functionArray.size(); f++)
3020 {
3021 if(functionArray[f].name == name)
3022 {
3023 return &functionArray[f];
3024 }
3025 }
3026
3027 return 0;
3028 }
3029
3030 int OutputASM::temporaryRegister(TIntermTyped *temporary)
3031 {
Alexis Hetu329747c2018-04-09 13:47:34 -04003032 int index = allocate(temporaries, temporary);
3033 if(index >= sw::NUM_TEMPORARY_REGISTERS)
3034 {
3035 mContext.error(temporary->getLine(),
3036 "Too many temporary registers required to compile shader",
3037 pixelShader ? "pixel shader" : "vertex shader");
3038 }
3039 return index;
Nicolas Capens0bac2852016-05-07 06:09:58 -04003040 }
3041
Alexis Hetu49351232017-11-02 16:00:32 -04003042 void OutputASM::setPixelShaderInputs(const TType& type, int var, bool flat)
3043 {
3044 if(type.isStruct())
3045 {
3046 const TFieldList &fields = type.getStruct()->fields();
3047 int fieldVar = var;
Alexis Hetuda163ed2018-01-03 16:36:14 -05003048 for(const auto &field : fields)
Alexis Hetu49351232017-11-02 16:00:32 -04003049 {
Alexis Hetuda163ed2018-01-03 16:36:14 -05003050 const TType& fieldType = *(field->type());
Alexis Hetu49351232017-11-02 16:00:32 -04003051 setPixelShaderInputs(fieldType, fieldVar, flat);
3052 fieldVar += fieldType.totalRegisterCount();
3053 }
3054 }
3055 else
3056 {
3057 for(int i = 0; i < type.totalRegisterCount(); i++)
3058 {
3059 pixelShader->setInput(var + i, type.registerSize(), sw::Shader::Semantic(sw::Shader::USAGE_COLOR, var + i, flat));
3060 }
3061 }
3062 }
3063
Nicolas Capens0bac2852016-05-07 06:09:58 -04003064 int OutputASM::varyingRegister(TIntermTyped *varying)
3065 {
3066 int var = lookup(varyings, varying);
3067
3068 if(var == -1)
3069 {
3070 var = allocate(varyings, varying);
Nicolas Capens0bac2852016-05-07 06:09:58 -04003071 int registerCount = varying->totalRegisterCount();
3072
3073 if(pixelShader)
3074 {
Nicolas Capens3b4c93f2016-05-18 12:51:37 -04003075 if((var + registerCount) > sw::MAX_FRAGMENT_INPUTS)
Nicolas Capens0bac2852016-05-07 06:09:58 -04003076 {
3077 mContext.error(varying->getLine(), "Varyings packing failed: Too many varyings", "fragment shader");
3078 return 0;
3079 }
3080
3081 if(varying->getQualifier() == EvqPointCoord)
3082 {
3083 ASSERT(varying->isRegister());
Alexis Hetu49351232017-11-02 16:00:32 -04003084 pixelShader->setInput(var, varying->registerSize(), sw::Shader::Semantic(sw::Shader::USAGE_TEXCOORD, var));
Nicolas Capens0bac2852016-05-07 06:09:58 -04003085 }
3086 else
3087 {
Alexis Hetu49351232017-11-02 16:00:32 -04003088 setPixelShaderInputs(varying->getType(), var, hasFlatQualifier(varying));
Nicolas Capens0bac2852016-05-07 06:09:58 -04003089 }
3090 }
3091 else if(vertexShader)
3092 {
Nicolas Capensec0936c2016-05-18 12:32:02 -04003093 if((var + registerCount) > sw::MAX_VERTEX_OUTPUTS)
Nicolas Capens0bac2852016-05-07 06:09:58 -04003094 {
3095 mContext.error(varying->getLine(), "Varyings packing failed: Too many varyings", "vertex shader");
3096 return 0;
3097 }
3098
3099 if(varying->getQualifier() == EvqPosition)
3100 {
3101 ASSERT(varying->isRegister());
Alexis Hetu02ad0aa2016-08-02 11:18:14 -04003102 vertexShader->setPositionRegister(var);
Nicolas Capens0bac2852016-05-07 06:09:58 -04003103 }
3104 else if(varying->getQualifier() == EvqPointSize)
3105 {
3106 ASSERT(varying->isRegister());
Alexis Hetu02ad0aa2016-08-02 11:18:14 -04003107 vertexShader->setPointSizeRegister(var);
Nicolas Capens0bac2852016-05-07 06:09:58 -04003108 }
3109 else
3110 {
3111 // Semantic indexes for user varyings will be assigned during program link to match the pixel shader
3112 }
3113 }
3114 else UNREACHABLE(0);
3115
3116 declareVarying(varying, var);
3117 }
3118
3119 return var;
3120 }
3121
3122 void OutputASM::declareVarying(TIntermTyped *varying, int reg)
3123 {
3124 if(varying->getQualifier() != EvqPointCoord) // gl_PointCoord does not need linking
3125 {
Alexis Hetu49351232017-11-02 16:00:32 -04003126 TIntermSymbol *symbol = varying->getAsSymbolNode();
3127 declareVarying(varying->getType(), symbol->getSymbol(), reg);
3128 }
3129 }
Nicolas Capens0bac2852016-05-07 06:09:58 -04003130
Alexis Hetu49351232017-11-02 16:00:32 -04003131 void OutputASM::declareVarying(const TType &type, const TString &varyingName, int registerIndex)
3132 {
3133 const char *name = varyingName.c_str();
3134 VaryingList &activeVaryings = shaderObject->varyings;
3135
3136 TStructure* structure = type.getStruct();
3137 if(structure)
3138 {
3139 int fieldRegisterIndex = registerIndex;
3140
3141 const TFieldList &fields = type.getStruct()->fields();
Alexis Hetuda163ed2018-01-03 16:36:14 -05003142 for(const auto &field : fields)
Alexis Hetu49351232017-11-02 16:00:32 -04003143 {
Alexis Hetuda163ed2018-01-03 16:36:14 -05003144 const TType& fieldType = *(field->type());
3145 declareVarying(fieldType, varyingName + "." + field->name(), fieldRegisterIndex);
Alexis Hetu49351232017-11-02 16:00:32 -04003146 if(fieldRegisterIndex >= 0)
3147 {
3148 fieldRegisterIndex += fieldType.totalRegisterCount();
3149 }
3150 }
3151 }
3152 else
3153 {
Nicolas Capens0bac2852016-05-07 06:09:58 -04003154 // Check if this varying has been declared before without having a register assigned
3155 for(VaryingList::iterator v = activeVaryings.begin(); v != activeVaryings.end(); v++)
3156 {
3157 if(v->name == name)
3158 {
Alexis Hetu49351232017-11-02 16:00:32 -04003159 if(registerIndex >= 0)
Nicolas Capens0bac2852016-05-07 06:09:58 -04003160 {
Alexis Hetu924513c2018-01-05 15:48:12 -05003161 ASSERT(v->registerIndex < 0 || v->registerIndex == registerIndex);
3162 v->registerIndex = registerIndex;
Nicolas Capens0bac2852016-05-07 06:09:58 -04003163 }
3164
3165 return;
3166 }
3167 }
3168
Alexis Hetu924513c2018-01-05 15:48:12 -05003169 activeVaryings.push_back(glsl::Varying(type, name, registerIndex, 0));
Nicolas Capens0bac2852016-05-07 06:09:58 -04003170 }
3171 }
3172
Alexis Hetu930df972018-01-30 16:54:13 -05003173 void OutputASM::declareFragmentOutput(TIntermTyped *fragmentOutput)
3174 {
3175 int requestedLocation = fragmentOutput->getType().getLayoutQualifier().location;
Alexis Hetu17e2e2f2018-02-05 10:41:47 -05003176 int registerCount = fragmentOutput->totalRegisterCount();
3177 if(requestedLocation < 0)
Alexis Hetu930df972018-01-30 16:54:13 -05003178 {
Alexis Hetu3c1d6cf2018-02-06 10:54:49 -05003179 ASSERT(requestedLocation == -1); // All other negative values would have been prevented in TParseContext::parseLayoutQualifier
3180 return; // No requested location
Alexis Hetu930df972018-01-30 16:54:13 -05003181 }
Alexis Hetu17e2e2f2018-02-05 10:41:47 -05003182 else if((requestedLocation + registerCount) > sw::RENDERTARGETS)
Alexis Hetu930df972018-01-30 16:54:13 -05003183 {
3184 mContext.error(fragmentOutput->getLine(), "Fragment output location larger or equal to MAX_DRAW_BUFFERS", "fragment shader");
3185 }
Alexis Hetu17e2e2f2018-02-05 10:41:47 -05003186 else
3187 {
3188 int currentIndex = lookup(fragmentOutputs, fragmentOutput);
3189 if(requestedLocation != currentIndex)
3190 {
3191 if(currentIndex != -1)
3192 {
3193 mContext.error(fragmentOutput->getLine(), "Multiple locations for fragment output", "fragment shader");
3194 }
3195 else
3196 {
3197 if(fragmentOutputs.size() <= (size_t)requestedLocation)
3198 {
3199 while(fragmentOutputs.size() < (size_t)requestedLocation)
3200 {
3201 fragmentOutputs.push_back(nullptr);
3202 }
3203 for(int i = 0; i < registerCount; i++)
3204 {
3205 fragmentOutputs.push_back(fragmentOutput);
3206 }
3207 }
3208 else
3209 {
3210 for(int i = 0; i < registerCount; i++)
3211 {
3212 if(!fragmentOutputs[requestedLocation + i])
3213 {
3214 fragmentOutputs[requestedLocation + i] = fragmentOutput;
3215 }
3216 else
3217 {
3218 mContext.error(fragmentOutput->getLine(), "Fragment output location aliasing", "fragment shader");
3219 return;
3220 }
3221 }
3222 }
3223 }
3224 }
3225 }
Alexis Hetu930df972018-01-30 16:54:13 -05003226 }
3227
Nicolas Capens0bac2852016-05-07 06:09:58 -04003228 int OutputASM::uniformRegister(TIntermTyped *uniform)
3229 {
3230 const TType &type = uniform->getType();
3231 ASSERT(!IsSampler(type.getBasicType()));
3232 TInterfaceBlock *block = type.getAsInterfaceBlock();
3233 TIntermSymbol *symbol = uniform->getAsSymbolNode();
3234 ASSERT(symbol || block);
3235
3236 if(symbol || block)
3237 {
3238 TInterfaceBlock* parentBlock = type.getInterfaceBlock();
3239 bool isBlockMember = (!block && parentBlock);
3240 int index = isBlockMember ? lookup(uniforms, parentBlock) : lookup(uniforms, uniform);
3241
3242 if(index == -1 || isBlockMember)
3243 {
3244 if(index == -1)
3245 {
3246 index = allocate(uniforms, uniform);
3247 }
3248
3249 // Verify if the current uniform is a member of an already declared block
3250 const TString &name = symbol ? symbol->getSymbol() : block->name();
3251 int blockMemberIndex = blockMemberLookup(type, name, index);
3252 if(blockMemberIndex == -1)
3253 {
Alexis Hetuda163ed2018-01-03 16:36:14 -05003254 declareUniform(type, name, index, false);
Nicolas Capens0bac2852016-05-07 06:09:58 -04003255 }
3256 else
3257 {
3258 index = blockMemberIndex;
3259 }
3260 }
3261
3262 return index;
3263 }
3264
3265 return 0;
3266 }
3267
3268 int OutputASM::attributeRegister(TIntermTyped *attribute)
3269 {
3270 ASSERT(!attribute->isArray());
3271
3272 int index = lookup(attributes, attribute);
3273
3274 if(index == -1)
3275 {
3276 TIntermSymbol *symbol = attribute->getAsSymbolNode();
3277 ASSERT(symbol);
3278
3279 if(symbol)
3280 {
3281 index = allocate(attributes, attribute);
3282 const TType &type = attribute->getType();
3283 int registerCount = attribute->totalRegisterCount();
Alexis Hetub7508b82016-09-22 15:36:45 -04003284 sw::VertexShader::AttribType attribType = sw::VertexShader::ATTRIBTYPE_FLOAT;
3285 switch(type.getBasicType())
3286 {
3287 case EbtInt:
3288 attribType = sw::VertexShader::ATTRIBTYPE_INT;
3289 break;
3290 case EbtUInt:
3291 attribType = sw::VertexShader::ATTRIBTYPE_UINT;
3292 break;
3293 case EbtFloat:
3294 default:
3295 break;
3296 }
Nicolas Capens0bac2852016-05-07 06:09:58 -04003297
Nicolas Capensf0aef1a2016-05-18 14:44:21 -04003298 if(vertexShader && (index + registerCount) <= sw::MAX_VERTEX_INPUTS)
Nicolas Capens0bac2852016-05-07 06:09:58 -04003299 {
3300 for(int i = 0; i < registerCount; i++)
3301 {
Alexis Hetub7508b82016-09-22 15:36:45 -04003302 vertexShader->setInput(index + i, sw::Shader::Semantic(sw::Shader::USAGE_TEXCOORD, index + i, false), attribType);
Nicolas Capens0bac2852016-05-07 06:09:58 -04003303 }
3304 }
3305
3306 ActiveAttributes &activeAttributes = shaderObject->activeAttributes;
3307
3308 const char *name = symbol->getSymbol().c_str();
3309 activeAttributes.push_back(Attribute(glVariableType(type), name, type.getArraySize(), type.getLayoutQualifier().location, index));
3310 }
3311 }
3312
3313 return index;
3314 }
3315
3316 int OutputASM::fragmentOutputRegister(TIntermTyped *fragmentOutput)
3317 {
3318 return allocate(fragmentOutputs, fragmentOutput);
3319 }
3320
3321 int OutputASM::samplerRegister(TIntermTyped *sampler)
3322 {
3323 const TType &type = sampler->getType();
3324 ASSERT(IsSampler(type.getBasicType()) || type.isStruct()); // Structures can contain samplers
3325
3326 TIntermSymbol *symbol = sampler->getAsSymbolNode();
3327 TIntermBinary *binary = sampler->getAsBinaryNode();
3328
Nicolas Capensfcb70fd2017-05-17 15:16:51 -04003329 if(symbol)
Nicolas Capens0bac2852016-05-07 06:09:58 -04003330 {
Nicolas Capensfcb70fd2017-05-17 15:16:51 -04003331 switch(type.getQualifier())
3332 {
3333 case EvqUniform:
3334 return samplerRegister(symbol);
3335 case EvqIn:
3336 case EvqConstReadOnly:
3337 // Function arguments are not (uniform) sampler registers
3338 return -1;
3339 default:
3340 UNREACHABLE(type.getQualifier());
3341 }
Nicolas Capens0bac2852016-05-07 06:09:58 -04003342 }
3343 else if(binary)
3344 {
3345 TIntermTyped *left = binary->getLeft();
3346 TIntermTyped *right = binary->getRight();
3347 const TType &leftType = left->getType();
3348 int index = right->getAsConstantUnion() ? right->getAsConstantUnion()->getIConst(0) : 0;
3349 int offset = 0;
3350
3351 switch(binary->getOp())
3352 {
3353 case EOpIndexDirect:
3354 ASSERT(left->isArray());
Alexis Hetuda163ed2018-01-03 16:36:14 -05003355 offset = index * leftType.samplerRegisterCount();
Nicolas Capens0bac2852016-05-07 06:09:58 -04003356 break;
3357 case EOpIndexDirectStruct:
3358 ASSERT(leftType.isStruct());
3359 {
3360 const TFieldList &fields = leftType.getStruct()->fields();
3361
3362 for(int i = 0; i < index; i++)
3363 {
Alexis Hetuda163ed2018-01-03 16:36:14 -05003364 offset += fields[i]->type()->totalSamplerRegisterCount();
Nicolas Capens0bac2852016-05-07 06:09:58 -04003365 }
3366 }
3367 break;
3368 case EOpIndexIndirect: // Indirect indexing produces a temporary, not a sampler register
3369 return -1;
3370 case EOpIndexDirectInterfaceBlock: // Interface blocks can't contain samplers
3371 default:
3372 UNREACHABLE(binary->getOp());
3373 return -1;
3374 }
3375
3376 int base = samplerRegister(left);
3377
3378 if(base < 0)
3379 {
3380 return -1;
3381 }
3382
3383 return base + offset;
3384 }
3385
3386 UNREACHABLE(0);
Nicolas Capensfcb70fd2017-05-17 15:16:51 -04003387 return -1; // Not a (uniform) sampler register
Nicolas Capens0bac2852016-05-07 06:09:58 -04003388 }
3389
3390 int OutputASM::samplerRegister(TIntermSymbol *sampler)
3391 {
3392 const TType &type = sampler->getType();
3393 ASSERT(IsSampler(type.getBasicType()) || type.isStruct()); // Structures can contain samplers
3394
3395 int index = lookup(samplers, sampler);
3396
3397 if(index == -1)
3398 {
Alexis Hetuda163ed2018-01-03 16:36:14 -05003399 index = allocate(samplers, sampler, true);
Nicolas Capens0bac2852016-05-07 06:09:58 -04003400
3401 if(sampler->getQualifier() == EvqUniform)
3402 {
3403 const char *name = sampler->getSymbol().c_str();
Alexis Hetuda163ed2018-01-03 16:36:14 -05003404 declareUniform(type, name, index, true);
Nicolas Capens0bac2852016-05-07 06:09:58 -04003405 }
3406 }
3407
3408 return index;
3409 }
3410
3411 bool OutputASM::isSamplerRegister(TIntermTyped *operand)
3412 {
3413 return operand && IsSampler(operand->getBasicType()) && samplerRegister(operand) >= 0;
3414 }
3415
3416 int OutputASM::lookup(VariableArray &list, TIntermTyped *variable)
3417 {
3418 for(unsigned int i = 0; i < list.size(); i++)
3419 {
3420 if(list[i] == variable)
3421 {
3422 return i; // Pointer match
3423 }
3424 }
3425
3426 TIntermSymbol *varSymbol = variable->getAsSymbolNode();
3427 TInterfaceBlock *varBlock = variable->getType().getAsInterfaceBlock();
3428
3429 if(varBlock)
3430 {
3431 for(unsigned int i = 0; i < list.size(); i++)
3432 {
3433 if(list[i])
3434 {
3435 TInterfaceBlock *listBlock = list[i]->getType().getAsInterfaceBlock();
3436
3437 if(listBlock)
3438 {
3439 if(listBlock->name() == varBlock->name())
3440 {
3441 ASSERT(listBlock->arraySize() == varBlock->arraySize());
3442 ASSERT(listBlock->fields() == varBlock->fields());
3443 ASSERT(listBlock->blockStorage() == varBlock->blockStorage());
3444 ASSERT(listBlock->matrixPacking() == varBlock->matrixPacking());
3445
3446 return i;
3447 }
3448 }
3449 }
3450 }
3451 }
3452 else if(varSymbol)
3453 {
3454 for(unsigned int i = 0; i < list.size(); i++)
3455 {
3456 if(list[i])
3457 {
3458 TIntermSymbol *listSymbol = list[i]->getAsSymbolNode();
3459
3460 if(listSymbol)
3461 {
3462 if(listSymbol->getId() == varSymbol->getId())
3463 {
3464 ASSERT(listSymbol->getSymbol() == varSymbol->getSymbol());
3465 ASSERT(listSymbol->getType() == varSymbol->getType());
3466 ASSERT(listSymbol->getQualifier() == varSymbol->getQualifier());
3467
3468 return i;
3469 }
3470 }
3471 }
3472 }
3473 }
3474
3475 return -1;
3476 }
3477
3478 int OutputASM::lookup(VariableArray &list, TInterfaceBlock *block)
3479 {
3480 for(unsigned int i = 0; i < list.size(); i++)
3481 {
3482 if(list[i] && (list[i]->getType().getInterfaceBlock() == block))
3483 {
3484 return i; // Pointer match
3485 }
3486 }
3487 return -1;
3488 }
3489
Alexis Hetuda163ed2018-01-03 16:36:14 -05003490 int OutputASM::allocate(VariableArray &list, TIntermTyped *variable, bool samplersOnly)
Nicolas Capens0bac2852016-05-07 06:09:58 -04003491 {
3492 int index = lookup(list, variable);
3493
3494 if(index == -1)
3495 {
Alexis Hetuda163ed2018-01-03 16:36:14 -05003496 unsigned int registerCount = variable->blockRegisterCount(samplersOnly);
Nicolas Capens0bac2852016-05-07 06:09:58 -04003497
3498 for(unsigned int i = 0; i < list.size(); i++)
3499 {
3500 if(list[i] == 0)
3501 {
3502 unsigned int j = 1;
3503 for( ; j < registerCount && (i + j) < list.size(); j++)
3504 {
3505 if(list[i + j] != 0)
3506 {
3507 break;
3508 }
3509 }
3510
3511 if(j == registerCount) // Found free slots
3512 {
3513 for(unsigned int j = 0; j < registerCount; j++)
3514 {
3515 list[i + j] = variable;
3516 }
3517
3518 return i;
3519 }
3520 }
3521 }
3522
3523 index = list.size();
3524
3525 for(unsigned int i = 0; i < registerCount; i++)
3526 {
3527 list.push_back(variable);
3528 }
3529 }
3530
3531 return index;
3532 }
3533
3534 void OutputASM::free(VariableArray &list, TIntermTyped *variable)
3535 {
3536 int index = lookup(list, variable);
3537
3538 if(index >= 0)
3539 {
3540 list[index] = 0;
3541 }
3542 }
3543
3544 int OutputASM::blockMemberLookup(const TType &type, const TString &name, int registerIndex)
3545 {
3546 const TInterfaceBlock *block = type.getInterfaceBlock();
3547
3548 if(block)
3549 {
3550 ActiveUniformBlocks &activeUniformBlocks = shaderObject->activeUniformBlocks;
3551 const TFieldList& fields = block->fields();
3552 const TString &blockName = block->name();
3553 int fieldRegisterIndex = registerIndex;
3554
3555 if(!type.isInterfaceBlock())
3556 {
3557 // This is a uniform that's part of a block, let's see if the block is already defined
3558 for(size_t i = 0; i < activeUniformBlocks.size(); ++i)
3559 {
3560 if(activeUniformBlocks[i].name == blockName.c_str())
3561 {
3562 // The block is already defined, find the register for the current uniform and return it
3563 for(size_t j = 0; j < fields.size(); j++)
3564 {
3565 const TString &fieldName = fields[j]->name();
3566 if(fieldName == name)
3567 {
3568 return fieldRegisterIndex;
3569 }
3570
3571 fieldRegisterIndex += fields[j]->type()->totalRegisterCount();
3572 }
3573
3574 ASSERT(false);
3575 return fieldRegisterIndex;
3576 }
3577 }
3578 }
3579 }
3580
3581 return -1;
3582 }
3583
Alexis Hetuda163ed2018-01-03 16:36:14 -05003584 void OutputASM::declareUniform(const TType &type, const TString &name, int registerIndex, bool samplersOnly, int blockId, BlockLayoutEncoder* encoder)
Nicolas Capens0bac2852016-05-07 06:09:58 -04003585 {
3586 const TStructure *structure = type.getStruct();
3587 const TInterfaceBlock *block = (type.isInterfaceBlock() || (blockId == -1)) ? type.getInterfaceBlock() : nullptr;
3588
3589 if(!structure && !block)
3590 {
3591 ActiveUniforms &activeUniforms = shaderObject->activeUniforms;
3592 const BlockMemberInfo blockInfo = encoder ? encoder->encodeType(type) : BlockMemberInfo::getDefaultBlockInfo();
3593 if(blockId >= 0)
3594 {
Nicolas Capensbb2bcae2018-02-05 11:12:10 -05003595 blockDefinitions[blockId].insert(BlockDefinitionIndexMap::value_type(registerIndex, TypedMemberInfo(blockInfo, type)));
Nicolas Capens0bac2852016-05-07 06:09:58 -04003596 shaderObject->activeUniformBlocks[blockId].fields.push_back(activeUniforms.size());
3597 }
3598 int fieldRegisterIndex = encoder ? shaderObject->activeUniformBlocks[blockId].registerIndex + BlockLayoutEncoder::getBlockRegister(blockInfo) : registerIndex;
Alexis Hetuda163ed2018-01-03 16:36:14 -05003599 bool isSampler = IsSampler(type.getBasicType());
3600 if(isSampler && samplersOnly)
Nicolas Capens0bac2852016-05-07 06:09:58 -04003601 {
3602 for(int i = 0; i < type.totalRegisterCount(); i++)
3603 {
3604 shader->declareSampler(fieldRegisterIndex + i);
3605 }
3606 }
Alexis Hetu924513c2018-01-05 15:48:12 -05003607 if(isSampler == samplersOnly)
Alexis Hetuda163ed2018-01-03 16:36:14 -05003608 {
Alexis Hetu924513c2018-01-05 15:48:12 -05003609 activeUniforms.push_back(Uniform(type, name.c_str(), fieldRegisterIndex, blockId, blockInfo));
Alexis Hetuda163ed2018-01-03 16:36:14 -05003610 }
Nicolas Capens0bac2852016-05-07 06:09:58 -04003611 }
3612 else if(block)
3613 {
3614 ActiveUniformBlocks &activeUniformBlocks = shaderObject->activeUniformBlocks;
3615 const TFieldList& fields = block->fields();
3616 const TString &blockName = block->name();
3617 int fieldRegisterIndex = registerIndex;
3618 bool isUniformBlockMember = !type.isInterfaceBlock() && (blockId == -1);
3619
3620 blockId = activeUniformBlocks.size();
3621 bool isRowMajor = block->matrixPacking() == EmpRowMajor;
3622 activeUniformBlocks.push_back(UniformBlock(blockName.c_str(), 0, block->arraySize(),
3623 block->blockStorage(), isRowMajor, registerIndex, blockId));
3624 blockDefinitions.push_back(BlockDefinitionIndexMap());
3625
Alexis Hetud2742532018-01-23 16:53:41 -05003626 Std140BlockEncoder currentBlockEncoder;
Nicolas Capens0bac2852016-05-07 06:09:58 -04003627 currentBlockEncoder.enterAggregateType();
Alexis Hetuda163ed2018-01-03 16:36:14 -05003628 for(const auto &field : fields)
Nicolas Capens0bac2852016-05-07 06:09:58 -04003629 {
Alexis Hetuda163ed2018-01-03 16:36:14 -05003630 const TType &fieldType = *(field->type());
3631 const TString &fieldName = field->name();
Nicolas Capens0bac2852016-05-07 06:09:58 -04003632 if(isUniformBlockMember && (fieldName == name))
3633 {
3634 registerIndex = fieldRegisterIndex;
3635 }
3636
3637 const TString uniformName = block->hasInstanceName() ? blockName + "." + fieldName : fieldName;
3638
Alexis Hetuda163ed2018-01-03 16:36:14 -05003639 declareUniform(fieldType, uniformName, fieldRegisterIndex, samplersOnly, blockId, &currentBlockEncoder);
Nicolas Capens0bac2852016-05-07 06:09:58 -04003640 fieldRegisterIndex += fieldType.totalRegisterCount();
3641 }
3642 currentBlockEncoder.exitAggregateType();
3643 activeUniformBlocks[blockId].dataSize = currentBlockEncoder.getBlockSize();
3644 }
3645 else
3646 {
Alexis Hetu924513c2018-01-05 15:48:12 -05003647 // Store struct for program link time validation
3648 shaderObject->activeUniformStructs.push_back(Uniform(type, name.c_str(), registerIndex, -1, BlockMemberInfo::getDefaultBlockInfo()));
3649
Nicolas Capens0bac2852016-05-07 06:09:58 -04003650 int fieldRegisterIndex = registerIndex;
3651
3652 const TFieldList& fields = structure->fields();
3653 if(type.isArray() && (structure || type.isInterfaceBlock()))
3654 {
3655 for(int i = 0; i < type.getArraySize(); i++)
3656 {
3657 if(encoder)
3658 {
3659 encoder->enterAggregateType();
3660 }
Alexis Hetuda163ed2018-01-03 16:36:14 -05003661 for(const auto &field : fields)
Nicolas Capens0bac2852016-05-07 06:09:58 -04003662 {
Alexis Hetuda163ed2018-01-03 16:36:14 -05003663 const TType &fieldType = *(field->type());
3664 const TString &fieldName = field->name();
Nicolas Capens0bac2852016-05-07 06:09:58 -04003665 const TString uniformName = name + "[" + str(i) + "]." + fieldName;
3666
Alexis Hetuda163ed2018-01-03 16:36:14 -05003667 declareUniform(fieldType, uniformName, fieldRegisterIndex, samplersOnly, blockId, encoder);
3668 fieldRegisterIndex += samplersOnly ? fieldType.totalSamplerRegisterCount() : fieldType.totalRegisterCount();
Nicolas Capens0bac2852016-05-07 06:09:58 -04003669 }
3670 if(encoder)
3671 {
3672 encoder->exitAggregateType();
3673 }
3674 }
3675 }
3676 else
3677 {
3678 if(encoder)
3679 {
3680 encoder->enterAggregateType();
3681 }
Alexis Hetuda163ed2018-01-03 16:36:14 -05003682 for(const auto &field : fields)
Nicolas Capens0bac2852016-05-07 06:09:58 -04003683 {
Alexis Hetuda163ed2018-01-03 16:36:14 -05003684 const TType &fieldType = *(field->type());
3685 const TString &fieldName = field->name();
Nicolas Capens0bac2852016-05-07 06:09:58 -04003686 const TString uniformName = name + "." + fieldName;
3687
Alexis Hetuda163ed2018-01-03 16:36:14 -05003688 declareUniform(fieldType, uniformName, fieldRegisterIndex, samplersOnly, blockId, encoder);
3689 fieldRegisterIndex += samplersOnly ? fieldType.totalSamplerRegisterCount() : fieldType.totalRegisterCount();
Nicolas Capens0bac2852016-05-07 06:09:58 -04003690 }
3691 if(encoder)
3692 {
3693 encoder->exitAggregateType();
3694 }
3695 }
3696 }
3697 }
3698
Nicolas Capens0bac2852016-05-07 06:09:58 -04003699 int OutputASM::dim(TIntermNode *v)
3700 {
3701 TIntermTyped *vector = v->getAsTyped();
3702 ASSERT(vector && vector->isRegister());
3703 return vector->getNominalSize();
3704 }
3705
3706 int OutputASM::dim2(TIntermNode *m)
3707 {
3708 TIntermTyped *matrix = m->getAsTyped();
3709 ASSERT(matrix && matrix->isMatrix() && !matrix->isArray());
3710 return matrix->getSecondarySize();
3711 }
3712
Nicolas Capensac3f2fa2018-05-28 12:25:57 -04003713 // Sets iterations to ~0u if no loop count could be statically determined.
3714 OutputASM::LoopInfo::LoopInfo(TIntermLoop *node)
Nicolas Capens0bac2852016-05-07 06:09:58 -04003715 {
3716 // Parse loops of the form:
Nicolas Capensac3f2fa2018-05-28 12:25:57 -04003717 // for(int index = initial; index [comparator] limit; index [op] increment)
Nicolas Capens0bac2852016-05-07 06:09:58 -04003718
3719 // Parse index name and intial value
3720 if(node->getInit())
3721 {
3722 TIntermAggregate *init = node->getInit()->getAsAggregate();
3723
3724 if(init)
3725 {
3726 TIntermSequence &sequence = init->getSequence();
3727 TIntermTyped *variable = sequence[0]->getAsTyped();
3728
Nicolas Capense3f05552017-05-24 10:45:56 -04003729 if(variable && variable->getQualifier() == EvqTemporary && variable->getBasicType() == EbtInt)
Nicolas Capens0bac2852016-05-07 06:09:58 -04003730 {
3731 TIntermBinary *assign = variable->getAsBinaryNode();
3732
Nicolas Capensd0bfd912017-05-24 10:20:24 -04003733 if(assign && assign->getOp() == EOpInitialize)
Nicolas Capens0bac2852016-05-07 06:09:58 -04003734 {
3735 TIntermSymbol *symbol = assign->getLeft()->getAsSymbolNode();
3736 TIntermConstantUnion *constant = assign->getRight()->getAsConstantUnion();
3737
3738 if(symbol && constant)
3739 {
3740 if(constant->getBasicType() == EbtInt && constant->getNominalSize() == 1)
3741 {
3742 index = symbol;
3743 initial = constant->getUnionArrayPointer()[0].getIConst();
3744 }
3745 }
3746 }
3747 }
3748 }
3749 }
3750
3751 // Parse comparator and limit value
3752 if(index && node->getCondition())
3753 {
3754 TIntermBinary *test = node->getCondition()->getAsBinaryNode();
Alexis Hetu7be70cf2016-05-11 10:56:43 -04003755 TIntermSymbol *left = test ? test->getLeft()->getAsSymbolNode() : nullptr;
Nicolas Capens0bac2852016-05-07 06:09:58 -04003756
Alexis Hetu7be70cf2016-05-11 10:56:43 -04003757 if(left && (left->getId() == index->getId()))
Nicolas Capens0bac2852016-05-07 06:09:58 -04003758 {
3759 TIntermConstantUnion *constant = test->getRight()->getAsConstantUnion();
3760
3761 if(constant)
3762 {
3763 if(constant->getBasicType() == EbtInt && constant->getNominalSize() == 1)
3764 {
3765 comparator = test->getOp();
3766 limit = constant->getUnionArrayPointer()[0].getIConst();
3767 }
3768 }
3769 }
3770 }
3771
3772 // Parse increment
3773 if(index && comparator != EOpNull && node->getExpression())
3774 {
3775 TIntermBinary *binaryTerminal = node->getExpression()->getAsBinaryNode();
3776 TIntermUnary *unaryTerminal = node->getExpression()->getAsUnaryNode();
3777
3778 if(binaryTerminal)
3779 {
Nicolas Capensac3f2fa2018-05-28 12:25:57 -04003780 TIntermSymbol *operand = binaryTerminal->getLeft()->getAsSymbolNode();
Nicolas Capens0bac2852016-05-07 06:09:58 -04003781
Nicolas Capensac3f2fa2018-05-28 12:25:57 -04003782 if(operand && operand->getId() == index->getId())
Nicolas Capens0bac2852016-05-07 06:09:58 -04003783 {
Nicolas Capensac3f2fa2018-05-28 12:25:57 -04003784 TOperator op = binaryTerminal->getOp();
3785 TIntermConstantUnion *constant = binaryTerminal->getRight()->getAsConstantUnion();
Nicolas Capens0bac2852016-05-07 06:09:58 -04003786
Nicolas Capensac3f2fa2018-05-28 12:25:57 -04003787 if(constant)
3788 {
3789 if(constant->getBasicType() == EbtInt && constant->getNominalSize() == 1)
Nicolas Capens0bac2852016-05-07 06:09:58 -04003790 {
Nicolas Capensac3f2fa2018-05-28 12:25:57 -04003791 int value = constant->getUnionArrayPointer()[0].getIConst();
3792
3793 switch(op)
3794 {
3795 case EOpAddAssign: increment = value; break;
3796 case EOpSubAssign: increment = -value; break;
3797 default: increment = 0; break; // Rare cases left unhandled. Treated as non-deterministic.
3798 }
Nicolas Capens0bac2852016-05-07 06:09:58 -04003799 }
3800 }
3801 }
3802 }
3803 else if(unaryTerminal)
3804 {
Nicolas Capensac3f2fa2018-05-28 12:25:57 -04003805 TIntermSymbol *operand = unaryTerminal->getOperand()->getAsSymbolNode();
Nicolas Capens0bac2852016-05-07 06:09:58 -04003806
Nicolas Capensac3f2fa2018-05-28 12:25:57 -04003807 if(operand && operand->getId() == index->getId())
Nicolas Capens0bac2852016-05-07 06:09:58 -04003808 {
Nicolas Capensac3f2fa2018-05-28 12:25:57 -04003809 TOperator op = unaryTerminal->getOp();
3810
3811 switch(op)
3812 {
3813 case EOpPostIncrement: increment = 1; break;
3814 case EOpPostDecrement: increment = -1; break;
3815 case EOpPreIncrement: increment = 1; break;
3816 case EOpPreDecrement: increment = -1; break;
3817 default: increment = 0; break; // Rare cases left unhandled. Treated as non-deterministic.
3818 }
Nicolas Capens0bac2852016-05-07 06:09:58 -04003819 }
3820 }
3821 }
3822
3823 if(index && comparator != EOpNull && increment != 0)
3824 {
Nicolas Capensac3f2fa2018-05-28 12:25:57 -04003825 // Check the loop body for return statements or changes to the index variable that make it non-deterministic.
3826 LoopUnrollable loopUnrollable;
3827 bool unrollable = loopUnrollable.traverse(node, index->getId());
3828
3829 if(!unrollable)
3830 {
3831 iterations = ~0u;
3832 return;
3833 }
3834
Nicolas Capens0bac2852016-05-07 06:09:58 -04003835 if(comparator == EOpLessThanEqual)
3836 {
3837 comparator = EOpLessThan;
3838 limit += 1;
3839 }
Nicolas Capense3f05552017-05-24 10:45:56 -04003840 else if(comparator == EOpGreaterThanEqual)
3841 {
3842 comparator = EOpLessThan;
3843 limit -= 1;
3844 std::swap(initial, limit);
3845 increment = -increment;
3846 }
3847 else if(comparator == EOpGreaterThan)
3848 {
3849 comparator = EOpLessThan;
3850 std::swap(initial, limit);
3851 increment = -increment;
3852 }
Nicolas Capens0bac2852016-05-07 06:09:58 -04003853
3854 if(comparator == EOpLessThan)
3855 {
Nicolas Capens930b7002017-01-06 17:22:13 -05003856 if(!(initial < limit)) // Never loops
Nicolas Capens0bac2852016-05-07 06:09:58 -04003857 {
Nicolas Capensac3f2fa2018-05-28 12:25:57 -04003858 iterations = 0;
Nicolas Capens930b7002017-01-06 17:22:13 -05003859 }
Nicolas Capensac3f2fa2018-05-28 12:25:57 -04003860 else if(increment < 0)
Nicolas Capens930b7002017-01-06 17:22:13 -05003861 {
Nicolas Capensac3f2fa2018-05-28 12:25:57 -04003862 iterations = ~0u;
Nicolas Capens0bac2852016-05-07 06:09:58 -04003863 }
Nicolas Capensac3f2fa2018-05-28 12:25:57 -04003864 else
3865 {
3866 iterations = (limit - initial + abs(increment) - 1) / increment; // Ceiling division
3867 }
Nicolas Capens0bac2852016-05-07 06:09:58 -04003868 }
Nicolas Capensac3f2fa2018-05-28 12:25:57 -04003869 else
3870 {
3871 // Rare cases left unhandled. Treated as non-deterministic.
3872 iterations = ~0u;
3873 }
Nicolas Capens0bac2852016-05-07 06:09:58 -04003874 }
Nicolas Capens0bac2852016-05-07 06:09:58 -04003875 }
3876
Nicolas Capensac3f2fa2018-05-28 12:25:57 -04003877 bool LoopUnrollable::traverse(TIntermNode *node, int indexId)
Nicolas Capens0bac2852016-05-07 06:09:58 -04003878 {
Nicolas Capens0bac2852016-05-07 06:09:58 -04003879 loopUnrollable = true;
3880
Nicolas Capensac3f2fa2018-05-28 12:25:57 -04003881 loopDepth = 0;
3882 loopIndexId = indexId;
3883
Nicolas Capens0bac2852016-05-07 06:09:58 -04003884 node->traverse(this);
3885
3886 return loopUnrollable;
3887 }
3888
3889 bool LoopUnrollable::visitLoop(Visit visit, TIntermLoop *loop)
3890 {
3891 if(visit == PreVisit)
3892 {
3893 loopDepth++;
3894 }
3895 else if(visit == PostVisit)
3896 {
3897 loopDepth++;
3898 }
3899
3900 return true;
3901 }
3902
Nicolas Capensac3f2fa2018-05-28 12:25:57 -04003903 void LoopUnrollable::visitSymbol(TIntermSymbol *node)
3904 {
3905 // Check that the loop index is not used as the argument to a function out or inout parameter.
3906 if(node->getId() == loopIndexId)
3907 {
3908 if(node->getQualifier() == EvqOut || node->getQualifier() == EvqInOut)
3909 {
3910 loopUnrollable = false;
3911 }
3912 }
3913 }
3914
3915 bool LoopUnrollable::visitBinary(Visit visit, TIntermBinary *node)
3916 {
3917 if(!loopUnrollable)
3918 {
3919 return false;
3920 }
3921
3922 // Check that the loop index is not statically assigned to.
3923 TIntermSymbol *symbol = node->getLeft()->getAsSymbolNode();
3924 loopUnrollable = node->modifiesState() && symbol && (symbol->getId() == loopIndexId);
3925
3926 return loopUnrollable;
3927 }
3928
3929 bool LoopUnrollable::visitUnary(Visit visit, TIntermUnary *node)
3930 {
3931 if(!loopUnrollable)
3932 {
3933 return false;
3934 }
3935
3936 // Check that the loop index is not statically assigned to.
3937 TIntermSymbol *symbol = node->getOperand()->getAsSymbolNode();
3938 loopUnrollable = node->modifiesState() && symbol && (symbol->getId() == loopIndexId);
3939
3940 return loopUnrollable;
3941 }
3942
Nicolas Capens0bac2852016-05-07 06:09:58 -04003943 bool LoopUnrollable::visitBranch(Visit visit, TIntermBranch *node)
3944 {
3945 if(!loopUnrollable)
3946 {
3947 return false;
3948 }
3949
3950 if(!loopDepth)
3951 {
3952 return true;
3953 }
3954
3955 switch(node->getFlowOp())
3956 {
3957 case EOpKill:
3958 case EOpReturn:
3959 break;
3960 case EOpBreak:
3961 case EOpContinue:
3962 loopUnrollable = false;
3963 break;
3964 default: UNREACHABLE(node->getFlowOp());
3965 }
3966
3967 return loopUnrollable;
3968 }
3969
3970 bool LoopUnrollable::visitAggregate(Visit visit, TIntermAggregate *node)
3971 {
3972 return loopUnrollable;
3973 }
3974}