Hash :
b8b962d2
Author :
Date :
2024-11-08T14:53:00
Parse function parameters into TPublicType Parse function parameters into TPublicType instead of TType. TType holds the type info, TPublicType holds the type specification info. This helps in moving the TType::isStructSpecifier into the AST nodes, away from the type system which it is not part of. Removes duplicated code where unnamed unsized arrays would cause different error message than named unsized arrays. Bug: angleproject:377330017 Change-Id: I102b9e87823a545f7e64f971aafbdcd313a542fb Reviewed-on: https://chromium-review.googlesource.com/c/angle/angle/+/6000009 Reviewed-by: Geoff Lang <geofflang@chromium.org> Commit-Queue: Kimmo Kinnunen <kkinnunen@apple.com> Reviewed-by: Shahbaz Youssefi <syoussefi@chromium.org> Auto-Submit: Kimmo Kinnunen <kkinnunen@apple.com>
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401
//
// Copyright 2017 The ANGLE Project Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
//
// Symbol.h: Symbols representing variables, functions, structures and interface blocks.
//
#ifndef COMPILER_TRANSLATOR_SYMBOL_H_
#define COMPILER_TRANSLATOR_SYMBOL_H_
#include "common/angleutils.h"
#include "compiler/translator/ExtensionBehavior.h"
#include "compiler/translator/ImmutableString.h"
#include "compiler/translator/IntermNode.h"
#include "compiler/translator/SymbolUniqueId.h"
namespace sh
{
class TSymbolTable;
// Symbol base class. (Can build functions or variables out of these...)
class TSymbol : angle::NonCopyable
{
public:
POOL_ALLOCATOR_NEW_DELETE
TSymbol(TSymbolTable *symbolTable,
const ImmutableString &name,
SymbolType symbolType,
SymbolClass symbolClass,
TExtension extension = TExtension::UNDEFINED);
TSymbol(TSymbolTable *symbolTable,
const ImmutableString &name,
SymbolType symbolType,
SymbolClass symbolClass,
const std::array<TExtension, 3u> &extensions);
// Note that we can't have a virtual destructor in order to support constexpr symbols. Data is
// either statically allocated or pool allocated.
~TSymbol() = default;
// Calling name() for empty symbols (symbolType == SymbolType::Empty) generates a similar name
// as for internal variables.
ImmutableString name() const;
// Don't call getMangledName() for empty symbols (symbolType == SymbolType::Empty).
ImmutableString getMangledName() const;
bool isFunction() const { return mSymbolClass == SymbolClass::Function; }
bool isVariable() const { return mSymbolClass == SymbolClass::Variable; }
bool isStruct() const { return mSymbolClass == SymbolClass::Struct; }
bool isInterfaceBlock() const { return mSymbolClass == SymbolClass::InterfaceBlock; }
const TSymbolUniqueId &uniqueId() const { return mUniqueId; }
SymbolType symbolType() const { return mSymbolType; }
const std::array<TExtension, 3u> extensions() const { return mExtensions; }
template <size_t ExtensionCount>
constexpr const std::array<TExtension, 3u> CreateExtensionList(
const std::array<TExtension, ExtensionCount> &extensions)
{
switch (extensions.size())
{
case 1:
return std::array<TExtension, 3u>{
{extensions[0], TExtension::UNDEFINED, TExtension::UNDEFINED}};
case 2:
return std::array<TExtension, 3u>{
{extensions[0], extensions[1], TExtension::UNDEFINED}};
case 3:
return std::array<TExtension, 3u>{{extensions[0], extensions[1], extensions[2]}};
default:
UNREACHABLE();
return std::array<TExtension, 3u>{
{TExtension::UNDEFINED, TExtension::UNDEFINED, TExtension::UNDEFINED}};
}
}
protected:
template <size_t ExtensionCount>
constexpr TSymbol(const TSymbolUniqueId &id,
const ImmutableString &name,
SymbolType symbolType,
const std::array<TExtension, ExtensionCount> &extensions,
SymbolClass symbolClass)
: mName(name),
mUniqueId(id),
mExtensions(CreateExtensionList(extensions)),
mSymbolType(symbolType),
mSymbolClass(symbolClass)
{}
const ImmutableString mName;
private:
const TSymbolUniqueId mUniqueId;
const std::array<TExtension, 3u> mExtensions;
const SymbolType mSymbolType : 4;
// We use this instead of having virtual functions for querying the class in order to support
// constexpr symbols.
const SymbolClass mSymbolClass : 4;
};
static_assert(sizeof(TSymbol) <= 24, "Size check failed");
// Variable.
// May store the value of a constant variable of any type (float, int, bool or struct).
class TVariable : public TSymbol
{
public:
TVariable(TSymbolTable *symbolTable,
const ImmutableString &name,
const TType *type,
SymbolType symbolType,
TExtension ext = TExtension::UNDEFINED);
TVariable(TSymbolTable *symbolTable,
const ImmutableString &name,
const TType *type,
SymbolType symbolType,
const std::array<TExtension, 3u> &extensions);
const TType &getType() const { return *mType; }
const TConstantUnion *getConstPointer() const { return unionArray; }
void shareConstPointer(const TConstantUnion *constArray) { unionArray = constArray; }
// Note: only to be used for built-in variables with autogenerated ids!
constexpr TVariable(const TSymbolUniqueId &id,
const ImmutableString &name,
SymbolType symbolType,
TExtension extension,
const TType *type)
: TSymbol(id,
name,
symbolType,
std::array<TExtension, 1u>{{extension}},
SymbolClass::Variable),
mType(type),
unionArray(nullptr)
{}
template <size_t ExtensionCount>
constexpr TVariable(const TSymbolUniqueId &id,
const ImmutableString &name,
SymbolType symbolType,
const std::array<TExtension, ExtensionCount> &extensions,
const TType *type)
: TSymbol(id, name, symbolType, extensions, SymbolClass::Variable),
mType(type),
unionArray(nullptr)
{}
private:
const TType *mType;
const TConstantUnion *unionArray;
};
// Struct type.
class TStructure : public TSymbol, public TFieldListCollection
{
public:
TStructure(TSymbolTable *symbolTable,
const ImmutableString &name,
const TFieldList *fields,
SymbolType symbolType);
// The char arrays passed in must be pool allocated or static.
void createSamplerSymbols(const char *namePrefix,
const TString &apiNamePrefix,
TVector<const TVariable *> *outputSymbols,
TMap<const TVariable *, TString> *outputSymbolsToAPINames,
TSymbolTable *symbolTable) const;
void setAtGlobalScope(bool atGlobalScope) { mAtGlobalScope = atGlobalScope; }
bool atGlobalScope() const { return mAtGlobalScope; }
private:
friend class TSymbolTable;
// For creating built-in structs.
TStructure(const TSymbolUniqueId &id,
const ImmutableString &name,
TExtension extension,
const TFieldList *fields)
: TSymbol(id,
name,
SymbolType::BuiltIn,
std::array<TExtension, 1u>{{extension}},
SymbolClass::Struct),
TFieldListCollection(fields)
{}
template <size_t ExtensionCount>
TStructure(const TSymbolUniqueId &id,
const ImmutableString &name,
const std::array<TExtension, ExtensionCount> &extensions,
const TFieldList *fields)
: TSymbol(id, name, SymbolType::BuiltIn, extensions, SymbolClass::Struct),
TFieldListCollection(fields)
{}
// TODO(zmo): Find a way to get rid of the const_cast in function
// setName(). At the moment keep this function private so only
// friend class RegenerateStructNames may call it.
friend class RegenerateStructNamesTraverser;
void setName(const ImmutableString &name);
bool mAtGlobalScope;
};
// Interface block. Note that this contains the block name, not the instance name. Interface block
// instances are stored as TVariable.
class TInterfaceBlock : public TSymbol, public TFieldListCollection
{
public:
TInterfaceBlock(TSymbolTable *symbolTable,
const ImmutableString &name,
const TFieldList *fields,
const TLayoutQualifier &layoutQualifier,
SymbolType symbolType,
TExtension extension = TExtension::UNDEFINED);
TInterfaceBlock(TSymbolTable *symbolTable,
const ImmutableString &name,
const TFieldList *fields,
const TLayoutQualifier &layoutQualifier,
SymbolType symbolType,
const std::array<TExtension, 3u> &extensions);
TLayoutBlockStorage blockStorage() const { return mBlockStorage; }
int blockBinding() const { return mBinding; }
private:
friend class TSymbolTable;
// For creating built-in interface blocks.
TInterfaceBlock(const TSymbolUniqueId &id,
const ImmutableString &name,
TExtension extension,
const TFieldList *fields)
: TSymbol(id,
name,
SymbolType::BuiltIn,
std::array<TExtension, 1u>{{extension}},
SymbolClass::InterfaceBlock),
TFieldListCollection(fields),
mBlockStorage(EbsUnspecified),
mBinding(0)
{}
template <size_t ExtensionCount>
TInterfaceBlock(const TSymbolUniqueId &id,
const ImmutableString &name,
const std::array<TExtension, ExtensionCount> &extensions,
const TFieldList *fields)
: TSymbol(id, name, SymbolType::BuiltIn, extensions, SymbolClass::InterfaceBlock),
TFieldListCollection(fields),
mBlockStorage(EbsUnspecified),
mBinding(0)
{}
TLayoutBlockStorage mBlockStorage;
int mBinding;
// Note that we only record matrix packing on a per-field granularity.
};
// Parameter class used for parsing user-defined function parameters.
struct TParameter
{
// Destructively converts to TVariable.
// This method resets name and type to nullptrs to make sure
// their content cannot be modified after the call.
const TVariable *createVariable(TSymbolTable *symbolTable)
{
const ImmutableString constName(name);
const TType *constType = new TType(type);
name = nullptr;
return new TVariable(symbolTable, constName, constType,
constName.empty() ? SymbolType::Empty : SymbolType::UserDefined);
}
const char *name; // either pool allocated or static.
TPublicType type;
};
// The function sub-class of a symbol.
class TFunction : public TSymbol
{
public:
// User-defined function
TFunction(TSymbolTable *symbolTable,
const ImmutableString &name,
SymbolType symbolType,
const TType *retType,
bool knownToNotHaveSideEffects);
void addParameter(const TVariable *p);
void shareParameters(const TFunction ¶metersSource);
ImmutableString getFunctionMangledName() const
{
ASSERT(symbolType() != SymbolType::BuiltIn);
if (mMangledName.empty())
{
mMangledName = buildMangledName();
}
return mMangledName;
}
const TType &getReturnType() const { return *returnType; }
TOperator getBuiltInOp() const { return mOp; }
void setDefined() { defined = true; }
bool isDefined() const { return defined; }
void setHasPrototypeDeclaration() { mHasPrototypeDeclaration = true; }
bool hasPrototypeDeclaration() const { return mHasPrototypeDeclaration; }
void setHasVoidParameter() { mHasVoidParameter = true; }
bool hasVoidParameter() const { return mHasVoidParameter; }
size_t getParamCount() const { return mParamCount; }
const TVariable *getParam(size_t i) const { return mParameters[i]; }
bool isKnownToNotHaveSideEffects() const { return mKnownToNotHaveSideEffects; }
bool isMain() const;
bool isImageFunction() const;
bool isAtomicCounterFunction() const;
// Note: Only to be used for static built-in functions!
constexpr TFunction(const TSymbolUniqueId &id,
const ImmutableString &name,
TExtension extension,
const TVariable *const *parameters,
size_t paramCount,
const TType *retType,
TOperator op,
bool knownToNotHaveSideEffects)
: TSymbol(id,
name,
SymbolType::BuiltIn,
std::array<TExtension, 1u>{{extension}},
SymbolClass::Function),
mParametersVector(nullptr),
mParameters(parameters),
returnType(retType),
mMangledName(nullptr),
mParamCount(paramCount),
mOp(op),
defined(false),
mHasPrototypeDeclaration(false),
mKnownToNotHaveSideEffects(knownToNotHaveSideEffects),
mHasVoidParameter(false)
{}
template <size_t ExtensionCount>
constexpr TFunction(const TSymbolUniqueId &id,
const ImmutableString &name,
const std::array<TExtension, ExtensionCount> &extensions,
const TVariable *const *parameters,
size_t paramCount,
const TType *retType,
TOperator op,
bool knownToNotHaveSideEffects)
: TSymbol(id, name, SymbolType::BuiltIn, extensions, SymbolClass::Function),
mParametersVector(nullptr),
mParameters(parameters),
returnType(retType),
mMangledName(nullptr),
mParamCount(paramCount),
mOp(op),
defined(false),
mHasPrototypeDeclaration(false),
mKnownToNotHaveSideEffects(knownToNotHaveSideEffects),
mHasVoidParameter(false)
{}
private:
ImmutableString buildMangledName() const;
typedef TVector<const TVariable *> TParamVector;
TParamVector *mParametersVector;
const TVariable *const *mParameters;
const TType *const returnType;
mutable ImmutableString mMangledName;
size_t mParamCount : 32;
const TOperator mOp; // Only set for built-ins
bool defined : 1;
bool mHasPrototypeDeclaration : 1;
bool mKnownToNotHaveSideEffects : 1;
// Whether the parameter list of the function starts with void. This is used to generate an
// error if any other parameter follows.
bool mHasVoidParameter : 1;
};
} // namespace sh
#endif // COMPILER_TRANSLATOR_SYMBOL_H_