summaryrefslogtreecommitdiffstats
path: root/gfx/angle/src/compiler/translator/AddDefaultReturnStatements.cpp
blob: 97111d1a1269764e880af4b7650fea9ae0bea630 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
//
// Copyright (c) 2016 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.
//
// AddDefaultReturnStatements.cpp: Add default return statements to functions that do not end in a
//                                 return.
//

#include "compiler/translator/AddDefaultReturnStatements.h"

#include "compiler/translator/IntermNode.h"
#include "compiler/translator/util.h"

namespace sh
{

namespace
{

class AddDefaultReturnStatementsTraverser : private TIntermTraverser
{
  public:
    static void Apply(TIntermNode *root)
    {
        AddDefaultReturnStatementsTraverser separateInit;
        root->traverse(&separateInit);
        separateInit.updateTree();
    }

  private:
    AddDefaultReturnStatementsTraverser() : TIntermTraverser(true, false, false) {}

    static bool IsFunctionWithoutReturnStatement(TIntermAggregate *node, TType *returnType)
    {
        *returnType = node->getType();
        if (node->getOp() != EOpFunction || node->getType().getBasicType() == EbtVoid)
        {
            return false;
        }

        TIntermAggregate *lastNode = node->getSequence()->back()->getAsAggregate();
        if (lastNode == nullptr)
        {
            return true;
        }

        TIntermBranch *returnNode = lastNode->getSequence()->front()->getAsBranchNode();
        if (returnNode != nullptr && returnNode->getFlowOp() == EOpReturn)
        {
            return false;
        }

        return true;
    }

    static TIntermTyped *GenerateTypeConstructor(const TType &returnType)
    {
        // Base case, constructing a single element
        if (!returnType.isArray())
        {
            size_t objectSize             = returnType.getObjectSize();
            TConstantUnion *constantUnion = new TConstantUnion[objectSize];
            for (size_t constantIdx = 0; constantIdx < objectSize; constantIdx++)
            {
                constantUnion[constantIdx].setFConst(0.0f);
            }

            TIntermConstantUnion *intermConstantUnion =
                new TIntermConstantUnion(constantUnion, returnType);
            return intermConstantUnion;
        }

        // Recursive case, construct an array of single elements
        TIntermAggregate *constructorAggrigate =
            new TIntermAggregate(TypeToConstructorOperator(returnType));
        constructorAggrigate->setType(returnType);

        size_t arraySize = returnType.getArraySize();
        for (size_t arrayIdx = 0; arrayIdx < arraySize; arrayIdx++)
        {
            TType arrayElementType(returnType);
            arrayElementType.clearArrayness();

            constructorAggrigate->getSequence()->push_back(
                GenerateTypeConstructor(arrayElementType));
        }

        return constructorAggrigate;
    }

    bool visitAggregate(Visit, TIntermAggregate *node) override
    {
        TType returnType;
        if (IsFunctionWithoutReturnStatement(node, &returnType))
        {
            TIntermBranch *branch =
                new TIntermBranch(EOpReturn, GenerateTypeConstructor(returnType));

            TIntermAggregate *lastNode = node->getSequence()->back()->getAsAggregate();
            lastNode->getSequence()->push_back(branch);

            return false;
        }

        return true;
    }
};
}  // anonymous namespace

void AddDefaultReturnStatements(TIntermNode *node)
{
    AddDefaultReturnStatementsTraverser::Apply(node);
}

}  // namespace sh