Edit

kc3-lang/angle/src/compiler/translator/IntermNode.cpp

Branch :

  • Show log

    Commit

  • Author : Arun Patole
    Date : 2015-05-05 13:33:30
    Hash : 274f0709
    Message : Add constant folding support for min,max and clamp This change adds necessary mechanism to support constant folding of built-ins that take more than one parameter and also adds constant folding support for min, max and clamp built-ins. BUG=angleproject:913 TESTS=dEQP tests (126 tests started passing with this change) dEQP-GLES3.functional.shaders.constant_expressions.builtin_functions.common.min_* dEQP-GLES3.functional.shaders.constant_expressions.builtin_functions.common.max_* dEQP-GLES3.functional.shaders.constant_expressions.builtin_functions.common.clamp_* Change-Id: Iccc9bf503a536f2e3c144627e64572f2f95db9db Reviewed-on: https://chromium-review.googlesource.com/271251 Reviewed-by: Olli Etuaho <oetuaho@nvidia.com> Reviewed-by: Jamie Madill <jmadill@chromium.org> Tested-by: Olli Etuaho <oetuaho@nvidia.com>

  • src/compiler/translator/IntermNode.cpp
  • //
    // Copyright (c) 2002-2014 The ANGLE Project Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style license that can be
    // found in the LICENSE file.
    //
    
    //
    // Build the intermediate representation.
    //
    
    #include <float.h>
    #include <limits.h>
    #include <math.h>
    #include <stdlib.h>
    #include <algorithm>
    #include <vector>
    
    #include "common/mathutil.h"
    #include "compiler/translator/HashNames.h"
    #include "compiler/translator/IntermNode.h"
    #include "compiler/translator/SymbolTable.h"
    
    namespace
    {
    
    const float kPi = 3.14159265358979323846f;
    const float kDegreesToRadiansMultiplier = kPi / 180.0f;
    const float kRadiansToDegreesMultiplier = 180.0f / kPi;
    
    TPrecision GetHigherPrecision(TPrecision left, TPrecision right)
    {
        return left > right ? left : right;
    }
    
    bool ValidateMultiplication(TOperator op, const TType &left, const TType &right)
    {
        switch (op)
        {
          case EOpMul:
          case EOpMulAssign:
            return left.getNominalSize() == right.getNominalSize() &&
                   left.getSecondarySize() == right.getSecondarySize();
          case EOpVectorTimesScalar:
          case EOpVectorTimesScalarAssign:
            return true;
          case EOpVectorTimesMatrix:
            return left.getNominalSize() == right.getRows();
          case EOpVectorTimesMatrixAssign:
            return left.getNominalSize() == right.getRows() &&
                   left.getNominalSize() == right.getCols();
          case EOpMatrixTimesVector:
            return left.getCols() == right.getNominalSize();
          case EOpMatrixTimesScalar:
          case EOpMatrixTimesScalarAssign:
            return true;
          case EOpMatrixTimesMatrix:
            return left.getCols() == right.getRows();
          case EOpMatrixTimesMatrixAssign:
            return left.getCols() == right.getCols() &&
                   left.getRows() == right.getRows();
    
          default:
            UNREACHABLE();
            return false;
        }
    }
    
    bool CompareStructure(const TType& leftNodeType,
                          const TConstantUnion *rightUnionArray,
                          const TConstantUnion *leftUnionArray);
    
    bool CompareStruct(const TType &leftNodeType,
                       const TConstantUnion *rightUnionArray,
                       const TConstantUnion *leftUnionArray)
    {
        const TFieldList &fields = leftNodeType.getStruct()->fields();
    
        size_t structSize = fields.size();
        size_t index = 0;
    
        for (size_t j = 0; j < structSize; j++)
        {
            size_t size = fields[j]->type()->getObjectSize();
            for (size_t i = 0; i < size; i++)
            {
                if (fields[j]->type()->getBasicType() == EbtStruct)
                {
                    if (!CompareStructure(*fields[j]->type(),
                                          &rightUnionArray[index],
                                          &leftUnionArray[index]))
                    {
                        return false;
                    }
                }
                else
                {
                    if (leftUnionArray[index] != rightUnionArray[index])
                        return false;
                    index++;
                }
            }
        }
        return true;
    }
    
    bool CompareStructure(const TType &leftNodeType,
                          const TConstantUnion *rightUnionArray,
                          const TConstantUnion *leftUnionArray)
    {
        if (leftNodeType.isArray())
        {
            TType typeWithoutArrayness = leftNodeType;
            typeWithoutArrayness.clearArrayness();
    
            size_t arraySize = leftNodeType.getArraySize();
    
            for (size_t i = 0; i < arraySize; ++i)
            {
                size_t offset = typeWithoutArrayness.getObjectSize() * i;
                if (!CompareStruct(typeWithoutArrayness,
                                   &rightUnionArray[offset],
                                   &leftUnionArray[offset]))
                {
                    return false;
                }
            }
        }
        else
        {
            return CompareStruct(leftNodeType, rightUnionArray, leftUnionArray);
        }
        return true;
    }
    
    TConstantUnion *Vectorize(const TConstantUnion &constant, size_t size)
    {
        TConstantUnion *constUnion = new TConstantUnion[size];
        for (unsigned int i = 0; i < size; ++i)
            constUnion[i] = constant;
    
        return constUnion;
    }
    
    }  // namespace anonymous
    
    
    ////////////////////////////////////////////////////////////////
    //
    // Member functions of the nodes used for building the tree.
    //
    ////////////////////////////////////////////////////////////////
    
    void TIntermTyped::setTypePreservePrecision(const TType &t)
    {
        TPrecision precision = getPrecision();
        mType = t;
        ASSERT(mType.getBasicType() != EbtBool || precision == EbpUndefined);
        mType.setPrecision(precision);
    }
    
    #define REPLACE_IF_IS(node, type, original, replacement) \
        if (node == original) { \
            node = static_cast<type *>(replacement); \
            return true; \
        }
    
    bool TIntermLoop::replaceChildNode(
        TIntermNode *original, TIntermNode *replacement)
    {
        REPLACE_IF_IS(mInit, TIntermNode, original, replacement);
        REPLACE_IF_IS(mCond, TIntermTyped, original, replacement);
        REPLACE_IF_IS(mExpr, TIntermTyped, original, replacement);
        REPLACE_IF_IS(mBody, TIntermNode, original, replacement);
        return false;
    }
    
    bool TIntermBranch::replaceChildNode(
        TIntermNode *original, TIntermNode *replacement)
    {
        REPLACE_IF_IS(mExpression, TIntermTyped, original, replacement);
        return false;
    }
    
    bool TIntermBinary::replaceChildNode(
        TIntermNode *original, TIntermNode *replacement)
    {
        REPLACE_IF_IS(mLeft, TIntermTyped, original, replacement);
        REPLACE_IF_IS(mRight, TIntermTyped, original, replacement);
        return false;
    }
    
    bool TIntermUnary::replaceChildNode(
        TIntermNode *original, TIntermNode *replacement)
    {
        REPLACE_IF_IS(mOperand, TIntermTyped, original, replacement);
        return false;
    }
    
    bool TIntermAggregate::replaceChildNode(
        TIntermNode *original, TIntermNode *replacement)
    {
        for (size_t ii = 0; ii < mSequence.size(); ++ii)
        {
            REPLACE_IF_IS(mSequence[ii], TIntermNode, original, replacement);
        }
        return false;
    }
    
    bool TIntermAggregate::replaceChildNodeWithMultiple(TIntermNode *original, TIntermSequence replacements)
    {
        for (auto it = mSequence.begin(); it < mSequence.end(); ++it)
        {
            if (*it == original)
            {
                it = mSequence.erase(it);
                mSequence.insert(it, replacements.begin(), replacements.end());
                return true;
            }
        }
        return false;
    }
    
    bool TIntermAggregate::insertChildNodes(TIntermSequence::size_type position, TIntermSequence insertions)
    {
        TIntermSequence::size_type itPosition = 0;
        for (auto it = mSequence.begin(); it < mSequence.end(); ++it)
        {
            if (itPosition == position)
            {
                mSequence.insert(it, insertions.begin(), insertions.end());
                return true;
            }
            ++itPosition;
        }
        return false;
    }
    
    void TIntermAggregate::setPrecisionFromChildren()
    {
        if (getBasicType() == EbtBool)
        {
            mType.setPrecision(EbpUndefined);
            return;
        }
    
        TPrecision precision = EbpUndefined;
        TIntermSequence::iterator childIter = mSequence.begin();
        while (childIter != mSequence.end())
        {
            TIntermTyped *typed = (*childIter)->getAsTyped();
            if (typed)
                precision = GetHigherPrecision(typed->getPrecision(), precision);
            ++childIter;
        }
        mType.setPrecision(precision);
    }
    
    void TIntermAggregate::setBuiltInFunctionPrecision()
    {
        // All built-ins returning bool should be handled as ops, not functions.
        ASSERT(getBasicType() != EbtBool);
    
        TPrecision precision = EbpUndefined;
        TIntermSequence::iterator childIter = mSequence.begin();
        while (childIter != mSequence.end())
        {
            TIntermTyped *typed = (*childIter)->getAsTyped();
            // ESSL spec section 8: texture functions get their precision from the sampler.
            if (typed && IsSampler(typed->getBasicType()))
            {
                precision = typed->getPrecision();
                break;
            }
            ++childIter;
        }
        // ESSL 3.0 spec section 8: textureSize always gets highp precision.
        // All other functions that take a sampler are assumed to be texture functions.
        if (mName.find("textureSize") == 0)
            mType.setPrecision(EbpHigh);
        else
            mType.setPrecision(precision);
    }
    
    bool TIntermSelection::replaceChildNode(
        TIntermNode *original, TIntermNode *replacement)
    {
        REPLACE_IF_IS(mCondition, TIntermTyped, original, replacement);
        REPLACE_IF_IS(mTrueBlock, TIntermNode, original, replacement);
        REPLACE_IF_IS(mFalseBlock, TIntermNode, original, replacement);
        return false;
    }
    
    bool TIntermSwitch::replaceChildNode(
        TIntermNode *original, TIntermNode *replacement)
    {
        REPLACE_IF_IS(mInit, TIntermTyped, original, replacement);
        REPLACE_IF_IS(mStatementList, TIntermAggregate, original, replacement);
        return false;
    }
    
    bool TIntermCase::replaceChildNode(
        TIntermNode *original, TIntermNode *replacement)
    {
        REPLACE_IF_IS(mCondition, TIntermTyped, original, replacement);
        return false;
    }
    
    //
    // Say whether or not an operation node changes the value of a variable.
    //
    bool TIntermOperator::isAssignment() const
    {
        switch (mOp)
        {
          case EOpPostIncrement:
          case EOpPostDecrement:
          case EOpPreIncrement:
          case EOpPreDecrement:
          case EOpAssign:
          case EOpAddAssign:
          case EOpSubAssign:
          case EOpMulAssign:
          case EOpVectorTimesMatrixAssign:
          case EOpVectorTimesScalarAssign:
          case EOpMatrixTimesScalarAssign:
          case EOpMatrixTimesMatrixAssign:
          case EOpDivAssign:
          case EOpIModAssign:
          case EOpBitShiftLeftAssign:
          case EOpBitShiftRightAssign:
          case EOpBitwiseAndAssign:
          case EOpBitwiseXorAssign:
          case EOpBitwiseOrAssign:
            return true;
          default:
            return false;
        }
    }
    
    //
    // returns true if the operator is for one of the constructors
    //
    bool TIntermOperator::isConstructor() const
    {
        switch (mOp)
        {
          case EOpConstructVec2:
          case EOpConstructVec3:
          case EOpConstructVec4:
          case EOpConstructMat2:
          case EOpConstructMat3:
          case EOpConstructMat4:
          case EOpConstructFloat:
          case EOpConstructIVec2:
          case EOpConstructIVec3:
          case EOpConstructIVec4:
          case EOpConstructInt:
          case EOpConstructUVec2:
          case EOpConstructUVec3:
          case EOpConstructUVec4:
          case EOpConstructUInt:
          case EOpConstructBVec2:
          case EOpConstructBVec3:
          case EOpConstructBVec4:
          case EOpConstructBool:
          case EOpConstructStruct:
            return true;
          default:
            return false;
        }
    }
    
    //
    // Make sure the type of a unary operator is appropriate for its
    // combination of operation and operand type.
    //
    void TIntermUnary::promote(const TType *funcReturnType)
    {
        switch (mOp)
        {
          case EOpFloatBitsToInt:
          case EOpFloatBitsToUint:
          case EOpIntBitsToFloat:
          case EOpUintBitsToFloat:
          case EOpPackSnorm2x16:
          case EOpPackUnorm2x16:
          case EOpPackHalf2x16:
          case EOpUnpackSnorm2x16:
          case EOpUnpackUnorm2x16:
            mType.setPrecision(EbpHigh);
            break;
          case EOpUnpackHalf2x16:
            mType.setPrecision(EbpMedium);
            break;
          default:
            setType(mOperand->getType());
        }
    
        if (funcReturnType != nullptr)
        {
            if (funcReturnType->getBasicType() == EbtBool)
            {
                // Bool types should not have precision.
                setType(*funcReturnType);
            }
            else
            {
                // Precision of the node has been set based on the operand.
                setTypePreservePrecision(*funcReturnType);
            }
        }
    
        mType.setQualifier(EvqTemporary);
    }
    
    //
    // Establishes the type of the resultant operation, as well as
    // makes the operator the correct one for the operands.
    //
    // For lots of operations it should already be established that the operand
    // combination is valid, but returns false if operator can't work on operands.
    //
    bool TIntermBinary::promote(TInfoSink &infoSink)
    {
        ASSERT(mLeft->isArray() == mRight->isArray());
    
        //
        // Base assumption:  just make the type the same as the left
        // operand.  Then only deviations from this need be coded.
        //
        setType(mLeft->getType());
    
        // The result gets promoted to the highest precision.
        TPrecision higherPrecision = GetHigherPrecision(
            mLeft->getPrecision(), mRight->getPrecision());
        getTypePointer()->setPrecision(higherPrecision);
    
        // Binary operations results in temporary variables unless both
        // operands are const.
        if (mLeft->getQualifier() != EvqConst || mRight->getQualifier() != EvqConst)
        {
            getTypePointer()->setQualifier(EvqTemporary);
        }
    
        const int nominalSize =
            std::max(mLeft->getNominalSize(), mRight->getNominalSize());
    
        //
        // All scalars or structs. Code after this test assumes this case is removed!
        //
        if (nominalSize == 1)
        {
            switch (mOp)
            {
              //
              // Promote to conditional
              //
              case EOpEqual:
              case EOpNotEqual:
              case EOpLessThan:
              case EOpGreaterThan:
              case EOpLessThanEqual:
              case EOpGreaterThanEqual:
                setType(TType(EbtBool, EbpUndefined));
                break;
    
              //
              // And and Or operate on conditionals
              //
              case EOpLogicalAnd:
              case EOpLogicalXor:
              case EOpLogicalOr:
                ASSERT(mLeft->getBasicType() == EbtBool && mRight->getBasicType() == EbtBool);
                setType(TType(EbtBool, EbpUndefined));
                break;
    
              default:
                break;
            }
            return true;
        }
    
        // If we reach here, at least one of the operands is vector or matrix.
        // The other operand could be a scalar, vector, or matrix.
        // Can these two operands be combined?
        //
        TBasicType basicType = mLeft->getBasicType();
        switch (mOp)
        {
          case EOpMul:
            if (!mLeft->isMatrix() && mRight->isMatrix())
            {
                if (mLeft->isVector())
                {
                    mOp = EOpVectorTimesMatrix;
                    setType(TType(basicType, higherPrecision, EvqTemporary,
                                  static_cast<unsigned char>(mRight->getCols()), 1));
                }
                else
                {
                    mOp = EOpMatrixTimesScalar;
                    setType(TType(basicType, higherPrecision, EvqTemporary,
                                  static_cast<unsigned char>(mRight->getCols()), static_cast<unsigned char>(mRight->getRows())));
                }
            }
            else if (mLeft->isMatrix() && !mRight->isMatrix())
            {
                if (mRight->isVector())
                {
                    mOp = EOpMatrixTimesVector;
                    setType(TType(basicType, higherPrecision, EvqTemporary,
                                  static_cast<unsigned char>(mLeft->getRows()), 1));
                }
                else
                {
                    mOp = EOpMatrixTimesScalar;
                }
            }
            else if (mLeft->isMatrix() && mRight->isMatrix())
            {
                mOp = EOpMatrixTimesMatrix;
                setType(TType(basicType, higherPrecision, EvqTemporary,
                              static_cast<unsigned char>(mRight->getCols()), static_cast<unsigned char>(mLeft->getRows())));
            }
            else if (!mLeft->isMatrix() && !mRight->isMatrix())
            {
                if (mLeft->isVector() && mRight->isVector())
                {
                    // leave as component product
                }
                else if (mLeft->isVector() || mRight->isVector())
                {
                    mOp = EOpVectorTimesScalar;
                    setType(TType(basicType, higherPrecision, EvqTemporary,
                                  static_cast<unsigned char>(nominalSize), 1));
                }
            }
            else
            {
                infoSink.info.message(EPrefixInternalError, getLine(),
                                      "Missing elses");
                return false;
            }
    
            if (!ValidateMultiplication(mOp, mLeft->getType(), mRight->getType()))
            {
                return false;
            }
            break;
    
          case EOpMulAssign:
            if (!mLeft->isMatrix() && mRight->isMatrix())
            {
                if (mLeft->isVector())
                {
                    mOp = EOpVectorTimesMatrixAssign;
                }
                else
                {
                    return false;
                }
            }
            else if (mLeft->isMatrix() && !mRight->isMatrix())
            {
                if (mRight->isVector())
                {
                    return false;
                }
                else
                {
                    mOp = EOpMatrixTimesScalarAssign;
                }
            }
            else if (mLeft->isMatrix() && mRight->isMatrix())
            {
                mOp = EOpMatrixTimesMatrixAssign;
                setType(TType(basicType, higherPrecision, EvqTemporary,
                              static_cast<unsigned char>(mRight->getCols()), static_cast<unsigned char>(mLeft->getRows())));
            }
            else if (!mLeft->isMatrix() && !mRight->isMatrix())
            {
                if (mLeft->isVector() && mRight->isVector())
                {
                    // leave as component product
                }
                else if (mLeft->isVector() || mRight->isVector())
                {
                    if (!mLeft->isVector())
                        return false;
                    mOp = EOpVectorTimesScalarAssign;
                    setType(TType(basicType, higherPrecision, EvqTemporary,
                                  static_cast<unsigned char>(mLeft->getNominalSize()), 1));
                }
            }
            else
            {
                infoSink.info.message(EPrefixInternalError, getLine(),
                                      "Missing elses");
                return false;
            }
    
            if (!ValidateMultiplication(mOp, mLeft->getType(), mRight->getType()))
            {
                return false;
            }
            break;
    
          case EOpAssign:
          case EOpInitialize:
            // No more additional checks are needed.
            ASSERT((mLeft->getNominalSize() == mRight->getNominalSize()) &&
                (mLeft->getSecondarySize() == mRight->getSecondarySize()));
            break;
          case EOpAdd:
          case EOpSub:
          case EOpDiv:
          case EOpIMod:
          case EOpBitShiftLeft:
          case EOpBitShiftRight:
          case EOpBitwiseAnd:
          case EOpBitwiseXor:
          case EOpBitwiseOr:
          case EOpAddAssign:
          case EOpSubAssign:
          case EOpDivAssign:
          case EOpIModAssign:
          case EOpBitShiftLeftAssign:
          case EOpBitShiftRightAssign:
          case EOpBitwiseAndAssign:
          case EOpBitwiseXorAssign:
          case EOpBitwiseOrAssign:
            if ((mLeft->isMatrix() && mRight->isVector()) ||
                (mLeft->isVector() && mRight->isMatrix()))
            {
                return false;
            }
    
            // Are the sizes compatible?
            if (mLeft->getNominalSize() != mRight->getNominalSize() ||
                mLeft->getSecondarySize() != mRight->getSecondarySize())
            {
                // If the nominal sizes of operands do not match:
                // One of them must be a scalar.
                if (!mLeft->isScalar() && !mRight->isScalar())
                    return false;
    
                // In the case of compound assignment other than multiply-assign,
                // the right side needs to be a scalar. Otherwise a vector/matrix
                // would be assigned to a scalar. A scalar can't be shifted by a
                // vector either.
                if (!mRight->isScalar() &&
                    (isAssignment() ||
                    mOp == EOpBitShiftLeft ||
                    mOp == EOpBitShiftRight))
                    return false;
            }
    
            {
                const int secondarySize = std::max(
                    mLeft->getSecondarySize(), mRight->getSecondarySize());
                setType(TType(basicType, higherPrecision, EvqTemporary,
                              static_cast<unsigned char>(nominalSize), static_cast<unsigned char>(secondarySize)));
                if (mLeft->isArray())
                {
                    ASSERT(mLeft->getArraySize() == mRight->getArraySize());
                    mType.setArraySize(mLeft->getArraySize());
                }
            }
            break;
    
          case EOpEqual:
          case EOpNotEqual:
          case EOpLessThan:
          case EOpGreaterThan:
          case EOpLessThanEqual:
          case EOpGreaterThanEqual:
            ASSERT((mLeft->getNominalSize() == mRight->getNominalSize()) &&
                (mLeft->getSecondarySize() == mRight->getSecondarySize()));
            setType(TType(EbtBool, EbpUndefined));
            break;
    
          default:
            return false;
        }
        return true;
    }
    
    //
    // The fold functions see if an operation on a constant can be done in place,
    // without generating run-time code.
    //
    // Returns the node to keep using, which may or may not be the node passed in.
    //
    TIntermTyped *TIntermConstantUnion::fold(
        TOperator op, TIntermConstantUnion *rightNode, TInfoSink &infoSink)
    {
        TConstantUnion *unionArray = getUnionArrayPointer();
    
        if (!unionArray)
            return nullptr;
    
        size_t objectSize = getType().getObjectSize();
    
        if (rightNode)
        {
            // binary operations
            TConstantUnion *rightUnionArray = rightNode->getUnionArrayPointer();
            TType returnType = getType();
    
            if (!rightUnionArray)
                return nullptr;
    
            // for a case like float f = vec4(2, 3, 4, 5) + 1.2;
            if (rightNode->getType().getObjectSize() == 1 && objectSize > 1)
            {
                rightUnionArray = Vectorize(*rightNode->getUnionArrayPointer(), objectSize);
                returnType = getType();
            }
            else if (rightNode->getType().getObjectSize() > 1 && objectSize == 1)
            {
                // for a case like float f = 1.2 + vec4(2, 3, 4, 5);
                unionArray = Vectorize(*getUnionArrayPointer(), rightNode->getType().getObjectSize());
                returnType = rightNode->getType();
                objectSize = rightNode->getType().getObjectSize();
            }
    
            TConstantUnion *tempConstArray = nullptr;
            TIntermConstantUnion *tempNode;
    
            bool boolNodeFlag = false;
            switch(op)
            {
              case EOpAdd:
                tempConstArray = new TConstantUnion[objectSize];
                for (size_t i = 0; i < objectSize; i++)
                    tempConstArray[i] = unionArray[i] + rightUnionArray[i];
                break;
              case EOpSub:
                tempConstArray = new TConstantUnion[objectSize];
                for (size_t i = 0; i < objectSize; i++)
                    tempConstArray[i] = unionArray[i] - rightUnionArray[i];
                break;
    
              case EOpMul:
              case EOpVectorTimesScalar:
              case EOpMatrixTimesScalar:
                tempConstArray = new TConstantUnion[objectSize];
                for (size_t i = 0; i < objectSize; i++)
                    tempConstArray[i] = unionArray[i] * rightUnionArray[i];
                break;
    
              case EOpMatrixTimesMatrix:
                {
                    if (getType().getBasicType() != EbtFloat ||
                        rightNode->getBasicType() != EbtFloat)
                    {
                        infoSink.info.message(
                            EPrefixInternalError, getLine(),
                            "Constant Folding cannot be done for matrix multiply");
                        return nullptr;
                    }
    
                    const int leftCols = getCols();
                    const int leftRows = getRows();
                    const int rightCols = rightNode->getType().getCols();
                    const int rightRows = rightNode->getType().getRows();
                    const int resultCols = rightCols;
                    const int resultRows = leftRows;
    
                    tempConstArray = new TConstantUnion[resultCols * resultRows];
                    for (int row = 0; row < resultRows; row++)
                    {
                        for (int column = 0; column < resultCols; column++)
                        {
                            tempConstArray[resultRows * column + row].setFConst(0.0f);
                            for (int i = 0; i < leftCols; i++)
                            {
                                tempConstArray[resultRows * column + row].setFConst(
                                    tempConstArray[resultRows * column + row].getFConst() +
                                    unionArray[i * leftRows + row].getFConst() *
                                    rightUnionArray[column * rightRows + i].getFConst());
                            }
                        }
                    }
    
                    // update return type for matrix product
                    returnType.setPrimarySize(static_cast<unsigned char>(resultCols));
                    returnType.setSecondarySize(static_cast<unsigned char>(resultRows));
                }
                break;
    
              case EOpDiv:
              case EOpIMod:
                {
                    tempConstArray = new TConstantUnion[objectSize];
                    for (size_t i = 0; i < objectSize; i++)
                    {
                        switch (getType().getBasicType())
                        {
                          case EbtFloat:
                            if (rightUnionArray[i] == 0.0f)
                            {
                                infoSink.info.message(
                                    EPrefixWarning, getLine(),
                                    "Divide by zero error during constant folding");
                                tempConstArray[i].setFConst(
                                    unionArray[i].getFConst() < 0 ? -FLT_MAX : FLT_MAX);
                            }
                            else
                            {
                                ASSERT(op == EOpDiv);
                                tempConstArray[i].setFConst(
                                    unionArray[i].getFConst() /
                                    rightUnionArray[i].getFConst());
                            }
                            break;
    
                          case EbtInt:
                            if (rightUnionArray[i] == 0)
                            {
                                infoSink.info.message(
                                    EPrefixWarning, getLine(),
                                    "Divide by zero error during constant folding");
                                tempConstArray[i].setIConst(INT_MAX);
                            }
                            else
                            {
                                if (op == EOpDiv)
                                {
                                    tempConstArray[i].setIConst(
                                        unionArray[i].getIConst() /
                                        rightUnionArray[i].getIConst());
                                }
                                else
                                {
                                    ASSERT(op == EOpIMod);
                                    tempConstArray[i].setIConst(
                                        unionArray[i].getIConst() %
                                        rightUnionArray[i].getIConst());
                                }
                            }
                            break;
    
                          case EbtUInt:
                            if (rightUnionArray[i] == 0)
                            {
                                infoSink.info.message(
                                    EPrefixWarning, getLine(),
                                    "Divide by zero error during constant folding");
                                tempConstArray[i].setUConst(UINT_MAX);
                            }
                            else
                            {
                                if (op == EOpDiv)
                                {
                                    tempConstArray[i].setUConst(
                                        unionArray[i].getUConst() /
                                        rightUnionArray[i].getUConst());
                                }
                                else
                                {
                                    ASSERT(op == EOpIMod);
                                    tempConstArray[i].setUConst(
                                        unionArray[i].getUConst() %
                                        rightUnionArray[i].getUConst());
                                }
                            }
                            break;
    
                          default:
                            infoSink.info.message(
                                EPrefixInternalError, getLine(),
                                "Constant folding cannot be done for \"/\"");
                            return nullptr;
                        }
                    }
                }
                break;
    
              case EOpMatrixTimesVector:
                {
                    if (rightNode->getBasicType() != EbtFloat)
                    {
                        infoSink.info.message(
                            EPrefixInternalError, getLine(),
                            "Constant Folding cannot be done for matrix times vector");
                        return nullptr;
                    }
    
                    const int matrixCols = getCols();
                    const int matrixRows = getRows();
    
                    tempConstArray = new TConstantUnion[matrixRows];
    
                    for (int matrixRow = 0; matrixRow < matrixRows; matrixRow++)
                    {
                        tempConstArray[matrixRow].setFConst(0.0f);
                        for (int col = 0; col < matrixCols; col++)
                        {
                            tempConstArray[matrixRow].setFConst(
                                tempConstArray[matrixRow].getFConst() +
                                unionArray[col * matrixRows + matrixRow].getFConst() *
                                rightUnionArray[col].getFConst());
                        }
                    }
    
                    returnType = rightNode->getType();
                    returnType.setPrimarySize(static_cast<unsigned char>(matrixRows));
    
                    tempNode = new TIntermConstantUnion(tempConstArray, returnType);
                    tempNode->setLine(getLine());
    
                    return tempNode;
                }
    
              case EOpVectorTimesMatrix:
                {
                    if (getType().getBasicType() != EbtFloat)
                    {
                        infoSink.info.message(
                            EPrefixInternalError, getLine(),
                            "Constant Folding cannot be done for vector times matrix");
                        return nullptr;
                    }
    
                    const int matrixCols = rightNode->getType().getCols();
                    const int matrixRows = rightNode->getType().getRows();
    
                    tempConstArray = new TConstantUnion[matrixCols];
    
                    for (int matrixCol = 0; matrixCol < matrixCols; matrixCol++)
                    {
                        tempConstArray[matrixCol].setFConst(0.0f);
                        for (int matrixRow = 0; matrixRow < matrixRows; matrixRow++)
                        {
                            tempConstArray[matrixCol].setFConst(
                                tempConstArray[matrixCol].getFConst() +
                                unionArray[matrixRow].getFConst() *
                                rightUnionArray[matrixCol * matrixRows + matrixRow].getFConst());
                        }
                    }
    
                    returnType.setPrimarySize(static_cast<unsigned char>(matrixCols));
                }
                break;
    
              case EOpLogicalAnd:
                // this code is written for possible future use,
                // will not get executed currently
                {
                    tempConstArray = new TConstantUnion[objectSize];
                    for (size_t i = 0; i < objectSize; i++)
                    {
                        tempConstArray[i] = unionArray[i] && rightUnionArray[i];
                    }
                }
                break;
    
              case EOpLogicalOr:
                // this code is written for possible future use,
                // will not get executed currently
                {
                    tempConstArray = new TConstantUnion[objectSize];
                    for (size_t i = 0; i < objectSize; i++)
                    {
                        tempConstArray[i] = unionArray[i] || rightUnionArray[i];
                    }
                }
                break;
    
              case EOpLogicalXor:
                {
                    tempConstArray = new TConstantUnion[objectSize];
                    for (size_t i = 0; i < objectSize; i++)
                    {
                        switch (getType().getBasicType())
                        {
                          case EbtBool:
                            tempConstArray[i].setBConst(
                                unionArray[i] == rightUnionArray[i] ? false : true);
                            break;
                          default:
                            UNREACHABLE();
                            break;
                        }
                    }
                }
                break;
    
              case EOpBitwiseAnd:
                tempConstArray = new TConstantUnion[objectSize];
                for (size_t i = 0; i < objectSize; i++)
                    tempConstArray[i] = unionArray[i] & rightUnionArray[i];
                break;
              case EOpBitwiseXor:
                tempConstArray = new TConstantUnion[objectSize];
                for (size_t i = 0; i < objectSize; i++)
                    tempConstArray[i] = unionArray[i] ^ rightUnionArray[i];
                break;
              case EOpBitwiseOr:
                tempConstArray = new TConstantUnion[objectSize];
                for (size_t i = 0; i < objectSize; i++)
                    tempConstArray[i] = unionArray[i] | rightUnionArray[i];
                break;
              case EOpBitShiftLeft:
                tempConstArray = new TConstantUnion[objectSize];
                for (size_t i = 0; i < objectSize; i++)
                    tempConstArray[i] = unionArray[i] << rightUnionArray[i];
                break;
              case EOpBitShiftRight:
                tempConstArray = new TConstantUnion[objectSize];
                for (size_t i = 0; i < objectSize; i++)
                    tempConstArray[i] = unionArray[i] >> rightUnionArray[i];
                break;
    
              case EOpLessThan:
                ASSERT(objectSize == 1);
                tempConstArray = new TConstantUnion[1];
                tempConstArray->setBConst(*unionArray < *rightUnionArray);
                returnType = TType(EbtBool, EbpUndefined, EvqConst);
                break;
    
              case EOpGreaterThan:
                ASSERT(objectSize == 1);
                tempConstArray = new TConstantUnion[1];
                tempConstArray->setBConst(*unionArray > *rightUnionArray);
                returnType = TType(EbtBool, EbpUndefined, EvqConst);
                break;
    
              case EOpLessThanEqual:
                {
                    ASSERT(objectSize == 1);
                    TConstantUnion constant;
                    constant.setBConst(*unionArray > *rightUnionArray);
                    tempConstArray = new TConstantUnion[1];
                    tempConstArray->setBConst(!constant.getBConst());
                    returnType = TType(EbtBool, EbpUndefined, EvqConst);
                    break;
                }
    
              case EOpGreaterThanEqual:
                {
                    ASSERT(objectSize == 1);
                    TConstantUnion constant;
                    constant.setBConst(*unionArray < *rightUnionArray);
                    tempConstArray = new TConstantUnion[1];
                    tempConstArray->setBConst(!constant.getBConst());
                    returnType = TType(EbtBool, EbpUndefined, EvqConst);
                    break;
                }
    
              case EOpEqual:
                if (getType().getBasicType() == EbtStruct)
                {
                    if (!CompareStructure(rightNode->getType(),
                                          rightNode->getUnionArrayPointer(),
                                          unionArray))
                    {
                        boolNodeFlag = true;
                    }
                }
                else
                {
                    for (size_t i = 0; i < objectSize; i++)
                    {
                        if (unionArray[i] != rightUnionArray[i])
                        {
                            boolNodeFlag = true;
                            break;  // break out of for loop
                        }
                    }
                }
    
                tempConstArray = new TConstantUnion[1];
                if (!boolNodeFlag)
                {
                    tempConstArray->setBConst(true);
                }
                else
                {
                    tempConstArray->setBConst(false);
                }
    
                tempNode = new TIntermConstantUnion(
                    tempConstArray, TType(EbtBool, EbpUndefined, EvqConst));
                tempNode->setLine(getLine());
    
                return tempNode;
    
              case EOpNotEqual:
                if (getType().getBasicType() == EbtStruct)
                {
                    if (CompareStructure(rightNode->getType(),
                                         rightNode->getUnionArrayPointer(),
                                         unionArray))
                    {
                        boolNodeFlag = true;
                    }
                }
                else
                {
                    for (size_t i = 0; i < objectSize; i++)
                    {
                        if (unionArray[i] == rightUnionArray[i])
                        {
                            boolNodeFlag = true;
                            break;  // break out of for loop
                        }
                    }
                }
    
                tempConstArray = new TConstantUnion[1];
                if (!boolNodeFlag)
                {
                    tempConstArray->setBConst(true);
                }
                else
                {
                    tempConstArray->setBConst(false);
                }
    
                tempNode = new TIntermConstantUnion(
                    tempConstArray, TType(EbtBool, EbpUndefined, EvqConst));
                tempNode->setLine(getLine());
    
                return tempNode;
    
              default:
                infoSink.info.message(
                    EPrefixInternalError, getLine(),
                    "Invalid operator for constant folding");
                return nullptr;
            }
            tempNode = new TIntermConstantUnion(tempConstArray, returnType);
            tempNode->setLine(getLine());
    
            return tempNode;
        }
        else
        {
            //
            // Do unary operations
            //
            TIntermConstantUnion *newNode = 0;
            TConstantUnion* tempConstArray = new TConstantUnion[objectSize];
            for (size_t i = 0; i < objectSize; i++)
            {
                switch(op)
                {
                  case EOpNegative:
                    switch (getType().getBasicType())
                    {
                      case EbtFloat:
                        tempConstArray[i].setFConst(-unionArray[i].getFConst());
                        break;
                      case EbtInt:
                        tempConstArray[i].setIConst(-unionArray[i].getIConst());
                        break;
                      case EbtUInt:
                        tempConstArray[i].setUConst(static_cast<unsigned int>(
                            -static_cast<int>(unionArray[i].getUConst())));
                        break;
                      default:
                        infoSink.info.message(
                            EPrefixInternalError, getLine(),
                            "Unary operation not folded into constant");
                        return nullptr;
                    }
                    break;
    
                  case EOpPositive:
                    switch (getType().getBasicType())
                    {
                      case EbtFloat:
                        tempConstArray[i].setFConst(unionArray[i].getFConst());
                        break;
                      case EbtInt:
                        tempConstArray[i].setIConst(unionArray[i].getIConst());
                        break;
                      case EbtUInt:
                        tempConstArray[i].setUConst(static_cast<unsigned int>(
                            static_cast<int>(unionArray[i].getUConst())));
                        break;
                      default:
                        infoSink.info.message(
                            EPrefixInternalError, getLine(),
                            "Unary operation not folded into constant");
                        return nullptr;
                    }
                    break;
    
                  case EOpLogicalNot:
                    // this code is written for possible future use,
                    // will not get executed currently
                    switch (getType().getBasicType())
                    {
                      case EbtBool:
                        tempConstArray[i].setBConst(!unionArray[i].getBConst());
                        break;
                      default:
                        infoSink.info.message(
                            EPrefixInternalError, getLine(),
                            "Unary operation not folded into constant");
                        return nullptr;
                    }
                    break;
    
                  case EOpBitwiseNot:
                    switch (getType().getBasicType())
                    {
                      case EbtInt:
                        tempConstArray[i].setIConst(~unionArray[i].getIConst());
                        break;
                      case EbtUInt:
                        tempConstArray[i].setUConst(~unionArray[i].getUConst());
                        break;
                      default:
                        infoSink.info.message(
                            EPrefixInternalError, getLine(),
                            "Unary operation not folded into constant");
                        return nullptr;
                    }
                    break;
    
                  case EOpRadians:
                    if (getType().getBasicType() == EbtFloat)
                    {
                        tempConstArray[i].setFConst(kDegreesToRadiansMultiplier * unionArray[i].getFConst());
                        break;
                    }
                    infoSink.info.message(
                        EPrefixInternalError, getLine(),
                        "Unary operation not folded into constant");
                    return nullptr;
    
                  case EOpDegrees:
                    if (getType().getBasicType() == EbtFloat)
                    {
                        tempConstArray[i].setFConst(kRadiansToDegreesMultiplier * unionArray[i].getFConst());
                        break;
                    }
                    infoSink.info.message(
                        EPrefixInternalError, getLine(),
                        "Unary operation not folded into constant");
                    return nullptr;
    
                  case EOpSin:
                    if (!foldFloatTypeUnary(unionArray[i], &sinf, infoSink, &tempConstArray[i]))
                       return nullptr;
                    break;
    
                  case EOpCos:
                    if (!foldFloatTypeUnary(unionArray[i], &cosf, infoSink, &tempConstArray[i]))
                        return nullptr;
                    break;
    
                  case EOpTan:
                    if (!foldFloatTypeUnary(unionArray[i], &tanf, infoSink, &tempConstArray[i]))
                        return nullptr;
                    break;
    
                  case EOpAsin:
                    // For asin(x), results are undefined if |x| > 1, we are choosing to set result to 0.
                    if (getType().getBasicType() == EbtFloat && fabsf(unionArray[i].getFConst()) > 1.0f)
                        tempConstArray[i].setFConst(0.0f);
                    else if (!foldFloatTypeUnary(unionArray[i], &asinf, infoSink, &tempConstArray[i]))
                        return nullptr;
                    break;
    
                  case EOpAcos:
                    // For acos(x), results are undefined if |x| > 1, we are choosing to set result to 0.
                    if (getType().getBasicType() == EbtFloat && fabsf(unionArray[i].getFConst()) > 1.0f)
                        tempConstArray[i].setFConst(0.0f);
                    else if (!foldFloatTypeUnary(unionArray[i], &acosf, infoSink, &tempConstArray[i]))
                        return nullptr;
                    break;
    
                  case EOpAtan:
                    if (!foldFloatTypeUnary(unionArray[i], &atanf, infoSink, &tempConstArray[i]))
                        return nullptr;
                    break;
    
                  case EOpSinh:
                    if (!foldFloatTypeUnary(unionArray[i], &sinhf, infoSink, &tempConstArray[i]))
                        return nullptr;
                    break;
    
                  case EOpCosh:
                    if (!foldFloatTypeUnary(unionArray[i], &coshf, infoSink, &tempConstArray[i]))
                        return nullptr;
                    break;
    
                  case EOpTanh:
                    if (!foldFloatTypeUnary(unionArray[i], &tanhf, infoSink, &tempConstArray[i]))
                        return nullptr;
                    break;
    
                  case EOpAsinh:
                    if (!foldFloatTypeUnary(unionArray[i], &asinhf, infoSink, &tempConstArray[i]))
                        return nullptr;
                    break;
    
                  case EOpAcosh:
                    // For acosh(x), results are undefined if x < 1, we are choosing to set result to 0.
                    if (getType().getBasicType() == EbtFloat && unionArray[i].getFConst() < 1.0f)
                        tempConstArray[i].setFConst(0.0f);
                    else if (!foldFloatTypeUnary(unionArray[i], &acoshf, infoSink, &tempConstArray[i]))
                        return nullptr;
                    break;
    
                  case EOpAtanh:
                    // For atanh(x), results are undefined if |x| >= 1, we are choosing to set result to 0.
                    if (getType().getBasicType() == EbtFloat && fabsf(unionArray[i].getFConst()) >= 1.0f)
                        tempConstArray[i].setFConst(0.0f);
                    else if (!foldFloatTypeUnary(unionArray[i], &atanhf, infoSink, &tempConstArray[i]))
                        return nullptr;
                    break;
    
                  case EOpAbs:
                    switch (getType().getBasicType())
                    {
                      case EbtFloat:
                        tempConstArray[i].setFConst(fabsf(unionArray[i].getFConst()));
                        break;
                      case EbtInt:
                        tempConstArray[i].setIConst(abs(unionArray[i].getIConst()));
                        break;
                      default:
                        infoSink.info.message(
                            EPrefixInternalError, getLine(),
                            "Unary operation not folded into constant");
                        return nullptr;
                    }
                    break;
    
                  case EOpSign:
                    switch (getType().getBasicType())
                    {
                      case EbtFloat:
                        {
                            float fConst = unionArray[i].getFConst();
                            float fResult = 0.0f;
                            if (fConst > 0.0f)
                                fResult = 1.0f;
                            else if (fConst < 0.0f)
                                fResult = -1.0f;
                            tempConstArray[i].setFConst(fResult);
                        }
                        break;
                      case EbtInt:
                        {
                            int iConst = unionArray[i].getIConst();
                            int iResult = 0;
                            if (iConst > 0)
                                iResult = 1;
                            else if (iConst < 0)
                                iResult = -1;
                            tempConstArray[i].setIConst(iResult);
                        }
                        break;
                      default:
                        infoSink.info.message(
                            EPrefixInternalError, getLine(),
                            "Unary operation not folded into constant");
                        return nullptr;
                    }
                    break;
    
                  case EOpFloor:
                    if (!foldFloatTypeUnary(unionArray[i], &floorf, infoSink, &tempConstArray[i]))
                        return nullptr;
                    break;
    
                  case EOpTrunc:
                    if (!foldFloatTypeUnary(unionArray[i], &truncf, infoSink, &tempConstArray[i]))
                        return nullptr;
                    break;
    
                  case EOpRound:
                    if (!foldFloatTypeUnary(unionArray[i], &roundf, infoSink, &tempConstArray[i]))
                        return nullptr;
                    break;
    
                  case EOpRoundEven:
                    if (getType().getBasicType() == EbtFloat)
                    {
                        float x = unionArray[i].getFConst();
                        float result;
                        float fractPart = modff(x, &result);
                        if (fabsf(fractPart) == 0.5f)
                            result = 2.0f * roundf(x / 2.0f);
                        else
                            result = roundf(x);
                        tempConstArray[i].setFConst(result);
                        break;
                    }
                    infoSink.info.message(
                        EPrefixInternalError, getLine(),
                        "Unary operation not folded into constant");
                    return nullptr;
    
                  case EOpCeil:
                    if (!foldFloatTypeUnary(unionArray[i], &ceilf, infoSink, &tempConstArray[i]))
                        return nullptr;
                    break;
    
                  case EOpFract:
                    if (getType().getBasicType() == EbtFloat)
                    {
                        float x = unionArray[i].getFConst();
                        tempConstArray[i].setFConst(x - floorf(x));
                        break;
                    }
                    infoSink.info.message(
                        EPrefixInternalError, getLine(),
                        "Unary operation not folded into constant");
                    return nullptr;
    
                  case EOpExp:
                    if (!foldFloatTypeUnary(unionArray[i], &expf, infoSink, &tempConstArray[i]))
                      return nullptr;
                    break;
    
                  case EOpLog:
                    // For log(x), results are undefined if x <= 0, we are choosing to set result to 0.
                    if (getType().getBasicType() == EbtFloat && unionArray[i].getFConst() <= 0.0f)
                        tempConstArray[i].setFConst(0.0f);
                    else if (!foldFloatTypeUnary(unionArray[i], &logf, infoSink, &tempConstArray[i]))
                        return nullptr;
                    break;
    
                  case EOpExp2:
                    if (!foldFloatTypeUnary(unionArray[i], &exp2f, infoSink, &tempConstArray[i]))
                        return nullptr;
                    break;
    
                  case EOpLog2:
                    // For log2(x), results are undefined if x <= 0, we are choosing to set result to 0.
                    // And log2f is not available on some plarforms like old android, so just using log(x)/log(2) here.
                    if (getType().getBasicType() == EbtFloat && unionArray[i].getFConst() <= 0.0f)
                        tempConstArray[i].setFConst(0.0f);
                    else if (!foldFloatTypeUnary(unionArray[i], &logf, infoSink, &tempConstArray[i]))
                        return nullptr;
                    else
                        tempConstArray[i].setFConst(tempConstArray[i].getFConst() / logf(2.0f));
                    break;
    
                  case EOpSqrt:
                    // For sqrt(x), results are undefined if x < 0, we are choosing to set result to 0.
                    if (getType().getBasicType() == EbtFloat && unionArray[i].getFConst() < 0.0f)
                        tempConstArray[i].setFConst(0.0f);
                    else if (!foldFloatTypeUnary(unionArray[i], &sqrtf, infoSink, &tempConstArray[i]))
                        return nullptr;
                    break;
    
                  case EOpInverseSqrt:
                    // There is no stdlib built-in function equavalent for GLES built-in inversesqrt(),
                    // so getting the square root first using builtin function sqrt() and then taking its inverse.
                    // Also, for inversesqrt(x), results are undefined if x <= 0, we are choosing to set result to 0.
                    if (getType().getBasicType() == EbtFloat && unionArray[i].getFConst() <= 0.0f)
                        tempConstArray[i].setFConst(0.0f);
                    else if (!foldFloatTypeUnary(unionArray[i], &sqrtf, infoSink, &tempConstArray[i]))
                        return nullptr;
                    else
                        tempConstArray[i].setFConst(1.0f / tempConstArray[i].getFConst());
                    break;
    
                  default:
                    return nullptr;
                }
            }
            newNode = new TIntermConstantUnion(tempConstArray, getType());
            newNode->setLine(getLine());
            return newNode;
        }
    }
    
    bool TIntermConstantUnion::foldFloatTypeUnary(const TConstantUnion &parameter, FloatTypeUnaryFunc builtinFunc,
                                                  TInfoSink &infoSink, TConstantUnion *result) const
    {
        ASSERT(builtinFunc);
    
        if (getType().getBasicType() == EbtFloat)
        {
            result->setFConst(builtinFunc(parameter.getFConst()));
            return true;
        }
    
        infoSink.info.message(
            EPrefixInternalError, getLine(),
            "Unary operation not folded into constant");
        return false;
    }
    
    // static
    TIntermTyped *TIntermConstantUnion::FoldAggregateBuiltIn(TOperator op, TIntermAggregate *aggregate)
    {
        TIntermSequence *sequence = aggregate->getSequence();
        unsigned int paramsCount = sequence->size();
        std::vector<TConstantUnion *> unionArrays(paramsCount);
        std::vector<size_t> objectSizes(paramsCount);
        TType *maxSizeType = nullptr;
        TBasicType basicType = EbtVoid;
        TSourceLoc loc;
        for (unsigned int i = 0; i < paramsCount; i++)
        {
            TIntermConstantUnion *paramConstant = (*sequence)[i]->getAsConstantUnion();
            // Make sure that all params are constant before actual constant folding.
            if (!paramConstant)
                return nullptr;
    
            if (i == 0)
            {
                basicType = paramConstant->getType().getBasicType();
                loc = paramConstant->getLine();
            }
            unionArrays[i] = paramConstant->getUnionArrayPointer();
            objectSizes[i] = paramConstant->getType().getObjectSize();
            if (maxSizeType == nullptr || (objectSizes[i] >= maxSizeType->getObjectSize()))
                maxSizeType = paramConstant->getTypePointer();
        }
    
        size_t maxObjectSize = maxSizeType->getObjectSize();
        for (unsigned int i = 0; i < paramsCount; i++)
            if (objectSizes[i] != maxObjectSize)
                unionArrays[i] = Vectorize(*unionArrays[i], maxObjectSize);
    
        TConstantUnion *tempConstArray = nullptr;
        TIntermConstantUnion *tempNode = nullptr;
        TType returnType = *maxSizeType;
        if (paramsCount == 2)
        {
            //
            // Binary built-in
            //
            switch (op)
            {
              case EOpMin:
                {
                    tempConstArray = new TConstantUnion[maxObjectSize];
                    for (size_t i = 0; i < maxObjectSize; i++)
                    {
                        switch (basicType)
                        {
                          case EbtFloat:
                            tempConstArray[i].setFConst(std::min(unionArrays[0][i].getFConst(), unionArrays[1][i].getFConst()));
                            break;
                          case EbtInt:
                            tempConstArray[i].setIConst(std::min(unionArrays[0][i].getIConst(), unionArrays[1][i].getIConst()));
                            break;
                          case EbtUInt:
                            tempConstArray[i].setUConst(std::min(unionArrays[0][i].getUConst(), unionArrays[1][i].getUConst()));
                            break;
                          default:
                            UNREACHABLE();
                            break;
                        }
                    }
                }
                break;
    
              case EOpMax:
                {
                    tempConstArray = new TConstantUnion[maxObjectSize];
                    for (size_t i = 0; i < maxObjectSize; i++)
                    {
                        switch (basicType)
                        {
                          case EbtFloat:
                            tempConstArray[i].setFConst(std::max(unionArrays[0][i].getFConst(), unionArrays[1][i].getFConst()));
                            break;
                          case EbtInt:
                            tempConstArray[i].setIConst(std::max(unionArrays[0][i].getIConst(), unionArrays[1][i].getIConst()));
                            break;
                          case EbtUInt:
                            tempConstArray[i].setUConst(std::max(unionArrays[0][i].getUConst(), unionArrays[1][i].getUConst()));
                            break;
                          default:
                            UNREACHABLE();
                            break;
                        }
                    }
                }
                break;
    
              default:
                UNREACHABLE();
                // TODO: Add constant folding support for other built-in operations that take 2 parameters and not handled above.
                return nullptr;
            }
        }
        else if (paramsCount == 3)
        {
            //
            // Ternary built-in
            //
            switch (op)
            {
              case EOpClamp:
                {
                    tempConstArray = new TConstantUnion[maxObjectSize];
                    for (size_t i = 0; i < maxObjectSize; i++)
                    {
                        switch (basicType)
                        {
                          case EbtFloat:
                            {
                                float x = unionArrays[0][i].getFConst();
                                float min = unionArrays[1][i].getFConst();
                                float max = unionArrays[2][i].getFConst();
                                // Results are undefined if min > max.
                                if (min > max)
                                    tempConstArray[i].setFConst(0.0f);
                                else
                                    tempConstArray[i].setFConst(gl::clamp(x, min, max));
                            }
                            break;
                          case EbtInt:
                            {
                                int x = unionArrays[0][i].getIConst();
                                int min = unionArrays[1][i].getIConst();
                                int max = unionArrays[2][i].getIConst();
                                // Results are undefined if min > max.
                                if (min > max)
                                    tempConstArray[i].setIConst(0);
                                else
                                    tempConstArray[i].setIConst(gl::clamp(x, min, max));
                            }
                            break;
                          case EbtUInt:
                            {
                                unsigned int x = unionArrays[0][i].getUConst();
                                unsigned int min = unionArrays[1][i].getUConst();
                                unsigned int max = unionArrays[2][i].getUConst();
                                // Results are undefined if min > max.
                                if (min > max)
                                    tempConstArray[i].setUConst(0u);
                                else
                                    tempConstArray[i].setUConst(gl::clamp(x, min, max));
                            }
                            break;
                          default:
                            UNREACHABLE();
                            break;
                        }
                    }
                }
                break;
    
              default:
                UNREACHABLE();
                // TODO: Add constant folding support for other built-in operations that take 3 parameters and not handled above.
                return nullptr;
            }
        }
    
        if (tempConstArray)
        {
            tempNode = new TIntermConstantUnion(tempConstArray, returnType);
            tempNode->setLine(loc);
        }
        return tempNode;
    }
    
    // static
    TString TIntermTraverser::hash(const TString &name, ShHashFunction64 hashFunction)
    {
        if (hashFunction == NULL || name.empty())
            return name;
        khronos_uint64_t number = (*hashFunction)(name.c_str(), name.length());
        TStringStream stream;
        stream << HASHED_NAME_PREFIX << std::hex << number;
        TString hashedName = stream.str();
        return hashedName;
    }
    
    void TIntermTraverser::updateTree()
    {
        for (size_t ii = 0; ii < mInsertions.size(); ++ii)
        {
            const NodeInsertMultipleEntry &insertion = mInsertions[ii];
            ASSERT(insertion.parent);
            bool inserted = insertion.parent->insertChildNodes(insertion.position, insertion.insertions);
            ASSERT(inserted);
            UNUSED_ASSERTION_VARIABLE(inserted);
        }
        for (size_t ii = 0; ii < mReplacements.size(); ++ii)
        {
            const NodeUpdateEntry &replacement = mReplacements[ii];
            ASSERT(replacement.parent);
            bool replaced = replacement.parent->replaceChildNode(
                replacement.original, replacement.replacement);
            ASSERT(replaced);
            UNUSED_ASSERTION_VARIABLE(replaced);
    
            if (!replacement.originalBecomesChildOfReplacement)
            {
                // In AST traversing, a parent is visited before its children.
                // After we replace a node, if its immediate child is to
                // be replaced, we need to make sure we don't update the replaced
                // node; instead, we update the replacement node.
                for (size_t jj = ii + 1; jj < mReplacements.size(); ++jj)
                {
                    NodeUpdateEntry &replacement2 = mReplacements[jj];
                    if (replacement2.parent == replacement.original)
                        replacement2.parent = replacement.replacement;
                }
            }
        }
        for (size_t ii = 0; ii < mMultiReplacements.size(); ++ii)
        {
            const NodeReplaceWithMultipleEntry &replacement = mMultiReplacements[ii];
            ASSERT(replacement.parent);
            bool replaced = replacement.parent->replaceChildNodeWithMultiple(
                replacement.original, replacement.replacements);
            ASSERT(replaced);
            UNUSED_ASSERTION_VARIABLE(replaced);
        }
    }