aboutsummaryrefslogtreecommitdiffstats
path: root/src/libs/glsl/glslparser.h
blob: be6c818d0cf7efd987bfaa21c02d42622dd1775f (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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232

#line 271 "./glsl.g"

// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0

#pragma once

#include "glslparsertable_p.h"
#include "glsllexer.h"
#include "glslast.h"
#include "glslengine.h"
#include <vector>
#include <stack>

namespace GLSL {

class GLSL_EXPORT Parser: public GLSLParserTable
{
public:
    union Value {
        void *ptr;
        const QString *string;
        AST *ast;
        List<AST *> *ast_list;
        DeclarationAST *declaration;
        List<DeclarationAST *> *declaration_list;
        ExpressionAST *expression;
        List<ExpressionAST *> *expression_list;
        StatementAST *statement;
        List<StatementAST *> *statement_list;
        TypeAST *type;
        StructTypeAST::Field *field;
        List<StructTypeAST::Field *> *field_list;
        TranslationUnitAST *translation_unit;
        FunctionIdentifierAST *function_identifier;
        List<ArrayTypeAST::ArraySpecAST *> *array_specifier;
        AST::Kind kind;
        TypeAST::Precision precision;
        struct {
            StatementAST *thenClause;
            StatementAST *elseClause;
        } ifstmt;
        struct {
            ExpressionAST *condition;
            ExpressionAST *increment;
        } forstmt;
        struct {
            FunctionIdentifierAST *id;
            List<ExpressionAST *> *arguments;
        } function;
        int qualifier;
        LayoutQualifierAST *layout;
        List<LayoutQualifierAST *> *layout_list;
        struct {
            TypeAST::Precision precision;
            int qualifier;
            List<LayoutQualifierAST *> *layout_list;
            List<NamedTypeAST *> *type_name_list;
        } type_qualifier;
        struct {
            TypeAST *type;
            const QString *name;
        } param_declarator;
        ParameterDeclarationAST *param_declaration;
        FunctionDeclarationAST *function_declaration;
        InterfaceBlockAST *interface_block;
        List<IdentifierExpressionAST *> *identifier_list;
        List<NamedTypeAST *> *type_name_list;
    };

    Parser(Engine *engine, const char *source, unsigned size, int variant);
    ~Parser();

    TranslationUnitAST *parse() {
        if (AST *u = parse(T_FEED_GLSL))
            return u->asTranslationUnit();
        return nullptr;
    }

    ExpressionAST *parseExpression() {
        if (AST *u = parse(T_FEED_EXPRESSION))
            return u->asExpression();
        return nullptr;
    }

    AST *parse(int startToken);

private:
    // 1-based
    int &location(int n) { return _locationStack[_tos + n - 1]; }
    Value &sym(int n) { return _symStack[_tos + n - 1]; }
    AST *&ast(int n) { return _symStack[_tos + n - 1].ast; }
    const QString *&string(int n) { return _symStack[_tos + n - 1].string; }
    ExpressionAST *&expression(int n) { return _symStack[_tos + n - 1].expression; }
    StatementAST *&statement(int n) { return _symStack[_tos + n - 1].statement; }
    TypeAST *&type(int n) { return _symStack[_tos + n - 1].type; }
    FunctionDeclarationAST *&function(int n) { return _symStack[_tos + n - 1].function_declaration; }

    inline int consumeToken() {
        if (_index < int(_tokens.size()))
            return _index++;
        return static_cast<int>(_tokens.size()) - 1;
    }
    inline const Token &tokenAt(int index) const {
        if (index == 0)
            return _startToken;
        return _tokens.at(index);
    }
    inline int tokenKind(int index) const {
        if (index == 0)
            return _startToken.kind;
        return _tokens.at(index).kind;
    }
    void reduce(int ruleno);

    void warning(const DiagnosticMessage::Location &loc, const QString &message)
    {
        _engine->warning(loc, message);
    }

    void error(const DiagnosticMessage::Location &loc, const QString &message)
    {
        _engine->error(loc, message);
    }

    static bool isInterfaceBlockStorageIdentifier(int qualifier)
    {
        qualifier = qualifier & QualifiedTypeAST::StorageMask;
        return (qualifier == QualifiedTypeAST::In
                || qualifier == QualifiedTypeAST::Out
                || qualifier == QualifiedTypeAST::Uniform
                || qualifier == QualifiedTypeAST::Buffer
                || qualifier == (QualifiedTypeAST::Centroid | QualifiedTypeAST::In)
                || qualifier == (QualifiedTypeAST::Centroid | QualifiedTypeAST::Out)
                || qualifier == (QualifiedTypeAST::Patch | QualifiedTypeAST::In)
                || qualifier == (QualifiedTypeAST::Patch | QualifiedTypeAST::Out)
                || qualifier == (QualifiedTypeAST::Sample | QualifiedTypeAST::In)
                || qualifier == (QualifiedTypeAST::Sample | QualifiedTypeAST::Out));
    }

    template <typename T>
    T *makeAstNode()
    {
        T *node = new (_engine->pool()) T ();
        setLocationFromToken(node, yyloc);
        return node;
    }

    template <typename T, typename A1>
    T *makeAstNode(A1 a1)
    {
        T *node = new (_engine->pool()) T (a1);
        const DiagnosticMessage::Location &location = locationFromToken(yyloc);
        node->lineno = location.line;
        node->position = location.position;
        node->length = location.length;
        return node;
    }

    template <typename T, typename A1, typename A2>
    T *makeAstNode(A1 a1, A2 a2)
    {
        T *node = new (_engine->pool()) T (a1, a2);
        const DiagnosticMessage::Location &location = locationFromToken(yyloc);
        node->lineno = location.line;
        node->position = location.position;
        node->length = location.length;
        return node;
    }

    template <typename T, typename A1, typename A2, typename A3>
    T *makeAstNode(A1 a1, A2 a2, A3 a3)
    {
        T *node = new (_engine->pool()) T (a1, a2, a3);
        setLocationFromToken(node, yyloc);
        return node;
    }

    template <typename T, typename A1, typename A2, typename A3, typename A4>
    T *makeAstNode(A1 a1, A2 a2, A3 a3, A4 a4)
    {
        T *node = new (_engine->pool()) T (a1, a2, a3, a4);
        setLocationFromToken(node, yyloc);
        return node;
    }

    TypeAST *makeBasicType(int token)
    {
        TypeAST *type = new (_engine->pool()) BasicTypeAST(token, spell[token]);
        setLocationFromToken(type, yyloc);
        return type;
    }

private:
    DiagnosticMessage::Location locationFromToken(int index) const
    {
        const Token &token = index > -1 ? tokenAt(index) : Token();
        return DiagnosticMessage::Location{token.line + 1, token.position, token.length};
    }

    void setLocationFromToken(AST *node, int index) const
    {
        const DiagnosticMessage::Location &location = locationFromToken(index);
        node->lineno = location.line;
        node->position = location.position;
        node->length = location.length;
    }

    void setLocationFromTokens(AST *node, int index, int endIndex)
    {
        const Token &token = tokenAt(index);
        node->lineno = token.line + 1;
        node->position = token.position;
        node->length = tokenAt(endIndex).end() - node->position;
    }

    Engine *_engine;
    int _tos;
    int _index;
    int yyloc;
    int yytoken;
    int yyrecovering;
    bool _recovered;
    Token _startToken;
    std::vector<int> _stateStack;
    std::vector<int> _locationStack;
    std::vector<Value> _symStack;
    std::vector<Token> _tokens;
};

} // namespace GLSL