blob: b6b0eef0ca87ffc4d3ea5d7617c3d1da9d8840ce [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
1827 unsigned int iterations = loopCount(node);
1828
1829 if(iterations == 0)
1830 {
1831 return false;
1832 }
1833
1834 bool unroll = (iterations <= 4);
1835
1836 if(unroll)
1837 {
1838 LoopUnrollable loopUnrollable;
1839 unroll = loopUnrollable.traverse(node);
1840 }
1841
1842 TIntermNode *init = node->getInit();
1843 TIntermTyped *condition = node->getCondition();
1844 TIntermTyped *expression = node->getExpression();
1845 TIntermNode *body = node->getBody();
1846 Constant True(true);
1847
1848 if(node->getType() == ELoopDoWhile)
1849 {
1850 Temporary iterate(this);
1851 emit(sw::Shader::OPCODE_MOV, &iterate, &True);
1852
1853 emit(sw::Shader::OPCODE_WHILE, 0, &iterate); // FIXME: Implement real do-while
1854
1855 if(body)
1856 {
1857 body->traverse(this);
1858 }
1859
1860 emit(sw::Shader::OPCODE_TEST);
1861
1862 condition->traverse(this);
1863 emit(sw::Shader::OPCODE_MOV, &iterate, condition);
1864
1865 emit(sw::Shader::OPCODE_ENDWHILE);
1866 }
1867 else
1868 {
1869 if(init)
1870 {
1871 init->traverse(this);
1872 }
1873
1874 if(unroll)
1875 {
1876 for(unsigned int i = 0; i < iterations; i++)
1877 {
1878 // condition->traverse(this); // Condition could contain statements, but not in an unrollable loop
1879
1880 if(body)
1881 {
1882 body->traverse(this);
1883 }
1884
1885 if(expression)
1886 {
1887 expression->traverse(this);
1888 }
1889 }
1890 }
1891 else
1892 {
1893 if(condition)
1894 {
1895 condition->traverse(this);
1896 }
1897 else
1898 {
1899 condition = &True;
1900 }
1901
1902 emit(sw::Shader::OPCODE_WHILE, 0, condition);
1903
1904 if(body)
1905 {
1906 body->traverse(this);
1907 }
1908
1909 emit(sw::Shader::OPCODE_TEST);
1910
1911 if(expression)
1912 {
1913 expression->traverse(this);
1914 }
1915
1916 if(condition)
1917 {
1918 condition->traverse(this);
1919 }
1920
1921 emit(sw::Shader::OPCODE_ENDWHILE);
1922 }
1923 }
1924
1925 return false;
1926 }
1927
1928 bool OutputASM::visitBranch(Visit visit, TIntermBranch *node)
1929 {
1930 if(currentScope != emitScope)
1931 {
1932 return false;
1933 }
1934
1935 switch(node->getFlowOp())
1936 {
1937 case EOpKill: if(visit == PostVisit) emit(sw::Shader::OPCODE_DISCARD); break;
1938 case EOpBreak: if(visit == PostVisit) emit(sw::Shader::OPCODE_BREAK); break;
1939 case EOpContinue: if(visit == PostVisit) emit(sw::Shader::OPCODE_CONTINUE); break;
1940 case EOpReturn:
1941 if(visit == PostVisit)
1942 {
1943 TIntermTyped *value = node->getExpression();
1944
1945 if(value)
1946 {
1947 copy(functionArray[currentFunction].ret, value);
1948 }
1949
1950 emit(sw::Shader::OPCODE_LEAVE);
1951 }
1952 break;
1953 default: UNREACHABLE(node->getFlowOp());
1954 }
1955
1956 return true;
1957 }
1958
Alexis Hetu9aa83a92016-05-02 17:34:46 -04001959 bool OutputASM::visitSwitch(Visit visit, TIntermSwitch *node)
1960 {
1961 if(currentScope != emitScope)
1962 {
1963 return false;
1964 }
1965
1966 TIntermTyped* switchValue = node->getInit();
1967 TIntermAggregate* opList = node->getStatementList();
1968
1969 if(!switchValue || !opList)
1970 {
1971 return false;
1972 }
1973
1974 switchValue->traverse(this);
1975
1976 emit(sw::Shader::OPCODE_SWITCH);
1977
1978 TIntermSequence& sequence = opList->getSequence();
1979 TIntermSequence::iterator it = sequence.begin();
1980 TIntermSequence::iterator defaultIt = sequence.end();
1981 int nbCases = 0;
1982 for(; it != sequence.end(); ++it)
1983 {
1984 TIntermCase* currentCase = (*it)->getAsCaseNode();
1985 if(currentCase)
1986 {
1987 TIntermSequence::iterator caseIt = it;
1988
1989 TIntermTyped* condition = currentCase->getCondition();
1990 if(condition) // non default case
1991 {
1992 if(nbCases != 0)
1993 {
1994 emit(sw::Shader::OPCODE_ELSE);
1995 }
1996
1997 condition->traverse(this);
1998 Temporary result(this);
1999 emitBinary(sw::Shader::OPCODE_EQ, &result, switchValue, condition);
2000 emit(sw::Shader::OPCODE_IF, 0, &result);
2001 nbCases++;
2002
Nicolas Capens6d123312018-01-08 12:57:52 -05002003 // Emit the code for this case and all subsequent cases until we hit a break statement.
2004 // TODO: This can repeat a lot of code for switches with many fall-through cases.
Alexis Hetu9aa83a92016-05-02 17:34:46 -04002005 for(++caseIt; caseIt != sequence.end(); ++caseIt)
2006 {
2007 (*caseIt)->traverse(this);
Nicolas Capens6d123312018-01-08 12:57:52 -05002008
2009 // Stop if we encounter an unconditional branch (break, continue, return, or kill).
2010 // TODO: This doesn't work if the statement is at a deeper scope level (e.g. {break;}).
2011 // Note that this eliminates useless operations but shouldn't affect correctness.
2012 if((*caseIt)->getAsBranchNode())
Alexis Hetu9aa83a92016-05-02 17:34:46 -04002013 {
2014 break;
2015 }
2016 }
2017 }
2018 else
2019 {
2020 defaultIt = it; // The default case might not be the last case, keep it for last
2021 }
2022 }
2023 }
2024
2025 // If there's a default case, traverse it here
2026 if(defaultIt != sequence.end())
2027 {
2028 emit(sw::Shader::OPCODE_ELSE);
2029 for(++defaultIt; defaultIt != sequence.end(); ++defaultIt)
2030 {
2031 (*defaultIt)->traverse(this);
2032 if((*defaultIt)->getAsBranchNode()) // Kill, Break, Continue or Return
2033 {
2034 break;
2035 }
2036 }
2037 }
2038
2039 for(int i = 0; i < nbCases; ++i)
2040 {
2041 emit(sw::Shader::OPCODE_ENDIF);
2042 }
2043
2044 emit(sw::Shader::OPCODE_ENDSWITCH);
2045
2046 return false;
2047 }
2048
Nicolas Capens0bac2852016-05-07 06:09:58 -04002049 Instruction *OutputASM::emit(sw::Shader::Opcode op, TIntermTyped *dst, TIntermNode *src0, TIntermNode *src1, TIntermNode *src2, TIntermNode *src3, TIntermNode *src4)
2050 {
2051 return emit(op, dst, 0, src0, 0, src1, 0, src2, 0, src3, 0, src4, 0);
2052 }
2053
2054 Instruction *OutputASM::emit(sw::Shader::Opcode op, TIntermTyped *dst, int dstIndex, TIntermNode *src0, int index0, TIntermNode *src1, int index1,
2055 TIntermNode *src2, int index2, TIntermNode *src3, int index3, TIntermNode *src4, int index4)
2056 {
2057 Instruction *instruction = new Instruction(op);
2058
2059 if(dst)
2060 {
Nicolas Capens0530b452017-11-15 16:39:47 -05002061 destination(instruction->dst, dst, dstIndex);
Nicolas Capens0bac2852016-05-07 06:09:58 -04002062 }
2063
Alexis Hetu929c6b02017-11-07 16:04:25 -05002064 if(src0)
2065 {
2066 TIntermTyped* src = src0->getAsTyped();
2067 instruction->dst.partialPrecision = src && (src->getPrecision() <= EbpLow);
2068 }
2069
Nicolas Capens0530b452017-11-15 16:39:47 -05002070 source(instruction->src[0], src0, index0);
2071 source(instruction->src[1], src1, index1);
2072 source(instruction->src[2], src2, index2);
2073 source(instruction->src[3], src3, index3);
2074 source(instruction->src[4], src4, index4);
Nicolas Capens0bac2852016-05-07 06:09:58 -04002075
2076 shader->append(instruction);
2077
2078 return instruction;
2079 }
2080
2081 Instruction *OutputASM::emitCast(TIntermTyped *dst, TIntermTyped *src)
2082 {
2083 return emitCast(dst, 0, src, 0);
2084 }
2085
2086 Instruction *OutputASM::emitCast(TIntermTyped *dst, int dstIndex, TIntermTyped *src, int srcIndex)
2087 {
2088 switch(src->getBasicType())
2089 {
2090 case EbtBool:
2091 switch(dst->getBasicType())
2092 {
2093 case EbtInt: return emit(sw::Shader::OPCODE_B2I, dst, dstIndex, src, srcIndex);
2094 case EbtUInt: return emit(sw::Shader::OPCODE_B2I, dst, dstIndex, src, srcIndex);
2095 case EbtFloat: return emit(sw::Shader::OPCODE_B2F, dst, dstIndex, src, srcIndex);
2096 default: break;
2097 }
2098 break;
2099 case EbtInt:
2100 switch(dst->getBasicType())
2101 {
2102 case EbtBool: return emit(sw::Shader::OPCODE_I2B, dst, dstIndex, src, srcIndex);
2103 case EbtFloat: return emit(sw::Shader::OPCODE_I2F, dst, dstIndex, src, srcIndex);
2104 default: break;
2105 }
2106 break;
2107 case EbtUInt:
2108 switch(dst->getBasicType())
2109 {
2110 case EbtBool: return emit(sw::Shader::OPCODE_I2B, dst, dstIndex, src, srcIndex);
2111 case EbtFloat: return emit(sw::Shader::OPCODE_U2F, dst, dstIndex, src, srcIndex);
2112 default: break;
2113 }
2114 break;
2115 case EbtFloat:
2116 switch(dst->getBasicType())
2117 {
2118 case EbtBool: return emit(sw::Shader::OPCODE_F2B, dst, dstIndex, src, srcIndex);
2119 case EbtInt: return emit(sw::Shader::OPCODE_F2I, dst, dstIndex, src, srcIndex);
2120 case EbtUInt: return emit(sw::Shader::OPCODE_F2U, dst, dstIndex, src, srcIndex);
2121 default: break;
2122 }
2123 break;
2124 default:
2125 break;
2126 }
2127
2128 ASSERT((src->getBasicType() == dst->getBasicType()) ||
2129 ((src->getBasicType() == EbtInt) && (dst->getBasicType() == EbtUInt)) ||
2130 ((src->getBasicType() == EbtUInt) && (dst->getBasicType() == EbtInt)));
2131
2132 return emit(sw::Shader::OPCODE_MOV, dst, dstIndex, src, srcIndex);
2133 }
2134
2135 void OutputASM::emitBinary(sw::Shader::Opcode op, TIntermTyped *dst, TIntermNode *src0, TIntermNode *src1, TIntermNode *src2)
2136 {
2137 for(int index = 0; index < dst->elementRegisterCount(); index++)
2138 {
2139 emit(op, dst, index, src0, index, src1, index, src2, index);
2140 }
2141 }
2142
2143 void OutputASM::emitAssign(sw::Shader::Opcode op, TIntermTyped *result, TIntermTyped *lhs, TIntermTyped *src0, TIntermTyped *src1)
2144 {
2145 emitBinary(op, result, src0, src1);
2146 assignLvalue(lhs, result);
2147 }
2148
2149 void OutputASM::emitCmp(sw::Shader::Control cmpOp, TIntermTyped *dst, TIntermNode *left, TIntermNode *right, int index)
2150 {
2151 sw::Shader::Opcode opcode;
2152 switch(left->getAsTyped()->getBasicType())
2153 {
2154 case EbtBool:
2155 case EbtInt:
2156 opcode = sw::Shader::OPCODE_ICMP;
2157 break;
2158 case EbtUInt:
2159 opcode = sw::Shader::OPCODE_UCMP;
2160 break;
2161 default:
2162 opcode = sw::Shader::OPCODE_CMP;
2163 break;
2164 }
2165
2166 Instruction *cmp = emit(opcode, dst, 0, left, index, right, index);
2167 cmp->control = cmpOp;
2168 }
2169
2170 int componentCount(const TType &type, int registers)
2171 {
2172 if(registers == 0)
2173 {
2174 return 0;
2175 }
2176
2177 if(type.isArray() && registers >= type.elementRegisterCount())
2178 {
2179 int index = registers / type.elementRegisterCount();
2180 registers -= index * type.elementRegisterCount();
2181 return index * type.getElementSize() + componentCount(type, registers);
2182 }
2183
2184 if(type.isStruct() || type.isInterfaceBlock())
2185 {
2186 const TFieldList& fields = type.getStruct() ? type.getStruct()->fields() : type.getInterfaceBlock()->fields();
2187 int elements = 0;
2188
Alexis Hetuda163ed2018-01-03 16:36:14 -05002189 for(const auto &field : fields)
Nicolas Capens0bac2852016-05-07 06:09:58 -04002190 {
Alexis Hetuda163ed2018-01-03 16:36:14 -05002191 const TType &fieldType = *(field->type());
Nicolas Capens0bac2852016-05-07 06:09:58 -04002192
2193 if(fieldType.totalRegisterCount() <= registers)
2194 {
2195 registers -= fieldType.totalRegisterCount();
2196 elements += fieldType.getObjectSize();
2197 }
2198 else // Register within this field
2199 {
2200 return elements + componentCount(fieldType, registers);
2201 }
2202 }
2203 }
2204 else if(type.isMatrix())
2205 {
2206 return registers * type.registerSize();
2207 }
2208
2209 UNREACHABLE(0);
2210 return 0;
2211 }
2212
2213 int registerSize(const TType &type, int registers)
2214 {
2215 if(registers == 0)
2216 {
2217 if(type.isStruct())
2218 {
2219 return registerSize(*((*(type.getStruct()->fields().begin()))->type()), 0);
2220 }
2221 else if(type.isInterfaceBlock())
2222 {
2223 return registerSize(*((*(type.getInterfaceBlock()->fields().begin()))->type()), 0);
2224 }
2225
2226 return type.registerSize();
2227 }
2228
2229 if(type.isArray() && registers >= type.elementRegisterCount())
2230 {
2231 int index = registers / type.elementRegisterCount();
2232 registers -= index * type.elementRegisterCount();
2233 return registerSize(type, registers);
2234 }
2235
2236 if(type.isStruct() || type.isInterfaceBlock())
2237 {
2238 const TFieldList& fields = type.getStruct() ? type.getStruct()->fields() : type.getInterfaceBlock()->fields();
2239 int elements = 0;
2240
Alexis Hetuda163ed2018-01-03 16:36:14 -05002241 for(const auto &field : fields)
Nicolas Capens0bac2852016-05-07 06:09:58 -04002242 {
Alexis Hetuda163ed2018-01-03 16:36:14 -05002243 const TType &fieldType = *(field->type());
Nicolas Capens0bac2852016-05-07 06:09:58 -04002244
2245 if(fieldType.totalRegisterCount() <= registers)
2246 {
2247 registers -= fieldType.totalRegisterCount();
2248 elements += fieldType.getObjectSize();
2249 }
2250 else // Register within this field
2251 {
2252 return registerSize(fieldType, registers);
2253 }
2254 }
2255 }
2256 else if(type.isMatrix())
2257 {
2258 return registerSize(type, 0);
2259 }
2260
2261 UNREACHABLE(0);
2262 return 0;
2263 }
2264
2265 int OutputASM::getBlockId(TIntermTyped *arg)
2266 {
2267 if(arg)
2268 {
2269 const TType &type = arg->getType();
2270 TInterfaceBlock* block = type.getInterfaceBlock();
2271 if(block && (type.getQualifier() == EvqUniform))
2272 {
2273 // Make sure the uniform block is declared
2274 uniformRegister(arg);
2275
2276 const char* blockName = block->name().c_str();
2277
2278 // Fetch uniform block index from array of blocks
2279 for(ActiveUniformBlocks::const_iterator it = shaderObject->activeUniformBlocks.begin(); it != shaderObject->activeUniformBlocks.end(); ++it)
2280 {
2281 if(blockName == it->name)
2282 {
2283 return it->blockId;
2284 }
2285 }
2286
2287 ASSERT(false);
2288 }
2289 }
2290
2291 return -1;
2292 }
2293
2294 OutputASM::ArgumentInfo OutputASM::getArgumentInfo(TIntermTyped *arg, int index)
2295 {
2296 const TType &type = arg->getType();
2297 int blockId = getBlockId(arg);
2298 ArgumentInfo argumentInfo(BlockMemberInfo::getDefaultBlockInfo(), type, -1, -1);
2299 if(blockId != -1)
2300 {
2301 argumentInfo.bufferIndex = 0;
2302 for(int i = 0; i < blockId; ++i)
2303 {
2304 int blockArraySize = shaderObject->activeUniformBlocks[i].arraySize;
2305 argumentInfo.bufferIndex += blockArraySize > 0 ? blockArraySize : 1;
2306 }
2307
2308 const BlockDefinitionIndexMap& blockDefinition = blockDefinitions[blockId];
2309
2310 BlockDefinitionIndexMap::const_iterator itEnd = blockDefinition.end();
2311 BlockDefinitionIndexMap::const_iterator it = itEnd;
2312
2313 argumentInfo.clampedIndex = index;
2314 if(type.isInterfaceBlock())
2315 {
2316 // Offset index to the beginning of the selected instance
2317 int blockRegisters = type.elementRegisterCount();
2318 int bufferOffset = argumentInfo.clampedIndex / blockRegisters;
2319 argumentInfo.bufferIndex += bufferOffset;
2320 argumentInfo.clampedIndex -= bufferOffset * blockRegisters;
2321 }
2322
2323 int regIndex = registerIndex(arg);
2324 for(int i = regIndex + argumentInfo.clampedIndex; i >= regIndex; --i)
2325 {
2326 it = blockDefinition.find(i);
2327 if(it != itEnd)
2328 {
2329 argumentInfo.clampedIndex -= (i - regIndex);
2330 break;
2331 }
2332 }
2333 ASSERT(it != itEnd);
2334
2335 argumentInfo.typedMemberInfo = it->second;
2336
2337 int registerCount = argumentInfo.typedMemberInfo.type.totalRegisterCount();
2338 argumentInfo.clampedIndex = (argumentInfo.clampedIndex >= registerCount) ? registerCount - 1 : argumentInfo.clampedIndex;
2339 }
2340 else
2341 {
2342 argumentInfo.clampedIndex = (index >= arg->totalRegisterCount()) ? arg->totalRegisterCount() - 1 : index;
2343 }
2344
2345 return argumentInfo;
2346 }
2347
Nicolas Capens0530b452017-11-15 16:39:47 -05002348 void OutputASM::source(sw::Shader::SourceParameter &parameter, TIntermNode *argument, int index)
Nicolas Capens0bac2852016-05-07 06:09:58 -04002349 {
2350 if(argument)
2351 {
2352 TIntermTyped *arg = argument->getAsTyped();
2353 Temporary unpackedUniform(this);
2354
2355 const TType& srcType = arg->getType();
2356 TInterfaceBlock* srcBlock = srcType.getInterfaceBlock();
2357 if(srcBlock && (srcType.getQualifier() == EvqUniform))
2358 {
2359 const ArgumentInfo argumentInfo = getArgumentInfo(arg, index);
2360 const TType &memberType = argumentInfo.typedMemberInfo.type;
2361
2362 if(memberType.getBasicType() == EbtBool)
2363 {
Alexis Hetue97a31e2016-11-14 14:10:47 -05002364 ASSERT(argumentInfo.clampedIndex < (memberType.isArray() ? memberType.getArraySize() : 1)); // index < arraySize
Nicolas Capens0bac2852016-05-07 06:09:58 -04002365
2366 // Convert the packed bool, which is currently an int, to a true bool
2367 Instruction *instruction = new Instruction(sw::Shader::OPCODE_I2B);
2368 instruction->dst.type = sw::Shader::PARAMETER_TEMP;
2369 instruction->dst.index = registerIndex(&unpackedUniform);
2370 instruction->src[0].type = sw::Shader::PARAMETER_CONST;
2371 instruction->src[0].bufferIndex = argumentInfo.bufferIndex;
2372 instruction->src[0].index = argumentInfo.typedMemberInfo.offset + argumentInfo.clampedIndex * argumentInfo.typedMemberInfo.arrayStride;
2373
2374 shader->append(instruction);
2375
2376 arg = &unpackedUniform;
2377 index = 0;
2378 }
Alexis Hetud2742532018-01-23 16:53:41 -05002379 else if((memberType.getLayoutQualifier().matrixPacking == EmpRowMajor) && memberType.isMatrix())
Nicolas Capens0bac2852016-05-07 06:09:58 -04002380 {
2381 int numCols = memberType.getNominalSize();
2382 int numRows = memberType.getSecondarySize();
Nicolas Capens0bac2852016-05-07 06:09:58 -04002383
Alexis Hetue97a31e2016-11-14 14:10:47 -05002384 ASSERT(argumentInfo.clampedIndex < (numCols * (memberType.isArray() ? memberType.getArraySize() : 1))); // index < cols * arraySize
Nicolas Capens0bac2852016-05-07 06:09:58 -04002385
2386 unsigned int dstIndex = registerIndex(&unpackedUniform);
2387 unsigned int srcSwizzle = (argumentInfo.clampedIndex % numCols) * 0x55;
2388 int arrayIndex = argumentInfo.clampedIndex / numCols;
2389 int matrixStartOffset = argumentInfo.typedMemberInfo.offset + arrayIndex * argumentInfo.typedMemberInfo.arrayStride;
2390
2391 for(int j = 0; j < numRows; ++j)
2392 {
2393 // Transpose the row major matrix
2394 Instruction *instruction = new Instruction(sw::Shader::OPCODE_MOV);
2395 instruction->dst.type = sw::Shader::PARAMETER_TEMP;
2396 instruction->dst.index = dstIndex;
2397 instruction->dst.mask = 1 << j;
2398 instruction->src[0].type = sw::Shader::PARAMETER_CONST;
2399 instruction->src[0].bufferIndex = argumentInfo.bufferIndex;
2400 instruction->src[0].index = matrixStartOffset + j * argumentInfo.typedMemberInfo.matrixStride;
2401 instruction->src[0].swizzle = srcSwizzle;
2402
2403 shader->append(instruction);
2404 }
2405
2406 arg = &unpackedUniform;
2407 index = 0;
2408 }
2409 }
2410
2411 const ArgumentInfo argumentInfo = getArgumentInfo(arg, index);
2412 const TType &type = argumentInfo.typedMemberInfo.type;
2413
2414 int size = registerSize(type, argumentInfo.clampedIndex);
2415
2416 parameter.type = registerType(arg);
2417 parameter.bufferIndex = argumentInfo.bufferIndex;
2418
2419 if(arg->getAsConstantUnion() && arg->getAsConstantUnion()->getUnionArrayPointer())
2420 {
2421 int component = componentCount(type, argumentInfo.clampedIndex);
2422 ConstantUnion *constants = arg->getAsConstantUnion()->getUnionArrayPointer();
2423
2424 for(int i = 0; i < 4; i++)
2425 {
2426 if(size == 1) // Replicate
2427 {
2428 parameter.value[i] = constants[component + 0].getAsFloat();
2429 }
2430 else if(i < size)
2431 {
2432 parameter.value[i] = constants[component + i].getAsFloat();
2433 }
2434 else
2435 {
2436 parameter.value[i] = 0.0f;
2437 }
2438 }
2439 }
2440 else
2441 {
2442 parameter.index = registerIndex(arg) + argumentInfo.clampedIndex;
2443
2444 if(parameter.bufferIndex != -1)
2445 {
2446 int stride = (argumentInfo.typedMemberInfo.matrixStride > 0) ? argumentInfo.typedMemberInfo.matrixStride : argumentInfo.typedMemberInfo.arrayStride;
2447 parameter.index = argumentInfo.typedMemberInfo.offset + argumentInfo.clampedIndex * stride;
2448 }
2449 }
2450
2451 if(!IsSampler(arg->getBasicType()))
2452 {
2453 parameter.swizzle = readSwizzle(arg, size);
2454 }
2455 }
2456 }
2457
Nicolas Capens0530b452017-11-15 16:39:47 -05002458 void OutputASM::destination(sw::Shader::DestinationParameter &parameter, TIntermTyped *arg, int index)
2459 {
2460 parameter.type = registerType(arg);
2461 parameter.index = registerIndex(arg) + index;
Nicolas Capens3ae571e2017-11-16 15:28:14 -05002462 parameter.mask = writeMask(arg, index);
Nicolas Capens0530b452017-11-15 16:39:47 -05002463 }
2464
Nicolas Capens0bac2852016-05-07 06:09:58 -04002465 void OutputASM::copy(TIntermTyped *dst, TIntermNode *src, int offset)
2466 {
2467 for(int index = 0; index < dst->totalRegisterCount(); index++)
2468 {
2469 Instruction *mov = emit(sw::Shader::OPCODE_MOV, dst, index, src, offset + index);
Nicolas Capens0bac2852016-05-07 06:09:58 -04002470 }
2471 }
2472
2473 int swizzleElement(int swizzle, int index)
2474 {
2475 return (swizzle >> (index * 2)) & 0x03;
2476 }
2477
2478 int swizzleSwizzle(int leftSwizzle, int rightSwizzle)
2479 {
2480 return (swizzleElement(leftSwizzle, swizzleElement(rightSwizzle, 0)) << 0) |
2481 (swizzleElement(leftSwizzle, swizzleElement(rightSwizzle, 1)) << 2) |
2482 (swizzleElement(leftSwizzle, swizzleElement(rightSwizzle, 2)) << 4) |
2483 (swizzleElement(leftSwizzle, swizzleElement(rightSwizzle, 3)) << 6);
2484 }
2485
2486 void OutputASM::assignLvalue(TIntermTyped *dst, TIntermTyped *src)
2487 {
Nicolas Capens84249fd2017-11-09 11:20:51 -05002488 if((src->isVector() && (!dst->isVector() || (src->getNominalSize() != dst->getNominalSize()))) ||
2489 (src->isMatrix() && (!dst->isMatrix() || (src->getNominalSize() != dst->getNominalSize()) || (src->getSecondarySize() != dst->getSecondarySize()))))
Nicolas Capens0bac2852016-05-07 06:09:58 -04002490 {
2491 return mContext.error(src->getLine(), "Result type should match the l-value type in compound assignment", src->isVector() ? "vector" : "matrix");
2492 }
2493
2494 TIntermBinary *binary = dst->getAsBinaryNode();
2495
2496 if(binary && binary->getOp() == EOpIndexIndirect && binary->getLeft()->isVector() && dst->isScalar())
2497 {
2498 Instruction *insert = new Instruction(sw::Shader::OPCODE_INSERT);
2499
Nicolas Capens6986b282017-11-16 10:38:19 -05002500 lvalue(insert->dst, dst);
Nicolas Capens0bac2852016-05-07 06:09:58 -04002501
2502 insert->src[0].type = insert->dst.type;
2503 insert->src[0].index = insert->dst.index;
2504 insert->src[0].rel = insert->dst.rel;
Nicolas Capens0530b452017-11-15 16:39:47 -05002505 source(insert->src[1], src);
2506 source(insert->src[2], binary->getRight());
Nicolas Capens0bac2852016-05-07 06:09:58 -04002507
2508 shader->append(insert);
2509 }
2510 else
2511 {
Nicolas Capens84249fd2017-11-09 11:20:51 -05002512 Instruction *mov1 = new Instruction(sw::Shader::OPCODE_MOV);
2513
Nicolas Capens6986b282017-11-16 10:38:19 -05002514 int swizzle = lvalue(mov1->dst, dst);
Nicolas Capens84249fd2017-11-09 11:20:51 -05002515
Nicolas Capens0530b452017-11-15 16:39:47 -05002516 source(mov1->src[0], src);
Nicolas Capens84249fd2017-11-09 11:20:51 -05002517 mov1->src[0].swizzle = swizzleSwizzle(mov1->src[0].swizzle, swizzle);
2518
2519 shader->append(mov1);
2520
2521 for(int offset = 1; offset < dst->totalRegisterCount(); offset++)
Nicolas Capens0bac2852016-05-07 06:09:58 -04002522 {
2523 Instruction *mov = new Instruction(sw::Shader::OPCODE_MOV);
2524
Nicolas Capens84249fd2017-11-09 11:20:51 -05002525 mov->dst = mov1->dst;
Nicolas Capens0bac2852016-05-07 06:09:58 -04002526 mov->dst.index += offset;
Nicolas Capens84249fd2017-11-09 11:20:51 -05002527 mov->dst.mask = writeMask(dst, offset);
Nicolas Capens0bac2852016-05-07 06:09:58 -04002528
Nicolas Capens0530b452017-11-15 16:39:47 -05002529 source(mov->src[0], src, offset);
Nicolas Capens0bac2852016-05-07 06:09:58 -04002530
2531 shader->append(mov);
2532 }
2533 }
2534 }
2535
Nicolas Capensd469de22017-11-16 10:42:20 -05002536 void OutputASM::evaluateRvalue(TIntermTyped *node)
2537 {
2538 TIntermBinary *binary = node->getAsBinaryNode();
2539
2540 if(binary && binary->getOp() == EOpIndexIndirect && binary->getLeft()->isVector() && node->isScalar())
2541 {
2542 Instruction *insert = new Instruction(sw::Shader::OPCODE_EXTRACT);
2543
2544 destination(insert->dst, node);
2545
2546 Temporary address(this);
2547 unsigned char mask;
2548 TIntermTyped *root = nullptr;
2549 unsigned int offset = 0;
2550 int swizzle = lvalue(root, offset, insert->src[0].rel, mask, address, node);
2551
2552 source(insert->src[0], root, offset);
2553 insert->src[0].swizzle = swizzleSwizzle(insert->src[0].swizzle, swizzle);
2554
2555 source(insert->src[1], binary->getRight());
2556
2557 shader->append(insert);
2558 }
2559 else
2560 {
2561 Instruction *mov1 = new Instruction(sw::Shader::OPCODE_MOV);
2562
2563 destination(mov1->dst, node, 0);
2564
2565 Temporary address(this);
2566 unsigned char mask;
2567 TIntermTyped *root = nullptr;
2568 unsigned int offset = 0;
2569 int swizzle = lvalue(root, offset, mov1->src[0].rel, mask, address, node);
2570
2571 source(mov1->src[0], root, offset);
2572 mov1->src[0].swizzle = swizzleSwizzle(mov1->src[0].swizzle, swizzle);
2573
2574 shader->append(mov1);
2575
2576 for(int i = 1; i < node->totalRegisterCount(); i++)
2577 {
2578 Instruction *mov = emit(sw::Shader::OPCODE_MOV, node, i, root, offset + i);
2579 mov->src[0].rel = mov1->src[0].rel;
2580 }
2581 }
2582 }
2583
Nicolas Capens6986b282017-11-16 10:38:19 -05002584 int OutputASM::lvalue(sw::Shader::DestinationParameter &dst, TIntermTyped *node)
Nicolas Capens0bac2852016-05-07 06:09:58 -04002585 {
Nicolas Capens6986b282017-11-16 10:38:19 -05002586 Temporary address(this);
Nicolas Capens0530b452017-11-15 16:39:47 -05002587 TIntermTyped *root = nullptr;
2588 unsigned int offset = 0;
2589 unsigned char mask = 0xF;
2590 int swizzle = lvalue(root, offset, dst.rel, mask, address, node);
2591
2592 dst.type = registerType(root);
2593 dst.index = registerIndex(root) + offset;
2594 dst.mask = mask;
2595
2596 return swizzle;
2597 }
2598
2599 int OutputASM::lvalue(TIntermTyped *&root, unsigned int &offset, sw::Shader::Relative &rel, unsigned char &mask, Temporary &address, TIntermTyped *node)
2600 {
Nicolas Capens0bac2852016-05-07 06:09:58 -04002601 TIntermTyped *result = node;
2602 TIntermBinary *binary = node->getAsBinaryNode();
2603 TIntermSymbol *symbol = node->getAsSymbolNode();
2604
2605 if(binary)
2606 {
2607 TIntermTyped *left = binary->getLeft();
2608 TIntermTyped *right = binary->getRight();
2609
Nicolas Capens0530b452017-11-15 16:39:47 -05002610 int leftSwizzle = lvalue(root, offset, rel, mask, address, left); // Resolve the l-value of the left side
Nicolas Capens0bac2852016-05-07 06:09:58 -04002611
2612 switch(binary->getOp())
2613 {
2614 case EOpIndexDirect:
2615 {
2616 int rightIndex = right->getAsConstantUnion()->getIConst(0);
2617
2618 if(left->isRegister())
2619 {
Nicolas Capens0530b452017-11-15 16:39:47 -05002620 int leftMask = mask;
Nicolas Capens0bac2852016-05-07 06:09:58 -04002621
Nicolas Capens0530b452017-11-15 16:39:47 -05002622 mask = 1;
2623 while((leftMask & mask) == 0)
Nicolas Capens0bac2852016-05-07 06:09:58 -04002624 {
Nicolas Capens0530b452017-11-15 16:39:47 -05002625 mask = mask << 1;
Nicolas Capens0bac2852016-05-07 06:09:58 -04002626 }
2627
2628 int element = swizzleElement(leftSwizzle, rightIndex);
Nicolas Capens0530b452017-11-15 16:39:47 -05002629 mask = 1 << element;
Nicolas Capens0bac2852016-05-07 06:09:58 -04002630
2631 return element;
2632 }
2633 else if(left->isArray() || left->isMatrix())
2634 {
Nicolas Capens0530b452017-11-15 16:39:47 -05002635 offset += rightIndex * result->totalRegisterCount();
Nicolas Capens0bac2852016-05-07 06:09:58 -04002636 return 0xE4;
2637 }
2638 else UNREACHABLE(0);
2639 }
2640 break;
2641 case EOpIndexIndirect:
2642 {
Nicolas Capens84249fd2017-11-09 11:20:51 -05002643 right->traverse(this);
2644
Nicolas Capens0bac2852016-05-07 06:09:58 -04002645 if(left->isRegister())
2646 {
2647 // Requires INSERT instruction (handled by calling function)
2648 }
2649 else if(left->isArray() || left->isMatrix())
2650 {
2651 int scale = result->totalRegisterCount();
2652
Nicolas Capens0530b452017-11-15 16:39:47 -05002653 if(rel.type == sw::Shader::PARAMETER_VOID) // Use the index register as the relative address directly
Nicolas Capens0bac2852016-05-07 06:09:58 -04002654 {
2655 if(left->totalRegisterCount() > 1)
2656 {
2657 sw::Shader::SourceParameter relativeRegister;
Nicolas Capens0530b452017-11-15 16:39:47 -05002658 source(relativeRegister, right);
Nicolas Capens0bac2852016-05-07 06:09:58 -04002659
Nicolas Capens0530b452017-11-15 16:39:47 -05002660 rel.index = relativeRegister.index;
2661 rel.type = relativeRegister.type;
2662 rel.scale = scale;
2663 rel.deterministic = !(vertexShader && left->getQualifier() == EvqUniform);
Nicolas Capens0bac2852016-05-07 06:09:58 -04002664 }
2665 }
Nicolas Capens0530b452017-11-15 16:39:47 -05002666 else if(rel.index != registerIndex(&address)) // Move the previous index register to the address register
Nicolas Capens0bac2852016-05-07 06:09:58 -04002667 {
2668 if(scale == 1)
2669 {
Nicolas Capens0530b452017-11-15 16:39:47 -05002670 Constant oldScale((int)rel.scale);
Nicolas Capens0bac2852016-05-07 06:09:58 -04002671 Instruction *mad = emit(sw::Shader::OPCODE_IMAD, &address, &address, &oldScale, right);
Nicolas Capens0530b452017-11-15 16:39:47 -05002672 mad->src[0].index = rel.index;
2673 mad->src[0].type = rel.type;
Nicolas Capens0bac2852016-05-07 06:09:58 -04002674 }
2675 else
2676 {
Nicolas Capens0530b452017-11-15 16:39:47 -05002677 Constant oldScale((int)rel.scale);
Nicolas Capens0bac2852016-05-07 06:09:58 -04002678 Instruction *mul = emit(sw::Shader::OPCODE_IMUL, &address, &address, &oldScale);
Nicolas Capens0530b452017-11-15 16:39:47 -05002679 mul->src[0].index = rel.index;
2680 mul->src[0].type = rel.type;
Nicolas Capens0bac2852016-05-07 06:09:58 -04002681
2682 Constant newScale(scale);
2683 emit(sw::Shader::OPCODE_IMAD, &address, right, &newScale, &address);
2684 }
2685
Nicolas Capens0530b452017-11-15 16:39:47 -05002686 rel.type = sw::Shader::PARAMETER_TEMP;
2687 rel.index = registerIndex(&address);
2688 rel.scale = 1;
Nicolas Capens0bac2852016-05-07 06:09:58 -04002689 }
2690 else // Just add the new index to the address register
2691 {
2692 if(scale == 1)
2693 {
2694 emit(sw::Shader::OPCODE_IADD, &address, &address, right);
2695 }
2696 else
2697 {
2698 Constant newScale(scale);
2699 emit(sw::Shader::OPCODE_IMAD, &address, right, &newScale, &address);
2700 }
2701 }
2702 }
2703 else UNREACHABLE(0);
2704 }
2705 break;
2706 case EOpIndexDirectStruct:
2707 case EOpIndexDirectInterfaceBlock:
2708 {
2709 const TFieldList& fields = (binary->getOp() == EOpIndexDirectStruct) ?
2710 left->getType().getStruct()->fields() :
2711 left->getType().getInterfaceBlock()->fields();
2712 int index = right->getAsConstantUnion()->getIConst(0);
2713 int fieldOffset = 0;
2714
2715 for(int i = 0; i < index; i++)
2716 {
2717 fieldOffset += fields[i]->type()->totalRegisterCount();
2718 }
2719
Nicolas Capens0530b452017-11-15 16:39:47 -05002720 offset += fieldOffset;
2721 mask = writeMask(result);
Nicolas Capens0bac2852016-05-07 06:09:58 -04002722
2723 return 0xE4;
2724 }
2725 break;
2726 case EOpVectorSwizzle:
2727 {
2728 ASSERT(left->isRegister());
2729
Nicolas Capens0530b452017-11-15 16:39:47 -05002730 int leftMask = mask;
Nicolas Capens0bac2852016-05-07 06:09:58 -04002731
2732 int swizzle = 0;
2733 int rightMask = 0;
2734
2735 TIntermSequence &sequence = right->getAsAggregate()->getSequence();
2736
2737 for(unsigned int i = 0; i < sequence.size(); i++)
2738 {
2739 int index = sequence[i]->getAsConstantUnion()->getIConst(0);
2740
2741 int element = swizzleElement(leftSwizzle, index);
2742 rightMask = rightMask | (1 << element);
2743 swizzle = swizzle | swizzleElement(leftSwizzle, i) << (element * 2);
2744 }
2745
Nicolas Capens0530b452017-11-15 16:39:47 -05002746 mask = leftMask & rightMask;
Nicolas Capens0bac2852016-05-07 06:09:58 -04002747
2748 return swizzle;
2749 }
2750 break;
2751 default:
2752 UNREACHABLE(binary->getOp()); // Not an l-value operator
2753 break;
2754 }
2755 }
2756 else if(symbol)
2757 {
Nicolas Capens0530b452017-11-15 16:39:47 -05002758 root = symbol;
2759 offset = 0;
2760 mask = writeMask(symbol);
2761
2762 return 0xE4;
2763 }
2764 else
2765 {
2766 node->traverse(this);
2767
2768 root = node;
2769 offset = 0;
2770 mask = writeMask(node);
2771
Nicolas Capens0bac2852016-05-07 06:09:58 -04002772 return 0xE4;
2773 }
2774
2775 return 0xE4;
2776 }
2777
2778 sw::Shader::ParameterType OutputASM::registerType(TIntermTyped *operand)
2779 {
2780 if(isSamplerRegister(operand))
2781 {
2782 return sw::Shader::PARAMETER_SAMPLER;
2783 }
2784
2785 const TQualifier qualifier = operand->getQualifier();
Nicolas Capens0530b452017-11-15 16:39:47 -05002786 if((qualifier == EvqFragColor) || (qualifier == EvqFragData))
Nicolas Capens0bac2852016-05-07 06:09:58 -04002787 {
Nicolas Capens0530b452017-11-15 16:39:47 -05002788 if(((qualifier == EvqFragData) && (outputQualifier == EvqFragColor)) ||
2789 ((qualifier == EvqFragColor) && (outputQualifier == EvqFragData)))
Nicolas Capens0bac2852016-05-07 06:09:58 -04002790 {
2791 mContext.error(operand->getLine(), "static assignment to both gl_FragData and gl_FragColor", "");
2792 }
2793 outputQualifier = qualifier;
2794 }
2795
2796 if(qualifier == EvqConstExpr && (!operand->getAsConstantUnion() || !operand->getAsConstantUnion()->getUnionArrayPointer()))
2797 {
Nicolas Capens7cbb1de2017-12-22 08:54:18 -05002798 // Constant arrays are in the constant register file.
2799 if(operand->isArray() && operand->getArraySize() > 1)
2800 {
2801 return sw::Shader::PARAMETER_CONST;
2802 }
2803 else
2804 {
2805 return sw::Shader::PARAMETER_TEMP;
2806 }
Nicolas Capens0bac2852016-05-07 06:09:58 -04002807 }
2808
2809 switch(qualifier)
2810 {
2811 case EvqTemporary: return sw::Shader::PARAMETER_TEMP;
2812 case EvqGlobal: return sw::Shader::PARAMETER_TEMP;
2813 case EvqConstExpr: return sw::Shader::PARAMETER_FLOAT4LITERAL; // All converted to float
2814 case EvqAttribute: return sw::Shader::PARAMETER_INPUT;
2815 case EvqVaryingIn: return sw::Shader::PARAMETER_INPUT;
2816 case EvqVaryingOut: return sw::Shader::PARAMETER_OUTPUT;
2817 case EvqVertexIn: return sw::Shader::PARAMETER_INPUT;
2818 case EvqFragmentOut: return sw::Shader::PARAMETER_COLOROUT;
2819 case EvqVertexOut: return sw::Shader::PARAMETER_OUTPUT;
2820 case EvqFragmentIn: return sw::Shader::PARAMETER_INPUT;
2821 case EvqInvariantVaryingIn: return sw::Shader::PARAMETER_INPUT; // FIXME: Guarantee invariance at the backend
2822 case EvqInvariantVaryingOut: return sw::Shader::PARAMETER_OUTPUT; // FIXME: Guarantee invariance at the backend
2823 case EvqSmooth: return sw::Shader::PARAMETER_OUTPUT;
2824 case EvqFlat: return sw::Shader::PARAMETER_OUTPUT;
2825 case EvqCentroidOut: return sw::Shader::PARAMETER_OUTPUT;
2826 case EvqSmoothIn: return sw::Shader::PARAMETER_INPUT;
2827 case EvqFlatIn: return sw::Shader::PARAMETER_INPUT;
2828 case EvqCentroidIn: return sw::Shader::PARAMETER_INPUT;
2829 case EvqUniform: return sw::Shader::PARAMETER_CONST;
2830 case EvqIn: return sw::Shader::PARAMETER_TEMP;
2831 case EvqOut: return sw::Shader::PARAMETER_TEMP;
2832 case EvqInOut: return sw::Shader::PARAMETER_TEMP;
2833 case EvqConstReadOnly: return sw::Shader::PARAMETER_TEMP;
2834 case EvqPosition: return sw::Shader::PARAMETER_OUTPUT;
2835 case EvqPointSize: return sw::Shader::PARAMETER_OUTPUT;
2836 case EvqInstanceID: return sw::Shader::PARAMETER_MISCTYPE;
Alexis Hetu877ddfc2017-07-25 17:48:00 -04002837 case EvqVertexID: return sw::Shader::PARAMETER_MISCTYPE;
Nicolas Capens0bac2852016-05-07 06:09:58 -04002838 case EvqFragCoord: return sw::Shader::PARAMETER_MISCTYPE;
2839 case EvqFrontFacing: return sw::Shader::PARAMETER_MISCTYPE;
2840 case EvqPointCoord: return sw::Shader::PARAMETER_INPUT;
2841 case EvqFragColor: return sw::Shader::PARAMETER_COLOROUT;
2842 case EvqFragData: return sw::Shader::PARAMETER_COLOROUT;
2843 case EvqFragDepth: return sw::Shader::PARAMETER_DEPTHOUT;
2844 default: UNREACHABLE(qualifier);
2845 }
2846
2847 return sw::Shader::PARAMETER_VOID;
2848 }
2849
Alexis Hetu12b00502016-05-20 13:01:11 -04002850 bool OutputASM::hasFlatQualifier(TIntermTyped *operand)
2851 {
2852 const TQualifier qualifier = operand->getQualifier();
2853 return qualifier == EvqFlat || qualifier == EvqFlatOut || qualifier == EvqFlatIn;
2854 }
2855
Nicolas Capens0bac2852016-05-07 06:09:58 -04002856 unsigned int OutputASM::registerIndex(TIntermTyped *operand)
2857 {
2858 if(isSamplerRegister(operand))
2859 {
2860 return samplerRegister(operand);
2861 }
Alexis Hetud87b3a82018-04-24 11:13:33 -04002862 else if(operand->getType().totalSamplerRegisterCount() > 0) // Struct containing a sampler
2863 {
2864 samplerRegister(operand); // Make sure the sampler is declared
2865 }
Nicolas Capens0bac2852016-05-07 06:09:58 -04002866
2867 switch(operand->getQualifier())
2868 {
2869 case EvqTemporary: return temporaryRegister(operand);
2870 case EvqGlobal: return temporaryRegister(operand);
2871 case EvqConstExpr: return temporaryRegister(operand); // Unevaluated constant expression
2872 case EvqAttribute: return attributeRegister(operand);
2873 case EvqVaryingIn: return varyingRegister(operand);
2874 case EvqVaryingOut: return varyingRegister(operand);
2875 case EvqVertexIn: return attributeRegister(operand);
2876 case EvqFragmentOut: return fragmentOutputRegister(operand);
2877 case EvqVertexOut: return varyingRegister(operand);
2878 case EvqFragmentIn: return varyingRegister(operand);
2879 case EvqInvariantVaryingIn: return varyingRegister(operand);
2880 case EvqInvariantVaryingOut: return varyingRegister(operand);
2881 case EvqSmooth: return varyingRegister(operand);
2882 case EvqFlat: return varyingRegister(operand);
2883 case EvqCentroidOut: return varyingRegister(operand);
2884 case EvqSmoothIn: return varyingRegister(operand);
2885 case EvqFlatIn: return varyingRegister(operand);
2886 case EvqCentroidIn: return varyingRegister(operand);
2887 case EvqUniform: return uniformRegister(operand);
2888 case EvqIn: return temporaryRegister(operand);
2889 case EvqOut: return temporaryRegister(operand);
2890 case EvqInOut: return temporaryRegister(operand);
2891 case EvqConstReadOnly: return temporaryRegister(operand);
2892 case EvqPosition: return varyingRegister(operand);
2893 case EvqPointSize: return varyingRegister(operand);
Alexis Hetu877ddfc2017-07-25 17:48:00 -04002894 case EvqInstanceID: vertexShader->declareInstanceId(); return sw::Shader::InstanceIDIndex;
2895 case EvqVertexID: vertexShader->declareVertexId(); return sw::Shader::VertexIDIndex;
2896 case EvqFragCoord: pixelShader->declareVPos(); return sw::Shader::VPosIndex;
2897 case EvqFrontFacing: pixelShader->declareVFace(); return sw::Shader::VFaceIndex;
Nicolas Capens0bac2852016-05-07 06:09:58 -04002898 case EvqPointCoord: return varyingRegister(operand);
2899 case EvqFragColor: return 0;
2900 case EvqFragData: return fragmentOutputRegister(operand);
2901 case EvqFragDepth: return 0;
2902 default: UNREACHABLE(operand->getQualifier());
2903 }
2904
2905 return 0;
2906 }
2907
2908 int OutputASM::writeMask(TIntermTyped *destination, int index)
2909 {
2910 if(destination->getQualifier() == EvqPointSize)
2911 {
2912 return 0x2; // Point size stored in the y component
2913 }
2914
2915 return 0xF >> (4 - registerSize(destination->getType(), index));
2916 }
2917
2918 int OutputASM::readSwizzle(TIntermTyped *argument, int size)
2919 {
2920 if(argument->getQualifier() == EvqPointSize)
2921 {
2922 return 0x55; // Point size stored in the y component
2923 }
2924
2925 static const unsigned char swizzleSize[5] = {0x00, 0x00, 0x54, 0xA4, 0xE4}; // (void), xxxx, xyyy, xyzz, xyzw
2926
2927 return swizzleSize[size];
2928 }
2929
2930 // Conservatively checks whether an expression is fast to compute and has no side effects
2931 bool OutputASM::trivial(TIntermTyped *expression, int budget)
2932 {
2933 if(!expression->isRegister())
2934 {
2935 return false;
2936 }
2937
2938 return cost(expression, budget) >= 0;
2939 }
2940
2941 // Returns the remaining computing budget (if < 0 the expression is too expensive or has side effects)
2942 int OutputASM::cost(TIntermNode *expression, int budget)
2943 {
2944 if(budget < 0)
2945 {
2946 return budget;
2947 }
2948
2949 if(expression->getAsSymbolNode())
2950 {
2951 return budget;
2952 }
2953 else if(expression->getAsConstantUnion())
2954 {
2955 return budget;
2956 }
2957 else if(expression->getAsBinaryNode())
2958 {
2959 TIntermBinary *binary = expression->getAsBinaryNode();
2960
2961 switch(binary->getOp())
2962 {
2963 case EOpVectorSwizzle:
2964 case EOpIndexDirect:
2965 case EOpIndexDirectStruct:
2966 case EOpIndexDirectInterfaceBlock:
2967 return cost(binary->getLeft(), budget - 0);
2968 case EOpAdd:
2969 case EOpSub:
2970 case EOpMul:
2971 return cost(binary->getLeft(), cost(binary->getRight(), budget - 1));
2972 default:
2973 return -1;
2974 }
2975 }
2976 else if(expression->getAsUnaryNode())
2977 {
2978 TIntermUnary *unary = expression->getAsUnaryNode();
2979
2980 switch(unary->getOp())
2981 {
2982 case EOpAbs:
2983 case EOpNegative:
2984 return cost(unary->getOperand(), budget - 1);
2985 default:
2986 return -1;
2987 }
2988 }
2989 else if(expression->getAsSelectionNode())
2990 {
2991 TIntermSelection *selection = expression->getAsSelectionNode();
2992
2993 if(selection->usesTernaryOperator())
2994 {
2995 TIntermTyped *condition = selection->getCondition();
2996 TIntermNode *trueBlock = selection->getTrueBlock();
2997 TIntermNode *falseBlock = selection->getFalseBlock();
2998 TIntermConstantUnion *constantCondition = condition->getAsConstantUnion();
2999
3000 if(constantCondition)
3001 {
3002 bool trueCondition = constantCondition->getUnionArrayPointer()->getBConst();
3003
3004 if(trueCondition)
3005 {
3006 return cost(trueBlock, budget - 0);
3007 }
3008 else
3009 {
3010 return cost(falseBlock, budget - 0);
3011 }
3012 }
3013 else
3014 {
3015 return cost(trueBlock, cost(falseBlock, budget - 2));
3016 }
3017 }
3018 }
3019
3020 return -1;
3021 }
3022
3023 const Function *OutputASM::findFunction(const TString &name)
3024 {
3025 for(unsigned int f = 0; f < functionArray.size(); f++)
3026 {
3027 if(functionArray[f].name == name)
3028 {
3029 return &functionArray[f];
3030 }
3031 }
3032
3033 return 0;
3034 }
3035
3036 int OutputASM::temporaryRegister(TIntermTyped *temporary)
3037 {
Alexis Hetu329747c2018-04-09 13:47:34 -04003038 int index = allocate(temporaries, temporary);
3039 if(index >= sw::NUM_TEMPORARY_REGISTERS)
3040 {
3041 mContext.error(temporary->getLine(),
3042 "Too many temporary registers required to compile shader",
3043 pixelShader ? "pixel shader" : "vertex shader");
3044 }
3045 return index;
Nicolas Capens0bac2852016-05-07 06:09:58 -04003046 }
3047
Alexis Hetu49351232017-11-02 16:00:32 -04003048 void OutputASM::setPixelShaderInputs(const TType& type, int var, bool flat)
3049 {
3050 if(type.isStruct())
3051 {
3052 const TFieldList &fields = type.getStruct()->fields();
3053 int fieldVar = var;
Alexis Hetuda163ed2018-01-03 16:36:14 -05003054 for(const auto &field : fields)
Alexis Hetu49351232017-11-02 16:00:32 -04003055 {
Alexis Hetuda163ed2018-01-03 16:36:14 -05003056 const TType& fieldType = *(field->type());
Alexis Hetu49351232017-11-02 16:00:32 -04003057 setPixelShaderInputs(fieldType, fieldVar, flat);
3058 fieldVar += fieldType.totalRegisterCount();
3059 }
3060 }
3061 else
3062 {
3063 for(int i = 0; i < type.totalRegisterCount(); i++)
3064 {
3065 pixelShader->setInput(var + i, type.registerSize(), sw::Shader::Semantic(sw::Shader::USAGE_COLOR, var + i, flat));
3066 }
3067 }
3068 }
3069
Nicolas Capens0bac2852016-05-07 06:09:58 -04003070 int OutputASM::varyingRegister(TIntermTyped *varying)
3071 {
3072 int var = lookup(varyings, varying);
3073
3074 if(var == -1)
3075 {
3076 var = allocate(varyings, varying);
Nicolas Capens0bac2852016-05-07 06:09:58 -04003077 int registerCount = varying->totalRegisterCount();
3078
3079 if(pixelShader)
3080 {
Nicolas Capens3b4c93f2016-05-18 12:51:37 -04003081 if((var + registerCount) > sw::MAX_FRAGMENT_INPUTS)
Nicolas Capens0bac2852016-05-07 06:09:58 -04003082 {
3083 mContext.error(varying->getLine(), "Varyings packing failed: Too many varyings", "fragment shader");
3084 return 0;
3085 }
3086
3087 if(varying->getQualifier() == EvqPointCoord)
3088 {
3089 ASSERT(varying->isRegister());
Alexis Hetu49351232017-11-02 16:00:32 -04003090 pixelShader->setInput(var, varying->registerSize(), sw::Shader::Semantic(sw::Shader::USAGE_TEXCOORD, var));
Nicolas Capens0bac2852016-05-07 06:09:58 -04003091 }
3092 else
3093 {
Alexis Hetu49351232017-11-02 16:00:32 -04003094 setPixelShaderInputs(varying->getType(), var, hasFlatQualifier(varying));
Nicolas Capens0bac2852016-05-07 06:09:58 -04003095 }
3096 }
3097 else if(vertexShader)
3098 {
Nicolas Capensec0936c2016-05-18 12:32:02 -04003099 if((var + registerCount) > sw::MAX_VERTEX_OUTPUTS)
Nicolas Capens0bac2852016-05-07 06:09:58 -04003100 {
3101 mContext.error(varying->getLine(), "Varyings packing failed: Too many varyings", "vertex shader");
3102 return 0;
3103 }
3104
3105 if(varying->getQualifier() == EvqPosition)
3106 {
3107 ASSERT(varying->isRegister());
Alexis Hetu02ad0aa2016-08-02 11:18:14 -04003108 vertexShader->setPositionRegister(var);
Nicolas Capens0bac2852016-05-07 06:09:58 -04003109 }
3110 else if(varying->getQualifier() == EvqPointSize)
3111 {
3112 ASSERT(varying->isRegister());
Alexis Hetu02ad0aa2016-08-02 11:18:14 -04003113 vertexShader->setPointSizeRegister(var);
Nicolas Capens0bac2852016-05-07 06:09:58 -04003114 }
3115 else
3116 {
3117 // Semantic indexes for user varyings will be assigned during program link to match the pixel shader
3118 }
3119 }
3120 else UNREACHABLE(0);
3121
3122 declareVarying(varying, var);
3123 }
3124
3125 return var;
3126 }
3127
3128 void OutputASM::declareVarying(TIntermTyped *varying, int reg)
3129 {
3130 if(varying->getQualifier() != EvqPointCoord) // gl_PointCoord does not need linking
3131 {
Alexis Hetu49351232017-11-02 16:00:32 -04003132 TIntermSymbol *symbol = varying->getAsSymbolNode();
3133 declareVarying(varying->getType(), symbol->getSymbol(), reg);
3134 }
3135 }
Nicolas Capens0bac2852016-05-07 06:09:58 -04003136
Alexis Hetu49351232017-11-02 16:00:32 -04003137 void OutputASM::declareVarying(const TType &type, const TString &varyingName, int registerIndex)
3138 {
3139 const char *name = varyingName.c_str();
3140 VaryingList &activeVaryings = shaderObject->varyings;
3141
3142 TStructure* structure = type.getStruct();
3143 if(structure)
3144 {
3145 int fieldRegisterIndex = registerIndex;
3146
3147 const TFieldList &fields = type.getStruct()->fields();
Alexis Hetuda163ed2018-01-03 16:36:14 -05003148 for(const auto &field : fields)
Alexis Hetu49351232017-11-02 16:00:32 -04003149 {
Alexis Hetuda163ed2018-01-03 16:36:14 -05003150 const TType& fieldType = *(field->type());
3151 declareVarying(fieldType, varyingName + "." + field->name(), fieldRegisterIndex);
Alexis Hetu49351232017-11-02 16:00:32 -04003152 if(fieldRegisterIndex >= 0)
3153 {
3154 fieldRegisterIndex += fieldType.totalRegisterCount();
3155 }
3156 }
3157 }
3158 else
3159 {
Nicolas Capens0bac2852016-05-07 06:09:58 -04003160 // Check if this varying has been declared before without having a register assigned
3161 for(VaryingList::iterator v = activeVaryings.begin(); v != activeVaryings.end(); v++)
3162 {
3163 if(v->name == name)
3164 {
Alexis Hetu49351232017-11-02 16:00:32 -04003165 if(registerIndex >= 0)
Nicolas Capens0bac2852016-05-07 06:09:58 -04003166 {
Alexis Hetu924513c2018-01-05 15:48:12 -05003167 ASSERT(v->registerIndex < 0 || v->registerIndex == registerIndex);
3168 v->registerIndex = registerIndex;
Nicolas Capens0bac2852016-05-07 06:09:58 -04003169 }
3170
3171 return;
3172 }
3173 }
3174
Alexis Hetu924513c2018-01-05 15:48:12 -05003175 activeVaryings.push_back(glsl::Varying(type, name, registerIndex, 0));
Nicolas Capens0bac2852016-05-07 06:09:58 -04003176 }
3177 }
3178
Alexis Hetu930df972018-01-30 16:54:13 -05003179 void OutputASM::declareFragmentOutput(TIntermTyped *fragmentOutput)
3180 {
3181 int requestedLocation = fragmentOutput->getType().getLayoutQualifier().location;
Alexis Hetu17e2e2f2018-02-05 10:41:47 -05003182 int registerCount = fragmentOutput->totalRegisterCount();
3183 if(requestedLocation < 0)
Alexis Hetu930df972018-01-30 16:54:13 -05003184 {
Alexis Hetu3c1d6cf2018-02-06 10:54:49 -05003185 ASSERT(requestedLocation == -1); // All other negative values would have been prevented in TParseContext::parseLayoutQualifier
3186 return; // No requested location
Alexis Hetu930df972018-01-30 16:54:13 -05003187 }
Alexis Hetu17e2e2f2018-02-05 10:41:47 -05003188 else if((requestedLocation + registerCount) > sw::RENDERTARGETS)
Alexis Hetu930df972018-01-30 16:54:13 -05003189 {
3190 mContext.error(fragmentOutput->getLine(), "Fragment output location larger or equal to MAX_DRAW_BUFFERS", "fragment shader");
3191 }
Alexis Hetu17e2e2f2018-02-05 10:41:47 -05003192 else
3193 {
3194 int currentIndex = lookup(fragmentOutputs, fragmentOutput);
3195 if(requestedLocation != currentIndex)
3196 {
3197 if(currentIndex != -1)
3198 {
3199 mContext.error(fragmentOutput->getLine(), "Multiple locations for fragment output", "fragment shader");
3200 }
3201 else
3202 {
3203 if(fragmentOutputs.size() <= (size_t)requestedLocation)
3204 {
3205 while(fragmentOutputs.size() < (size_t)requestedLocation)
3206 {
3207 fragmentOutputs.push_back(nullptr);
3208 }
3209 for(int i = 0; i < registerCount; i++)
3210 {
3211 fragmentOutputs.push_back(fragmentOutput);
3212 }
3213 }
3214 else
3215 {
3216 for(int i = 0; i < registerCount; i++)
3217 {
3218 if(!fragmentOutputs[requestedLocation + i])
3219 {
3220 fragmentOutputs[requestedLocation + i] = fragmentOutput;
3221 }
3222 else
3223 {
3224 mContext.error(fragmentOutput->getLine(), "Fragment output location aliasing", "fragment shader");
3225 return;
3226 }
3227 }
3228 }
3229 }
3230 }
3231 }
Alexis Hetu930df972018-01-30 16:54:13 -05003232 }
3233
Nicolas Capens0bac2852016-05-07 06:09:58 -04003234 int OutputASM::uniformRegister(TIntermTyped *uniform)
3235 {
3236 const TType &type = uniform->getType();
3237 ASSERT(!IsSampler(type.getBasicType()));
3238 TInterfaceBlock *block = type.getAsInterfaceBlock();
3239 TIntermSymbol *symbol = uniform->getAsSymbolNode();
3240 ASSERT(symbol || block);
3241
3242 if(symbol || block)
3243 {
3244 TInterfaceBlock* parentBlock = type.getInterfaceBlock();
3245 bool isBlockMember = (!block && parentBlock);
3246 int index = isBlockMember ? lookup(uniforms, parentBlock) : lookup(uniforms, uniform);
3247
3248 if(index == -1 || isBlockMember)
3249 {
3250 if(index == -1)
3251 {
3252 index = allocate(uniforms, uniform);
3253 }
3254
3255 // Verify if the current uniform is a member of an already declared block
3256 const TString &name = symbol ? symbol->getSymbol() : block->name();
3257 int blockMemberIndex = blockMemberLookup(type, name, index);
3258 if(blockMemberIndex == -1)
3259 {
Alexis Hetuda163ed2018-01-03 16:36:14 -05003260 declareUniform(type, name, index, false);
Nicolas Capens0bac2852016-05-07 06:09:58 -04003261 }
3262 else
3263 {
3264 index = blockMemberIndex;
3265 }
3266 }
3267
3268 return index;
3269 }
3270
3271 return 0;
3272 }
3273
3274 int OutputASM::attributeRegister(TIntermTyped *attribute)
3275 {
3276 ASSERT(!attribute->isArray());
3277
3278 int index = lookup(attributes, attribute);
3279
3280 if(index == -1)
3281 {
3282 TIntermSymbol *symbol = attribute->getAsSymbolNode();
3283 ASSERT(symbol);
3284
3285 if(symbol)
3286 {
3287 index = allocate(attributes, attribute);
3288 const TType &type = attribute->getType();
3289 int registerCount = attribute->totalRegisterCount();
Alexis Hetub7508b82016-09-22 15:36:45 -04003290 sw::VertexShader::AttribType attribType = sw::VertexShader::ATTRIBTYPE_FLOAT;
3291 switch(type.getBasicType())
3292 {
3293 case EbtInt:
3294 attribType = sw::VertexShader::ATTRIBTYPE_INT;
3295 break;
3296 case EbtUInt:
3297 attribType = sw::VertexShader::ATTRIBTYPE_UINT;
3298 break;
3299 case EbtFloat:
3300 default:
3301 break;
3302 }
Nicolas Capens0bac2852016-05-07 06:09:58 -04003303
Nicolas Capensf0aef1a2016-05-18 14:44:21 -04003304 if(vertexShader && (index + registerCount) <= sw::MAX_VERTEX_INPUTS)
Nicolas Capens0bac2852016-05-07 06:09:58 -04003305 {
3306 for(int i = 0; i < registerCount; i++)
3307 {
Alexis Hetub7508b82016-09-22 15:36:45 -04003308 vertexShader->setInput(index + i, sw::Shader::Semantic(sw::Shader::USAGE_TEXCOORD, index + i, false), attribType);
Nicolas Capens0bac2852016-05-07 06:09:58 -04003309 }
3310 }
3311
3312 ActiveAttributes &activeAttributes = shaderObject->activeAttributes;
3313
3314 const char *name = symbol->getSymbol().c_str();
3315 activeAttributes.push_back(Attribute(glVariableType(type), name, type.getArraySize(), type.getLayoutQualifier().location, index));
3316 }
3317 }
3318
3319 return index;
3320 }
3321
3322 int OutputASM::fragmentOutputRegister(TIntermTyped *fragmentOutput)
3323 {
3324 return allocate(fragmentOutputs, fragmentOutput);
3325 }
3326
3327 int OutputASM::samplerRegister(TIntermTyped *sampler)
3328 {
3329 const TType &type = sampler->getType();
3330 ASSERT(IsSampler(type.getBasicType()) || type.isStruct()); // Structures can contain samplers
3331
3332 TIntermSymbol *symbol = sampler->getAsSymbolNode();
3333 TIntermBinary *binary = sampler->getAsBinaryNode();
3334
Nicolas Capensfcb70fd2017-05-17 15:16:51 -04003335 if(symbol)
Nicolas Capens0bac2852016-05-07 06:09:58 -04003336 {
Nicolas Capensfcb70fd2017-05-17 15:16:51 -04003337 switch(type.getQualifier())
3338 {
3339 case EvqUniform:
3340 return samplerRegister(symbol);
3341 case EvqIn:
3342 case EvqConstReadOnly:
3343 // Function arguments are not (uniform) sampler registers
3344 return -1;
3345 default:
3346 UNREACHABLE(type.getQualifier());
3347 }
Nicolas Capens0bac2852016-05-07 06:09:58 -04003348 }
3349 else if(binary)
3350 {
3351 TIntermTyped *left = binary->getLeft();
3352 TIntermTyped *right = binary->getRight();
3353 const TType &leftType = left->getType();
3354 int index = right->getAsConstantUnion() ? right->getAsConstantUnion()->getIConst(0) : 0;
3355 int offset = 0;
3356
3357 switch(binary->getOp())
3358 {
3359 case EOpIndexDirect:
3360 ASSERT(left->isArray());
Alexis Hetuda163ed2018-01-03 16:36:14 -05003361 offset = index * leftType.samplerRegisterCount();
Nicolas Capens0bac2852016-05-07 06:09:58 -04003362 break;
3363 case EOpIndexDirectStruct:
3364 ASSERT(leftType.isStruct());
3365 {
3366 const TFieldList &fields = leftType.getStruct()->fields();
3367
3368 for(int i = 0; i < index; i++)
3369 {
Alexis Hetuda163ed2018-01-03 16:36:14 -05003370 offset += fields[i]->type()->totalSamplerRegisterCount();
Nicolas Capens0bac2852016-05-07 06:09:58 -04003371 }
3372 }
3373 break;
3374 case EOpIndexIndirect: // Indirect indexing produces a temporary, not a sampler register
3375 return -1;
3376 case EOpIndexDirectInterfaceBlock: // Interface blocks can't contain samplers
3377 default:
3378 UNREACHABLE(binary->getOp());
3379 return -1;
3380 }
3381
3382 int base = samplerRegister(left);
3383
3384 if(base < 0)
3385 {
3386 return -1;
3387 }
3388
3389 return base + offset;
3390 }
3391
3392 UNREACHABLE(0);
Nicolas Capensfcb70fd2017-05-17 15:16:51 -04003393 return -1; // Not a (uniform) sampler register
Nicolas Capens0bac2852016-05-07 06:09:58 -04003394 }
3395
3396 int OutputASM::samplerRegister(TIntermSymbol *sampler)
3397 {
3398 const TType &type = sampler->getType();
3399 ASSERT(IsSampler(type.getBasicType()) || type.isStruct()); // Structures can contain samplers
3400
3401 int index = lookup(samplers, sampler);
3402
3403 if(index == -1)
3404 {
Alexis Hetuda163ed2018-01-03 16:36:14 -05003405 index = allocate(samplers, sampler, true);
Nicolas Capens0bac2852016-05-07 06:09:58 -04003406
3407 if(sampler->getQualifier() == EvqUniform)
3408 {
3409 const char *name = sampler->getSymbol().c_str();
Alexis Hetuda163ed2018-01-03 16:36:14 -05003410 declareUniform(type, name, index, true);
Nicolas Capens0bac2852016-05-07 06:09:58 -04003411 }
3412 }
3413
3414 return index;
3415 }
3416
3417 bool OutputASM::isSamplerRegister(TIntermTyped *operand)
3418 {
3419 return operand && IsSampler(operand->getBasicType()) && samplerRegister(operand) >= 0;
3420 }
3421
3422 int OutputASM::lookup(VariableArray &list, TIntermTyped *variable)
3423 {
3424 for(unsigned int i = 0; i < list.size(); i++)
3425 {
3426 if(list[i] == variable)
3427 {
3428 return i; // Pointer match
3429 }
3430 }
3431
3432 TIntermSymbol *varSymbol = variable->getAsSymbolNode();
3433 TInterfaceBlock *varBlock = variable->getType().getAsInterfaceBlock();
3434
3435 if(varBlock)
3436 {
3437 for(unsigned int i = 0; i < list.size(); i++)
3438 {
3439 if(list[i])
3440 {
3441 TInterfaceBlock *listBlock = list[i]->getType().getAsInterfaceBlock();
3442
3443 if(listBlock)
3444 {
3445 if(listBlock->name() == varBlock->name())
3446 {
3447 ASSERT(listBlock->arraySize() == varBlock->arraySize());
3448 ASSERT(listBlock->fields() == varBlock->fields());
3449 ASSERT(listBlock->blockStorage() == varBlock->blockStorage());
3450 ASSERT(listBlock->matrixPacking() == varBlock->matrixPacking());
3451
3452 return i;
3453 }
3454 }
3455 }
3456 }
3457 }
3458 else if(varSymbol)
3459 {
3460 for(unsigned int i = 0; i < list.size(); i++)
3461 {
3462 if(list[i])
3463 {
3464 TIntermSymbol *listSymbol = list[i]->getAsSymbolNode();
3465
3466 if(listSymbol)
3467 {
3468 if(listSymbol->getId() == varSymbol->getId())
3469 {
3470 ASSERT(listSymbol->getSymbol() == varSymbol->getSymbol());
3471 ASSERT(listSymbol->getType() == varSymbol->getType());
3472 ASSERT(listSymbol->getQualifier() == varSymbol->getQualifier());
3473
3474 return i;
3475 }
3476 }
3477 }
3478 }
3479 }
3480
3481 return -1;
3482 }
3483
3484 int OutputASM::lookup(VariableArray &list, TInterfaceBlock *block)
3485 {
3486 for(unsigned int i = 0; i < list.size(); i++)
3487 {
3488 if(list[i] && (list[i]->getType().getInterfaceBlock() == block))
3489 {
3490 return i; // Pointer match
3491 }
3492 }
3493 return -1;
3494 }
3495
Alexis Hetuda163ed2018-01-03 16:36:14 -05003496 int OutputASM::allocate(VariableArray &list, TIntermTyped *variable, bool samplersOnly)
Nicolas Capens0bac2852016-05-07 06:09:58 -04003497 {
3498 int index = lookup(list, variable);
3499
3500 if(index == -1)
3501 {
Alexis Hetuda163ed2018-01-03 16:36:14 -05003502 unsigned int registerCount = variable->blockRegisterCount(samplersOnly);
Nicolas Capens0bac2852016-05-07 06:09:58 -04003503
3504 for(unsigned int i = 0; i < list.size(); i++)
3505 {
3506 if(list[i] == 0)
3507 {
3508 unsigned int j = 1;
3509 for( ; j < registerCount && (i + j) < list.size(); j++)
3510 {
3511 if(list[i + j] != 0)
3512 {
3513 break;
3514 }
3515 }
3516
3517 if(j == registerCount) // Found free slots
3518 {
3519 for(unsigned int j = 0; j < registerCount; j++)
3520 {
3521 list[i + j] = variable;
3522 }
3523
3524 return i;
3525 }
3526 }
3527 }
3528
3529 index = list.size();
3530
3531 for(unsigned int i = 0; i < registerCount; i++)
3532 {
3533 list.push_back(variable);
3534 }
3535 }
3536
3537 return index;
3538 }
3539
3540 void OutputASM::free(VariableArray &list, TIntermTyped *variable)
3541 {
3542 int index = lookup(list, variable);
3543
3544 if(index >= 0)
3545 {
3546 list[index] = 0;
3547 }
3548 }
3549
3550 int OutputASM::blockMemberLookup(const TType &type, const TString &name, int registerIndex)
3551 {
3552 const TInterfaceBlock *block = type.getInterfaceBlock();
3553
3554 if(block)
3555 {
3556 ActiveUniformBlocks &activeUniformBlocks = shaderObject->activeUniformBlocks;
3557 const TFieldList& fields = block->fields();
3558 const TString &blockName = block->name();
3559 int fieldRegisterIndex = registerIndex;
3560
3561 if(!type.isInterfaceBlock())
3562 {
3563 // This is a uniform that's part of a block, let's see if the block is already defined
3564 for(size_t i = 0; i < activeUniformBlocks.size(); ++i)
3565 {
3566 if(activeUniformBlocks[i].name == blockName.c_str())
3567 {
3568 // The block is already defined, find the register for the current uniform and return it
3569 for(size_t j = 0; j < fields.size(); j++)
3570 {
3571 const TString &fieldName = fields[j]->name();
3572 if(fieldName == name)
3573 {
3574 return fieldRegisterIndex;
3575 }
3576
3577 fieldRegisterIndex += fields[j]->type()->totalRegisterCount();
3578 }
3579
3580 ASSERT(false);
3581 return fieldRegisterIndex;
3582 }
3583 }
3584 }
3585 }
3586
3587 return -1;
3588 }
3589
Alexis Hetuda163ed2018-01-03 16:36:14 -05003590 void OutputASM::declareUniform(const TType &type, const TString &name, int registerIndex, bool samplersOnly, int blockId, BlockLayoutEncoder* encoder)
Nicolas Capens0bac2852016-05-07 06:09:58 -04003591 {
3592 const TStructure *structure = type.getStruct();
3593 const TInterfaceBlock *block = (type.isInterfaceBlock() || (blockId == -1)) ? type.getInterfaceBlock() : nullptr;
3594
3595 if(!structure && !block)
3596 {
3597 ActiveUniforms &activeUniforms = shaderObject->activeUniforms;
3598 const BlockMemberInfo blockInfo = encoder ? encoder->encodeType(type) : BlockMemberInfo::getDefaultBlockInfo();
3599 if(blockId >= 0)
3600 {
Nicolas Capensbb2bcae2018-02-05 11:12:10 -05003601 blockDefinitions[blockId].insert(BlockDefinitionIndexMap::value_type(registerIndex, TypedMemberInfo(blockInfo, type)));
Nicolas Capens0bac2852016-05-07 06:09:58 -04003602 shaderObject->activeUniformBlocks[blockId].fields.push_back(activeUniforms.size());
3603 }
3604 int fieldRegisterIndex = encoder ? shaderObject->activeUniformBlocks[blockId].registerIndex + BlockLayoutEncoder::getBlockRegister(blockInfo) : registerIndex;
Alexis Hetuda163ed2018-01-03 16:36:14 -05003605 bool isSampler = IsSampler(type.getBasicType());
3606 if(isSampler && samplersOnly)
Nicolas Capens0bac2852016-05-07 06:09:58 -04003607 {
3608 for(int i = 0; i < type.totalRegisterCount(); i++)
3609 {
3610 shader->declareSampler(fieldRegisterIndex + i);
3611 }
3612 }
Alexis Hetu924513c2018-01-05 15:48:12 -05003613 if(isSampler == samplersOnly)
Alexis Hetuda163ed2018-01-03 16:36:14 -05003614 {
Alexis Hetu924513c2018-01-05 15:48:12 -05003615 activeUniforms.push_back(Uniform(type, name.c_str(), fieldRegisterIndex, blockId, blockInfo));
Alexis Hetuda163ed2018-01-03 16:36:14 -05003616 }
Nicolas Capens0bac2852016-05-07 06:09:58 -04003617 }
3618 else if(block)
3619 {
3620 ActiveUniformBlocks &activeUniformBlocks = shaderObject->activeUniformBlocks;
3621 const TFieldList& fields = block->fields();
3622 const TString &blockName = block->name();
3623 int fieldRegisterIndex = registerIndex;
3624 bool isUniformBlockMember = !type.isInterfaceBlock() && (blockId == -1);
3625
3626 blockId = activeUniformBlocks.size();
3627 bool isRowMajor = block->matrixPacking() == EmpRowMajor;
3628 activeUniformBlocks.push_back(UniformBlock(blockName.c_str(), 0, block->arraySize(),
3629 block->blockStorage(), isRowMajor, registerIndex, blockId));
3630 blockDefinitions.push_back(BlockDefinitionIndexMap());
3631
Alexis Hetud2742532018-01-23 16:53:41 -05003632 Std140BlockEncoder currentBlockEncoder;
Nicolas Capens0bac2852016-05-07 06:09:58 -04003633 currentBlockEncoder.enterAggregateType();
Alexis Hetuda163ed2018-01-03 16:36:14 -05003634 for(const auto &field : fields)
Nicolas Capens0bac2852016-05-07 06:09:58 -04003635 {
Alexis Hetuda163ed2018-01-03 16:36:14 -05003636 const TType &fieldType = *(field->type());
3637 const TString &fieldName = field->name();
Nicolas Capens0bac2852016-05-07 06:09:58 -04003638 if(isUniformBlockMember && (fieldName == name))
3639 {
3640 registerIndex = fieldRegisterIndex;
3641 }
3642
3643 const TString uniformName = block->hasInstanceName() ? blockName + "." + fieldName : fieldName;
3644
Alexis Hetuda163ed2018-01-03 16:36:14 -05003645 declareUniform(fieldType, uniformName, fieldRegisterIndex, samplersOnly, blockId, &currentBlockEncoder);
Nicolas Capens0bac2852016-05-07 06:09:58 -04003646 fieldRegisterIndex += fieldType.totalRegisterCount();
3647 }
3648 currentBlockEncoder.exitAggregateType();
3649 activeUniformBlocks[blockId].dataSize = currentBlockEncoder.getBlockSize();
3650 }
3651 else
3652 {
Alexis Hetu924513c2018-01-05 15:48:12 -05003653 // Store struct for program link time validation
3654 shaderObject->activeUniformStructs.push_back(Uniform(type, name.c_str(), registerIndex, -1, BlockMemberInfo::getDefaultBlockInfo()));
3655
Nicolas Capens0bac2852016-05-07 06:09:58 -04003656 int fieldRegisterIndex = registerIndex;
3657
3658 const TFieldList& fields = structure->fields();
3659 if(type.isArray() && (structure || type.isInterfaceBlock()))
3660 {
3661 for(int i = 0; i < type.getArraySize(); i++)
3662 {
3663 if(encoder)
3664 {
3665 encoder->enterAggregateType();
3666 }
Alexis Hetuda163ed2018-01-03 16:36:14 -05003667 for(const auto &field : fields)
Nicolas Capens0bac2852016-05-07 06:09:58 -04003668 {
Alexis Hetuda163ed2018-01-03 16:36:14 -05003669 const TType &fieldType = *(field->type());
3670 const TString &fieldName = field->name();
Nicolas Capens0bac2852016-05-07 06:09:58 -04003671 const TString uniformName = name + "[" + str(i) + "]." + fieldName;
3672
Alexis Hetuda163ed2018-01-03 16:36:14 -05003673 declareUniform(fieldType, uniformName, fieldRegisterIndex, samplersOnly, blockId, encoder);
3674 fieldRegisterIndex += samplersOnly ? fieldType.totalSamplerRegisterCount() : fieldType.totalRegisterCount();
Nicolas Capens0bac2852016-05-07 06:09:58 -04003675 }
3676 if(encoder)
3677 {
3678 encoder->exitAggregateType();
3679 }
3680 }
3681 }
3682 else
3683 {
3684 if(encoder)
3685 {
3686 encoder->enterAggregateType();
3687 }
Alexis Hetuda163ed2018-01-03 16:36:14 -05003688 for(const auto &field : fields)
Nicolas Capens0bac2852016-05-07 06:09:58 -04003689 {
Alexis Hetuda163ed2018-01-03 16:36:14 -05003690 const TType &fieldType = *(field->type());
3691 const TString &fieldName = field->name();
Nicolas Capens0bac2852016-05-07 06:09:58 -04003692 const TString uniformName = name + "." + fieldName;
3693
Alexis Hetuda163ed2018-01-03 16:36:14 -05003694 declareUniform(fieldType, uniformName, fieldRegisterIndex, samplersOnly, blockId, encoder);
3695 fieldRegisterIndex += samplersOnly ? fieldType.totalSamplerRegisterCount() : fieldType.totalRegisterCount();
Nicolas Capens0bac2852016-05-07 06:09:58 -04003696 }
3697 if(encoder)
3698 {
3699 encoder->exitAggregateType();
3700 }
3701 }
3702 }
3703 }
3704
Nicolas Capens0bac2852016-05-07 06:09:58 -04003705 int OutputASM::dim(TIntermNode *v)
3706 {
3707 TIntermTyped *vector = v->getAsTyped();
3708 ASSERT(vector && vector->isRegister());
3709 return vector->getNominalSize();
3710 }
3711
3712 int OutputASM::dim2(TIntermNode *m)
3713 {
3714 TIntermTyped *matrix = m->getAsTyped();
3715 ASSERT(matrix && matrix->isMatrix() && !matrix->isArray());
3716 return matrix->getSecondarySize();
3717 }
3718
3719 // Returns ~0u if no loop count could be determined
3720 unsigned int OutputASM::loopCount(TIntermLoop *node)
3721 {
3722 // Parse loops of the form:
3723 // for(int index = initial; index [comparator] limit; index += increment)
3724 TIntermSymbol *index = 0;
3725 TOperator comparator = EOpNull;
3726 int initial = 0;
3727 int limit = 0;
3728 int increment = 0;
3729
3730 // Parse index name and intial value
3731 if(node->getInit())
3732 {
3733 TIntermAggregate *init = node->getInit()->getAsAggregate();
3734
3735 if(init)
3736 {
3737 TIntermSequence &sequence = init->getSequence();
3738 TIntermTyped *variable = sequence[0]->getAsTyped();
3739
Nicolas Capense3f05552017-05-24 10:45:56 -04003740 if(variable && variable->getQualifier() == EvqTemporary && variable->getBasicType() == EbtInt)
Nicolas Capens0bac2852016-05-07 06:09:58 -04003741 {
3742 TIntermBinary *assign = variable->getAsBinaryNode();
3743
Nicolas Capensd0bfd912017-05-24 10:20:24 -04003744 if(assign && assign->getOp() == EOpInitialize)
Nicolas Capens0bac2852016-05-07 06:09:58 -04003745 {
3746 TIntermSymbol *symbol = assign->getLeft()->getAsSymbolNode();
3747 TIntermConstantUnion *constant = assign->getRight()->getAsConstantUnion();
3748
3749 if(symbol && constant)
3750 {
3751 if(constant->getBasicType() == EbtInt && constant->getNominalSize() == 1)
3752 {
3753 index = symbol;
3754 initial = constant->getUnionArrayPointer()[0].getIConst();
3755 }
3756 }
3757 }
3758 }
3759 }
3760 }
3761
3762 // Parse comparator and limit value
3763 if(index && node->getCondition())
3764 {
3765 TIntermBinary *test = node->getCondition()->getAsBinaryNode();
Alexis Hetu7be70cf2016-05-11 10:56:43 -04003766 TIntermSymbol *left = test ? test->getLeft()->getAsSymbolNode() : nullptr;
Nicolas Capens0bac2852016-05-07 06:09:58 -04003767
Alexis Hetu7be70cf2016-05-11 10:56:43 -04003768 if(left && (left->getId() == index->getId()))
Nicolas Capens0bac2852016-05-07 06:09:58 -04003769 {
3770 TIntermConstantUnion *constant = test->getRight()->getAsConstantUnion();
3771
3772 if(constant)
3773 {
3774 if(constant->getBasicType() == EbtInt && constant->getNominalSize() == 1)
3775 {
3776 comparator = test->getOp();
3777 limit = constant->getUnionArrayPointer()[0].getIConst();
3778 }
3779 }
3780 }
3781 }
3782
3783 // Parse increment
3784 if(index && comparator != EOpNull && node->getExpression())
3785 {
3786 TIntermBinary *binaryTerminal = node->getExpression()->getAsBinaryNode();
3787 TIntermUnary *unaryTerminal = node->getExpression()->getAsUnaryNode();
3788
3789 if(binaryTerminal)
3790 {
3791 TOperator op = binaryTerminal->getOp();
3792 TIntermConstantUnion *constant = binaryTerminal->getRight()->getAsConstantUnion();
3793
3794 if(constant)
3795 {
3796 if(constant->getBasicType() == EbtInt && constant->getNominalSize() == 1)
3797 {
3798 int value = constant->getUnionArrayPointer()[0].getIConst();
3799
3800 switch(op)
3801 {
3802 case EOpAddAssign: increment = value; break;
3803 case EOpSubAssign: increment = -value; break;
3804 default: UNIMPLEMENTED();
3805 }
3806 }
3807 }
3808 }
3809 else if(unaryTerminal)
3810 {
3811 TOperator op = unaryTerminal->getOp();
3812
3813 switch(op)
3814 {
3815 case EOpPostIncrement: increment = 1; break;
3816 case EOpPostDecrement: increment = -1; break;
3817 case EOpPreIncrement: increment = 1; break;
3818 case EOpPreDecrement: increment = -1; break;
3819 default: UNIMPLEMENTED();
3820 }
3821 }
3822 }
3823
3824 if(index && comparator != EOpNull && increment != 0)
3825 {
3826 if(comparator == EOpLessThanEqual)
3827 {
3828 comparator = EOpLessThan;
3829 limit += 1;
3830 }
Nicolas Capense3f05552017-05-24 10:45:56 -04003831 else if(comparator == EOpGreaterThanEqual)
3832 {
3833 comparator = EOpLessThan;
3834 limit -= 1;
3835 std::swap(initial, limit);
3836 increment = -increment;
3837 }
3838 else if(comparator == EOpGreaterThan)
3839 {
3840 comparator = EOpLessThan;
3841 std::swap(initial, limit);
3842 increment = -increment;
3843 }
Nicolas Capens0bac2852016-05-07 06:09:58 -04003844
3845 if(comparator == EOpLessThan)
3846 {
Nicolas Capens930b7002017-01-06 17:22:13 -05003847 if(!(initial < limit)) // Never loops
Nicolas Capens0bac2852016-05-07 06:09:58 -04003848 {
Nicolas Capens930b7002017-01-06 17:22:13 -05003849 return 0;
3850 }
3851
3852 int iterations = (limit - initial + abs(increment) - 1) / increment; // Ceiling division
3853
3854 if(iterations < 0)
3855 {
3856 return ~0u;
Nicolas Capens0bac2852016-05-07 06:09:58 -04003857 }
3858
3859 return iterations;
3860 }
3861 else UNIMPLEMENTED(); // Falls through
3862 }
3863
3864 return ~0u;
3865 }
3866
3867 bool LoopUnrollable::traverse(TIntermNode *node)
3868 {
3869 loopDepth = 0;
3870 loopUnrollable = true;
3871
3872 node->traverse(this);
3873
3874 return loopUnrollable;
3875 }
3876
3877 bool LoopUnrollable::visitLoop(Visit visit, TIntermLoop *loop)
3878 {
3879 if(visit == PreVisit)
3880 {
3881 loopDepth++;
3882 }
3883 else if(visit == PostVisit)
3884 {
3885 loopDepth++;
3886 }
3887
3888 return true;
3889 }
3890
3891 bool LoopUnrollable::visitBranch(Visit visit, TIntermBranch *node)
3892 {
3893 if(!loopUnrollable)
3894 {
3895 return false;
3896 }
3897
3898 if(!loopDepth)
3899 {
3900 return true;
3901 }
3902
3903 switch(node->getFlowOp())
3904 {
3905 case EOpKill:
3906 case EOpReturn:
3907 break;
3908 case EOpBreak:
3909 case EOpContinue:
3910 loopUnrollable = false;
3911 break;
3912 default: UNREACHABLE(node->getFlowOp());
3913 }
3914
3915 return loopUnrollable;
3916 }
3917
3918 bool LoopUnrollable::visitAggregate(Visit visit, TIntermAggregate *node)
3919 {
3920 return loopUnrollable;
3921 }
3922}