]> git.tdb.fi Git - libs/gl.git/blob - source/glsl/validate.h
Check that non-constant data is not accessed from constant expressions
[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         bool constant_expression;
122
123 public:
124         ExpressionValidator();
125
126         void apply(Stage &s) { stage = &s; s.content.visit(*this); }
127
128 private:
129         virtual void visit(VariableReference &);
130         virtual void visit(InterfaceBlockReference &);
131         virtual void visit(Swizzle &);
132         virtual void visit(UnaryExpression &);
133         virtual void visit(BinaryExpression &);
134         virtual void visit(Assignment &);
135         virtual void visit(TernaryExpression &);
136         virtual void visit(VariableDeclaration &);
137         virtual void visit(FunctionDeclaration &);
138         virtual void visit(Conditional &);
139         virtual void visit(Iteration &);
140         virtual void visit(Return &);
141 };
142
143 /** Verifies that stage input and output interfaces are valid.  Linked
144 variables must have matching types and locations and there must not be any
145 overlap in locations. */
146 class StageInterfaceValidator: private Validator
147 {
148 private:
149         std::map<std::string, std::map<unsigned, VariableDeclaration *> > used_locations;
150
151 public:
152         void apply(Stage &s) { stage = &s; s.content.visit(*this); }
153
154 private:
155         int get_location(const Layout &);
156
157         virtual void visit(VariableDeclaration &);
158         virtual void visit(FunctionDeclaration &) { }
159 };
160
161 /** Verifies that uniform interfaces are valid across the entire module.
162 Variables declared with the same binding must have the same name and type. */
163 class GlobalInterfaceValidator: private Validator
164 {
165 private:
166         struct Uniform
167         {
168                 Node *node;
169                 TypeDeclaration *type;
170                 std::string name;
171                 int location;
172                 unsigned loc_count;
173                 int desc_set;
174                 int bind_point;
175
176                 Uniform(): node(0), type(0), location(-1), loc_count(1), desc_set(0), bind_point(-1) { }
177         };
178
179         std::list<Uniform> uniforms;
180         std::map<std::string, const Uniform *> used_names;
181         std::map<unsigned, const Uniform *> used_locations;
182         std::map<unsigned, std::map<unsigned, const Uniform *> > used_bindings;
183
184 public:
185         void apply(Module &);
186
187 private:
188         void check_uniform(const Uniform &);
189
190         virtual void visit(VariableDeclaration &);
191         virtual void visit(InterfaceBlock &);
192         virtual void visit(FunctionDeclaration &) { }
193 };
194
195 } // namespace SL
196 } // namespace GL
197 } // namespace Msp
198
199 #endif