blob: 078e0bee24d20f4aec7ba6bfe869aab0da525dae [file] [log] [blame]
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001//
Nicolas Capens1fbc2872014-01-03 14:12:09 -05002// Copyright (c) 2002-2014 The ANGLE Project Authors. All rights reserved.
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003// Use of this source code is governed by a BSD-style license that can be
4// found in the LICENSE file.
5//
6
7#ifndef _SYMBOL_TABLE_INCLUDED_
8#define _SYMBOL_TABLE_INCLUDED_
9
10//
11// Symbol table for parsing. Has these design characteristics:
12//
13// * Same symbol table can be used to compile many shaders, to preserve
14// effort of creating and loading with the large numbers of built-in
15// symbols.
16//
17// * Name mangling will be used to give each function a unique name
18// so that symbol table lookups are never ambiguous. This allows
19// a simpler symbol table structure.
20//
21// * Pushing and popping of scope, so symbol table will really be a stack
22// of symbol tables. Searched from the top, with new inserts going into
23// the top.
24//
25// * Constants: Compile time constant symbols will keep their values
26// in the symbol table. The parser can substitute constants at parse
27// time, including doing constant folding and constant propagation.
28//
29// * No temporaries: Temporaries made from operations (+, --, .xy, etc.)
30// are tracked in the intermediate representation, not the symbol table.
31//
32
alokp@chromium.org4e4facd2010-06-02 15:21:22 +000033#include <assert.h>
alokp@chromium.orge4249f02010-07-26 18:13:52 +000034
Jamie Madill703cdd62013-07-08 15:07:30 -040035#include "common/angleutils.h"
Geoff Lang17732822013-08-29 13:46:49 -040036#include "compiler/translator/InfoSink.h"
37#include "compiler/translator/intermediate.h"
alokp@chromium.org43884872010-03-30 00:08:52 +000038
Zhenyao Mo9eedea02014-05-12 16:02:35 -070039// Symbol base class. (Can build functions or variables out of these...)
40class TSymbol
41{
42 public:
Alok Priyadarshi8156b6b2013-09-23 14:56:58 -040043 POOL_ALLOCATOR_NEW_DELETE();
Zhenyao Mo9eedea02014-05-12 16:02:35 -070044 TSymbol(const TString *n)
45 : uniqueId(0),
46 name(n)
47 {
48 }
49 virtual ~TSymbol()
50 {
51 // don't delete name, it's from the pool
52 }
Alok Priyadarshi8156b6b2013-09-23 14:56:58 -040053
Zhenyao Mo9eedea02014-05-12 16:02:35 -070054 const TString &getName() const
55 {
56 return *name;
57 }
58 virtual const TString &getMangledName() const
59 {
60 return getName();
61 }
62 virtual bool isFunction() const
63 {
64 return false;
65 }
66 virtual bool isVariable() const
67 {
68 return false;
69 }
70 void setUniqueId(int id)
71 {
72 uniqueId = id;
73 }
74 int getUniqueId() const
75 {
76 return uniqueId;
77 }
78 void relateToExtension(const TString &ext)
79 {
80 extension = ext;
81 }
82 const TString &getExtension() const
83 {
84 return extension;
85 }
Nicolas Capensba60ad32013-06-04 15:55:47 -040086
Zhenyao Mo9eedea02014-05-12 16:02:35 -070087 private:
Jamie Madill703cdd62013-07-08 15:07:30 -040088 DISALLOW_COPY_AND_ASSIGN(TSymbol);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +000089
Zhenyao Mo9eedea02014-05-12 16:02:35 -070090 int uniqueId; // For real comparing during code generation
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +000091 const TString *name;
Jamie Madill2aeb26a2013-07-08 14:02:55 -040092 TString extension;
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +000093};
94
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +000095// Variable class, meaning a symbol that's not a function.
96//
97// There could be a separate class heirarchy for Constant variables;
98// Only one of int, bool, or float, (or none) is correct for
99// any particular use, but it's easy to do this way, and doesn't
100// seem worth having separate classes, and "getConst" can't simply return
101// different values for different types polymorphically, so this is
102// just simple and pragmatic.
Zhenyao Mo9eedea02014-05-12 16:02:35 -0700103class TVariable : public TSymbol
104{
105 public:
106 TVariable(const TString *name, const TType &t, bool uT = false)
107 : TSymbol(name),
108 type(t),
109 userType(uT),
110 unionArray(0)
111 {
112 }
113 virtual ~TVariable()
114 {
115 }
116 virtual bool isVariable() const
117 {
118 return true;
119 }
120 TType &getType()
121 {
122 return type;
123 }
124 const TType &getType() const
125 {
126 return type;
127 }
128 bool isUserType() const
129 {
130 return userType;
131 }
132 void setQualifier(TQualifier qualifier)
133 {
134 type.setQualifier(qualifier);
135 }
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000136
Zhenyao Mo9eedea02014-05-12 16:02:35 -0700137 ConstantUnion *getConstPointer()
alokp@chromium.org43884872010-03-30 00:08:52 +0000138 {
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000139 if (!unionArray)
alokp@chromium.org6ff56fd2010-05-05 16:37:50 +0000140 unionArray = new ConstantUnion[type.getObjectSize()];
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000141
142 return unionArray;
143 }
144
Zhenyao Mo9eedea02014-05-12 16:02:35 -0700145 ConstantUnion *getConstPointer() const
146 {
147 return unionArray;
148 }
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000149
Zhenyao Mo9eedea02014-05-12 16:02:35 -0700150 void shareConstPointer(ConstantUnion *constArray)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000151 {
alokp@chromium.org6c82caf2010-10-14 16:08:56 +0000152 if (unionArray == constArray)
153 return;
154
155 delete[] unionArray;
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000156 unionArray = constArray;
157 }
alokp@chromium.org43884872010-03-30 00:08:52 +0000158
Zhenyao Mo9eedea02014-05-12 16:02:35 -0700159 private:
Jamie Madill703cdd62013-07-08 15:07:30 -0400160 DISALLOW_COPY_AND_ASSIGN(TVariable);
161
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000162 TType type;
163 bool userType;
Zhenyao Mo9eedea02014-05-12 16:02:35 -0700164 // we are assuming that Pool Allocator will free the memory
165 // allocated to unionArray when this object is destroyed.
alokp@chromium.org6ff56fd2010-05-05 16:37:50 +0000166 ConstantUnion *unionArray;
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000167};
168
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000169// The function sub-class of symbols and the parser will need to
170// share this definition of a function parameter.
Zhenyao Mo9eedea02014-05-12 16:02:35 -0700171struct TParameter
172{
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000173 TString *name;
Nicolas Capensbd10cf52013-06-20 09:51:51 -0400174 TType *type;
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000175};
176
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000177// The function sub-class of a symbol.
Zhenyao Mo9eedea02014-05-12 16:02:35 -0700178class TFunction : public TSymbol
179{
180 public:
181 TFunction(TOperator o)
182 : TSymbol(0),
183 returnType(TType(EbtVoid, EbpUndefined)),
184 op(o),
185 defined(false)
186 {
187 }
188 TFunction(const TString *name, TType &retType, TOperator tOp = EOpNull)
189 : TSymbol(name),
190 returnType(retType),
191 mangledName(TFunction::mangleName(*name)),
192 op(tOp),
193 defined(false)
194 {
195 }
alokp@chromium.org43884872010-03-30 00:08:52 +0000196 virtual ~TFunction();
Zhenyao Mo9eedea02014-05-12 16:02:35 -0700197 virtual bool isFunction() const
198 {
199 return true;
200 }
alokp@chromium.org43884872010-03-30 00:08:52 +0000201
Zhenyao Mo9eedea02014-05-12 16:02:35 -0700202 static TString mangleName(const TString &name)
203 {
204 return name + '(';
205 }
206 static TString unmangleName(const TString &mangledName)
alokp@chromium.org43884872010-03-30 00:08:52 +0000207 {
208 return TString(mangledName.c_str(), mangledName.find_first_of('('));
209 }
210
Zhenyao Mo9eedea02014-05-12 16:02:35 -0700211 void addParameter(TParameter &p)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000212 {
213 parameters.push_back(p);
214 mangledName = mangledName + p.type->getMangledName();
215 }
alokp@chromium.org43884872010-03-30 00:08:52 +0000216
Zhenyao Mo9eedea02014-05-12 16:02:35 -0700217 const TString &getMangledName() const
218 {
219 return mangledName;
220 }
221 const TType &getReturnType() const
222 {
223 return returnType;
224 }
alokp@chromium.org8815d7f2010-09-09 17:30:03 +0000225
Zhenyao Mo9eedea02014-05-12 16:02:35 -0700226 void relateToOperator(TOperator o)
227 {
228 op = o;
229 }
230 TOperator getBuiltInOp() const
231 {
232 return op;
233 }
alokp@chromium.org8815d7f2010-09-09 17:30:03 +0000234
Zhenyao Mo9eedea02014-05-12 16:02:35 -0700235 void setDefined()
236 {
237 defined = true;
238 }
239 bool isDefined()
240 {
241 return defined;
242 }
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000243
Zhenyao Mo9eedea02014-05-12 16:02:35 -0700244 size_t getParamCount() const
245 {
246 return parameters.size();
247 }
248 const TParameter &getParam(size_t i) const
249 {
250 return parameters[i];
251 }
alokp@chromium.org43884872010-03-30 00:08:52 +0000252
Zhenyao Mo9eedea02014-05-12 16:02:35 -0700253 private:
Jamie Madill703cdd62013-07-08 15:07:30 -0400254 DISALLOW_COPY_AND_ASSIGN(TFunction);
255
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000256 typedef TVector<TParameter> TParamList;
alokp@chromium.org43884872010-03-30 00:08:52 +0000257 TParamList parameters;
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000258 TType returnType;
259 TString mangledName;
260 TOperator op;
261 bool defined;
262};
263
shannonwoods@chromium.org5668c5d2013-05-30 00:11:48 +0000264// Interface block name sub-symbol
shannonwoods@chromium.org5668c5d2013-05-30 00:11:48 +0000265class TInterfaceBlockName : public TSymbol
266{
Zhenyao Mo9eedea02014-05-12 16:02:35 -0700267 public:
shannonwoods@chromium.org5668c5d2013-05-30 00:11:48 +0000268 TInterfaceBlockName(const TString *name)
269 : TSymbol(name)
Zhenyao Mo9eedea02014-05-12 16:02:35 -0700270 {
271 }
shannonwoods@chromium.org5668c5d2013-05-30 00:11:48 +0000272
Zhenyao Mo9eedea02014-05-12 16:02:35 -0700273 virtual ~TInterfaceBlockName()
274 {
275 }
shannonwoods@chromium.org5668c5d2013-05-30 00:11:48 +0000276};
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000277
Zhenyao Mo9eedea02014-05-12 16:02:35 -0700278class TSymbolTableLevel
279{
280 public:
281 typedef TMap<TString, TSymbol *> tLevel;
alokp@chromium.org43884872010-03-30 00:08:52 +0000282 typedef tLevel::const_iterator const_iterator;
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000283 typedef const tLevel::value_type tLevelPair;
284 typedef std::pair<tLevel::iterator, bool> tInsertResult;
285
Zhenyao Mo9eedea02014-05-12 16:02:35 -0700286 TSymbolTableLevel()
287 {
288 }
alokp@chromium.org43884872010-03-30 00:08:52 +0000289 ~TSymbolTableLevel();
290
Jamie Madillbfa91f42014-06-05 15:45:18 -0400291 bool insert(const TString &name, TSymbol &symbol);
292 bool insert(TSymbol &symbol);
Nicolas Capensbd10cf52013-06-20 09:51:51 -0400293
Jamie Madillbfa91f42014-06-05 15:45:18 -0400294 TSymbol *find(const TString &name) const;
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000295
Zhenyao Mo9eedea02014-05-12 16:02:35 -0700296 void relateToOperator(const char *name, TOperator op);
297 void relateToExtension(const char *name, const TString &ext);
alokp@chromium.org43884872010-03-30 00:08:52 +0000298
Zhenyao Mo9eedea02014-05-12 16:02:35 -0700299 protected:
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000300 tLevel level;
301};
302
shannonwoods@chromium.org6e10a0e2013-05-30 00:02:13 +0000303enum ESymbolLevel
304{
305 COMMON_BUILTINS = 0,
306 ESSL1_BUILTINS = 1,
307 ESSL3_BUILTINS = 2,
308 LAST_BUILTIN_LEVEL = ESSL3_BUILTINS,
309 GLOBAL_LEVEL = 3
310};
311
Zhenyao Mo9eedea02014-05-12 16:02:35 -0700312class TSymbolTable
313{
314 public:
Nicolas Capensbd10cf52013-06-20 09:51:51 -0400315 TSymbolTable()
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000316 {
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000317 // The symbol table cannot be used until push() is called, but
318 // the lack of an initial call to push() can be used to detect
319 // that the symbol table has not been preloaded with built-ins.
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000320 }
321
Alok Priyadarshibc3f1ac2013-09-23 14:57:02 -0400322 ~TSymbolTable();
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000323
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000324 // When the symbol table is initialized with the built-ins, there should
325 // 'push' calls, so that built-ins are at level 0 and the shader
326 // globals are at level 1.
Zhenyao Mo9eedea02014-05-12 16:02:35 -0700327 bool isEmpty()
328 {
329 return table.empty();
330 }
331 bool atBuiltInLevel()
332 {
333 return currentLevel() <= LAST_BUILTIN_LEVEL;
334 }
335 bool atGlobalLevel()
336 {
337 return currentLevel() <= GLOBAL_LEVEL;
338 }
alokp@chromium.org43884872010-03-30 00:08:52 +0000339 void push()
alokp@chromium.orge4249f02010-07-26 18:13:52 +0000340 {
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000341 table.push_back(new TSymbolTableLevel);
Alok Priyadarshibc3f1ac2013-09-23 14:57:02 -0400342 precisionStack.push_back(new PrecisionStackLevel);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000343 }
344
alokp@chromium.org43884872010-03-30 00:08:52 +0000345 void pop()
Alok Priyadarshibc3f1ac2013-09-23 14:57:02 -0400346 {
347 delete table.back();
348 table.pop_back();
349
350 delete precisionStack.back();
daniel@transgaming.coma5d76232010-05-17 09:58:47 +0000351 precisionStack.pop_back();
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000352 }
353
Nicolas Capensbd10cf52013-06-20 09:51:51 -0400354 bool declare(TSymbol &symbol)
shannonwoods@chromium.org1c848092013-05-30 00:02:34 +0000355 {
356 return insert(currentLevel(), symbol);
357 }
358
Nicolas Capensbd10cf52013-06-20 09:51:51 -0400359 bool insert(ESymbolLevel level, TSymbol &symbol)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000360 {
shannonwoods@chromium.org1c848092013-05-30 00:02:34 +0000361 return table[level]->insert(symbol);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000362 }
alokp@chromium.org43884872010-03-30 00:08:52 +0000363
Nicolas Capens49a88872013-06-20 09:54:03 -0400364 bool insertConstInt(ESymbolLevel level, const char *name, int value)
365 {
Zhenyao Mo9eedea02014-05-12 16:02:35 -0700366 TVariable *constant = new TVariable(
367 NewPoolTString(name), TType(EbtInt, EbpUndefined, EvqConst, 1));
Nicolas Capens49a88872013-06-20 09:54:03 -0400368 constant->getConstPointer()->setIConst(value);
369 return insert(level, *constant);
370 }
371
Zhenyao Mo9eedea02014-05-12 16:02:35 -0700372 void insertBuiltIn(ESymbolLevel level, TType *rvalue, const char *name,
373 TType *ptype1, TType *ptype2 = 0, TType *ptype3 = 0,
374 TType *ptype4 = 0, TType *ptype5 = 0);
Nicolas Capens759b9942014-02-14 17:57:14 -0500375
Zhenyao Mo9eedea02014-05-12 16:02:35 -0700376 TSymbol *find(const TString &name, int shaderVersion,
377 bool *builtIn = NULL, bool *sameScope = NULL);
shannonwoods@chromium.org96e7ba12013-05-30 00:02:41 +0000378 TSymbol *findBuiltIn(const TString &name, int shaderVersion);
shannonwoods@chromium.org6e10a0e2013-05-30 00:02:13 +0000379
Zhenyao Mo9eedea02014-05-12 16:02:35 -0700380 TSymbolTableLevel *getOuterLevel()
381 {
shannonwoods@chromium.org6e10a0e2013-05-30 00:02:13 +0000382 assert(currentLevel() >= 1);
daniel@transgaming.com5dd6d092012-03-20 20:10:28 +0000383 return table[currentLevel() - 1];
384 }
385
Zhenyao Mo9eedea02014-05-12 16:02:35 -0700386 void relateToOperator(ESymbolLevel level, const char *name, TOperator op)
387 {
shannonwoods@chromium.org6e10a0e2013-05-30 00:02:13 +0000388 table[level]->relateToOperator(name, op);
alokp@chromium.org8815d7f2010-09-09 17:30:03 +0000389 }
Zhenyao Mo9eedea02014-05-12 16:02:35 -0700390 void relateToExtension(ESymbolLevel level, const char *name, const TString &ext)
391 {
shannonwoods@chromium.org6e10a0e2013-05-30 00:02:13 +0000392 table[level]->relateToExtension(name, ext);
alokp@chromium.org8815d7f2010-09-09 17:30:03 +0000393 }
Alok Priyadarshibc3f1ac2013-09-23 14:57:02 -0400394 void dump(TInfoSink &infoSink) const;
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000395
Zhenyao Mo9eedea02014-05-12 16:02:35 -0700396 bool setDefaultPrecision(const TPublicType &type, TPrecision prec)
397 {
Zhenyao Moed14b792014-05-08 11:21:07 -0700398 if (!SupportsPrecision(type.type))
Zhenyao Moa5a1dfc2013-09-23 14:57:03 -0400399 return false;
shannonwoods@chromium.org09e09882013-05-30 00:18:25 +0000400 if (type.isAggregate())
shannon.woods@transgaming.comd25a6b32013-02-28 23:19:13 +0000401 return false; // Not allowed to set for aggregate types
daniel@transgaming.coma5d76232010-05-17 09:58:47 +0000402 int indexOfLastElement = static_cast<int>(precisionStack.size()) - 1;
Zhenyao Mo9eedea02014-05-12 16:02:35 -0700403 // Uses map operator [], overwrites the current value
404 (*precisionStack[indexOfLastElement])[type.type] = prec;
shannon.woods@transgaming.comd25a6b32013-02-28 23:19:13 +0000405 return true;
daniel@transgaming.coma5d76232010-05-17 09:58:47 +0000406 }
407
Zhenyao Mo9eedea02014-05-12 16:02:35 -0700408 // Searches down the precisionStack for a precision qualifier
409 // for the specified TBasicType
410 TPrecision getDefaultPrecision(TBasicType type);
shannonwoods@chromium.org6b709912013-05-30 00:20:04 +0000411
Jamie Madillbfa91f42014-06-05 15:45:18 -0400412 static int nextUniqueId()
413 {
414 return ++uniqueIdCounter;
415 }
416
Zhenyao Mo9eedea02014-05-12 16:02:35 -0700417 private:
418 ESymbolLevel currentLevel() const
419 {
420 return static_cast<ESymbolLevel>(table.size() - 1);
daniel@transgaming.coma5d76232010-05-17 09:58:47 +0000421 }
422
Zhenyao Mo9eedea02014-05-12 16:02:35 -0700423 std::vector<TSymbolTableLevel *> table;
Alok Priyadarshibc3f1ac2013-09-23 14:57:02 -0400424 typedef TMap<TBasicType, TPrecision> PrecisionStackLevel;
Zhenyao Mo9eedea02014-05-12 16:02:35 -0700425 std::vector< PrecisionStackLevel *> precisionStack;
Jamie Madillbfa91f42014-06-05 15:45:18 -0400426
427 static int uniqueIdCounter;
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000428};
429
430#endif // _SYMBOL_TABLE_INCLUDED_