blob: daaa33f91f0bf6f251e37efeac91ce14508824d1 [file] [log] [blame]
Olli Etuahod4529f32017-12-12 13:06:40 +02001//
2// Copyright (c) 2017 The ANGLE Project Authors. All rights reserved.
3// Use of this source code is governed by a BSD-style license that can be
4// found in the LICENSE file.
5//
6// Symbol.cpp: Symbols representing variables, functions, structures and interface blocks.
7//
8
9#if defined(_MSC_VER)
10#pragma warning(disable : 4718)
11#endif
12
13#include "compiler/translator/Symbol.h"
14
Olli Etuahofbb1c792018-01-19 16:26:59 +020015#include "compiler/translator/ImmutableStringBuilder.h"
Olli Etuahod4529f32017-12-12 13:06:40 +020016#include "compiler/translator/SymbolTable.h"
17
18namespace sh
19{
20
21namespace
22{
23
Olli Etuahofbb1c792018-01-19 16:26:59 +020024constexpr const ImmutableString kMainName("main");
25constexpr const ImmutableString kImageLoadName("imageLoad");
26constexpr const ImmutableString kImageStoreName("imageStore");
27constexpr const ImmutableString kImageSizeName("imageSize");
28
Olli Etuahod4529f32017-12-12 13:06:40 +020029static const char kFunctionMangledNameSeparator = '(';
30
31} // anonymous namespace
32
33TSymbol::TSymbol(TSymbolTable *symbolTable,
Olli Etuahofbb1c792018-01-19 16:26:59 +020034 const ImmutableString &name,
Olli Etuahod4529f32017-12-12 13:06:40 +020035 SymbolType symbolType,
36 TExtension extension)
37 : mName(name),
38 mUniqueId(symbolTable->nextUniqueId()),
39 mSymbolType(symbolType),
40 mExtension(extension)
41{
42 ASSERT(mSymbolType == SymbolType::BuiltIn || mExtension == TExtension::UNDEFINED);
Olli Etuahofbb1c792018-01-19 16:26:59 +020043 ASSERT(mName != "" || mSymbolType == SymbolType::AngleInternal ||
Olli Etuaho95ed1942018-02-01 14:01:19 +020044 mSymbolType == SymbolType::Empty);
Olli Etuahod4529f32017-12-12 13:06:40 +020045}
46
Olli Etuahofbb1c792018-01-19 16:26:59 +020047ImmutableString TSymbol::name() const
Olli Etuahod4529f32017-12-12 13:06:40 +020048{
Olli Etuahofbb1c792018-01-19 16:26:59 +020049 if (mName != "")
Olli Etuahod4529f32017-12-12 13:06:40 +020050 {
Olli Etuahofbb1c792018-01-19 16:26:59 +020051 return mName;
Olli Etuahod4529f32017-12-12 13:06:40 +020052 }
53 ASSERT(mSymbolType == SymbolType::AngleInternal);
Olli Etuahofbb1c792018-01-19 16:26:59 +020054 int uniqueId = mUniqueId.get();
55 ImmutableStringBuilder symbolNameOut(sizeof(uniqueId) * 2u + 1u);
56 symbolNameOut << 's';
57 symbolNameOut.appendHex(mUniqueId.get());
58 return symbolNameOut;
Olli Etuahod4529f32017-12-12 13:06:40 +020059}
60
Olli Etuahofbb1c792018-01-19 16:26:59 +020061ImmutableString TSymbol::getMangledName() const
Olli Etuahod4529f32017-12-12 13:06:40 +020062{
63 ASSERT(mSymbolType != SymbolType::Empty);
Olli Etuahobed35d72017-12-20 16:36:26 +020064 return name();
Olli Etuahod4529f32017-12-12 13:06:40 +020065}
66
67TVariable::TVariable(TSymbolTable *symbolTable,
Olli Etuahofbb1c792018-01-19 16:26:59 +020068 const ImmutableString &name,
Olli Etuahob60d30f2018-01-16 12:31:06 +020069 const TType *type,
Olli Etuahod4529f32017-12-12 13:06:40 +020070 SymbolType symbolType,
71 TExtension extension)
Olli Etuahob60d30f2018-01-16 12:31:06 +020072 : TSymbol(symbolTable, name, symbolType, extension), mType(type), unionArray(nullptr)
Olli Etuahod4529f32017-12-12 13:06:40 +020073{
Olli Etuahob60d30f2018-01-16 12:31:06 +020074 ASSERT(mType);
Olli Etuahod4529f32017-12-12 13:06:40 +020075}
76
77TStructure::TStructure(TSymbolTable *symbolTable,
Olli Etuahofbb1c792018-01-19 16:26:59 +020078 const ImmutableString &name,
Olli Etuahod4529f32017-12-12 13:06:40 +020079 const TFieldList *fields,
80 SymbolType symbolType)
81 : TSymbol(symbolTable, name, symbolType), TFieldListCollection(fields)
82{
83}
84
Olli Etuahofbb1c792018-01-19 16:26:59 +020085void TStructure::createSamplerSymbols(const char *namePrefix,
Olli Etuahod4529f32017-12-12 13:06:40 +020086 const TString &apiNamePrefix,
Olli Etuahobbd9d4c2017-12-21 12:02:00 +020087 TVector<const TVariable *> *outputSymbols,
88 TMap<const TVariable *, TString> *outputSymbolsToAPINames,
Olli Etuahod4529f32017-12-12 13:06:40 +020089 TSymbolTable *symbolTable) const
90{
91 ASSERT(containsSamplers());
92 for (const auto *field : *mFields)
93 {
94 const TType *fieldType = field->type();
95 if (IsSampler(fieldType->getBasicType()) || fieldType->isStructureContainingSamplers())
96 {
Olli Etuahofbb1c792018-01-19 16:26:59 +020097 std::stringstream fieldName;
98 fieldName << namePrefix << "_" << field->name();
99 TString fieldApiName = apiNamePrefix + ".";
100 fieldApiName += field->name().data();
101 fieldType->createSamplerSymbols(ImmutableString(fieldName.str()), fieldApiName,
102 outputSymbols, outputSymbolsToAPINames, symbolTable);
Olli Etuahod4529f32017-12-12 13:06:40 +0200103 }
104 }
105}
106
Olli Etuahofbb1c792018-01-19 16:26:59 +0200107void TStructure::setName(const ImmutableString &name)
Olli Etuahod4529f32017-12-12 13:06:40 +0200108{
Olli Etuahofbb1c792018-01-19 16:26:59 +0200109 ImmutableString *mutableName = const_cast<ImmutableString *>(&mName);
Olli Etuahod4529f32017-12-12 13:06:40 +0200110 *mutableName = name;
111}
112
113TInterfaceBlock::TInterfaceBlock(TSymbolTable *symbolTable,
Olli Etuahofbb1c792018-01-19 16:26:59 +0200114 const ImmutableString &name,
Olli Etuahod4529f32017-12-12 13:06:40 +0200115 const TFieldList *fields,
116 const TLayoutQualifier &layoutQualifier,
117 SymbolType symbolType,
118 TExtension extension)
119 : TSymbol(symbolTable, name, symbolType, extension),
120 TFieldListCollection(fields),
121 mBlockStorage(layoutQualifier.blockStorage),
122 mBinding(layoutQualifier.binding)
123{
124 ASSERT(name != nullptr);
125}
126
127TFunction::TFunction(TSymbolTable *symbolTable,
Olli Etuahofbb1c792018-01-19 16:26:59 +0200128 const ImmutableString &name,
Olli Etuahod4529f32017-12-12 13:06:40 +0200129 const TType *retType,
130 SymbolType symbolType,
Olli Etuaho0c371002017-12-13 17:00:25 +0400131 bool knownToNotHaveSideEffects,
Olli Etuahod4529f32017-12-12 13:06:40 +0200132 TOperator tOp,
133 TExtension extension)
134 : TSymbol(symbolTable, name, symbolType, extension),
135 returnType(retType),
136 mangledName(nullptr),
137 op(tOp),
138 defined(false),
Olli Etuaho0c371002017-12-13 17:00:25 +0400139 mHasPrototypeDeclaration(false),
140 mKnownToNotHaveSideEffects(knownToNotHaveSideEffects)
Olli Etuahod4529f32017-12-12 13:06:40 +0200141{
Olli Etuaho0c371002017-12-13 17:00:25 +0400142 // Functions with an empty name are not allowed.
143 ASSERT(symbolType != SymbolType::Empty);
144 ASSERT(name != nullptr || symbolType == SymbolType::AngleInternal || tOp != EOpNull);
Olli Etuahod4529f32017-12-12 13:06:40 +0200145}
146
Olli Etuahod4529f32017-12-12 13:06:40 +0200147void TFunction::clearParameters()
148{
Olli Etuahod4529f32017-12-12 13:06:40 +0200149 parameters.clear();
Olli Etuahofbb1c792018-01-19 16:26:59 +0200150 mangledName = ImmutableString("");
Olli Etuahod4529f32017-12-12 13:06:40 +0200151}
152
153void TFunction::swapParameters(const TFunction &parametersSource)
154{
155 clearParameters();
156 for (auto parameter : parametersSource.parameters)
157 {
158 addParameter(parameter);
159 }
160}
161
Olli Etuahofbb1c792018-01-19 16:26:59 +0200162ImmutableString TFunction::buildMangledName() const
Olli Etuahod4529f32017-12-12 13:06:40 +0200163{
Olli Etuahofbb1c792018-01-19 16:26:59 +0200164 std::string newName(name().data(), name().length());
Olli Etuahod4529f32017-12-12 13:06:40 +0200165 newName += kFunctionMangledNameSeparator;
166
167 for (const auto &p : parameters)
168 {
169 newName += p.type->getMangledName();
170 }
Olli Etuahofbb1c792018-01-19 16:26:59 +0200171 return ImmutableString(newName);
Olli Etuahod4529f32017-12-12 13:06:40 +0200172}
173
Olli Etuaho1bb85282017-12-14 13:39:53 +0200174bool TFunction::isMain() const
175{
Olli Etuahofbb1c792018-01-19 16:26:59 +0200176 return symbolType() == SymbolType::UserDefined && name() == kMainName;
Olli Etuaho1bb85282017-12-14 13:39:53 +0200177}
178
179bool TFunction::isImageFunction() const
180{
181 return symbolType() == SymbolType::BuiltIn &&
Olli Etuahofbb1c792018-01-19 16:26:59 +0200182 (name() == kImageSizeName || name() == kImageLoadName || name() == kImageStoreName);
Olli Etuaho1bb85282017-12-14 13:39:53 +0200183}
184
Olli Etuahod4529f32017-12-12 13:06:40 +0200185} // namespace sh