blob: d7213cb47e6132e0f524f7382d9d94d692f1d1bd [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 Capens4b743732018-05-28 13:22:07 -04001834 if(loop.isDeterministic())
1835 {
1836 deterministicVariables.insert(loop.index->getId());
1837 }
1838
Nicolas Capensac3f2fa2018-05-28 12:25:57 -04001839 bool unroll = (loop.iterations <= 4);
Nicolas Capens0bac2852016-05-07 06:09:58 -04001840
1841 TIntermNode *init = node->getInit();
1842 TIntermTyped *condition = node->getCondition();
1843 TIntermTyped *expression = node->getExpression();
1844 TIntermNode *body = node->getBody();
1845 Constant True(true);
1846
1847 if(node->getType() == ELoopDoWhile)
1848 {
1849 Temporary iterate(this);
1850 emit(sw::Shader::OPCODE_MOV, &iterate, &True);
1851
1852 emit(sw::Shader::OPCODE_WHILE, 0, &iterate); // FIXME: Implement real do-while
1853
1854 if(body)
1855 {
1856 body->traverse(this);
1857 }
1858
1859 emit(sw::Shader::OPCODE_TEST);
1860
1861 condition->traverse(this);
1862 emit(sw::Shader::OPCODE_MOV, &iterate, condition);
1863
1864 emit(sw::Shader::OPCODE_ENDWHILE);
1865 }
1866 else
1867 {
1868 if(init)
1869 {
1870 init->traverse(this);
1871 }
1872
1873 if(unroll)
1874 {
Nicolas Capensac3f2fa2018-05-28 12:25:57 -04001875 for(unsigned int i = 0; i < loop.iterations; i++)
Nicolas Capens0bac2852016-05-07 06:09:58 -04001876 {
1877 // condition->traverse(this); // Condition could contain statements, but not in an unrollable loop
1878
1879 if(body)
1880 {
1881 body->traverse(this);
1882 }
1883
1884 if(expression)
1885 {
1886 expression->traverse(this);
1887 }
1888 }
1889 }
1890 else
1891 {
1892 if(condition)
1893 {
1894 condition->traverse(this);
1895 }
1896 else
1897 {
1898 condition = &True;
1899 }
1900
1901 emit(sw::Shader::OPCODE_WHILE, 0, condition);
1902
1903 if(body)
1904 {
1905 body->traverse(this);
1906 }
1907
1908 emit(sw::Shader::OPCODE_TEST);
1909
1910 if(expression)
1911 {
1912 expression->traverse(this);
1913 }
1914
1915 if(condition)
1916 {
1917 condition->traverse(this);
1918 }
1919
1920 emit(sw::Shader::OPCODE_ENDWHILE);
1921 }
1922 }
1923
Nicolas Capens4b743732018-05-28 13:22:07 -04001924 if(loop.isDeterministic())
1925 {
1926 deterministicVariables.erase(loop.index->getId());
1927 }
1928
Nicolas Capens0bac2852016-05-07 06:09:58 -04001929 return false;
1930 }
1931
1932 bool OutputASM::visitBranch(Visit visit, TIntermBranch *node)
1933 {
1934 if(currentScope != emitScope)
1935 {
1936 return false;
1937 }
1938
1939 switch(node->getFlowOp())
1940 {
1941 case EOpKill: if(visit == PostVisit) emit(sw::Shader::OPCODE_DISCARD); break;
1942 case EOpBreak: if(visit == PostVisit) emit(sw::Shader::OPCODE_BREAK); break;
1943 case EOpContinue: if(visit == PostVisit) emit(sw::Shader::OPCODE_CONTINUE); break;
1944 case EOpReturn:
1945 if(visit == PostVisit)
1946 {
1947 TIntermTyped *value = node->getExpression();
1948
1949 if(value)
1950 {
1951 copy(functionArray[currentFunction].ret, value);
1952 }
1953
1954 emit(sw::Shader::OPCODE_LEAVE);
1955 }
1956 break;
1957 default: UNREACHABLE(node->getFlowOp());
1958 }
1959
1960 return true;
1961 }
1962
Alexis Hetu9aa83a92016-05-02 17:34:46 -04001963 bool OutputASM::visitSwitch(Visit visit, TIntermSwitch *node)
1964 {
1965 if(currentScope != emitScope)
1966 {
1967 return false;
1968 }
1969
1970 TIntermTyped* switchValue = node->getInit();
1971 TIntermAggregate* opList = node->getStatementList();
1972
1973 if(!switchValue || !opList)
1974 {
1975 return false;
1976 }
1977
1978 switchValue->traverse(this);
1979
1980 emit(sw::Shader::OPCODE_SWITCH);
1981
1982 TIntermSequence& sequence = opList->getSequence();
1983 TIntermSequence::iterator it = sequence.begin();
1984 TIntermSequence::iterator defaultIt = sequence.end();
1985 int nbCases = 0;
1986 for(; it != sequence.end(); ++it)
1987 {
1988 TIntermCase* currentCase = (*it)->getAsCaseNode();
1989 if(currentCase)
1990 {
1991 TIntermSequence::iterator caseIt = it;
1992
1993 TIntermTyped* condition = currentCase->getCondition();
1994 if(condition) // non default case
1995 {
1996 if(nbCases != 0)
1997 {
1998 emit(sw::Shader::OPCODE_ELSE);
1999 }
2000
2001 condition->traverse(this);
2002 Temporary result(this);
2003 emitBinary(sw::Shader::OPCODE_EQ, &result, switchValue, condition);
2004 emit(sw::Shader::OPCODE_IF, 0, &result);
2005 nbCases++;
2006
Nicolas Capens6d123312018-01-08 12:57:52 -05002007 // Emit the code for this case and all subsequent cases until we hit a break statement.
2008 // TODO: This can repeat a lot of code for switches with many fall-through cases.
Alexis Hetu9aa83a92016-05-02 17:34:46 -04002009 for(++caseIt; caseIt != sequence.end(); ++caseIt)
2010 {
2011 (*caseIt)->traverse(this);
Nicolas Capens6d123312018-01-08 12:57:52 -05002012
2013 // Stop if we encounter an unconditional branch (break, continue, return, or kill).
2014 // TODO: This doesn't work if the statement is at a deeper scope level (e.g. {break;}).
2015 // Note that this eliminates useless operations but shouldn't affect correctness.
2016 if((*caseIt)->getAsBranchNode())
Alexis Hetu9aa83a92016-05-02 17:34:46 -04002017 {
2018 break;
2019 }
2020 }
2021 }
2022 else
2023 {
2024 defaultIt = it; // The default case might not be the last case, keep it for last
2025 }
2026 }
2027 }
2028
2029 // If there's a default case, traverse it here
2030 if(defaultIt != sequence.end())
2031 {
2032 emit(sw::Shader::OPCODE_ELSE);
2033 for(++defaultIt; defaultIt != sequence.end(); ++defaultIt)
2034 {
2035 (*defaultIt)->traverse(this);
2036 if((*defaultIt)->getAsBranchNode()) // Kill, Break, Continue or Return
2037 {
2038 break;
2039 }
2040 }
2041 }
2042
2043 for(int i = 0; i < nbCases; ++i)
2044 {
2045 emit(sw::Shader::OPCODE_ENDIF);
2046 }
2047
2048 emit(sw::Shader::OPCODE_ENDSWITCH);
2049
2050 return false;
2051 }
2052
Nicolas Capens0bac2852016-05-07 06:09:58 -04002053 Instruction *OutputASM::emit(sw::Shader::Opcode op, TIntermTyped *dst, TIntermNode *src0, TIntermNode *src1, TIntermNode *src2, TIntermNode *src3, TIntermNode *src4)
2054 {
2055 return emit(op, dst, 0, src0, 0, src1, 0, src2, 0, src3, 0, src4, 0);
2056 }
2057
2058 Instruction *OutputASM::emit(sw::Shader::Opcode op, TIntermTyped *dst, int dstIndex, TIntermNode *src0, int index0, TIntermNode *src1, int index1,
2059 TIntermNode *src2, int index2, TIntermNode *src3, int index3, TIntermNode *src4, int index4)
2060 {
2061 Instruction *instruction = new Instruction(op);
2062
2063 if(dst)
2064 {
Nicolas Capens0530b452017-11-15 16:39:47 -05002065 destination(instruction->dst, dst, dstIndex);
Nicolas Capens0bac2852016-05-07 06:09:58 -04002066 }
2067
Alexis Hetu929c6b02017-11-07 16:04:25 -05002068 if(src0)
2069 {
2070 TIntermTyped* src = src0->getAsTyped();
2071 instruction->dst.partialPrecision = src && (src->getPrecision() <= EbpLow);
2072 }
2073
Nicolas Capens0530b452017-11-15 16:39:47 -05002074 source(instruction->src[0], src0, index0);
2075 source(instruction->src[1], src1, index1);
2076 source(instruction->src[2], src2, index2);
2077 source(instruction->src[3], src3, index3);
2078 source(instruction->src[4], src4, index4);
Nicolas Capens0bac2852016-05-07 06:09:58 -04002079
2080 shader->append(instruction);
2081
2082 return instruction;
2083 }
2084
2085 Instruction *OutputASM::emitCast(TIntermTyped *dst, TIntermTyped *src)
2086 {
2087 return emitCast(dst, 0, src, 0);
2088 }
2089
2090 Instruction *OutputASM::emitCast(TIntermTyped *dst, int dstIndex, TIntermTyped *src, int srcIndex)
2091 {
2092 switch(src->getBasicType())
2093 {
2094 case EbtBool:
2095 switch(dst->getBasicType())
2096 {
2097 case EbtInt: return emit(sw::Shader::OPCODE_B2I, dst, dstIndex, src, srcIndex);
2098 case EbtUInt: return emit(sw::Shader::OPCODE_B2I, dst, dstIndex, src, srcIndex);
2099 case EbtFloat: return emit(sw::Shader::OPCODE_B2F, dst, dstIndex, src, srcIndex);
2100 default: break;
2101 }
2102 break;
2103 case EbtInt:
2104 switch(dst->getBasicType())
2105 {
2106 case EbtBool: return emit(sw::Shader::OPCODE_I2B, dst, dstIndex, src, srcIndex);
2107 case EbtFloat: return emit(sw::Shader::OPCODE_I2F, dst, dstIndex, src, srcIndex);
2108 default: break;
2109 }
2110 break;
2111 case EbtUInt:
2112 switch(dst->getBasicType())
2113 {
2114 case EbtBool: return emit(sw::Shader::OPCODE_I2B, dst, dstIndex, src, srcIndex);
2115 case EbtFloat: return emit(sw::Shader::OPCODE_U2F, dst, dstIndex, src, srcIndex);
2116 default: break;
2117 }
2118 break;
2119 case EbtFloat:
2120 switch(dst->getBasicType())
2121 {
2122 case EbtBool: return emit(sw::Shader::OPCODE_F2B, dst, dstIndex, src, srcIndex);
2123 case EbtInt: return emit(sw::Shader::OPCODE_F2I, dst, dstIndex, src, srcIndex);
2124 case EbtUInt: return emit(sw::Shader::OPCODE_F2U, dst, dstIndex, src, srcIndex);
2125 default: break;
2126 }
2127 break;
2128 default:
2129 break;
2130 }
2131
2132 ASSERT((src->getBasicType() == dst->getBasicType()) ||
2133 ((src->getBasicType() == EbtInt) && (dst->getBasicType() == EbtUInt)) ||
2134 ((src->getBasicType() == EbtUInt) && (dst->getBasicType() == EbtInt)));
2135
2136 return emit(sw::Shader::OPCODE_MOV, dst, dstIndex, src, srcIndex);
2137 }
2138
2139 void OutputASM::emitBinary(sw::Shader::Opcode op, TIntermTyped *dst, TIntermNode *src0, TIntermNode *src1, TIntermNode *src2)
2140 {
2141 for(int index = 0; index < dst->elementRegisterCount(); index++)
2142 {
2143 emit(op, dst, index, src0, index, src1, index, src2, index);
2144 }
2145 }
2146
2147 void OutputASM::emitAssign(sw::Shader::Opcode op, TIntermTyped *result, TIntermTyped *lhs, TIntermTyped *src0, TIntermTyped *src1)
2148 {
2149 emitBinary(op, result, src0, src1);
2150 assignLvalue(lhs, result);
2151 }
2152
2153 void OutputASM::emitCmp(sw::Shader::Control cmpOp, TIntermTyped *dst, TIntermNode *left, TIntermNode *right, int index)
2154 {
2155 sw::Shader::Opcode opcode;
2156 switch(left->getAsTyped()->getBasicType())
2157 {
2158 case EbtBool:
2159 case EbtInt:
2160 opcode = sw::Shader::OPCODE_ICMP;
2161 break;
2162 case EbtUInt:
2163 opcode = sw::Shader::OPCODE_UCMP;
2164 break;
2165 default:
2166 opcode = sw::Shader::OPCODE_CMP;
2167 break;
2168 }
2169
2170 Instruction *cmp = emit(opcode, dst, 0, left, index, right, index);
2171 cmp->control = cmpOp;
2172 }
2173
2174 int componentCount(const TType &type, int registers)
2175 {
2176 if(registers == 0)
2177 {
2178 return 0;
2179 }
2180
2181 if(type.isArray() && registers >= type.elementRegisterCount())
2182 {
2183 int index = registers / type.elementRegisterCount();
2184 registers -= index * type.elementRegisterCount();
2185 return index * type.getElementSize() + componentCount(type, registers);
2186 }
2187
2188 if(type.isStruct() || type.isInterfaceBlock())
2189 {
2190 const TFieldList& fields = type.getStruct() ? type.getStruct()->fields() : type.getInterfaceBlock()->fields();
2191 int elements = 0;
2192
Alexis Hetuda163ed2018-01-03 16:36:14 -05002193 for(const auto &field : fields)
Nicolas Capens0bac2852016-05-07 06:09:58 -04002194 {
Alexis Hetuda163ed2018-01-03 16:36:14 -05002195 const TType &fieldType = *(field->type());
Nicolas Capens0bac2852016-05-07 06:09:58 -04002196
2197 if(fieldType.totalRegisterCount() <= registers)
2198 {
2199 registers -= fieldType.totalRegisterCount();
2200 elements += fieldType.getObjectSize();
2201 }
2202 else // Register within this field
2203 {
2204 return elements + componentCount(fieldType, registers);
2205 }
2206 }
2207 }
2208 else if(type.isMatrix())
2209 {
2210 return registers * type.registerSize();
2211 }
2212
2213 UNREACHABLE(0);
2214 return 0;
2215 }
2216
2217 int registerSize(const TType &type, int registers)
2218 {
2219 if(registers == 0)
2220 {
2221 if(type.isStruct())
2222 {
2223 return registerSize(*((*(type.getStruct()->fields().begin()))->type()), 0);
2224 }
2225 else if(type.isInterfaceBlock())
2226 {
2227 return registerSize(*((*(type.getInterfaceBlock()->fields().begin()))->type()), 0);
2228 }
2229
2230 return type.registerSize();
2231 }
2232
2233 if(type.isArray() && registers >= type.elementRegisterCount())
2234 {
2235 int index = registers / type.elementRegisterCount();
2236 registers -= index * type.elementRegisterCount();
2237 return registerSize(type, registers);
2238 }
2239
2240 if(type.isStruct() || type.isInterfaceBlock())
2241 {
2242 const TFieldList& fields = type.getStruct() ? type.getStruct()->fields() : type.getInterfaceBlock()->fields();
2243 int elements = 0;
2244
Alexis Hetuda163ed2018-01-03 16:36:14 -05002245 for(const auto &field : fields)
Nicolas Capens0bac2852016-05-07 06:09:58 -04002246 {
Alexis Hetuda163ed2018-01-03 16:36:14 -05002247 const TType &fieldType = *(field->type());
Nicolas Capens0bac2852016-05-07 06:09:58 -04002248
2249 if(fieldType.totalRegisterCount() <= registers)
2250 {
2251 registers -= fieldType.totalRegisterCount();
2252 elements += fieldType.getObjectSize();
2253 }
2254 else // Register within this field
2255 {
2256 return registerSize(fieldType, registers);
2257 }
2258 }
2259 }
2260 else if(type.isMatrix())
2261 {
2262 return registerSize(type, 0);
2263 }
2264
2265 UNREACHABLE(0);
2266 return 0;
2267 }
2268
2269 int OutputASM::getBlockId(TIntermTyped *arg)
2270 {
2271 if(arg)
2272 {
2273 const TType &type = arg->getType();
2274 TInterfaceBlock* block = type.getInterfaceBlock();
2275 if(block && (type.getQualifier() == EvqUniform))
2276 {
2277 // Make sure the uniform block is declared
2278 uniformRegister(arg);
2279
2280 const char* blockName = block->name().c_str();
2281
2282 // Fetch uniform block index from array of blocks
2283 for(ActiveUniformBlocks::const_iterator it = shaderObject->activeUniformBlocks.begin(); it != shaderObject->activeUniformBlocks.end(); ++it)
2284 {
2285 if(blockName == it->name)
2286 {
2287 return it->blockId;
2288 }
2289 }
2290
2291 ASSERT(false);
2292 }
2293 }
2294
2295 return -1;
2296 }
2297
2298 OutputASM::ArgumentInfo OutputASM::getArgumentInfo(TIntermTyped *arg, int index)
2299 {
2300 const TType &type = arg->getType();
2301 int blockId = getBlockId(arg);
2302 ArgumentInfo argumentInfo(BlockMemberInfo::getDefaultBlockInfo(), type, -1, -1);
2303 if(blockId != -1)
2304 {
2305 argumentInfo.bufferIndex = 0;
2306 for(int i = 0; i < blockId; ++i)
2307 {
2308 int blockArraySize = shaderObject->activeUniformBlocks[i].arraySize;
2309 argumentInfo.bufferIndex += blockArraySize > 0 ? blockArraySize : 1;
2310 }
2311
2312 const BlockDefinitionIndexMap& blockDefinition = blockDefinitions[blockId];
2313
2314 BlockDefinitionIndexMap::const_iterator itEnd = blockDefinition.end();
2315 BlockDefinitionIndexMap::const_iterator it = itEnd;
2316
2317 argumentInfo.clampedIndex = index;
2318 if(type.isInterfaceBlock())
2319 {
2320 // Offset index to the beginning of the selected instance
2321 int blockRegisters = type.elementRegisterCount();
2322 int bufferOffset = argumentInfo.clampedIndex / blockRegisters;
2323 argumentInfo.bufferIndex += bufferOffset;
2324 argumentInfo.clampedIndex -= bufferOffset * blockRegisters;
2325 }
2326
2327 int regIndex = registerIndex(arg);
2328 for(int i = regIndex + argumentInfo.clampedIndex; i >= regIndex; --i)
2329 {
2330 it = blockDefinition.find(i);
2331 if(it != itEnd)
2332 {
2333 argumentInfo.clampedIndex -= (i - regIndex);
2334 break;
2335 }
2336 }
2337 ASSERT(it != itEnd);
2338
2339 argumentInfo.typedMemberInfo = it->second;
2340
2341 int registerCount = argumentInfo.typedMemberInfo.type.totalRegisterCount();
2342 argumentInfo.clampedIndex = (argumentInfo.clampedIndex >= registerCount) ? registerCount - 1 : argumentInfo.clampedIndex;
2343 }
2344 else
2345 {
2346 argumentInfo.clampedIndex = (index >= arg->totalRegisterCount()) ? arg->totalRegisterCount() - 1 : index;
2347 }
2348
2349 return argumentInfo;
2350 }
2351
Nicolas Capens0530b452017-11-15 16:39:47 -05002352 void OutputASM::source(sw::Shader::SourceParameter &parameter, TIntermNode *argument, int index)
Nicolas Capens0bac2852016-05-07 06:09:58 -04002353 {
2354 if(argument)
2355 {
2356 TIntermTyped *arg = argument->getAsTyped();
2357 Temporary unpackedUniform(this);
2358
2359 const TType& srcType = arg->getType();
2360 TInterfaceBlock* srcBlock = srcType.getInterfaceBlock();
2361 if(srcBlock && (srcType.getQualifier() == EvqUniform))
2362 {
2363 const ArgumentInfo argumentInfo = getArgumentInfo(arg, index);
2364 const TType &memberType = argumentInfo.typedMemberInfo.type;
2365
2366 if(memberType.getBasicType() == EbtBool)
2367 {
Alexis Hetue97a31e2016-11-14 14:10:47 -05002368 ASSERT(argumentInfo.clampedIndex < (memberType.isArray() ? memberType.getArraySize() : 1)); // index < arraySize
Nicolas Capens0bac2852016-05-07 06:09:58 -04002369
2370 // Convert the packed bool, which is currently an int, to a true bool
2371 Instruction *instruction = new Instruction(sw::Shader::OPCODE_I2B);
2372 instruction->dst.type = sw::Shader::PARAMETER_TEMP;
2373 instruction->dst.index = registerIndex(&unpackedUniform);
2374 instruction->src[0].type = sw::Shader::PARAMETER_CONST;
2375 instruction->src[0].bufferIndex = argumentInfo.bufferIndex;
2376 instruction->src[0].index = argumentInfo.typedMemberInfo.offset + argumentInfo.clampedIndex * argumentInfo.typedMemberInfo.arrayStride;
2377
2378 shader->append(instruction);
2379
2380 arg = &unpackedUniform;
2381 index = 0;
2382 }
Alexis Hetud2742532018-01-23 16:53:41 -05002383 else if((memberType.getLayoutQualifier().matrixPacking == EmpRowMajor) && memberType.isMatrix())
Nicolas Capens0bac2852016-05-07 06:09:58 -04002384 {
2385 int numCols = memberType.getNominalSize();
2386 int numRows = memberType.getSecondarySize();
Nicolas Capens0bac2852016-05-07 06:09:58 -04002387
Alexis Hetue97a31e2016-11-14 14:10:47 -05002388 ASSERT(argumentInfo.clampedIndex < (numCols * (memberType.isArray() ? memberType.getArraySize() : 1))); // index < cols * arraySize
Nicolas Capens0bac2852016-05-07 06:09:58 -04002389
2390 unsigned int dstIndex = registerIndex(&unpackedUniform);
2391 unsigned int srcSwizzle = (argumentInfo.clampedIndex % numCols) * 0x55;
2392 int arrayIndex = argumentInfo.clampedIndex / numCols;
2393 int matrixStartOffset = argumentInfo.typedMemberInfo.offset + arrayIndex * argumentInfo.typedMemberInfo.arrayStride;
2394
2395 for(int j = 0; j < numRows; ++j)
2396 {
2397 // Transpose the row major matrix
2398 Instruction *instruction = new Instruction(sw::Shader::OPCODE_MOV);
2399 instruction->dst.type = sw::Shader::PARAMETER_TEMP;
2400 instruction->dst.index = dstIndex;
2401 instruction->dst.mask = 1 << j;
2402 instruction->src[0].type = sw::Shader::PARAMETER_CONST;
2403 instruction->src[0].bufferIndex = argumentInfo.bufferIndex;
2404 instruction->src[0].index = matrixStartOffset + j * argumentInfo.typedMemberInfo.matrixStride;
2405 instruction->src[0].swizzle = srcSwizzle;
2406
2407 shader->append(instruction);
2408 }
2409
2410 arg = &unpackedUniform;
2411 index = 0;
2412 }
2413 }
2414
2415 const ArgumentInfo argumentInfo = getArgumentInfo(arg, index);
2416 const TType &type = argumentInfo.typedMemberInfo.type;
2417
2418 int size = registerSize(type, argumentInfo.clampedIndex);
2419
2420 parameter.type = registerType(arg);
2421 parameter.bufferIndex = argumentInfo.bufferIndex;
2422
2423 if(arg->getAsConstantUnion() && arg->getAsConstantUnion()->getUnionArrayPointer())
2424 {
2425 int component = componentCount(type, argumentInfo.clampedIndex);
2426 ConstantUnion *constants = arg->getAsConstantUnion()->getUnionArrayPointer();
2427
2428 for(int i = 0; i < 4; i++)
2429 {
2430 if(size == 1) // Replicate
2431 {
2432 parameter.value[i] = constants[component + 0].getAsFloat();
2433 }
2434 else if(i < size)
2435 {
2436 parameter.value[i] = constants[component + i].getAsFloat();
2437 }
2438 else
2439 {
2440 parameter.value[i] = 0.0f;
2441 }
2442 }
2443 }
2444 else
2445 {
2446 parameter.index = registerIndex(arg) + argumentInfo.clampedIndex;
2447
2448 if(parameter.bufferIndex != -1)
2449 {
2450 int stride = (argumentInfo.typedMemberInfo.matrixStride > 0) ? argumentInfo.typedMemberInfo.matrixStride : argumentInfo.typedMemberInfo.arrayStride;
2451 parameter.index = argumentInfo.typedMemberInfo.offset + argumentInfo.clampedIndex * stride;
2452 }
2453 }
2454
2455 if(!IsSampler(arg->getBasicType()))
2456 {
2457 parameter.swizzle = readSwizzle(arg, size);
2458 }
2459 }
2460 }
2461
Nicolas Capens0530b452017-11-15 16:39:47 -05002462 void OutputASM::destination(sw::Shader::DestinationParameter &parameter, TIntermTyped *arg, int index)
2463 {
2464 parameter.type = registerType(arg);
2465 parameter.index = registerIndex(arg) + index;
Nicolas Capens3ae571e2017-11-16 15:28:14 -05002466 parameter.mask = writeMask(arg, index);
Nicolas Capens0530b452017-11-15 16:39:47 -05002467 }
2468
Nicolas Capens0bac2852016-05-07 06:09:58 -04002469 void OutputASM::copy(TIntermTyped *dst, TIntermNode *src, int offset)
2470 {
2471 for(int index = 0; index < dst->totalRegisterCount(); index++)
2472 {
2473 Instruction *mov = emit(sw::Shader::OPCODE_MOV, dst, index, src, offset + index);
Nicolas Capens0bac2852016-05-07 06:09:58 -04002474 }
2475 }
2476
2477 int swizzleElement(int swizzle, int index)
2478 {
2479 return (swizzle >> (index * 2)) & 0x03;
2480 }
2481
2482 int swizzleSwizzle(int leftSwizzle, int rightSwizzle)
2483 {
2484 return (swizzleElement(leftSwizzle, swizzleElement(rightSwizzle, 0)) << 0) |
2485 (swizzleElement(leftSwizzle, swizzleElement(rightSwizzle, 1)) << 2) |
2486 (swizzleElement(leftSwizzle, swizzleElement(rightSwizzle, 2)) << 4) |
2487 (swizzleElement(leftSwizzle, swizzleElement(rightSwizzle, 3)) << 6);
2488 }
2489
2490 void OutputASM::assignLvalue(TIntermTyped *dst, TIntermTyped *src)
2491 {
Nicolas Capens84249fd2017-11-09 11:20:51 -05002492 if((src->isVector() && (!dst->isVector() || (src->getNominalSize() != dst->getNominalSize()))) ||
2493 (src->isMatrix() && (!dst->isMatrix() || (src->getNominalSize() != dst->getNominalSize()) || (src->getSecondarySize() != dst->getSecondarySize()))))
Nicolas Capens0bac2852016-05-07 06:09:58 -04002494 {
2495 return mContext.error(src->getLine(), "Result type should match the l-value type in compound assignment", src->isVector() ? "vector" : "matrix");
2496 }
2497
2498 TIntermBinary *binary = dst->getAsBinaryNode();
2499
2500 if(binary && binary->getOp() == EOpIndexIndirect && binary->getLeft()->isVector() && dst->isScalar())
2501 {
2502 Instruction *insert = new Instruction(sw::Shader::OPCODE_INSERT);
2503
Nicolas Capens6986b282017-11-16 10:38:19 -05002504 lvalue(insert->dst, dst);
Nicolas Capens0bac2852016-05-07 06:09:58 -04002505
2506 insert->src[0].type = insert->dst.type;
2507 insert->src[0].index = insert->dst.index;
2508 insert->src[0].rel = insert->dst.rel;
Nicolas Capens0530b452017-11-15 16:39:47 -05002509 source(insert->src[1], src);
2510 source(insert->src[2], binary->getRight());
Nicolas Capens0bac2852016-05-07 06:09:58 -04002511
2512 shader->append(insert);
2513 }
2514 else
2515 {
Nicolas Capens84249fd2017-11-09 11:20:51 -05002516 Instruction *mov1 = new Instruction(sw::Shader::OPCODE_MOV);
2517
Nicolas Capens6986b282017-11-16 10:38:19 -05002518 int swizzle = lvalue(mov1->dst, dst);
Nicolas Capens84249fd2017-11-09 11:20:51 -05002519
Nicolas Capens0530b452017-11-15 16:39:47 -05002520 source(mov1->src[0], src);
Nicolas Capens84249fd2017-11-09 11:20:51 -05002521 mov1->src[0].swizzle = swizzleSwizzle(mov1->src[0].swizzle, swizzle);
2522
2523 shader->append(mov1);
2524
2525 for(int offset = 1; offset < dst->totalRegisterCount(); offset++)
Nicolas Capens0bac2852016-05-07 06:09:58 -04002526 {
2527 Instruction *mov = new Instruction(sw::Shader::OPCODE_MOV);
2528
Nicolas Capens84249fd2017-11-09 11:20:51 -05002529 mov->dst = mov1->dst;
Nicolas Capens0bac2852016-05-07 06:09:58 -04002530 mov->dst.index += offset;
Nicolas Capens84249fd2017-11-09 11:20:51 -05002531 mov->dst.mask = writeMask(dst, offset);
Nicolas Capens0bac2852016-05-07 06:09:58 -04002532
Nicolas Capens0530b452017-11-15 16:39:47 -05002533 source(mov->src[0], src, offset);
Nicolas Capens0bac2852016-05-07 06:09:58 -04002534
2535 shader->append(mov);
2536 }
2537 }
2538 }
2539
Nicolas Capensd469de22017-11-16 10:42:20 -05002540 void OutputASM::evaluateRvalue(TIntermTyped *node)
2541 {
2542 TIntermBinary *binary = node->getAsBinaryNode();
2543
2544 if(binary && binary->getOp() == EOpIndexIndirect && binary->getLeft()->isVector() && node->isScalar())
2545 {
2546 Instruction *insert = new Instruction(sw::Shader::OPCODE_EXTRACT);
2547
2548 destination(insert->dst, node);
2549
2550 Temporary address(this);
2551 unsigned char mask;
2552 TIntermTyped *root = nullptr;
2553 unsigned int offset = 0;
2554 int swizzle = lvalue(root, offset, insert->src[0].rel, mask, address, node);
2555
2556 source(insert->src[0], root, offset);
2557 insert->src[0].swizzle = swizzleSwizzle(insert->src[0].swizzle, swizzle);
2558
2559 source(insert->src[1], binary->getRight());
2560
2561 shader->append(insert);
2562 }
2563 else
2564 {
2565 Instruction *mov1 = new Instruction(sw::Shader::OPCODE_MOV);
2566
2567 destination(mov1->dst, node, 0);
2568
2569 Temporary address(this);
2570 unsigned char mask;
2571 TIntermTyped *root = nullptr;
2572 unsigned int offset = 0;
2573 int swizzle = lvalue(root, offset, mov1->src[0].rel, mask, address, node);
2574
2575 source(mov1->src[0], root, offset);
2576 mov1->src[0].swizzle = swizzleSwizzle(mov1->src[0].swizzle, swizzle);
2577
2578 shader->append(mov1);
2579
2580 for(int i = 1; i < node->totalRegisterCount(); i++)
2581 {
2582 Instruction *mov = emit(sw::Shader::OPCODE_MOV, node, i, root, offset + i);
2583 mov->src[0].rel = mov1->src[0].rel;
2584 }
2585 }
2586 }
2587
Nicolas Capens6986b282017-11-16 10:38:19 -05002588 int OutputASM::lvalue(sw::Shader::DestinationParameter &dst, TIntermTyped *node)
Nicolas Capens0bac2852016-05-07 06:09:58 -04002589 {
Nicolas Capens6986b282017-11-16 10:38:19 -05002590 Temporary address(this);
Nicolas Capens0530b452017-11-15 16:39:47 -05002591 TIntermTyped *root = nullptr;
2592 unsigned int offset = 0;
2593 unsigned char mask = 0xF;
2594 int swizzle = lvalue(root, offset, dst.rel, mask, address, node);
2595
2596 dst.type = registerType(root);
2597 dst.index = registerIndex(root) + offset;
2598 dst.mask = mask;
2599
2600 return swizzle;
2601 }
2602
2603 int OutputASM::lvalue(TIntermTyped *&root, unsigned int &offset, sw::Shader::Relative &rel, unsigned char &mask, Temporary &address, TIntermTyped *node)
2604 {
Nicolas Capens0bac2852016-05-07 06:09:58 -04002605 TIntermTyped *result = node;
2606 TIntermBinary *binary = node->getAsBinaryNode();
2607 TIntermSymbol *symbol = node->getAsSymbolNode();
2608
2609 if(binary)
2610 {
2611 TIntermTyped *left = binary->getLeft();
2612 TIntermTyped *right = binary->getRight();
2613
Nicolas Capens0530b452017-11-15 16:39:47 -05002614 int leftSwizzle = lvalue(root, offset, rel, mask, address, left); // Resolve the l-value of the left side
Nicolas Capens0bac2852016-05-07 06:09:58 -04002615
2616 switch(binary->getOp())
2617 {
2618 case EOpIndexDirect:
2619 {
2620 int rightIndex = right->getAsConstantUnion()->getIConst(0);
2621
2622 if(left->isRegister())
2623 {
Nicolas Capens0530b452017-11-15 16:39:47 -05002624 int leftMask = mask;
Nicolas Capens0bac2852016-05-07 06:09:58 -04002625
Nicolas Capens0530b452017-11-15 16:39:47 -05002626 mask = 1;
2627 while((leftMask & mask) == 0)
Nicolas Capens0bac2852016-05-07 06:09:58 -04002628 {
Nicolas Capens0530b452017-11-15 16:39:47 -05002629 mask = mask << 1;
Nicolas Capens0bac2852016-05-07 06:09:58 -04002630 }
2631
2632 int element = swizzleElement(leftSwizzle, rightIndex);
Nicolas Capens0530b452017-11-15 16:39:47 -05002633 mask = 1 << element;
Nicolas Capens0bac2852016-05-07 06:09:58 -04002634
2635 return element;
2636 }
2637 else if(left->isArray() || left->isMatrix())
2638 {
Nicolas Capens0530b452017-11-15 16:39:47 -05002639 offset += rightIndex * result->totalRegisterCount();
Nicolas Capens0bac2852016-05-07 06:09:58 -04002640 return 0xE4;
2641 }
2642 else UNREACHABLE(0);
2643 }
2644 break;
2645 case EOpIndexIndirect:
2646 {
Nicolas Capens84249fd2017-11-09 11:20:51 -05002647 right->traverse(this);
2648
Nicolas Capens0bac2852016-05-07 06:09:58 -04002649 if(left->isRegister())
2650 {
2651 // Requires INSERT instruction (handled by calling function)
2652 }
2653 else if(left->isArray() || left->isMatrix())
2654 {
2655 int scale = result->totalRegisterCount();
2656
Nicolas Capens0530b452017-11-15 16:39:47 -05002657 if(rel.type == sw::Shader::PARAMETER_VOID) // Use the index register as the relative address directly
Nicolas Capens0bac2852016-05-07 06:09:58 -04002658 {
2659 if(left->totalRegisterCount() > 1)
2660 {
2661 sw::Shader::SourceParameter relativeRegister;
Nicolas Capens0530b452017-11-15 16:39:47 -05002662 source(relativeRegister, right);
Nicolas Capens0bac2852016-05-07 06:09:58 -04002663
Nicolas Capens4b743732018-05-28 13:22:07 -04002664 int indexId = right->getAsSymbolNode() ? right->getAsSymbolNode()->getId() : 0;
2665
Nicolas Capens0530b452017-11-15 16:39:47 -05002666 rel.index = relativeRegister.index;
2667 rel.type = relativeRegister.type;
2668 rel.scale = scale;
Nicolas Capens4b743732018-05-28 13:22:07 -04002669 rel.dynamic = (right->getQualifier() != EvqUniform) && (deterministicVariables.count(indexId) == 0);
Nicolas Capens0bac2852016-05-07 06:09:58 -04002670 }
2671 }
Nicolas Capens0530b452017-11-15 16:39:47 -05002672 else if(rel.index != registerIndex(&address)) // Move the previous index register to the address register
Nicolas Capens0bac2852016-05-07 06:09:58 -04002673 {
2674 if(scale == 1)
2675 {
Nicolas Capens0530b452017-11-15 16:39:47 -05002676 Constant oldScale((int)rel.scale);
Nicolas Capens0bac2852016-05-07 06:09:58 -04002677 Instruction *mad = emit(sw::Shader::OPCODE_IMAD, &address, &address, &oldScale, right);
Nicolas Capens0530b452017-11-15 16:39:47 -05002678 mad->src[0].index = rel.index;
2679 mad->src[0].type = rel.type;
Nicolas Capens0bac2852016-05-07 06:09:58 -04002680 }
2681 else
2682 {
Nicolas Capens0530b452017-11-15 16:39:47 -05002683 Constant oldScale((int)rel.scale);
Nicolas Capens0bac2852016-05-07 06:09:58 -04002684 Instruction *mul = emit(sw::Shader::OPCODE_IMUL, &address, &address, &oldScale);
Nicolas Capens0530b452017-11-15 16:39:47 -05002685 mul->src[0].index = rel.index;
2686 mul->src[0].type = rel.type;
Nicolas Capens0bac2852016-05-07 06:09:58 -04002687
2688 Constant newScale(scale);
2689 emit(sw::Shader::OPCODE_IMAD, &address, right, &newScale, &address);
2690 }
2691
Nicolas Capens0530b452017-11-15 16:39:47 -05002692 rel.type = sw::Shader::PARAMETER_TEMP;
2693 rel.index = registerIndex(&address);
2694 rel.scale = 1;
Nicolas Capens0bac2852016-05-07 06:09:58 -04002695 }
2696 else // Just add the new index to the address register
2697 {
2698 if(scale == 1)
2699 {
2700 emit(sw::Shader::OPCODE_IADD, &address, &address, right);
2701 }
2702 else
2703 {
2704 Constant newScale(scale);
2705 emit(sw::Shader::OPCODE_IMAD, &address, right, &newScale, &address);
2706 }
2707 }
2708 }
2709 else UNREACHABLE(0);
2710 }
2711 break;
2712 case EOpIndexDirectStruct:
2713 case EOpIndexDirectInterfaceBlock:
2714 {
2715 const TFieldList& fields = (binary->getOp() == EOpIndexDirectStruct) ?
2716 left->getType().getStruct()->fields() :
2717 left->getType().getInterfaceBlock()->fields();
2718 int index = right->getAsConstantUnion()->getIConst(0);
2719 int fieldOffset = 0;
2720
2721 for(int i = 0; i < index; i++)
2722 {
2723 fieldOffset += fields[i]->type()->totalRegisterCount();
2724 }
2725
Nicolas Capens0530b452017-11-15 16:39:47 -05002726 offset += fieldOffset;
2727 mask = writeMask(result);
Nicolas Capens0bac2852016-05-07 06:09:58 -04002728
2729 return 0xE4;
2730 }
2731 break;
2732 case EOpVectorSwizzle:
2733 {
2734 ASSERT(left->isRegister());
2735
Nicolas Capens0530b452017-11-15 16:39:47 -05002736 int leftMask = mask;
Nicolas Capens0bac2852016-05-07 06:09:58 -04002737
2738 int swizzle = 0;
2739 int rightMask = 0;
2740
2741 TIntermSequence &sequence = right->getAsAggregate()->getSequence();
2742
2743 for(unsigned int i = 0; i < sequence.size(); i++)
2744 {
2745 int index = sequence[i]->getAsConstantUnion()->getIConst(0);
2746
2747 int element = swizzleElement(leftSwizzle, index);
2748 rightMask = rightMask | (1 << element);
2749 swizzle = swizzle | swizzleElement(leftSwizzle, i) << (element * 2);
2750 }
2751
Nicolas Capens0530b452017-11-15 16:39:47 -05002752 mask = leftMask & rightMask;
Nicolas Capens0bac2852016-05-07 06:09:58 -04002753
2754 return swizzle;
2755 }
2756 break;
2757 default:
2758 UNREACHABLE(binary->getOp()); // Not an l-value operator
2759 break;
2760 }
2761 }
2762 else if(symbol)
2763 {
Nicolas Capens0530b452017-11-15 16:39:47 -05002764 root = symbol;
2765 offset = 0;
2766 mask = writeMask(symbol);
2767
2768 return 0xE4;
2769 }
2770 else
2771 {
2772 node->traverse(this);
2773
2774 root = node;
2775 offset = 0;
2776 mask = writeMask(node);
2777
Nicolas Capens0bac2852016-05-07 06:09:58 -04002778 return 0xE4;
2779 }
2780
2781 return 0xE4;
2782 }
2783
2784 sw::Shader::ParameterType OutputASM::registerType(TIntermTyped *operand)
2785 {
2786 if(isSamplerRegister(operand))
2787 {
2788 return sw::Shader::PARAMETER_SAMPLER;
2789 }
2790
2791 const TQualifier qualifier = operand->getQualifier();
Nicolas Capens0530b452017-11-15 16:39:47 -05002792 if((qualifier == EvqFragColor) || (qualifier == EvqFragData))
Nicolas Capens0bac2852016-05-07 06:09:58 -04002793 {
Nicolas Capens0530b452017-11-15 16:39:47 -05002794 if(((qualifier == EvqFragData) && (outputQualifier == EvqFragColor)) ||
2795 ((qualifier == EvqFragColor) && (outputQualifier == EvqFragData)))
Nicolas Capens0bac2852016-05-07 06:09:58 -04002796 {
2797 mContext.error(operand->getLine(), "static assignment to both gl_FragData and gl_FragColor", "");
2798 }
2799 outputQualifier = qualifier;
2800 }
2801
2802 if(qualifier == EvqConstExpr && (!operand->getAsConstantUnion() || !operand->getAsConstantUnion()->getUnionArrayPointer()))
2803 {
Nicolas Capens7cbb1de2017-12-22 08:54:18 -05002804 // Constant arrays are in the constant register file.
2805 if(operand->isArray() && operand->getArraySize() > 1)
2806 {
2807 return sw::Shader::PARAMETER_CONST;
2808 }
2809 else
2810 {
2811 return sw::Shader::PARAMETER_TEMP;
2812 }
Nicolas Capens0bac2852016-05-07 06:09:58 -04002813 }
2814
2815 switch(qualifier)
2816 {
2817 case EvqTemporary: return sw::Shader::PARAMETER_TEMP;
2818 case EvqGlobal: return sw::Shader::PARAMETER_TEMP;
2819 case EvqConstExpr: return sw::Shader::PARAMETER_FLOAT4LITERAL; // All converted to float
2820 case EvqAttribute: return sw::Shader::PARAMETER_INPUT;
2821 case EvqVaryingIn: return sw::Shader::PARAMETER_INPUT;
2822 case EvqVaryingOut: return sw::Shader::PARAMETER_OUTPUT;
2823 case EvqVertexIn: return sw::Shader::PARAMETER_INPUT;
2824 case EvqFragmentOut: return sw::Shader::PARAMETER_COLOROUT;
2825 case EvqVertexOut: return sw::Shader::PARAMETER_OUTPUT;
2826 case EvqFragmentIn: return sw::Shader::PARAMETER_INPUT;
2827 case EvqInvariantVaryingIn: return sw::Shader::PARAMETER_INPUT; // FIXME: Guarantee invariance at the backend
2828 case EvqInvariantVaryingOut: return sw::Shader::PARAMETER_OUTPUT; // FIXME: Guarantee invariance at the backend
2829 case EvqSmooth: return sw::Shader::PARAMETER_OUTPUT;
2830 case EvqFlat: return sw::Shader::PARAMETER_OUTPUT;
2831 case EvqCentroidOut: return sw::Shader::PARAMETER_OUTPUT;
2832 case EvqSmoothIn: return sw::Shader::PARAMETER_INPUT;
2833 case EvqFlatIn: return sw::Shader::PARAMETER_INPUT;
2834 case EvqCentroidIn: return sw::Shader::PARAMETER_INPUT;
2835 case EvqUniform: return sw::Shader::PARAMETER_CONST;
2836 case EvqIn: return sw::Shader::PARAMETER_TEMP;
2837 case EvqOut: return sw::Shader::PARAMETER_TEMP;
2838 case EvqInOut: return sw::Shader::PARAMETER_TEMP;
2839 case EvqConstReadOnly: return sw::Shader::PARAMETER_TEMP;
2840 case EvqPosition: return sw::Shader::PARAMETER_OUTPUT;
2841 case EvqPointSize: return sw::Shader::PARAMETER_OUTPUT;
2842 case EvqInstanceID: return sw::Shader::PARAMETER_MISCTYPE;
Alexis Hetu877ddfc2017-07-25 17:48:00 -04002843 case EvqVertexID: return sw::Shader::PARAMETER_MISCTYPE;
Nicolas Capens0bac2852016-05-07 06:09:58 -04002844 case EvqFragCoord: return sw::Shader::PARAMETER_MISCTYPE;
2845 case EvqFrontFacing: return sw::Shader::PARAMETER_MISCTYPE;
2846 case EvqPointCoord: return sw::Shader::PARAMETER_INPUT;
2847 case EvqFragColor: return sw::Shader::PARAMETER_COLOROUT;
2848 case EvqFragData: return sw::Shader::PARAMETER_COLOROUT;
2849 case EvqFragDepth: return sw::Shader::PARAMETER_DEPTHOUT;
2850 default: UNREACHABLE(qualifier);
2851 }
2852
2853 return sw::Shader::PARAMETER_VOID;
2854 }
2855
Alexis Hetu12b00502016-05-20 13:01:11 -04002856 bool OutputASM::hasFlatQualifier(TIntermTyped *operand)
2857 {
2858 const TQualifier qualifier = operand->getQualifier();
2859 return qualifier == EvqFlat || qualifier == EvqFlatOut || qualifier == EvqFlatIn;
2860 }
2861
Nicolas Capens0bac2852016-05-07 06:09:58 -04002862 unsigned int OutputASM::registerIndex(TIntermTyped *operand)
2863 {
2864 if(isSamplerRegister(operand))
2865 {
2866 return samplerRegister(operand);
2867 }
Alexis Hetud87b3a82018-04-24 11:13:33 -04002868 else if(operand->getType().totalSamplerRegisterCount() > 0) // Struct containing a sampler
2869 {
2870 samplerRegister(operand); // Make sure the sampler is declared
2871 }
Nicolas Capens0bac2852016-05-07 06:09:58 -04002872
2873 switch(operand->getQualifier())
2874 {
2875 case EvqTemporary: return temporaryRegister(operand);
2876 case EvqGlobal: return temporaryRegister(operand);
2877 case EvqConstExpr: return temporaryRegister(operand); // Unevaluated constant expression
2878 case EvqAttribute: return attributeRegister(operand);
2879 case EvqVaryingIn: return varyingRegister(operand);
2880 case EvqVaryingOut: return varyingRegister(operand);
2881 case EvqVertexIn: return attributeRegister(operand);
2882 case EvqFragmentOut: return fragmentOutputRegister(operand);
2883 case EvqVertexOut: return varyingRegister(operand);
2884 case EvqFragmentIn: return varyingRegister(operand);
2885 case EvqInvariantVaryingIn: return varyingRegister(operand);
2886 case EvqInvariantVaryingOut: return varyingRegister(operand);
2887 case EvqSmooth: return varyingRegister(operand);
2888 case EvqFlat: return varyingRegister(operand);
2889 case EvqCentroidOut: return varyingRegister(operand);
2890 case EvqSmoothIn: return varyingRegister(operand);
2891 case EvqFlatIn: return varyingRegister(operand);
2892 case EvqCentroidIn: return varyingRegister(operand);
2893 case EvqUniform: return uniformRegister(operand);
2894 case EvqIn: return temporaryRegister(operand);
2895 case EvqOut: return temporaryRegister(operand);
2896 case EvqInOut: return temporaryRegister(operand);
2897 case EvqConstReadOnly: return temporaryRegister(operand);
2898 case EvqPosition: return varyingRegister(operand);
2899 case EvqPointSize: return varyingRegister(operand);
Alexis Hetu877ddfc2017-07-25 17:48:00 -04002900 case EvqInstanceID: vertexShader->declareInstanceId(); return sw::Shader::InstanceIDIndex;
2901 case EvqVertexID: vertexShader->declareVertexId(); return sw::Shader::VertexIDIndex;
2902 case EvqFragCoord: pixelShader->declareVPos(); return sw::Shader::VPosIndex;
2903 case EvqFrontFacing: pixelShader->declareVFace(); return sw::Shader::VFaceIndex;
Nicolas Capens0bac2852016-05-07 06:09:58 -04002904 case EvqPointCoord: return varyingRegister(operand);
2905 case EvqFragColor: return 0;
2906 case EvqFragData: return fragmentOutputRegister(operand);
2907 case EvqFragDepth: return 0;
2908 default: UNREACHABLE(operand->getQualifier());
2909 }
2910
2911 return 0;
2912 }
2913
2914 int OutputASM::writeMask(TIntermTyped *destination, int index)
2915 {
2916 if(destination->getQualifier() == EvqPointSize)
2917 {
2918 return 0x2; // Point size stored in the y component
2919 }
2920
2921 return 0xF >> (4 - registerSize(destination->getType(), index));
2922 }
2923
2924 int OutputASM::readSwizzle(TIntermTyped *argument, int size)
2925 {
2926 if(argument->getQualifier() == EvqPointSize)
2927 {
2928 return 0x55; // Point size stored in the y component
2929 }
2930
2931 static const unsigned char swizzleSize[5] = {0x00, 0x00, 0x54, 0xA4, 0xE4}; // (void), xxxx, xyyy, xyzz, xyzw
2932
2933 return swizzleSize[size];
2934 }
2935
2936 // Conservatively checks whether an expression is fast to compute and has no side effects
2937 bool OutputASM::trivial(TIntermTyped *expression, int budget)
2938 {
2939 if(!expression->isRegister())
2940 {
2941 return false;
2942 }
2943
2944 return cost(expression, budget) >= 0;
2945 }
2946
2947 // Returns the remaining computing budget (if < 0 the expression is too expensive or has side effects)
2948 int OutputASM::cost(TIntermNode *expression, int budget)
2949 {
2950 if(budget < 0)
2951 {
2952 return budget;
2953 }
2954
2955 if(expression->getAsSymbolNode())
2956 {
2957 return budget;
2958 }
2959 else if(expression->getAsConstantUnion())
2960 {
2961 return budget;
2962 }
2963 else if(expression->getAsBinaryNode())
2964 {
2965 TIntermBinary *binary = expression->getAsBinaryNode();
2966
2967 switch(binary->getOp())
2968 {
2969 case EOpVectorSwizzle:
2970 case EOpIndexDirect:
2971 case EOpIndexDirectStruct:
2972 case EOpIndexDirectInterfaceBlock:
2973 return cost(binary->getLeft(), budget - 0);
2974 case EOpAdd:
2975 case EOpSub:
2976 case EOpMul:
2977 return cost(binary->getLeft(), cost(binary->getRight(), budget - 1));
2978 default:
2979 return -1;
2980 }
2981 }
2982 else if(expression->getAsUnaryNode())
2983 {
2984 TIntermUnary *unary = expression->getAsUnaryNode();
2985
2986 switch(unary->getOp())
2987 {
2988 case EOpAbs:
2989 case EOpNegative:
2990 return cost(unary->getOperand(), budget - 1);
2991 default:
2992 return -1;
2993 }
2994 }
2995 else if(expression->getAsSelectionNode())
2996 {
2997 TIntermSelection *selection = expression->getAsSelectionNode();
2998
2999 if(selection->usesTernaryOperator())
3000 {
3001 TIntermTyped *condition = selection->getCondition();
3002 TIntermNode *trueBlock = selection->getTrueBlock();
3003 TIntermNode *falseBlock = selection->getFalseBlock();
3004 TIntermConstantUnion *constantCondition = condition->getAsConstantUnion();
3005
3006 if(constantCondition)
3007 {
3008 bool trueCondition = constantCondition->getUnionArrayPointer()->getBConst();
3009
3010 if(trueCondition)
3011 {
3012 return cost(trueBlock, budget - 0);
3013 }
3014 else
3015 {
3016 return cost(falseBlock, budget - 0);
3017 }
3018 }
3019 else
3020 {
3021 return cost(trueBlock, cost(falseBlock, budget - 2));
3022 }
3023 }
3024 }
3025
3026 return -1;
3027 }
3028
3029 const Function *OutputASM::findFunction(const TString &name)
3030 {
3031 for(unsigned int f = 0; f < functionArray.size(); f++)
3032 {
3033 if(functionArray[f].name == name)
3034 {
3035 return &functionArray[f];
3036 }
3037 }
3038
3039 return 0;
3040 }
3041
3042 int OutputASM::temporaryRegister(TIntermTyped *temporary)
3043 {
Alexis Hetu329747c2018-04-09 13:47:34 -04003044 int index = allocate(temporaries, temporary);
3045 if(index >= sw::NUM_TEMPORARY_REGISTERS)
3046 {
3047 mContext.error(temporary->getLine(),
3048 "Too many temporary registers required to compile shader",
3049 pixelShader ? "pixel shader" : "vertex shader");
3050 }
3051 return index;
Nicolas Capens0bac2852016-05-07 06:09:58 -04003052 }
3053
Alexis Hetu49351232017-11-02 16:00:32 -04003054 void OutputASM::setPixelShaderInputs(const TType& type, int var, bool flat)
3055 {
3056 if(type.isStruct())
3057 {
3058 const TFieldList &fields = type.getStruct()->fields();
3059 int fieldVar = var;
Alexis Hetuda163ed2018-01-03 16:36:14 -05003060 for(const auto &field : fields)
Alexis Hetu49351232017-11-02 16:00:32 -04003061 {
Alexis Hetuda163ed2018-01-03 16:36:14 -05003062 const TType& fieldType = *(field->type());
Alexis Hetu49351232017-11-02 16:00:32 -04003063 setPixelShaderInputs(fieldType, fieldVar, flat);
3064 fieldVar += fieldType.totalRegisterCount();
3065 }
3066 }
3067 else
3068 {
3069 for(int i = 0; i < type.totalRegisterCount(); i++)
3070 {
3071 pixelShader->setInput(var + i, type.registerSize(), sw::Shader::Semantic(sw::Shader::USAGE_COLOR, var + i, flat));
3072 }
3073 }
3074 }
3075
Nicolas Capens0bac2852016-05-07 06:09:58 -04003076 int OutputASM::varyingRegister(TIntermTyped *varying)
3077 {
3078 int var = lookup(varyings, varying);
3079
3080 if(var == -1)
3081 {
3082 var = allocate(varyings, varying);
Nicolas Capens0bac2852016-05-07 06:09:58 -04003083 int registerCount = varying->totalRegisterCount();
3084
3085 if(pixelShader)
3086 {
Nicolas Capens3b4c93f2016-05-18 12:51:37 -04003087 if((var + registerCount) > sw::MAX_FRAGMENT_INPUTS)
Nicolas Capens0bac2852016-05-07 06:09:58 -04003088 {
3089 mContext.error(varying->getLine(), "Varyings packing failed: Too many varyings", "fragment shader");
3090 return 0;
3091 }
3092
3093 if(varying->getQualifier() == EvqPointCoord)
3094 {
3095 ASSERT(varying->isRegister());
Alexis Hetu49351232017-11-02 16:00:32 -04003096 pixelShader->setInput(var, varying->registerSize(), sw::Shader::Semantic(sw::Shader::USAGE_TEXCOORD, var));
Nicolas Capens0bac2852016-05-07 06:09:58 -04003097 }
3098 else
3099 {
Alexis Hetu49351232017-11-02 16:00:32 -04003100 setPixelShaderInputs(varying->getType(), var, hasFlatQualifier(varying));
Nicolas Capens0bac2852016-05-07 06:09:58 -04003101 }
3102 }
3103 else if(vertexShader)
3104 {
Nicolas Capensec0936c2016-05-18 12:32:02 -04003105 if((var + registerCount) > sw::MAX_VERTEX_OUTPUTS)
Nicolas Capens0bac2852016-05-07 06:09:58 -04003106 {
3107 mContext.error(varying->getLine(), "Varyings packing failed: Too many varyings", "vertex shader");
3108 return 0;
3109 }
3110
3111 if(varying->getQualifier() == EvqPosition)
3112 {
3113 ASSERT(varying->isRegister());
Alexis Hetu02ad0aa2016-08-02 11:18:14 -04003114 vertexShader->setPositionRegister(var);
Nicolas Capens0bac2852016-05-07 06:09:58 -04003115 }
3116 else if(varying->getQualifier() == EvqPointSize)
3117 {
3118 ASSERT(varying->isRegister());
Alexis Hetu02ad0aa2016-08-02 11:18:14 -04003119 vertexShader->setPointSizeRegister(var);
Nicolas Capens0bac2852016-05-07 06:09:58 -04003120 }
3121 else
3122 {
3123 // Semantic indexes for user varyings will be assigned during program link to match the pixel shader
3124 }
3125 }
3126 else UNREACHABLE(0);
3127
3128 declareVarying(varying, var);
3129 }
3130
3131 return var;
3132 }
3133
3134 void OutputASM::declareVarying(TIntermTyped *varying, int reg)
3135 {
3136 if(varying->getQualifier() != EvqPointCoord) // gl_PointCoord does not need linking
3137 {
Alexis Hetu49351232017-11-02 16:00:32 -04003138 TIntermSymbol *symbol = varying->getAsSymbolNode();
3139 declareVarying(varying->getType(), symbol->getSymbol(), reg);
3140 }
3141 }
Nicolas Capens0bac2852016-05-07 06:09:58 -04003142
Alexis Hetu49351232017-11-02 16:00:32 -04003143 void OutputASM::declareVarying(const TType &type, const TString &varyingName, int registerIndex)
3144 {
3145 const char *name = varyingName.c_str();
3146 VaryingList &activeVaryings = shaderObject->varyings;
3147
3148 TStructure* structure = type.getStruct();
3149 if(structure)
3150 {
3151 int fieldRegisterIndex = registerIndex;
3152
3153 const TFieldList &fields = type.getStruct()->fields();
Alexis Hetuda163ed2018-01-03 16:36:14 -05003154 for(const auto &field : fields)
Alexis Hetu49351232017-11-02 16:00:32 -04003155 {
Alexis Hetuda163ed2018-01-03 16:36:14 -05003156 const TType& fieldType = *(field->type());
3157 declareVarying(fieldType, varyingName + "." + field->name(), fieldRegisterIndex);
Alexis Hetu49351232017-11-02 16:00:32 -04003158 if(fieldRegisterIndex >= 0)
3159 {
3160 fieldRegisterIndex += fieldType.totalRegisterCount();
3161 }
3162 }
3163 }
3164 else
3165 {
Nicolas Capens0bac2852016-05-07 06:09:58 -04003166 // Check if this varying has been declared before without having a register assigned
3167 for(VaryingList::iterator v = activeVaryings.begin(); v != activeVaryings.end(); v++)
3168 {
3169 if(v->name == name)
3170 {
Alexis Hetu49351232017-11-02 16:00:32 -04003171 if(registerIndex >= 0)
Nicolas Capens0bac2852016-05-07 06:09:58 -04003172 {
Alexis Hetu924513c2018-01-05 15:48:12 -05003173 ASSERT(v->registerIndex < 0 || v->registerIndex == registerIndex);
3174 v->registerIndex = registerIndex;
Nicolas Capens0bac2852016-05-07 06:09:58 -04003175 }
3176
3177 return;
3178 }
3179 }
3180
Alexis Hetu924513c2018-01-05 15:48:12 -05003181 activeVaryings.push_back(glsl::Varying(type, name, registerIndex, 0));
Nicolas Capens0bac2852016-05-07 06:09:58 -04003182 }
3183 }
3184
Alexis Hetu930df972018-01-30 16:54:13 -05003185 void OutputASM::declareFragmentOutput(TIntermTyped *fragmentOutput)
3186 {
3187 int requestedLocation = fragmentOutput->getType().getLayoutQualifier().location;
Alexis Hetu17e2e2f2018-02-05 10:41:47 -05003188 int registerCount = fragmentOutput->totalRegisterCount();
3189 if(requestedLocation < 0)
Alexis Hetu930df972018-01-30 16:54:13 -05003190 {
Alexis Hetu3c1d6cf2018-02-06 10:54:49 -05003191 ASSERT(requestedLocation == -1); // All other negative values would have been prevented in TParseContext::parseLayoutQualifier
3192 return; // No requested location
Alexis Hetu930df972018-01-30 16:54:13 -05003193 }
Alexis Hetu17e2e2f2018-02-05 10:41:47 -05003194 else if((requestedLocation + registerCount) > sw::RENDERTARGETS)
Alexis Hetu930df972018-01-30 16:54:13 -05003195 {
3196 mContext.error(fragmentOutput->getLine(), "Fragment output location larger or equal to MAX_DRAW_BUFFERS", "fragment shader");
3197 }
Alexis Hetu17e2e2f2018-02-05 10:41:47 -05003198 else
3199 {
3200 int currentIndex = lookup(fragmentOutputs, fragmentOutput);
3201 if(requestedLocation != currentIndex)
3202 {
3203 if(currentIndex != -1)
3204 {
3205 mContext.error(fragmentOutput->getLine(), "Multiple locations for fragment output", "fragment shader");
3206 }
3207 else
3208 {
3209 if(fragmentOutputs.size() <= (size_t)requestedLocation)
3210 {
3211 while(fragmentOutputs.size() < (size_t)requestedLocation)
3212 {
3213 fragmentOutputs.push_back(nullptr);
3214 }
3215 for(int i = 0; i < registerCount; i++)
3216 {
3217 fragmentOutputs.push_back(fragmentOutput);
3218 }
3219 }
3220 else
3221 {
3222 for(int i = 0; i < registerCount; i++)
3223 {
3224 if(!fragmentOutputs[requestedLocation + i])
3225 {
3226 fragmentOutputs[requestedLocation + i] = fragmentOutput;
3227 }
3228 else
3229 {
3230 mContext.error(fragmentOutput->getLine(), "Fragment output location aliasing", "fragment shader");
3231 return;
3232 }
3233 }
3234 }
3235 }
3236 }
3237 }
Alexis Hetu930df972018-01-30 16:54:13 -05003238 }
3239
Nicolas Capens0bac2852016-05-07 06:09:58 -04003240 int OutputASM::uniformRegister(TIntermTyped *uniform)
3241 {
3242 const TType &type = uniform->getType();
3243 ASSERT(!IsSampler(type.getBasicType()));
3244 TInterfaceBlock *block = type.getAsInterfaceBlock();
3245 TIntermSymbol *symbol = uniform->getAsSymbolNode();
3246 ASSERT(symbol || block);
3247
3248 if(symbol || block)
3249 {
3250 TInterfaceBlock* parentBlock = type.getInterfaceBlock();
3251 bool isBlockMember = (!block && parentBlock);
3252 int index = isBlockMember ? lookup(uniforms, parentBlock) : lookup(uniforms, uniform);
3253
3254 if(index == -1 || isBlockMember)
3255 {
3256 if(index == -1)
3257 {
3258 index = allocate(uniforms, uniform);
3259 }
3260
3261 // Verify if the current uniform is a member of an already declared block
3262 const TString &name = symbol ? symbol->getSymbol() : block->name();
3263 int blockMemberIndex = blockMemberLookup(type, name, index);
3264 if(blockMemberIndex == -1)
3265 {
Alexis Hetuda163ed2018-01-03 16:36:14 -05003266 declareUniform(type, name, index, false);
Nicolas Capens0bac2852016-05-07 06:09:58 -04003267 }
3268 else
3269 {
3270 index = blockMemberIndex;
3271 }
3272 }
3273
3274 return index;
3275 }
3276
3277 return 0;
3278 }
3279
3280 int OutputASM::attributeRegister(TIntermTyped *attribute)
3281 {
3282 ASSERT(!attribute->isArray());
3283
3284 int index = lookup(attributes, attribute);
3285
3286 if(index == -1)
3287 {
3288 TIntermSymbol *symbol = attribute->getAsSymbolNode();
3289 ASSERT(symbol);
3290
3291 if(symbol)
3292 {
3293 index = allocate(attributes, attribute);
3294 const TType &type = attribute->getType();
3295 int registerCount = attribute->totalRegisterCount();
Alexis Hetub7508b82016-09-22 15:36:45 -04003296 sw::VertexShader::AttribType attribType = sw::VertexShader::ATTRIBTYPE_FLOAT;
3297 switch(type.getBasicType())
3298 {
3299 case EbtInt:
3300 attribType = sw::VertexShader::ATTRIBTYPE_INT;
3301 break;
3302 case EbtUInt:
3303 attribType = sw::VertexShader::ATTRIBTYPE_UINT;
3304 break;
3305 case EbtFloat:
3306 default:
3307 break;
3308 }
Nicolas Capens0bac2852016-05-07 06:09:58 -04003309
Nicolas Capensf0aef1a2016-05-18 14:44:21 -04003310 if(vertexShader && (index + registerCount) <= sw::MAX_VERTEX_INPUTS)
Nicolas Capens0bac2852016-05-07 06:09:58 -04003311 {
3312 for(int i = 0; i < registerCount; i++)
3313 {
Alexis Hetub7508b82016-09-22 15:36:45 -04003314 vertexShader->setInput(index + i, sw::Shader::Semantic(sw::Shader::USAGE_TEXCOORD, index + i, false), attribType);
Nicolas Capens0bac2852016-05-07 06:09:58 -04003315 }
3316 }
3317
3318 ActiveAttributes &activeAttributes = shaderObject->activeAttributes;
3319
3320 const char *name = symbol->getSymbol().c_str();
3321 activeAttributes.push_back(Attribute(glVariableType(type), name, type.getArraySize(), type.getLayoutQualifier().location, index));
3322 }
3323 }
3324
3325 return index;
3326 }
3327
3328 int OutputASM::fragmentOutputRegister(TIntermTyped *fragmentOutput)
3329 {
3330 return allocate(fragmentOutputs, fragmentOutput);
3331 }
3332
3333 int OutputASM::samplerRegister(TIntermTyped *sampler)
3334 {
3335 const TType &type = sampler->getType();
3336 ASSERT(IsSampler(type.getBasicType()) || type.isStruct()); // Structures can contain samplers
3337
3338 TIntermSymbol *symbol = sampler->getAsSymbolNode();
3339 TIntermBinary *binary = sampler->getAsBinaryNode();
3340
Nicolas Capensfcb70fd2017-05-17 15:16:51 -04003341 if(symbol)
Nicolas Capens0bac2852016-05-07 06:09:58 -04003342 {
Nicolas Capensfcb70fd2017-05-17 15:16:51 -04003343 switch(type.getQualifier())
3344 {
3345 case EvqUniform:
3346 return samplerRegister(symbol);
3347 case EvqIn:
3348 case EvqConstReadOnly:
3349 // Function arguments are not (uniform) sampler registers
3350 return -1;
3351 default:
3352 UNREACHABLE(type.getQualifier());
3353 }
Nicolas Capens0bac2852016-05-07 06:09:58 -04003354 }
3355 else if(binary)
3356 {
3357 TIntermTyped *left = binary->getLeft();
3358 TIntermTyped *right = binary->getRight();
3359 const TType &leftType = left->getType();
3360 int index = right->getAsConstantUnion() ? right->getAsConstantUnion()->getIConst(0) : 0;
3361 int offset = 0;
3362
3363 switch(binary->getOp())
3364 {
3365 case EOpIndexDirect:
3366 ASSERT(left->isArray());
Alexis Hetuda163ed2018-01-03 16:36:14 -05003367 offset = index * leftType.samplerRegisterCount();
Nicolas Capens0bac2852016-05-07 06:09:58 -04003368 break;
3369 case EOpIndexDirectStruct:
3370 ASSERT(leftType.isStruct());
3371 {
3372 const TFieldList &fields = leftType.getStruct()->fields();
3373
3374 for(int i = 0; i < index; i++)
3375 {
Alexis Hetuda163ed2018-01-03 16:36:14 -05003376 offset += fields[i]->type()->totalSamplerRegisterCount();
Nicolas Capens0bac2852016-05-07 06:09:58 -04003377 }
3378 }
3379 break;
3380 case EOpIndexIndirect: // Indirect indexing produces a temporary, not a sampler register
3381 return -1;
3382 case EOpIndexDirectInterfaceBlock: // Interface blocks can't contain samplers
3383 default:
3384 UNREACHABLE(binary->getOp());
3385 return -1;
3386 }
3387
3388 int base = samplerRegister(left);
3389
3390 if(base < 0)
3391 {
3392 return -1;
3393 }
3394
3395 return base + offset;
3396 }
3397
3398 UNREACHABLE(0);
Nicolas Capensfcb70fd2017-05-17 15:16:51 -04003399 return -1; // Not a (uniform) sampler register
Nicolas Capens0bac2852016-05-07 06:09:58 -04003400 }
3401
3402 int OutputASM::samplerRegister(TIntermSymbol *sampler)
3403 {
3404 const TType &type = sampler->getType();
3405 ASSERT(IsSampler(type.getBasicType()) || type.isStruct()); // Structures can contain samplers
3406
3407 int index = lookup(samplers, sampler);
3408
3409 if(index == -1)
3410 {
Alexis Hetuda163ed2018-01-03 16:36:14 -05003411 index = allocate(samplers, sampler, true);
Nicolas Capens0bac2852016-05-07 06:09:58 -04003412
3413 if(sampler->getQualifier() == EvqUniform)
3414 {
3415 const char *name = sampler->getSymbol().c_str();
Alexis Hetuda163ed2018-01-03 16:36:14 -05003416 declareUniform(type, name, index, true);
Nicolas Capens0bac2852016-05-07 06:09:58 -04003417 }
3418 }
3419
3420 return index;
3421 }
3422
3423 bool OutputASM::isSamplerRegister(TIntermTyped *operand)
3424 {
3425 return operand && IsSampler(operand->getBasicType()) && samplerRegister(operand) >= 0;
3426 }
3427
3428 int OutputASM::lookup(VariableArray &list, TIntermTyped *variable)
3429 {
3430 for(unsigned int i = 0; i < list.size(); i++)
3431 {
3432 if(list[i] == variable)
3433 {
3434 return i; // Pointer match
3435 }
3436 }
3437
3438 TIntermSymbol *varSymbol = variable->getAsSymbolNode();
3439 TInterfaceBlock *varBlock = variable->getType().getAsInterfaceBlock();
3440
3441 if(varBlock)
3442 {
3443 for(unsigned int i = 0; i < list.size(); i++)
3444 {
3445 if(list[i])
3446 {
3447 TInterfaceBlock *listBlock = list[i]->getType().getAsInterfaceBlock();
3448
3449 if(listBlock)
3450 {
3451 if(listBlock->name() == varBlock->name())
3452 {
3453 ASSERT(listBlock->arraySize() == varBlock->arraySize());
3454 ASSERT(listBlock->fields() == varBlock->fields());
3455 ASSERT(listBlock->blockStorage() == varBlock->blockStorage());
3456 ASSERT(listBlock->matrixPacking() == varBlock->matrixPacking());
3457
3458 return i;
3459 }
3460 }
3461 }
3462 }
3463 }
3464 else if(varSymbol)
3465 {
3466 for(unsigned int i = 0; i < list.size(); i++)
3467 {
3468 if(list[i])
3469 {
3470 TIntermSymbol *listSymbol = list[i]->getAsSymbolNode();
3471
3472 if(listSymbol)
3473 {
3474 if(listSymbol->getId() == varSymbol->getId())
3475 {
3476 ASSERT(listSymbol->getSymbol() == varSymbol->getSymbol());
3477 ASSERT(listSymbol->getType() == varSymbol->getType());
3478 ASSERT(listSymbol->getQualifier() == varSymbol->getQualifier());
3479
3480 return i;
3481 }
3482 }
3483 }
3484 }
3485 }
3486
3487 return -1;
3488 }
3489
3490 int OutputASM::lookup(VariableArray &list, TInterfaceBlock *block)
3491 {
3492 for(unsigned int i = 0; i < list.size(); i++)
3493 {
3494 if(list[i] && (list[i]->getType().getInterfaceBlock() == block))
3495 {
3496 return i; // Pointer match
3497 }
3498 }
3499 return -1;
3500 }
3501
Alexis Hetuda163ed2018-01-03 16:36:14 -05003502 int OutputASM::allocate(VariableArray &list, TIntermTyped *variable, bool samplersOnly)
Nicolas Capens0bac2852016-05-07 06:09:58 -04003503 {
3504 int index = lookup(list, variable);
3505
3506 if(index == -1)
3507 {
Alexis Hetuda163ed2018-01-03 16:36:14 -05003508 unsigned int registerCount = variable->blockRegisterCount(samplersOnly);
Nicolas Capens0bac2852016-05-07 06:09:58 -04003509
3510 for(unsigned int i = 0; i < list.size(); i++)
3511 {
3512 if(list[i] == 0)
3513 {
3514 unsigned int j = 1;
3515 for( ; j < registerCount && (i + j) < list.size(); j++)
3516 {
3517 if(list[i + j] != 0)
3518 {
3519 break;
3520 }
3521 }
3522
3523 if(j == registerCount) // Found free slots
3524 {
3525 for(unsigned int j = 0; j < registerCount; j++)
3526 {
3527 list[i + j] = variable;
3528 }
3529
3530 return i;
3531 }
3532 }
3533 }
3534
3535 index = list.size();
3536
3537 for(unsigned int i = 0; i < registerCount; i++)
3538 {
3539 list.push_back(variable);
3540 }
3541 }
3542
3543 return index;
3544 }
3545
3546 void OutputASM::free(VariableArray &list, TIntermTyped *variable)
3547 {
3548 int index = lookup(list, variable);
3549
3550 if(index >= 0)
3551 {
3552 list[index] = 0;
3553 }
3554 }
3555
3556 int OutputASM::blockMemberLookup(const TType &type, const TString &name, int registerIndex)
3557 {
3558 const TInterfaceBlock *block = type.getInterfaceBlock();
3559
3560 if(block)
3561 {
3562 ActiveUniformBlocks &activeUniformBlocks = shaderObject->activeUniformBlocks;
3563 const TFieldList& fields = block->fields();
3564 const TString &blockName = block->name();
3565 int fieldRegisterIndex = registerIndex;
3566
3567 if(!type.isInterfaceBlock())
3568 {
3569 // This is a uniform that's part of a block, let's see if the block is already defined
3570 for(size_t i = 0; i < activeUniformBlocks.size(); ++i)
3571 {
3572 if(activeUniformBlocks[i].name == blockName.c_str())
3573 {
3574 // The block is already defined, find the register for the current uniform and return it
3575 for(size_t j = 0; j < fields.size(); j++)
3576 {
3577 const TString &fieldName = fields[j]->name();
3578 if(fieldName == name)
3579 {
3580 return fieldRegisterIndex;
3581 }
3582
3583 fieldRegisterIndex += fields[j]->type()->totalRegisterCount();
3584 }
3585
3586 ASSERT(false);
3587 return fieldRegisterIndex;
3588 }
3589 }
3590 }
3591 }
3592
3593 return -1;
3594 }
3595
Alexis Hetuda163ed2018-01-03 16:36:14 -05003596 void OutputASM::declareUniform(const TType &type, const TString &name, int registerIndex, bool samplersOnly, int blockId, BlockLayoutEncoder* encoder)
Nicolas Capens0bac2852016-05-07 06:09:58 -04003597 {
3598 const TStructure *structure = type.getStruct();
3599 const TInterfaceBlock *block = (type.isInterfaceBlock() || (blockId == -1)) ? type.getInterfaceBlock() : nullptr;
3600
3601 if(!structure && !block)
3602 {
3603 ActiveUniforms &activeUniforms = shaderObject->activeUniforms;
3604 const BlockMemberInfo blockInfo = encoder ? encoder->encodeType(type) : BlockMemberInfo::getDefaultBlockInfo();
3605 if(blockId >= 0)
3606 {
Nicolas Capensbb2bcae2018-02-05 11:12:10 -05003607 blockDefinitions[blockId].insert(BlockDefinitionIndexMap::value_type(registerIndex, TypedMemberInfo(blockInfo, type)));
Nicolas Capens0bac2852016-05-07 06:09:58 -04003608 shaderObject->activeUniformBlocks[blockId].fields.push_back(activeUniforms.size());
3609 }
3610 int fieldRegisterIndex = encoder ? shaderObject->activeUniformBlocks[blockId].registerIndex + BlockLayoutEncoder::getBlockRegister(blockInfo) : registerIndex;
Alexis Hetuda163ed2018-01-03 16:36:14 -05003611 bool isSampler = IsSampler(type.getBasicType());
3612 if(isSampler && samplersOnly)
Nicolas Capens0bac2852016-05-07 06:09:58 -04003613 {
3614 for(int i = 0; i < type.totalRegisterCount(); i++)
3615 {
3616 shader->declareSampler(fieldRegisterIndex + i);
3617 }
3618 }
Alexis Hetu924513c2018-01-05 15:48:12 -05003619 if(isSampler == samplersOnly)
Alexis Hetuda163ed2018-01-03 16:36:14 -05003620 {
Alexis Hetu924513c2018-01-05 15:48:12 -05003621 activeUniforms.push_back(Uniform(type, name.c_str(), fieldRegisterIndex, blockId, blockInfo));
Alexis Hetuda163ed2018-01-03 16:36:14 -05003622 }
Nicolas Capens0bac2852016-05-07 06:09:58 -04003623 }
3624 else if(block)
3625 {
3626 ActiveUniformBlocks &activeUniformBlocks = shaderObject->activeUniformBlocks;
3627 const TFieldList& fields = block->fields();
3628 const TString &blockName = block->name();
3629 int fieldRegisterIndex = registerIndex;
3630 bool isUniformBlockMember = !type.isInterfaceBlock() && (blockId == -1);
3631
3632 blockId = activeUniformBlocks.size();
3633 bool isRowMajor = block->matrixPacking() == EmpRowMajor;
3634 activeUniformBlocks.push_back(UniformBlock(blockName.c_str(), 0, block->arraySize(),
3635 block->blockStorage(), isRowMajor, registerIndex, blockId));
3636 blockDefinitions.push_back(BlockDefinitionIndexMap());
3637
Alexis Hetud2742532018-01-23 16:53:41 -05003638 Std140BlockEncoder currentBlockEncoder;
Nicolas Capens0bac2852016-05-07 06:09:58 -04003639 currentBlockEncoder.enterAggregateType();
Alexis Hetuda163ed2018-01-03 16:36:14 -05003640 for(const auto &field : fields)
Nicolas Capens0bac2852016-05-07 06:09:58 -04003641 {
Alexis Hetuda163ed2018-01-03 16:36:14 -05003642 const TType &fieldType = *(field->type());
3643 const TString &fieldName = field->name();
Nicolas Capens0bac2852016-05-07 06:09:58 -04003644 if(isUniformBlockMember && (fieldName == name))
3645 {
3646 registerIndex = fieldRegisterIndex;
3647 }
3648
3649 const TString uniformName = block->hasInstanceName() ? blockName + "." + fieldName : fieldName;
3650
Alexis Hetuda163ed2018-01-03 16:36:14 -05003651 declareUniform(fieldType, uniformName, fieldRegisterIndex, samplersOnly, blockId, &currentBlockEncoder);
Nicolas Capens0bac2852016-05-07 06:09:58 -04003652 fieldRegisterIndex += fieldType.totalRegisterCount();
3653 }
3654 currentBlockEncoder.exitAggregateType();
3655 activeUniformBlocks[blockId].dataSize = currentBlockEncoder.getBlockSize();
3656 }
3657 else
3658 {
Alexis Hetu924513c2018-01-05 15:48:12 -05003659 // Store struct for program link time validation
3660 shaderObject->activeUniformStructs.push_back(Uniform(type, name.c_str(), registerIndex, -1, BlockMemberInfo::getDefaultBlockInfo()));
3661
Nicolas Capens0bac2852016-05-07 06:09:58 -04003662 int fieldRegisterIndex = registerIndex;
3663
3664 const TFieldList& fields = structure->fields();
3665 if(type.isArray() && (structure || type.isInterfaceBlock()))
3666 {
3667 for(int i = 0; i < type.getArraySize(); i++)
3668 {
3669 if(encoder)
3670 {
3671 encoder->enterAggregateType();
3672 }
Alexis Hetuda163ed2018-01-03 16:36:14 -05003673 for(const auto &field : fields)
Nicolas Capens0bac2852016-05-07 06:09:58 -04003674 {
Alexis Hetuda163ed2018-01-03 16:36:14 -05003675 const TType &fieldType = *(field->type());
3676 const TString &fieldName = field->name();
Nicolas Capens0bac2852016-05-07 06:09:58 -04003677 const TString uniformName = name + "[" + str(i) + "]." + fieldName;
3678
Alexis Hetuda163ed2018-01-03 16:36:14 -05003679 declareUniform(fieldType, uniformName, fieldRegisterIndex, samplersOnly, blockId, encoder);
3680 fieldRegisterIndex += samplersOnly ? fieldType.totalSamplerRegisterCount() : fieldType.totalRegisterCount();
Nicolas Capens0bac2852016-05-07 06:09:58 -04003681 }
3682 if(encoder)
3683 {
3684 encoder->exitAggregateType();
3685 }
3686 }
3687 }
3688 else
3689 {
3690 if(encoder)
3691 {
3692 encoder->enterAggregateType();
3693 }
Alexis Hetuda163ed2018-01-03 16:36:14 -05003694 for(const auto &field : fields)
Nicolas Capens0bac2852016-05-07 06:09:58 -04003695 {
Alexis Hetuda163ed2018-01-03 16:36:14 -05003696 const TType &fieldType = *(field->type());
3697 const TString &fieldName = field->name();
Nicolas Capens0bac2852016-05-07 06:09:58 -04003698 const TString uniformName = name + "." + fieldName;
3699
Alexis Hetuda163ed2018-01-03 16:36:14 -05003700 declareUniform(fieldType, uniformName, fieldRegisterIndex, samplersOnly, blockId, encoder);
3701 fieldRegisterIndex += samplersOnly ? fieldType.totalSamplerRegisterCount() : fieldType.totalRegisterCount();
Nicolas Capens0bac2852016-05-07 06:09:58 -04003702 }
3703 if(encoder)
3704 {
3705 encoder->exitAggregateType();
3706 }
3707 }
3708 }
3709 }
3710
Nicolas Capens0bac2852016-05-07 06:09:58 -04003711 int OutputASM::dim(TIntermNode *v)
3712 {
3713 TIntermTyped *vector = v->getAsTyped();
3714 ASSERT(vector && vector->isRegister());
3715 return vector->getNominalSize();
3716 }
3717
3718 int OutputASM::dim2(TIntermNode *m)
3719 {
3720 TIntermTyped *matrix = m->getAsTyped();
3721 ASSERT(matrix && matrix->isMatrix() && !matrix->isArray());
3722 return matrix->getSecondarySize();
3723 }
3724
Nicolas Capensac3f2fa2018-05-28 12:25:57 -04003725 // Sets iterations to ~0u if no loop count could be statically determined.
3726 OutputASM::LoopInfo::LoopInfo(TIntermLoop *node)
Nicolas Capens0bac2852016-05-07 06:09:58 -04003727 {
3728 // Parse loops of the form:
Nicolas Capensac3f2fa2018-05-28 12:25:57 -04003729 // for(int index = initial; index [comparator] limit; index [op] increment)
Nicolas Capens0bac2852016-05-07 06:09:58 -04003730
3731 // Parse index name and intial value
3732 if(node->getInit())
3733 {
3734 TIntermAggregate *init = node->getInit()->getAsAggregate();
3735
3736 if(init)
3737 {
3738 TIntermSequence &sequence = init->getSequence();
3739 TIntermTyped *variable = sequence[0]->getAsTyped();
3740
Nicolas Capense3f05552017-05-24 10:45:56 -04003741 if(variable && variable->getQualifier() == EvqTemporary && variable->getBasicType() == EbtInt)
Nicolas Capens0bac2852016-05-07 06:09:58 -04003742 {
3743 TIntermBinary *assign = variable->getAsBinaryNode();
3744
Nicolas Capensd0bfd912017-05-24 10:20:24 -04003745 if(assign && assign->getOp() == EOpInitialize)
Nicolas Capens0bac2852016-05-07 06:09:58 -04003746 {
3747 TIntermSymbol *symbol = assign->getLeft()->getAsSymbolNode();
3748 TIntermConstantUnion *constant = assign->getRight()->getAsConstantUnion();
3749
3750 if(symbol && constant)
3751 {
3752 if(constant->getBasicType() == EbtInt && constant->getNominalSize() == 1)
3753 {
3754 index = symbol;
3755 initial = constant->getUnionArrayPointer()[0].getIConst();
3756 }
3757 }
3758 }
3759 }
3760 }
3761 }
3762
3763 // Parse comparator and limit value
3764 if(index && node->getCondition())
3765 {
3766 TIntermBinary *test = node->getCondition()->getAsBinaryNode();
Alexis Hetu7be70cf2016-05-11 10:56:43 -04003767 TIntermSymbol *left = test ? test->getLeft()->getAsSymbolNode() : nullptr;
Nicolas Capens0bac2852016-05-07 06:09:58 -04003768
Alexis Hetu7be70cf2016-05-11 10:56:43 -04003769 if(left && (left->getId() == index->getId()))
Nicolas Capens0bac2852016-05-07 06:09:58 -04003770 {
3771 TIntermConstantUnion *constant = test->getRight()->getAsConstantUnion();
3772
3773 if(constant)
3774 {
3775 if(constant->getBasicType() == EbtInt && constant->getNominalSize() == 1)
3776 {
3777 comparator = test->getOp();
3778 limit = constant->getUnionArrayPointer()[0].getIConst();
3779 }
3780 }
3781 }
3782 }
3783
3784 // Parse increment
3785 if(index && comparator != EOpNull && node->getExpression())
3786 {
3787 TIntermBinary *binaryTerminal = node->getExpression()->getAsBinaryNode();
3788 TIntermUnary *unaryTerminal = node->getExpression()->getAsUnaryNode();
3789
3790 if(binaryTerminal)
3791 {
Nicolas Capensac3f2fa2018-05-28 12:25:57 -04003792 TIntermSymbol *operand = binaryTerminal->getLeft()->getAsSymbolNode();
Nicolas Capens0bac2852016-05-07 06:09:58 -04003793
Nicolas Capensac3f2fa2018-05-28 12:25:57 -04003794 if(operand && operand->getId() == index->getId())
Nicolas Capens0bac2852016-05-07 06:09:58 -04003795 {
Nicolas Capensac3f2fa2018-05-28 12:25:57 -04003796 TOperator op = binaryTerminal->getOp();
3797 TIntermConstantUnion *constant = binaryTerminal->getRight()->getAsConstantUnion();
Nicolas Capens0bac2852016-05-07 06:09:58 -04003798
Nicolas Capensac3f2fa2018-05-28 12:25:57 -04003799 if(constant)
3800 {
3801 if(constant->getBasicType() == EbtInt && constant->getNominalSize() == 1)
Nicolas Capens0bac2852016-05-07 06:09:58 -04003802 {
Nicolas Capensac3f2fa2018-05-28 12:25:57 -04003803 int value = constant->getUnionArrayPointer()[0].getIConst();
3804
3805 switch(op)
3806 {
3807 case EOpAddAssign: increment = value; break;
3808 case EOpSubAssign: increment = -value; break;
3809 default: increment = 0; break; // Rare cases left unhandled. Treated as non-deterministic.
3810 }
Nicolas Capens0bac2852016-05-07 06:09:58 -04003811 }
3812 }
3813 }
3814 }
3815 else if(unaryTerminal)
3816 {
Nicolas Capensac3f2fa2018-05-28 12:25:57 -04003817 TIntermSymbol *operand = unaryTerminal->getOperand()->getAsSymbolNode();
Nicolas Capens0bac2852016-05-07 06:09:58 -04003818
Nicolas Capensac3f2fa2018-05-28 12:25:57 -04003819 if(operand && operand->getId() == index->getId())
Nicolas Capens0bac2852016-05-07 06:09:58 -04003820 {
Nicolas Capensac3f2fa2018-05-28 12:25:57 -04003821 TOperator op = unaryTerminal->getOp();
3822
3823 switch(op)
3824 {
3825 case EOpPostIncrement: increment = 1; break;
3826 case EOpPostDecrement: increment = -1; break;
3827 case EOpPreIncrement: increment = 1; break;
3828 case EOpPreDecrement: increment = -1; break;
3829 default: increment = 0; break; // Rare cases left unhandled. Treated as non-deterministic.
3830 }
Nicolas Capens0bac2852016-05-07 06:09:58 -04003831 }
3832 }
3833 }
3834
3835 if(index && comparator != EOpNull && increment != 0)
3836 {
Nicolas Capensac3f2fa2018-05-28 12:25:57 -04003837 // Check the loop body for return statements or changes to the index variable that make it non-deterministic.
3838 LoopUnrollable loopUnrollable;
3839 bool unrollable = loopUnrollable.traverse(node, index->getId());
3840
3841 if(!unrollable)
3842 {
3843 iterations = ~0u;
3844 return;
3845 }
3846
Nicolas Capens0bac2852016-05-07 06:09:58 -04003847 if(comparator == EOpLessThanEqual)
3848 {
3849 comparator = EOpLessThan;
3850 limit += 1;
3851 }
Nicolas Capense3f05552017-05-24 10:45:56 -04003852 else if(comparator == EOpGreaterThanEqual)
3853 {
3854 comparator = EOpLessThan;
3855 limit -= 1;
3856 std::swap(initial, limit);
3857 increment = -increment;
3858 }
3859 else if(comparator == EOpGreaterThan)
3860 {
3861 comparator = EOpLessThan;
3862 std::swap(initial, limit);
3863 increment = -increment;
3864 }
Nicolas Capens0bac2852016-05-07 06:09:58 -04003865
3866 if(comparator == EOpLessThan)
3867 {
Nicolas Capens930b7002017-01-06 17:22:13 -05003868 if(!(initial < limit)) // Never loops
Nicolas Capens0bac2852016-05-07 06:09:58 -04003869 {
Nicolas Capensac3f2fa2018-05-28 12:25:57 -04003870 iterations = 0;
Nicolas Capens930b7002017-01-06 17:22:13 -05003871 }
Nicolas Capensac3f2fa2018-05-28 12:25:57 -04003872 else if(increment < 0)
Nicolas Capens930b7002017-01-06 17:22:13 -05003873 {
Nicolas Capensac3f2fa2018-05-28 12:25:57 -04003874 iterations = ~0u;
Nicolas Capens0bac2852016-05-07 06:09:58 -04003875 }
Nicolas Capensac3f2fa2018-05-28 12:25:57 -04003876 else
3877 {
3878 iterations = (limit - initial + abs(increment) - 1) / increment; // Ceiling division
3879 }
Nicolas Capens0bac2852016-05-07 06:09:58 -04003880 }
Nicolas Capensac3f2fa2018-05-28 12:25:57 -04003881 else
3882 {
3883 // Rare cases left unhandled. Treated as non-deterministic.
3884 iterations = ~0u;
3885 }
Nicolas Capens0bac2852016-05-07 06:09:58 -04003886 }
Nicolas Capens0bac2852016-05-07 06:09:58 -04003887 }
3888
Nicolas Capensac3f2fa2018-05-28 12:25:57 -04003889 bool LoopUnrollable::traverse(TIntermNode *node, int indexId)
Nicolas Capens0bac2852016-05-07 06:09:58 -04003890 {
Nicolas Capens0bac2852016-05-07 06:09:58 -04003891 loopUnrollable = true;
3892
Nicolas Capensac3f2fa2018-05-28 12:25:57 -04003893 loopDepth = 0;
3894 loopIndexId = indexId;
3895
Nicolas Capens0bac2852016-05-07 06:09:58 -04003896 node->traverse(this);
3897
3898 return loopUnrollable;
3899 }
3900
3901 bool LoopUnrollable::visitLoop(Visit visit, TIntermLoop *loop)
3902 {
3903 if(visit == PreVisit)
3904 {
3905 loopDepth++;
3906 }
3907 else if(visit == PostVisit)
3908 {
3909 loopDepth++;
3910 }
3911
3912 return true;
3913 }
3914
Nicolas Capensac3f2fa2018-05-28 12:25:57 -04003915 void LoopUnrollable::visitSymbol(TIntermSymbol *node)
3916 {
3917 // Check that the loop index is not used as the argument to a function out or inout parameter.
3918 if(node->getId() == loopIndexId)
3919 {
3920 if(node->getQualifier() == EvqOut || node->getQualifier() == EvqInOut)
3921 {
3922 loopUnrollable = false;
3923 }
3924 }
3925 }
3926
3927 bool LoopUnrollable::visitBinary(Visit visit, TIntermBinary *node)
3928 {
3929 if(!loopUnrollable)
3930 {
3931 return false;
3932 }
3933
3934 // Check that the loop index is not statically assigned to.
3935 TIntermSymbol *symbol = node->getLeft()->getAsSymbolNode();
3936 loopUnrollable = node->modifiesState() && symbol && (symbol->getId() == loopIndexId);
3937
3938 return loopUnrollable;
3939 }
3940
3941 bool LoopUnrollable::visitUnary(Visit visit, TIntermUnary *node)
3942 {
3943 if(!loopUnrollable)
3944 {
3945 return false;
3946 }
3947
3948 // Check that the loop index is not statically assigned to.
3949 TIntermSymbol *symbol = node->getOperand()->getAsSymbolNode();
3950 loopUnrollable = node->modifiesState() && symbol && (symbol->getId() == loopIndexId);
3951
3952 return loopUnrollable;
3953 }
3954
Nicolas Capens0bac2852016-05-07 06:09:58 -04003955 bool LoopUnrollable::visitBranch(Visit visit, TIntermBranch *node)
3956 {
3957 if(!loopUnrollable)
3958 {
3959 return false;
3960 }
3961
3962 if(!loopDepth)
3963 {
3964 return true;
3965 }
3966
3967 switch(node->getFlowOp())
3968 {
3969 case EOpKill:
3970 case EOpReturn:
3971 break;
3972 case EOpBreak:
3973 case EOpContinue:
3974 loopUnrollable = false;
3975 break;
3976 default: UNREACHABLE(node->getFlowOp());
3977 }
3978
3979 return loopUnrollable;
3980 }
3981
3982 bool LoopUnrollable::visitAggregate(Visit visit, TIntermAggregate *node)
3983 {
3984 return loopUnrollable;
3985 }
3986}