Merge pull request #1685 from baldurk/warning-fix
[platform/upstream/glslang.git] / glslang / MachineIndependent / SymbolTable.cpp
1 //
2 // Copyright (C) 2002-2005  3Dlabs Inc. Ltd.
3 // Copyright (C) 2012-2013 LunarG, Inc.
4 // Copyright (C) 2017 ARM Limited.
5 // Copyright (C) 2015-2018 Google, Inc.
6 //
7 // All rights reserved.
8 //
9 // Redistribution and use in source and binary forms, with or without
10 // modification, are permitted provided that the following conditions
11 // are met:
12 //
13 //    Redistributions of source code must retain the above copyright
14 //    notice, this list of conditions and the following disclaimer.
15 //
16 //    Redistributions in binary form must reproduce the above
17 //    copyright notice, this list of conditions and the following
18 //    disclaimer in the documentation and/or other materials provided
19 //    with the distribution.
20 //
21 //    Neither the name of 3Dlabs Inc. Ltd. nor the names of its
22 //    contributors may be used to endorse or promote products derived
23 //    from this software without specific prior written permission.
24 //
25 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
26 // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
27 // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
28 // FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
29 // COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
30 // INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
31 // BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
32 // LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
33 // CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
34 // LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
35 // ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
36 // POSSIBILITY OF SUCH DAMAGE.
37 //
38
39 //
40 // Symbol table for parsing.  Most functionality and main ideas
41 // are documented in the header file.
42 //
43
44 #include "SymbolTable.h"
45
46 namespace glslang {
47
48 //
49 // TType helper function needs a place to live.
50 //
51
52 //
53 // Recursively generate mangled names.
54 //
55 void TType::buildMangledName(TString& mangledName) const
56 {
57     if (isMatrix())
58         mangledName += 'm';
59     else if (isVector())
60         mangledName += 'v';
61
62     switch (basicType) {
63     case EbtFloat:              mangledName += 'f';      break;
64     case EbtDouble:             mangledName += 'd';      break;
65     case EbtFloat16:            mangledName += "f16";    break;
66     case EbtInt:                mangledName += 'i';      break;
67     case EbtUint:               mangledName += 'u';      break;
68     case EbtInt8:               mangledName += "i8";     break;
69     case EbtUint8:              mangledName += "u8";     break;
70     case EbtInt16:              mangledName += "i16";    break;
71     case EbtUint16:             mangledName += "u16";    break;
72     case EbtInt64:              mangledName += "i64";    break;
73     case EbtUint64:             mangledName += "u64";    break;
74     case EbtBool:               mangledName += 'b';      break;
75     case EbtAtomicUint:         mangledName += "au";     break;
76 #ifdef NV_EXTENSIONS
77     case EbtAccStructNV:        mangledName += "asnv";   break;
78 #endif
79     case EbtSampler:
80         switch (sampler.type) {
81 #ifdef AMD_EXTENSIONS
82         case EbtFloat16: mangledName += "f16"; break;
83 #endif
84         case EbtInt:   mangledName += "i"; break;
85         case EbtUint:  mangledName += "u"; break;
86         default: break; // some compilers want this
87         }
88         if (sampler.image)
89             mangledName += "I";  // a normal image
90         else if (sampler.sampler)
91             mangledName += "p";  // a "pure" sampler
92         else if (!sampler.combined)
93             mangledName += "t";  // a "pure" texture
94         else
95             mangledName += "s";  // traditional combined sampler
96         if (sampler.arrayed)
97             mangledName += "A";
98         if (sampler.shadow)
99             mangledName += "S";
100         if (sampler.external)
101             mangledName += "E";
102         if (sampler.yuv)
103             mangledName += "Y";
104         switch (sampler.dim) {
105         case Esd1D:       mangledName += "1";  break;
106         case Esd2D:       mangledName += "2";  break;
107         case Esd3D:       mangledName += "3";  break;
108         case EsdCube:     mangledName += "C";  break;
109         case EsdRect:     mangledName += "R2"; break;
110         case EsdBuffer:   mangledName += "B";  break;
111         case EsdSubpass:  mangledName += "P";  break;
112         default: break; // some compilers want this
113         }
114
115         if (sampler.hasReturnStruct()) {
116             // Name mangle for sampler return struct uses struct table index.
117             mangledName += "-tx-struct";
118
119             char text[16]; // plenty enough space for the small integers.
120             snprintf(text, sizeof(text), "%d-", sampler.structReturnIndex);
121             mangledName += text;
122         } else {
123             switch (sampler.getVectorSize()) {
124             case 1: mangledName += "1"; break;
125             case 2: mangledName += "2"; break;
126             case 3: mangledName += "3"; break;
127             case 4: break; // default to prior name mangle behavior
128             }
129         }
130
131         if (sampler.ms)
132             mangledName += "M";
133         break;
134     case EbtStruct:
135     case EbtBlock:
136         if (basicType == EbtStruct)
137             mangledName += "struct-";
138         else
139             mangledName += "block-";
140         if (typeName)
141             mangledName += *typeName;
142         for (unsigned int i = 0; i < structure->size(); ++i) {
143             mangledName += '-';
144             (*structure)[i].type->buildMangledName(mangledName);
145         }
146     default:
147         break;
148     }
149
150     if (getVectorSize() > 0)
151         mangledName += static_cast<char>('0' + getVectorSize());
152     else {
153         mangledName += static_cast<char>('0' + getMatrixCols());
154         mangledName += static_cast<char>('0' + getMatrixRows());
155     }
156
157     if (arraySizes) {
158         const int maxSize = 11;
159         char buf[maxSize];
160         for (int i = 0; i < arraySizes->getNumDims(); ++i) {
161             if (arraySizes->getDimNode(i)) {
162                 if (arraySizes->getDimNode(i)->getAsSymbolNode())
163                     snprintf(buf, maxSize, "s%d", arraySizes->getDimNode(i)->getAsSymbolNode()->getId());
164                 else
165                     snprintf(buf, maxSize, "s%p", arraySizes->getDimNode(i));
166             } else
167                 snprintf(buf, maxSize, "%d", arraySizes->getDimSize(i));
168             mangledName += '[';
169             mangledName += buf;
170             mangledName += ']';
171         }
172     }
173 }
174
175 //
176 // Dump functions.
177 //
178
179 void TVariable::dump(TInfoSink& infoSink) const
180 {
181     infoSink.debug << getName().c_str() << ": " << type.getStorageQualifierString() << " " << type.getBasicTypeString();
182     if (type.isArray()) {
183         infoSink.debug << "[0]";
184     }
185     infoSink.debug << "\n";
186 }
187
188 void TFunction::dump(TInfoSink& infoSink) const
189 {
190     infoSink.debug << getName().c_str() << ": " <<  returnType.getBasicTypeString() << " " << getMangledName().c_str() << "\n";
191 }
192
193 void TAnonMember::dump(TInfoSink& TInfoSink) const
194 {
195     TInfoSink.debug << "anonymous member " << getMemberNumber() << " of " << getAnonContainer().getName().c_str() << "\n";
196 }
197
198 void TSymbolTableLevel::dump(TInfoSink &infoSink) const
199 {
200     tLevel::const_iterator it;
201     for (it = level.begin(); it != level.end(); ++it)
202         (*it).second->dump(infoSink);
203 }
204
205 void TSymbolTable::dump(TInfoSink &infoSink) const
206 {
207     for (int level = currentLevel(); level >= 0; --level) {
208         infoSink.debug << "LEVEL " << level << "\n";
209         table[level]->dump(infoSink);
210     }
211 }
212
213 //
214 // Functions have buried pointers to delete.
215 //
216 TFunction::~TFunction()
217 {
218     for (TParamList::iterator i = parameters.begin(); i != parameters.end(); ++i)
219         delete (*i).type;
220 }
221
222 //
223 // Symbol table levels are a map of pointers to symbols that have to be deleted.
224 //
225 TSymbolTableLevel::~TSymbolTableLevel()
226 {
227     for (tLevel::iterator it = level.begin(); it != level.end(); ++it)
228         delete (*it).second;
229
230     delete [] defaultPrecision;
231 }
232
233 //
234 // Change all function entries in the table with the non-mangled name
235 // to be related to the provided built-in operation.
236 //
237 void TSymbolTableLevel::relateToOperator(const char* name, TOperator op)
238 {
239     tLevel::const_iterator candidate = level.lower_bound(name);
240     while (candidate != level.end()) {
241         const TString& candidateName = (*candidate).first;
242         TString::size_type parenAt = candidateName.find_first_of('(');
243         if (parenAt != candidateName.npos && candidateName.compare(0, parenAt, name) == 0) {
244             TFunction* function = (*candidate).second->getAsFunction();
245             function->relateToOperator(op);
246         } else
247             break;
248         ++candidate;
249     }
250 }
251
252 // Make all function overloads of the given name require an extension(s).
253 // Should only be used for a version/profile that actually needs the extension(s).
254 void TSymbolTableLevel::setFunctionExtensions(const char* name, int num, const char* const extensions[])
255 {
256     tLevel::const_iterator candidate = level.lower_bound(name);
257     while (candidate != level.end()) {
258         const TString& candidateName = (*candidate).first;
259         TString::size_type parenAt = candidateName.find_first_of('(');
260         if (parenAt != candidateName.npos && candidateName.compare(0, parenAt, name) == 0) {
261             TSymbol* symbol = candidate->second;
262             symbol->setExtensions(num, extensions);
263         } else
264             break;
265         ++candidate;
266     }
267 }
268
269 //
270 // Make all symbols in this table level read only.
271 //
272 void TSymbolTableLevel::readOnly()
273 {
274     for (tLevel::iterator it = level.begin(); it != level.end(); ++it)
275         (*it).second->makeReadOnly();
276 }
277
278 //
279 // Copy a symbol, but the copy is writable; call readOnly() afterward if that's not desired.
280 //
281 TSymbol::TSymbol(const TSymbol& copyOf)
282 {
283     name = NewPoolTString(copyOf.name->c_str());
284     uniqueId = copyOf.uniqueId;
285     writable = true;
286 }
287
288 TVariable::TVariable(const TVariable& copyOf) : TSymbol(copyOf)
289 {
290     type.deepCopy(copyOf.type);
291     userType = copyOf.userType;
292
293     // we don't support specialization-constant subtrees in cloned tables, only extensions
294     constSubtree = nullptr;
295     extensions = nullptr;
296     memberExtensions = nullptr;
297     if (copyOf.getNumExtensions() > 0)
298         setExtensions(copyOf.getNumExtensions(), copyOf.getExtensions());
299     if (copyOf.hasMemberExtensions()) {
300         for (int m = 0; m < (int)copyOf.type.getStruct()->size(); ++m) {
301             if (copyOf.getNumMemberExtensions(m) > 0)
302                 setMemberExtensions(m, copyOf.getNumMemberExtensions(m), copyOf.getMemberExtensions(m));
303         }
304     }
305
306     if (! copyOf.constArray.empty()) {
307         assert(! copyOf.type.isStruct());
308         TConstUnionArray newArray(copyOf.constArray, 0, copyOf.constArray.size());
309         constArray = newArray;
310     }
311 }
312
313 TVariable* TVariable::clone() const
314 {
315     TVariable *variable = new TVariable(*this);
316
317     return variable;
318 }
319
320 TFunction::TFunction(const TFunction& copyOf) : TSymbol(copyOf)
321 {
322     for (unsigned int i = 0; i < copyOf.parameters.size(); ++i) {
323         TParameter param;
324         parameters.push_back(param);
325         parameters.back().copyParam(copyOf.parameters[i]);
326     }
327
328     extensions = nullptr;
329     if (copyOf.getNumExtensions() > 0)
330         setExtensions(copyOf.getNumExtensions(), copyOf.getExtensions());
331     returnType.deepCopy(copyOf.returnType);
332     mangledName = copyOf.mangledName;
333     op = copyOf.op;
334     defined = copyOf.defined;
335     prototyped = copyOf.prototyped;
336     implicitThis = copyOf.implicitThis;
337     illegalImplicitThis = copyOf.illegalImplicitThis;
338     defaultParamCount = copyOf.defaultParamCount;
339 }
340
341 TFunction* TFunction::clone() const
342 {
343     TFunction *function = new TFunction(*this);
344
345     return function;
346 }
347
348 TAnonMember* TAnonMember::clone() const
349 {
350     // Anonymous members of a given block should be cloned at a higher level,
351     // where they can all be assured to still end up pointing to a single
352     // copy of the original container.
353     assert(0);
354
355     return 0;
356 }
357
358 TSymbolTableLevel* TSymbolTableLevel::clone() const
359 {
360     TSymbolTableLevel *symTableLevel = new TSymbolTableLevel();
361     symTableLevel->anonId = anonId;
362     symTableLevel->thisLevel = thisLevel;
363     std::vector<bool> containerCopied(anonId, false);
364     tLevel::const_iterator iter;
365     for (iter = level.begin(); iter != level.end(); ++iter) {
366         const TAnonMember* anon = iter->second->getAsAnonMember();
367         if (anon) {
368             // Insert all the anonymous members of this same container at once,
369             // avoid inserting the remaining members in the future, once this has been done,
370             // allowing them to all be part of the same new container.
371             if (! containerCopied[anon->getAnonId()]) {
372                 TVariable* container = anon->getAnonContainer().clone();
373                 container->changeName(NewPoolTString(""));
374                 // insert the container and all its members
375                 symTableLevel->insert(*container, false);
376                 containerCopied[anon->getAnonId()] = true;
377             }
378         } else
379             symTableLevel->insert(*iter->second->clone(), false);
380     }
381
382     return symTableLevel;
383 }
384
385 void TSymbolTable::copyTable(const TSymbolTable& copyOf)
386 {
387     assert(adoptedLevels == copyOf.adoptedLevels);
388
389     uniqueId = copyOf.uniqueId;
390     noBuiltInRedeclarations = copyOf.noBuiltInRedeclarations;
391     separateNameSpaces = copyOf.separateNameSpaces;
392     for (unsigned int i = copyOf.adoptedLevels; i < copyOf.table.size(); ++i)
393         table.push_back(copyOf.table[i]->clone());
394 }
395
396 } // end namespace glslang