Hash :
095d7c0a
Author :
Date :
2022-01-06T01:20:53
Translator: Clean up spec const / driver uniform types Bug: angleproject:6755 Change-Id: I8fb1557a5e29fcc28d5cb2f3aaa2c4a14b72583d Reviewed-on: https://chromium-review.googlesource.com/c/angle/angle/+/3369125 Reviewed-by: Tim Van Patten <timvp@google.com> Commit-Queue: Tim Van Patten <timvp@google.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
//
// Copyright 2020 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.
//
// DriverUniform.cpp: Add code to support driver uniforms
//
#include "compiler/translator/tree_util/DriverUniform.h"
#include "compiler/translator/Compiler.h"
#include "compiler/translator/IntermNode.h"
#include "compiler/translator/StaticType.h"
#include "compiler/translator/SymbolTable.h"
#include "compiler/translator/tree_util/FindMain.h"
#include "compiler/translator/tree_util/IntermNode_util.h"
#include "compiler/translator/tree_util/IntermTraverse.h"
#include "compiler/translator/util.h"
namespace sh
{
namespace
{
constexpr ImmutableString kEmulatedDepthRangeParams = ImmutableString("ANGLEDepthRangeParams");
constexpr const char kViewport[] = "viewport";
constexpr const char kClipDistancesEnabled[] = "clipDistancesEnabled";
constexpr const char kUnused[] = "_unused";
constexpr const char kXfbVerticesPerInstance[] = "xfbVerticesPerInstance";
constexpr const char kXfbBufferOffsets[] = "xfbBufferOffsets";
constexpr const char kAcbBufferOffsets[] = "acbBufferOffsets";
constexpr const char kDepthRange[] = "depthRange";
constexpr const char kNumSamples[] = "numSamples";
constexpr const char kHalfRenderArea[] = "halfRenderArea";
constexpr const char kFlipXY[] = "flipXY";
constexpr const char kNegFlipXY[] = "negFlipXY";
constexpr const char kPreRotation[] = "preRotation";
constexpr const char kFragRotation[] = "fragRotation";
constexpr const char kEmulatedInstanceId[] = "emulatedInstanceID";
constexpr const char kCoverageMask[] = "coverageMask";
} // anonymous namespace
// Class DriverUniform
bool DriverUniform::addComputeDriverUniformsToShader(TIntermBlock *root, TSymbolTable *symbolTable)
{
constexpr size_t kNumComputeDriverUniforms = 1;
constexpr std::array<const char *, kNumComputeDriverUniforms> kComputeDriverUniformNames = {
{kAcbBufferOffsets}};
ASSERT(!mDriverUniforms);
// This field list mirrors the structure of ComputeDriverUniforms in ContextVk.cpp.
TFieldList *driverFieldList = new TFieldList;
const std::array<TType *, kNumComputeDriverUniforms> kDriverUniformTypes = {{
new TType(EbtUInt, EbpHigh, EvqGlobal, 4),
}};
for (size_t uniformIndex = 0; uniformIndex < kNumComputeDriverUniforms; ++uniformIndex)
{
TField *driverUniformField =
new TField(kDriverUniformTypes[uniformIndex],
ImmutableString(kComputeDriverUniformNames[uniformIndex]), TSourceLoc(),
SymbolType::AngleInternal);
driverFieldList->push_back(driverUniformField);
}
// Define a driver uniform block "ANGLEUniformBlock" with instance name "ANGLEUniforms".
TLayoutQualifier layoutQualifier = TLayoutQualifier::Create();
layoutQualifier.blockStorage = EbsStd140;
mDriverUniforms = DeclareInterfaceBlock(root, symbolTable, driverFieldList, EvqUniform,
layoutQualifier, TMemoryQualifier::Create(), 0,
ImmutableString(vk::kDriverUniformsBlockName),
ImmutableString(vk::kDriverUniformsVarName));
return mDriverUniforms != nullptr;
}
TFieldList *DriverUniform::createUniformFields(TSymbolTable *symbolTable)
{
constexpr size_t kNumGraphicsDriverUniforms = 8;
constexpr std::array<const char *, kNumGraphicsDriverUniforms> kGraphicsDriverUniformNames = {
{kViewport, kClipDistancesEnabled, kUnused, kXfbVerticesPerInstance, kNumSamples,
kXfbBufferOffsets, kAcbBufferOffsets, kDepthRange}};
// This field list mirrors the structure of GraphicsDriverUniforms in ContextVk.cpp.
TFieldList *driverFieldList = new TFieldList;
const std::array<TType *, kNumGraphicsDriverUniforms> kDriverUniformTypes = {{
new TType(EbtFloat, EbpHigh, EvqGlobal, 4),
new TType(EbtUInt, EbpHigh,
EvqGlobal), // uint clipDistancesEnabled; // 32 bits for 32 clip distances max
new TType(EbtUInt, EbpHigh, EvqGlobal), // Gap usable for future
new TType(EbtInt, EbpHigh, EvqGlobal),
new TType(EbtInt, EbpLow, EvqGlobal), // uint numSamples; // Up to 16
new TType(EbtInt, EbpHigh, EvqGlobal, 4),
new TType(EbtUInt, EbpHigh, EvqGlobal, 4),
createEmulatedDepthRangeType(symbolTable),
}};
for (size_t uniformIndex = 0; uniformIndex < kNumGraphicsDriverUniforms; ++uniformIndex)
{
TField *driverUniformField =
new TField(kDriverUniformTypes[uniformIndex],
ImmutableString(kGraphicsDriverUniformNames[uniformIndex]), TSourceLoc(),
SymbolType::AngleInternal);
driverFieldList->push_back(driverUniformField);
}
return driverFieldList;
}
TType *DriverUniform::createEmulatedDepthRangeType(TSymbolTable *symbolTable)
{
// If already defined, return it immediately.
if (mEmulatedDepthRangeType != nullptr)
{
return mEmulatedDepthRangeType;
}
// Create the depth range type.
TFieldList *depthRangeParamsFields = new TFieldList();
TType *floatType = new TType(EbtFloat, EbpHigh, EvqGlobal, 1, 1);
depthRangeParamsFields->push_back(
new TField(floatType, ImmutableString("near"), TSourceLoc(), SymbolType::AngleInternal));
depthRangeParamsFields->push_back(
new TField(floatType, ImmutableString("far"), TSourceLoc(), SymbolType::AngleInternal));
depthRangeParamsFields->push_back(
new TField(floatType, ImmutableString("diff"), TSourceLoc(), SymbolType::AngleInternal));
// This additional field might be used by subclass such as TranslatorMetal.
depthRangeParamsFields->push_back(new TField(floatType, ImmutableString("reserved"),
TSourceLoc(), SymbolType::AngleInternal));
TStructure *emulatedDepthRangeParams = new TStructure(
symbolTable, kEmulatedDepthRangeParams, depthRangeParamsFields, SymbolType::AngleInternal);
mEmulatedDepthRangeType = new TType(emulatedDepthRangeParams, false);
// Note: this should really return a const TType *, but one of its uses is with TField who takes
// a non-const TType. See comment on that class.
return mEmulatedDepthRangeType;
}
// The Add*DriverUniformsToShader operation adds an internal uniform block to a shader. The driver
// block is used to implement Vulkan-specific features and workarounds. Returns the driver uniforms
// variable.
//
// There are Graphics and Compute variations as they require different uniforms.
bool DriverUniform::addGraphicsDriverUniformsToShader(TIntermBlock *root, TSymbolTable *symbolTable)
{
ASSERT(!mDriverUniforms);
// Declare the depth range struct type.
TType *emulatedDepthRangeType = createEmulatedDepthRangeType(symbolTable);
TType *emulatedDepthRangeDeclType = new TType(emulatedDepthRangeType->getStruct(), true);
TVariable *depthRangeVar =
new TVariable(symbolTable->nextUniqueId(), kEmptyImmutableString, SymbolType::Empty,
TExtension::UNDEFINED, emulatedDepthRangeDeclType);
DeclareGlobalVariable(root, depthRangeVar);
TFieldList *driverFieldList = createUniformFields(symbolTable);
if (mMode == DriverUniformMode::InterfaceBlock)
{
// Define a driver uniform block "ANGLEUniformBlock" with instance name "ANGLEUniforms".
TLayoutQualifier layoutQualifier = TLayoutQualifier::Create();
layoutQualifier.blockStorage = EbsStd140;
mDriverUniforms = DeclareInterfaceBlock(root, symbolTable, driverFieldList, EvqUniform,
layoutQualifier, TMemoryQualifier::Create(), 0,
ImmutableString(vk::kDriverUniformsBlockName),
ImmutableString(vk::kDriverUniformsVarName));
}
else
{
// Declare a structure "ANGLEUniformBlock" with instance name "ANGLE_angleUniforms".
// This code path is taken only by the direct-to-Metal backend, and the assumptions
// about the naming conventions of ANGLE-internal variables run too deeply to rename
// this one.
auto varName = ImmutableString("ANGLE_angleUniforms");
auto result = DeclareStructure(root, symbolTable, driverFieldList, EvqUniform,
TMemoryQualifier::Create(), 0,
ImmutableString(vk::kDriverUniformsBlockName), &varName);
mDriverUniforms = result.second;
}
return mDriverUniforms != nullptr;
}
TIntermTyped *DriverUniform::createDriverUniformRef(const char *fieldName) const
{
size_t fieldIndex = 0;
if (mMode == DriverUniformMode::InterfaceBlock)
{
fieldIndex =
FindFieldIndex(mDriverUniforms->getType().getInterfaceBlock()->fields(), fieldName);
}
else
{
fieldIndex = FindFieldIndex(mDriverUniforms->getType().getStruct()->fields(), fieldName);
}
TIntermSymbol *angleUniformsRef = new TIntermSymbol(mDriverUniforms);
TConstantUnion *uniformIndex = new TConstantUnion;
uniformIndex->setIConst(static_cast<int>(fieldIndex));
TIntermConstantUnion *indexRef =
new TIntermConstantUnion(uniformIndex, *StaticType::GetBasic<EbtInt, EbpLow>());
if (mMode == DriverUniformMode::InterfaceBlock)
{
return new TIntermBinary(EOpIndexDirectInterfaceBlock, angleUniformsRef, indexRef);
}
return new TIntermBinary(EOpIndexDirectStruct, angleUniformsRef, indexRef);
}
TIntermTyped *DriverUniform::getViewportRef() const
{
return createDriverUniformRef(kViewport);
}
TIntermTyped *DriverUniform::getAbcBufferOffsets() const
{
return createDriverUniformRef(kAcbBufferOffsets);
}
TIntermTyped *DriverUniform::getXfbVerticesPerInstance() const
{
return createDriverUniformRef(kXfbVerticesPerInstance);
}
TIntermTyped *DriverUniform::getXfbBufferOffsets() const
{
return createDriverUniformRef(kXfbBufferOffsets);
}
TIntermTyped *DriverUniform::getClipDistancesEnabled() const
{
return createDriverUniformRef(kClipDistancesEnabled);
}
TIntermTyped *DriverUniform::getDepthRangeRef() const
{
return createDriverUniformRef(kDepthRange);
}
TIntermTyped *DriverUniform::getDepthRangeReservedFieldRef() const
{
TIntermTyped *depthRange = createDriverUniformRef(kDepthRange);
return new TIntermBinary(EOpIndexDirectStruct, depthRange, CreateIndexNode(3));
}
TIntermTyped *DriverUniform::getNumSamplesRef() const
{
return createDriverUniformRef(kNumSamples);
}
//
// Class DriverUniformExtended
//
TFieldList *DriverUniformExtended::createUniformFields(TSymbolTable *symbolTable)
{
TFieldList *driverFieldList = DriverUniform::createUniformFields(symbolTable);
constexpr size_t kNumGraphicsDriverUniformsExt = 7;
constexpr std::array<const char *, kNumGraphicsDriverUniformsExt>
kGraphicsDriverUniformNamesExt = {{kHalfRenderArea, kFlipXY, kNegFlipXY,
kEmulatedInstanceId, kCoverageMask, kFragRotation,
kPreRotation}};
const std::array<TType *, kNumGraphicsDriverUniformsExt> kDriverUniformTypesExt = {{
new TType(EbtFloat, EbpHigh, EvqGlobal, 2),
new TType(EbtFloat, EbpLow, EvqGlobal, 2),
new TType(EbtFloat, EbpLow, EvqGlobal, 2),
new TType(EbtUInt, EbpHigh, EvqGlobal),
new TType(EbtUInt, EbpHigh, EvqGlobal),
new TType(EbtFloat, EbpLow, EvqGlobal, 2, 2),
new TType(EbtFloat, EbpLow, EvqGlobal, 2, 2),
}};
for (size_t uniformIndex = 0; uniformIndex < kNumGraphicsDriverUniformsExt; ++uniformIndex)
{
TField *driverUniformField =
new TField(kDriverUniformTypesExt[uniformIndex],
ImmutableString(kGraphicsDriverUniformNamesExt[uniformIndex]), TSourceLoc(),
SymbolType::AngleInternal);
driverFieldList->push_back(driverUniformField);
}
return driverFieldList;
}
TIntermTyped *DriverUniformExtended::getFlipXYRef() const
{
return createDriverUniformRef(kFlipXY);
}
TIntermTyped *DriverUniformExtended::getNegFlipXYRef() const
{
return createDriverUniformRef(kNegFlipXY);
}
TIntermTyped *DriverUniformExtended::getNegFlipYRef() const
{
// Create a swizzle to "negFlipXY.y"
TIntermTyped *negFlipXY = createDriverUniformRef(kNegFlipXY);
TVector<int> swizzleOffsetY = {1};
TIntermSwizzle *negFlipY = new TIntermSwizzle(negFlipXY, swizzleOffsetY);
return negFlipY;
}
TIntermTyped *DriverUniformExtended::getPreRotationMatrixRef() const
{
return createDriverUniformRef(kPreRotation);
}
TIntermTyped *DriverUniformExtended::getFragRotationMatrixRef() const
{
return createDriverUniformRef(kFragRotation);
}
TIntermTyped *DriverUniformExtended::getHalfRenderAreaRef() const
{
return createDriverUniformRef(kHalfRenderArea);
}
} // namespace sh