]> git.tdb.fi Git - libs/gl.git/blob - source/glsl/validate.h
Comments and cosmetic cleanups
[libs/gl.git] / source / glsl / validate.h
1 #ifndef MSP_GL_SL_VALIDATE_H_
2 #define MSP_GL_SL_VALIDATE_H_
3
4 #include <string>
5 #include <vector>
6 #include "glsl_error.h"
7 #include "visitor.h"
8
9 namespace Msp {
10 namespace GL {
11 namespace SL {
12
13 /** Base class for validators.  Contains some utilities for adding diagnostic
14 messages. */
15 class Validator: protected TraversingVisitor
16 {
17 protected:
18         Stage *stage;
19         Node *last_provoker;
20
21         Validator();
22
23         void diagnose(Node &, Node &, Diagnostic::Severity, const std::string &);
24         void diagnose(Node &n, Diagnostic::Severity s, const std::string &m) { diagnose(n, n, s, m); }
25         void error(Node &n, const std::string &m) { diagnose(n, Diagnostic::ERR, m); }
26         void add_info(Node &, const std::string &);
27 };
28
29 /** Verifies that declarations are valid in isolation. */
30 class DeclarationValidator: private Validator
31 {
32 private:
33         enum ScopeType
34         {
35                 GLOBAL,
36                 STRUCT,
37                 INTERFACE_BLOCK,
38                 FUNCTION_PARAM,
39                 FUNCTION
40         };
41
42         ScopeType scope;
43         InterfaceLayout *iface_layout;
44         InterfaceBlock *iface_block;
45         VariableDeclaration *variable;
46
47 public:
48         DeclarationValidator();
49
50         void apply(Stage &s) { stage = &s; s.content.visit(*this); }
51
52 private:
53         static const char *describe_variable(ScopeType);
54
55         virtual void visit(Layout &);
56         virtual void visit(InterfaceLayout &);
57         virtual void visit(BasicTypeDeclaration &);
58         virtual void visit(ImageTypeDeclaration &);
59         virtual void visit(StructDeclaration &);
60         virtual void visit(VariableDeclaration &);
61         virtual void visit(InterfaceBlock &);
62         virtual void visit(FunctionDeclaration &);
63 };
64
65 /** Verifies that identifiers are unique or, in the case of functions, are
66 overloaded only in valid ways. */
67 class IdentifierValidator: private Validator
68 {
69 private:
70         typedef std::map<std::string, Statement *> BlockDeclarationMap;
71
72         std::map<Block *, BlockDeclarationMap> declarations;
73         std::map<std::string, InterfaceBlock *> interface_blocks;
74         std::map<std::string, FunctionDeclaration *> overloaded_functions;
75         bool anonymous_block;
76
77 public:
78         IdentifierValidator();
79
80         void apply(Stage &s) { stage = &s; s.content.visit(*this); }
81
82 private:
83         void multiple_definition(const std::string &, Statement &, Statement &);
84         Statement *find_definition(const std::string &);
85         void check_definition(const std::string &, Statement &);
86         void record_definition(const std::string &, Statement &);
87
88         virtual void visit(TypeDeclaration &);
89         virtual void visit(BasicTypeDeclaration &t) { visit(static_cast<TypeDeclaration &>(t)); }
90         virtual void visit(ImageTypeDeclaration &t) { visit(static_cast<TypeDeclaration &>(t)); }
91         virtual void visit(StructDeclaration &);
92         virtual void visit(VariableDeclaration &);
93         virtual void visit(InterfaceBlock &);
94         virtual void visit(FunctionDeclaration &);
95 };
96
97 /** Verifies that there are no unresolved references. */
98 class ReferenceValidator: private Validator
99 {
100 public:
101         void apply(Stage &s) { stage = &s; s.content.visit(*this); }
102
103 private:
104         virtual void visit(BasicTypeDeclaration &);
105         virtual void visit(ImageTypeDeclaration &);
106         virtual void visit(VariableReference &);
107         virtual void visit(MemberAccess &);
108         virtual void visit(InterfaceBlockReference &);
109         virtual void visit(FunctionCall &);
110         virtual void visit(VariableDeclaration &);
111         virtual void visit(InterfaceBlock &);
112         virtual void visit(FunctionDeclaration &);
113 };
114
115 /** Verifies that expressions are valid.  In most cases an invalid expression
116 is indicated by a null result type. */
117 class ExpressionValidator: private Validator
118 {
119 private:
120         FunctionDeclaration *current_function;
121
122 public:
123         ExpressionValidator();
124
125         void apply(Stage &s) { stage = &s; s.content.visit(*this); }
126
127 private:
128         virtual void visit(Swizzle &);
129         virtual void visit(UnaryExpression &);
130         virtual void visit(BinaryExpression &);
131         virtual void visit(Assignment &);
132         virtual void visit(TernaryExpression &);
133         virtual void visit(VariableDeclaration &);
134         virtual void visit(FunctionDeclaration &);
135         virtual void visit(Return &);
136 };
137
138 /** Verifies that stage input and output interfaces are valid.  Linked
139 variables must have matching types and locations and there must not be any
140 overlap in locations. */
141 class StageInterfaceValidator: private Validator
142 {
143 private:
144         std::map<std::string, std::map<unsigned, VariableDeclaration *> > used_locations;
145
146 public:
147         void apply(Stage &s) { stage = &s; s.content.visit(*this); }
148
149 private:
150         int get_location(const Layout &);
151
152         virtual void visit(VariableDeclaration &);
153         virtual void visit(FunctionDeclaration &) { }
154 };
155
156 /** Verifies that uniform interfaces are valid across the entire module.
157 Variables declared with the same binding must have the same name and type. */
158 class GlobalInterfaceValidator: private Validator
159 {
160 private:
161         struct Uniform
162         {
163                 Node *node;
164                 TypeDeclaration *type;
165                 std::string name;
166                 int location;
167                 unsigned loc_count;
168                 int desc_set;
169                 int bind_point;
170
171                 Uniform(): node(0), type(0), location(-1), loc_count(1), desc_set(0), bind_point(-1) { }
172         };
173
174         std::list<Uniform> uniforms;
175         std::map<std::string, const Uniform *> used_names;
176         std::map<unsigned, const Uniform *> used_locations;
177         std::map<unsigned, std::map<unsigned, const Uniform *> > used_bindings;
178
179 public:
180         void apply(Module &);
181
182 private:
183         void check_uniform(const Uniform &);
184
185         virtual void visit(VariableDeclaration &);
186         virtual void visit(InterfaceBlock &);
187         virtual void visit(FunctionDeclaration &) { }
188 };
189
190 } // namespace SL
191 } // namespace GL
192 } // namespace Msp
193
194 #endif