blob: 6525dee770b277e4486a46e5429f154e6ef11ef4 [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 }
Nicolas Capensadfffe42014-06-17 02:13:36 -0400188 TFunction(const TString *name, const TType &retType, TOperator tOp = EOpNull)
Zhenyao Mo9eedea02014-05-12 16:02:35 -0700189 : 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
Nicolas Capensadfffe42014-06-17 02:13:36 -0400291 bool insert(TSymbol *symbol);
Nicolas Capensbd10cf52013-06-20 09:51:51 -0400292
Jamie Madillbfa91f42014-06-05 15:45:18 -0400293 TSymbol *find(const TString &name) const;
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000294
Zhenyao Mo9eedea02014-05-12 16:02:35 -0700295 void relateToOperator(const char *name, TOperator op);
296 void relateToExtension(const char *name, const TString &ext);
alokp@chromium.org43884872010-03-30 00:08:52 +0000297
Zhenyao Mo9eedea02014-05-12 16:02:35 -0700298 protected:
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000299 tLevel level;
300};
301
shannonwoods@chromium.org6e10a0e2013-05-30 00:02:13 +0000302enum ESymbolLevel
303{
304 COMMON_BUILTINS = 0,
305 ESSL1_BUILTINS = 1,
306 ESSL3_BUILTINS = 2,
307 LAST_BUILTIN_LEVEL = ESSL3_BUILTINS,
308 GLOBAL_LEVEL = 3
309};
310
Zhenyao Mo9eedea02014-05-12 16:02:35 -0700311class TSymbolTable
312{
313 public:
Nicolas Capensbd10cf52013-06-20 09:51:51 -0400314 TSymbolTable()
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000315 {
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000316 // The symbol table cannot be used until push() is called, but
317 // the lack of an initial call to push() can be used to detect
318 // that the symbol table has not been preloaded with built-ins.
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000319 }
320
Alok Priyadarshibc3f1ac2013-09-23 14:57:02 -0400321 ~TSymbolTable();
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000322
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000323 // When the symbol table is initialized with the built-ins, there should
324 // 'push' calls, so that built-ins are at level 0 and the shader
325 // globals are at level 1.
Zhenyao Moe740add2014-07-18 17:01:01 -0700326 bool isEmpty() const
Zhenyao Mo9eedea02014-05-12 16:02:35 -0700327 {
328 return table.empty();
329 }
Zhenyao Moe740add2014-07-18 17:01:01 -0700330 bool atBuiltInLevel() const
Zhenyao Mo9eedea02014-05-12 16:02:35 -0700331 {
332 return currentLevel() <= LAST_BUILTIN_LEVEL;
333 }
Zhenyao Moe740add2014-07-18 17:01:01 -0700334 bool atGlobalLevel() const
Zhenyao Mo9eedea02014-05-12 16:02:35 -0700335 {
336 return currentLevel() <= GLOBAL_LEVEL;
337 }
alokp@chromium.org43884872010-03-30 00:08:52 +0000338 void push()
alokp@chromium.orge4249f02010-07-26 18:13:52 +0000339 {
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000340 table.push_back(new TSymbolTableLevel);
Alok Priyadarshibc3f1ac2013-09-23 14:57:02 -0400341 precisionStack.push_back(new PrecisionStackLevel);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000342 }
343
alokp@chromium.org43884872010-03-30 00:08:52 +0000344 void pop()
Alok Priyadarshibc3f1ac2013-09-23 14:57:02 -0400345 {
346 delete table.back();
347 table.pop_back();
348
349 delete precisionStack.back();
daniel@transgaming.coma5d76232010-05-17 09:58:47 +0000350 precisionStack.pop_back();
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000351 }
352
Nicolas Capensadfffe42014-06-17 02:13:36 -0400353 bool declare(TSymbol *symbol)
shannonwoods@chromium.org1c848092013-05-30 00:02:34 +0000354 {
355 return insert(currentLevel(), symbol);
356 }
357
Nicolas Capensadfffe42014-06-17 02:13:36 -0400358 bool insert(ESymbolLevel level, TSymbol *symbol)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000359 {
shannonwoods@chromium.org1c848092013-05-30 00:02:34 +0000360 return table[level]->insert(symbol);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000361 }
alokp@chromium.org43884872010-03-30 00:08:52 +0000362
Nicolas Capens49a88872013-06-20 09:54:03 -0400363 bool insertConstInt(ESymbolLevel level, const char *name, int value)
364 {
Zhenyao Mo9eedea02014-05-12 16:02:35 -0700365 TVariable *constant = new TVariable(
366 NewPoolTString(name), TType(EbtInt, EbpUndefined, EvqConst, 1));
Nicolas Capens49a88872013-06-20 09:54:03 -0400367 constant->getConstPointer()->setIConst(value);
Nicolas Capensadfffe42014-06-17 02:13:36 -0400368 return insert(level, constant);
Nicolas Capens49a88872013-06-20 09:54:03 -0400369 }
370
Zhenyao Mo9eedea02014-05-12 16:02:35 -0700371 void insertBuiltIn(ESymbolLevel level, TType *rvalue, const char *name,
372 TType *ptype1, TType *ptype2 = 0, TType *ptype3 = 0,
373 TType *ptype4 = 0, TType *ptype5 = 0);
Nicolas Capens759b9942014-02-14 17:57:14 -0500374
Zhenyao Mo9eedea02014-05-12 16:02:35 -0700375 TSymbol *find(const TString &name, int shaderVersion,
Zhenyao Moe740add2014-07-18 17:01:01 -0700376 bool *builtIn = NULL, bool *sameScope = NULL) const;
377 TSymbol *findBuiltIn(const TString &name, int shaderVersion) const;
shannonwoods@chromium.org6e10a0e2013-05-30 00:02:13 +0000378
Zhenyao Mo9eedea02014-05-12 16:02:35 -0700379 TSymbolTableLevel *getOuterLevel()
380 {
shannonwoods@chromium.org6e10a0e2013-05-30 00:02:13 +0000381 assert(currentLevel() >= 1);
daniel@transgaming.com5dd6d092012-03-20 20:10:28 +0000382 return table[currentLevel() - 1];
383 }
384
Zhenyao Mo9eedea02014-05-12 16:02:35 -0700385 void relateToOperator(ESymbolLevel level, const char *name, TOperator op)
386 {
shannonwoods@chromium.org6e10a0e2013-05-30 00:02:13 +0000387 table[level]->relateToOperator(name, op);
alokp@chromium.org8815d7f2010-09-09 17:30:03 +0000388 }
Zhenyao Mo9eedea02014-05-12 16:02:35 -0700389 void relateToExtension(ESymbolLevel level, const char *name, const TString &ext)
390 {
shannonwoods@chromium.org6e10a0e2013-05-30 00:02:13 +0000391 table[level]->relateToExtension(name, ext);
alokp@chromium.org8815d7f2010-09-09 17:30:03 +0000392 }
Alok Priyadarshibc3f1ac2013-09-23 14:57:02 -0400393 void dump(TInfoSink &infoSink) const;
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000394
Zhenyao Mo9eedea02014-05-12 16:02:35 -0700395 bool setDefaultPrecision(const TPublicType &type, TPrecision prec)
396 {
Zhenyao Moed14b792014-05-08 11:21:07 -0700397 if (!SupportsPrecision(type.type))
Zhenyao Moa5a1dfc2013-09-23 14:57:03 -0400398 return false;
shannonwoods@chromium.org09e09882013-05-30 00:18:25 +0000399 if (type.isAggregate())
shannon.woods@transgaming.comd25a6b32013-02-28 23:19:13 +0000400 return false; // Not allowed to set for aggregate types
daniel@transgaming.coma5d76232010-05-17 09:58:47 +0000401 int indexOfLastElement = static_cast<int>(precisionStack.size()) - 1;
Zhenyao Mo9eedea02014-05-12 16:02:35 -0700402 // Uses map operator [], overwrites the current value
403 (*precisionStack[indexOfLastElement])[type.type] = prec;
shannon.woods@transgaming.comd25a6b32013-02-28 23:19:13 +0000404 return true;
daniel@transgaming.coma5d76232010-05-17 09:58:47 +0000405 }
406
Zhenyao Mo9eedea02014-05-12 16:02:35 -0700407 // Searches down the precisionStack for a precision qualifier
408 // for the specified TBasicType
Zhenyao Moe740add2014-07-18 17:01:01 -0700409 TPrecision getDefaultPrecision(TBasicType type) const;
shannonwoods@chromium.org6b709912013-05-30 00:20:04 +0000410
Jamie Madillbfa91f42014-06-05 15:45:18 -0400411 static int nextUniqueId()
412 {
413 return ++uniqueIdCounter;
414 }
415
Zhenyao Mo9eedea02014-05-12 16:02:35 -0700416 private:
417 ESymbolLevel currentLevel() const
418 {
419 return static_cast<ESymbolLevel>(table.size() - 1);
daniel@transgaming.coma5d76232010-05-17 09:58:47 +0000420 }
421
Zhenyao Mo9eedea02014-05-12 16:02:35 -0700422 std::vector<TSymbolTableLevel *> table;
Alok Priyadarshibc3f1ac2013-09-23 14:57:02 -0400423 typedef TMap<TBasicType, TPrecision> PrecisionStackLevel;
Zhenyao Mo9eedea02014-05-12 16:02:35 -0700424 std::vector< PrecisionStackLevel *> precisionStack;
Jamie Madillbfa91f42014-06-05 15:45:18 -0400425
426 static int uniqueIdCounter;
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000427};
428
429#endif // _SYMBOL_TABLE_INCLUDED_