Hash :
8ee1b89f
Author :
Date :
2022-11-04T13:10:37
Refactor pixel local storage options The various different PLS options were getting scattered and unruly. We are also in need of more backend-specific PLS options that would be difficult to add as-is. This CL refactors them into a single "ShPixelLocalStorageOptions" struct that gets initialized all in one place, and shared between the compiler and the backends. Bug: angleproject:7279 Change-Id: Ic58dccb8d1ba350a0b6cc5848ce15bd687e30fad Reviewed-on: https://chromium-review.googlesource.com/c/angle/angle/+/4006715 Reviewed-by: Shahbaz Youssefi <syoussefi@chromium.org> Commit-Queue: Chris Dalton <chris@rive.app>
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 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029
//
// Copyright 2022 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.
//
#include "compiler/translator/tree_ops/RewritePixelLocalStorage.h"
#include "common/angleutils.h"
#include "compiler/translator/StaticType.h"
#include "compiler/translator/SymbolTable.h"
#include "compiler/translator/tree_ops/MonomorphizeUnsupportedFunctions.h"
#include "compiler/translator/tree_util/BuiltIn.h"
#include "compiler/translator/tree_util/FindMain.h"
#include "compiler/translator/tree_util/IntermNode_util.h"
#include "compiler/translator/tree_util/IntermTraverse.h"
namespace sh
{
namespace
{
constexpr static TBasicType DataTypeOfPLSType(TBasicType plsType)
{
switch (plsType)
{
case EbtPixelLocalANGLE:
return EbtFloat;
case EbtIPixelLocalANGLE:
return EbtInt;
case EbtUPixelLocalANGLE:
return EbtUInt;
default:
UNREACHABLE();
return EbtVoid;
}
}
constexpr static TBasicType DataTypeOfImageType(TBasicType imageType)
{
switch (imageType)
{
case EbtImage2D:
return EbtFloat;
case EbtIImage2D:
return EbtInt;
case EbtUImage2D:
return EbtUInt;
default:
UNREACHABLE();
return EbtVoid;
}
}
// Maps PLS symbols to a backing store.
template <typename T>
class PLSBackingStoreMap
{
public:
// Sets the given variable as the backing storage for the plsSymbol's binding point. An entry
// must not already exist in the map for this binding point.
void insertNew(TIntermSymbol *plsSymbol, const T &backingStore)
{
ASSERT(plsSymbol);
ASSERT(IsPixelLocal(plsSymbol->getBasicType()));
int binding = plsSymbol->getType().getLayoutQualifier().binding;
ASSERT(binding >= 0);
auto result = mMap.insert({binding, backingStore});
ASSERT(result.second); // Ensure an image didn't already exist for this symbol.
}
// Looks up the backing store for the given plsSymbol's binding point. An entry must already
// exist in the map for this binding point.
const T &find(TIntermSymbol *plsSymbol)
{
ASSERT(plsSymbol);
ASSERT(IsPixelLocal(plsSymbol->getBasicType()));
int binding = plsSymbol->getType().getLayoutQualifier().binding;
ASSERT(binding >= 0);
auto iter = mMap.find(binding);
ASSERT(iter != mMap.end()); // Ensure PLSImages already exist for this symbol.
return iter->second;
}
const std::map<int, T> &bindingOrderedMap() const { return mMap; }
private:
// Use std::map so the backing stores are ordered by binding when we iterate.
std::map<int, T> mMap;
};
// Base class for rewriting high level PLS operations to AST operations specified by
// ShPixelLocalStorageType.
class RewritePLSTraverser : public TIntermTraverser
{
public:
RewritePLSTraverser(TCompiler *compiler,
TSymbolTable &symbolTable,
const ShCompileOptions &compileOptions,
int shaderVersion)
: TIntermTraverser(true, false, false, &symbolTable),
mCompiler(compiler),
mCompileOptions(&compileOptions),
mShaderVersion(shaderVersion)
{}
bool visitDeclaration(Visit, TIntermDeclaration *decl) override
{
TIntermTyped *declVariable = (decl->getSequence())->front()->getAsTyped();
ASSERT(declVariable);
if (!IsPixelLocal(declVariable->getBasicType()))
{
return true;
}
// PLS is not allowed in arrays.
ASSERT(!declVariable->isArray());
// This visitDeclaration doesn't get called for function arguments, and opaque types can
// otherwise only be uniforms.
ASSERT(declVariable->getQualifier() == EvqUniform);
TIntermSymbol *plsSymbol = declVariable->getAsSymbolNode();
ASSERT(plsSymbol);
visitPLSDeclaration(plsSymbol);
return false;
}
bool visitAggregate(Visit, TIntermAggregate *aggregate) override
{
if (!BuiltInGroup::IsPixelLocal(aggregate->getOp()))
{
return true;
}
const TIntermSequence &args = *aggregate->getSequence();
ASSERT(args.size() >= 1);
TIntermSymbol *plsSymbol = args[0]->getAsSymbolNode();
// Rewrite pixelLocalLoadANGLE -> imageLoad.
if (aggregate->getOp() == EOpPixelLocalLoadANGLE)
{
visitPLSLoad(plsSymbol);
return false; // No need to recurse since this node is being dropped.
}
// Rewrite pixelLocalStoreANGLE -> imageStore.
if (aggregate->getOp() == EOpPixelLocalStoreANGLE)
{
// Also hoist the 'value' expression into a temp. In the event of
// "pixelLocalStoreANGLE(..., pixelLocalLoadANGLE(...))", this ensures the load occurs
// _before_ any potential barriers required by the subclass.
//
// NOTE: It is generally unsafe to hoist function arguments due to short circuiting,
// e.g., "if (false && function(...))", but pixelLocalStoreANGLE returns type void, so
// it is safe in this particular case.
TType *valueType = new TType(DataTypeOfPLSType(plsSymbol->getBasicType()),
plsSymbol->getPrecision(), EvqTemporary, 4);
TVariable *valueVar = CreateTempVariable(mSymbolTable, valueType);
TIntermDeclaration *valueDecl =
CreateTempInitDeclarationNode(valueVar, args[1]->getAsTyped());
valueDecl->traverse(this); // Rewrite any potential pixelLocalLoadANGLEs in valueDecl.
insertStatementInParentBlock(valueDecl);
visitPLSStore(plsSymbol, valueVar);
return false; // No need to recurse since this node is being dropped.
}
return true;
}
// Called after rewrite. Injects one-time setup code that needs to run before any PLS accesses.
virtual void injectPrePLSCode(TCompiler *,
TSymbolTable &,
const ShCompileOptions &,
TIntermBlock *mainBody,
size_t plsBeginPosition)
{}
// Called after rewrite. Injects one-time finalization code that needs to run after all PLS.
virtual void injectPostPLSCode(TCompiler *,
TSymbolTable &,
const ShCompileOptions &,
TIntermBlock *mainBody,
size_t plsEndPosition)
{}
// Called after all other operations have completed.
void injectPixelCoordInitializationCodeIfNeeded(TCompiler *compiler,
TIntermBlock *root,
TIntermBlock *mainBody)
{
if (mGlobalPixelCoord)
{
// Initialize the global pixel coord at the beginning of main():
//
// pixelCoord = ivec2(floor(gl_FragCoord.xy));
//
TIntermTyped *exp;
exp = ReferenceBuiltInVariable(ImmutableString("gl_FragCoord"), *mSymbolTable,
mShaderVersion);
exp = CreateSwizzle(exp, 0, 1);
exp = CreateBuiltInFunctionCallNode("floor", {exp}, *mSymbolTable, mShaderVersion);
exp = TIntermAggregate::CreateConstructor(TType(EbtInt, 2), {exp});
exp = CreateTempAssignmentNode(mGlobalPixelCoord, exp);
mainBody->insertStatement(0, exp);
}
}
protected:
virtual void visitPLSDeclaration(TIntermSymbol *plsSymbol) = 0;
virtual void visitPLSLoad(TIntermSymbol *plsSymbol) = 0;
virtual void visitPLSStore(TIntermSymbol *plsSymbol, TVariable *value) = 0;
// Inserts a global to hold the pixel coordinate as soon as we see PLS declared. This will be
// initialized at the beginning of main().
void ensureGlobalPixelCoordDeclared()
{
if (!mGlobalPixelCoord)
{
TType *coordType = new TType(EbtInt, EbpHigh, EvqGlobal, 2);
mGlobalPixelCoord = CreateTempVariable(mSymbolTable, coordType);
insertStatementInParentBlock(CreateTempDeclarationNode(mGlobalPixelCoord));
}
}
// anglebug.com/7524: Storing to integer formats with larger-than-representable values has
// different behavior on the various APIs.
//
// This method clamps sub-32-bit integers to the min/max representable values of their format.
void clampPLSVarIfNeeded(TVariable *plsVar, TLayoutImageInternalFormat plsFormat)
{
switch (plsFormat)
{
case EiifRGBA8I:
{
// Clamp r,g,b,a to their min/max 8-bit values:
//
// plsVar = clamp(plsVar, -128, 127) & 0xff
//
TIntermTyped *newPLSValue = CreateBuiltInFunctionCallNode(
"clamp",
{new TIntermSymbol(plsVar), CreateIndexNode(-128), CreateIndexNode(127)},
*mSymbolTable, mShaderVersion);
insertStatementInParentBlock(CreateTempAssignmentNode(plsVar, newPLSValue));
break;
}
case EiifRGBA8UI:
{
// Clamp r,g,b,a to their max 8-bit values:
//
// plsVar = min(plsVar, 255)
//
TIntermTyped *newPLSValue = CreateBuiltInFunctionCallNode(
"min", {new TIntermSymbol(plsVar), CreateUIntNode(255)}, *mSymbolTable,
mShaderVersion);
insertStatementInParentBlock(CreateTempAssignmentNode(plsVar, newPLSValue));
break;
}
default:
break;
}
}
// Expands an expression to 4 components, filling in the missing components with [0, 0, 0, 1].
static TIntermTyped *Expand(TIntermTyped *expr)
{
const TType &type = expr->getType();
ASSERT(type.getNominalSize() == 1 || type.getNominalSize() == 4);
if (type.getNominalSize() == 1)
{
switch (type.getBasicType())
{
case EbtFloat:
expr = TIntermAggregate::CreateConstructor( // "vec4(r, 0, 0, 1)"
TType(EbtFloat, 4),
{expr, CreateFloatNode(0, EbpLow), CreateFloatNode(0, EbpLow),
CreateFloatNode(1, EbpLow)});
break;
case EbtUInt:
expr = TIntermAggregate::CreateConstructor( // "uvec4(r, 0, 0, 1)"
TType(EbtUInt, 4),
{expr, CreateUIntNode(0), CreateUIntNode(0), CreateUIntNode(1)});
break;
default:
UNREACHABLE();
break;
}
}
return expr;
}
static TIntermTyped *Expand(TVariable *var) { return Expand(new TIntermSymbol(var)); }
// Returns an expression that swizzles a variable down to 'n' components.
static TIntermTyped *Swizzle(TVariable *var, int n)
{
TIntermTyped *swizzled = new TIntermSymbol(var);
if (var->getType().getNominalSize() != n)
{
ASSERT(var->getType().getNominalSize() > n);
TVector swizzleOffsets{0, 1, 2, 3};
swizzleOffsets.resize(n);
swizzled = new TIntermSwizzle(swizzled, swizzleOffsets);
}
return swizzled;
}
const TCompiler *const mCompiler;
const ShCompileOptions *const mCompileOptions;
const int mShaderVersion;
// Stores the shader invocation's pixel coordinate as "ivec2(floor(gl_FragCoord.xy))".
TVariable *mGlobalPixelCoord = nullptr;
};
// Rewrites high level PLS operations to shader image operations.
class RewritePLSToImagesTraverser : public RewritePLSTraverser
{
public:
RewritePLSToImagesTraverser(TCompiler *compiler,
TSymbolTable &symbolTable,
const ShCompileOptions &compileOptions,
int shaderVersion)
: RewritePLSTraverser(compiler, symbolTable, compileOptions, shaderVersion)
{}
private:
void visitPLSDeclaration(TIntermSymbol *plsSymbol) override
{
// Replace the PLS declaration with an image2D.
ensureGlobalPixelCoordDeclared();
TVariable *image2D = createPLSImageReplacement(plsSymbol);
mImages.insertNew(plsSymbol, image2D);
queueReplacement(new TIntermDeclaration({new TIntermSymbol(image2D)}),
OriginalNode::IS_DROPPED);
}
// Creates an image2D that replaces a pixel local storage handle.
TVariable *createPLSImageReplacement(const TIntermSymbol *plsSymbol)
{
ASSERT(plsSymbol);
ASSERT(IsPixelLocal(plsSymbol->getBasicType()));
TType *imageType = new TType(plsSymbol->getType());
TLayoutQualifier layoutQualifier = imageType->getLayoutQualifier();
switch (layoutQualifier.imageInternalFormat)
{
case TLayoutImageInternalFormat::EiifRGBA8:
if (!mCompileOptions->pls.supportsNativeRGBA8ImageFormats)
{
layoutQualifier.imageInternalFormat = EiifR32UI;
imageType->setPrecision(EbpHigh);
imageType->setBasicType(EbtUImage2D);
}
else
{
imageType->setBasicType(EbtImage2D);
}
break;
case TLayoutImageInternalFormat::EiifRGBA8I:
if (!mCompileOptions->pls.supportsNativeRGBA8ImageFormats)
{
layoutQualifier.imageInternalFormat = EiifR32I;
imageType->setPrecision(EbpHigh);
}
imageType->setBasicType(EbtIImage2D);
break;
case TLayoutImageInternalFormat::EiifRGBA8UI:
if (!mCompileOptions->pls.supportsNativeRGBA8ImageFormats)
{
layoutQualifier.imageInternalFormat = EiifR32UI;
imageType->setPrecision(EbpHigh);
}
imageType->setBasicType(EbtUImage2D);
break;
case TLayoutImageInternalFormat::EiifR32F:
imageType->setBasicType(EbtImage2D);
break;
case TLayoutImageInternalFormat::EiifR32UI:
imageType->setBasicType(EbtUImage2D);
break;
default:
UNREACHABLE();
}
layoutQualifier.rasterOrdered =
mCompileOptions->pls.fragmentSyncType ==
ShFragmentSynchronizationType::RasterizerOrderViews_D3D ||
mCompileOptions->pls.fragmentSyncType ==
ShFragmentSynchronizationType::RasterOrderGroups_Metal;
imageType->setLayoutQualifier(layoutQualifier);
TMemoryQualifier memoryQualifier{};
memoryQualifier.coherent = true;
memoryQualifier.restrictQualifier = true;
memoryQualifier.volatileQualifier = false;
// TODO(anglebug.com/7279): Maybe we could walk the tree first and see which PLS is used
// how. If the PLS is never loaded, we could add a writeonly qualifier, for example.
memoryQualifier.readonly = false;
memoryQualifier.writeonly = false;
imageType->setMemoryQualifier(memoryQualifier);
const TVariable &plsVar = plsSymbol->variable();
return new TVariable(plsVar.uniqueId(), plsVar.name(), plsVar.symbolType(),
plsVar.extensions(), imageType);
}
void visitPLSLoad(TIntermSymbol *plsSymbol) override
{
// Replace the pixelLocalLoadANGLE with imageLoad.
TVariable *image2D = mImages.find(plsSymbol);
ASSERT(mGlobalPixelCoord);
TIntermTyped *pls = CreateBuiltInFunctionCallNode(
"imageLoad", {new TIntermSymbol(image2D), new TIntermSymbol(mGlobalPixelCoord)},
*mSymbolTable, 310);
pls = unpackImageDataIfNecessary(pls, plsSymbol, image2D);
queueReplacement(pls, OriginalNode::IS_DROPPED);
}
// Unpacks the raw PLS data if the output shader language needs r32* packing.
TIntermTyped *unpackImageDataIfNecessary(TIntermTyped *data,
TIntermSymbol *plsSymbol,
TVariable *image2D)
{
TLayoutImageInternalFormat plsFormat =
plsSymbol->getType().getLayoutQualifier().imageInternalFormat;
TLayoutImageInternalFormat imageFormat =
image2D->getType().getLayoutQualifier().imageInternalFormat;
if (plsFormat == imageFormat)
{
return data; // This PLS storage isn't packed.
}
switch (plsFormat)
{
case EiifRGBA8:
ASSERT(!mCompileOptions->pls.supportsNativeRGBA8ImageFormats);
// Unpack and normalize r,g,b,a from a single 32-bit unsigned int:
//
// unpackUnorm4x8(data.r)
//
data = CreateBuiltInFunctionCallNode("unpackUnorm4x8", {CreateSwizzle(data, 0)},
*mSymbolTable, 310);
break;
case EiifRGBA8I:
case EiifRGBA8UI:
{
ASSERT(!mCompileOptions->pls.supportsNativeRGBA8ImageFormats);
constexpr unsigned shifts[] = {24, 16, 8, 0};
// Unpack r,g,b,a form a single (signed or unsigned) 32-bit int. Shift left,
// then right, to preserve the sign for ints. (highp integers are exactly
// 32-bit, two's compliment.)
//
// data.rrrr << uvec4(24, 16, 8, 0) >> 24u
//
data = CreateSwizzle(data, 0, 0, 0, 0);
data = new TIntermBinary(EOpBitShiftLeft, data, CreateUVecNode(shifts, 4, EbpLow));
data = new TIntermBinary(EOpBitShiftRight, data, CreateUIntNode(24));
break;
}
default:
UNREACHABLE();
}
return data;
}
void visitPLSStore(TIntermSymbol *plsSymbol, TVariable *value) override
{
TVariable *image2D = mImages.find(plsSymbol);
TIntermTyped *packedData = clampAndPackPLSDataIfNecessary(value, plsSymbol, image2D);
// Surround the store with memoryBarrierImage calls in order to ensure dependent stores and
// loads in a single shader invocation are coherent. From the ES 3.1 spec:
//
// Using variables declared as "coherent" guarantees only that the results of stores will
// be immediately visible to shader invocations using similarly-declared variables;
// calling MemoryBarrier is required to ensure that the stores are visible to other
// operations.
//
insertStatementsInParentBlock(
{CreateBuiltInFunctionCallNode("memoryBarrierImage", {}, *mSymbolTable,
310)}, // Before.
{CreateBuiltInFunctionCallNode("memoryBarrierImage", {}, *mSymbolTable,
310)}); // After.
// Rewrite the pixelLocalStoreANGLE with imageStore.
ASSERT(mGlobalPixelCoord);
queueReplacement(
CreateBuiltInFunctionCallNode(
"imageStore",
{new TIntermSymbol(image2D), new TIntermSymbol(mGlobalPixelCoord), packedData},
*mSymbolTable, 310),
OriginalNode::IS_DROPPED);
}
// Packs the PLS to raw data if the output shader language needs r32* packing.
TIntermTyped *clampAndPackPLSDataIfNecessary(TVariable *plsVar,
TIntermSymbol *plsSymbol,
TVariable *image2D)
{
TLayoutImageInternalFormat plsFormat =
plsSymbol->getType().getLayoutQualifier().imageInternalFormat;
clampPLSVarIfNeeded(plsVar, plsFormat);
TIntermTyped *result = new TIntermSymbol(plsVar);
TLayoutImageInternalFormat imageFormat =
image2D->getType().getLayoutQualifier().imageInternalFormat;
if (plsFormat == imageFormat)
{
return result; // This PLS storage isn't packed.
}
switch (plsFormat)
{
case EiifRGBA8:
{
ASSERT(!mCompileOptions->pls.supportsNativeRGBA8ImageFormats);
if (mCompileOptions->passHighpToPackUnormSnormBuiltins)
{
// anglebug.com/7527: unpackUnorm4x8 doesn't work on Pixel 4 when passed
// a mediump vec4. Use an intermediate highp vec4.
//
// It's safe to inject a variable here because it happens right before
// pixelLocalStoreANGLE, which returns type void. (See visitAggregate.)
TType *highpType = new TType(EbtFloat, EbpHigh, EvqTemporary, 4);
TVariable *workaroundHighpVar = CreateTempVariable(mSymbolTable, highpType);
insertStatementInParentBlock(
CreateTempInitDeclarationNode(workaroundHighpVar, result));
result = new TIntermSymbol(workaroundHighpVar);
}
// Denormalize and pack r,g,b,a into a single 32-bit unsigned int:
//
// packUnorm4x8(workaroundHighpVar)
//
result =
CreateBuiltInFunctionCallNode("packUnorm4x8", {result}, *mSymbolTable, 310);
break;
}
case EiifRGBA8I:
case EiifRGBA8UI:
{
ASSERT(!mCompileOptions->pls.supportsNativeRGBA8ImageFormats);
if (plsFormat == EiifRGBA8I)
{
// Mask off extra sign bits beyond 8.
//
// plsVar &= 0xff
//
insertStatementInParentBlock(new TIntermBinary(
EOpBitwiseAndAssign, new TIntermSymbol(plsVar), CreateIndexNode(0xff)));
}
// Pack r,g,b,a into a single 32-bit (signed or unsigned) int:
//
// r | (g << 8) | (b << 16) | (a << 24)
//
auto shiftComponent = [=](int componentIdx) {
return new TIntermBinary(EOpBitShiftLeft,
CreateSwizzle(new TIntermSymbol(plsVar), componentIdx),
CreateUIntNode(componentIdx * 8));
};
result = CreateSwizzle(result, 0);
result = new TIntermBinary(EOpBitwiseOr, result, shiftComponent(1));
result = new TIntermBinary(EOpBitwiseOr, result, shiftComponent(2));
result = new TIntermBinary(EOpBitwiseOr, result, shiftComponent(3));
break;
}
default:
UNREACHABLE();
}
// Convert the packed data to a {u,i}vec4 for imageStore.
TType imageStoreType(DataTypeOfImageType(image2D->getType().getBasicType()), 4);
return TIntermAggregate::CreateConstructor(imageStoreType, {result});
}
void injectPrePLSCode(TCompiler *compiler,
TSymbolTable &symbolTable,
const ShCompileOptions &compileOptions,
TIntermBlock *mainBody,
size_t plsBeginPosition) override
{
// When PLS is implemented with images, early_fragment_tests ensure that depth/stencil
// can also block stores to PLS.
compiler->specifyEarlyFragmentTests();
// Delimit the beginning of a per-pixel critical section, if supported. This makes pixel
// local storage coherent.
//
// Either: GL_NV_fragment_shader_interlock
// GL_INTEL_fragment_shader_ordering
// GL_ARB_fragment_shader_interlock (may compile to
// SPV_EXT_fragment_shader_interlock)
switch (compileOptions.pls.fragmentSyncType)
{
// Raster ordered resources don't need explicit synchronization calls.
case ShFragmentSynchronizationType::RasterizerOrderViews_D3D:
case ShFragmentSynchronizationType::RasterOrderGroups_Metal:
case ShFragmentSynchronizationType::NotSupported:
break;
case ShFragmentSynchronizationType::FragmentShaderInterlock_NV_GL:
mainBody->insertStatement(
plsBeginPosition,
CreateBuiltInFunctionCallNode("beginInvocationInterlockNV", {}, symbolTable,
kESSLInternalBackendBuiltIns));
break;
case ShFragmentSynchronizationType::FragmentShaderOrdering_INTEL_GL:
mainBody->insertStatement(
plsBeginPosition,
CreateBuiltInFunctionCallNode("beginFragmentShaderOrderingINTEL", {},
symbolTable, kESSLInternalBackendBuiltIns));
break;
case ShFragmentSynchronizationType::FragmentShaderInterlock_ARB_GL:
mainBody->insertStatement(
plsBeginPosition,
CreateBuiltInFunctionCallNode("beginInvocationInterlockARB", {}, symbolTable,
kESSLInternalBackendBuiltIns));
break;
default:
UNREACHABLE();
}
}
void injectPostPLSCode(TCompiler *,
TSymbolTable &symbolTable,
const ShCompileOptions &compileOptions,
TIntermBlock *mainBody,
size_t plsEndPosition) override
{
// Delimit the end of the PLS critical section, if required.
//
// Either: GL_NV_fragment_shader_interlock
// GL_ARB_fragment_shader_interlock (may compile to
// SPV_EXT_fragment_shader_interlock)
switch (compileOptions.pls.fragmentSyncType)
{
// Raster ordered resources don't need explicit synchronization calls.
case ShFragmentSynchronizationType::RasterizerOrderViews_D3D:
case ShFragmentSynchronizationType::RasterOrderGroups_Metal:
// GL_INTEL_fragment_shader_ordering doesn't have an "end()" call.
case ShFragmentSynchronizationType::FragmentShaderOrdering_INTEL_GL:
case ShFragmentSynchronizationType::NotSupported:
break;
case ShFragmentSynchronizationType::FragmentShaderInterlock_NV_GL:
mainBody->insertStatement(
plsEndPosition,
CreateBuiltInFunctionCallNode("endInvocationInterlockNV", {}, symbolTable,
kESSLInternalBackendBuiltIns));
break;
case ShFragmentSynchronizationType::FragmentShaderInterlock_ARB_GL:
mainBody->insertStatement(
plsEndPosition,
CreateBuiltInFunctionCallNode("endInvocationInterlockARB", {}, symbolTable,
kESSLInternalBackendBuiltIns));
break;
default:
UNREACHABLE();
}
}
PLSBackingStoreMap<TVariable *> mImages;
};
// Rewrites high level PLS operations to framebuffer fetch operations.
class RewritePLSToFramebufferFetchTraverser : public RewritePLSTraverser
{
public:
RewritePLSToFramebufferFetchTraverser(TCompiler *compiler,
TSymbolTable &symbolTable,
const ShCompileOptions &compileOptions,
int shaderVersion)
: RewritePLSTraverser(compiler, symbolTable, compileOptions, shaderVersion)
{}
void visitPLSDeclaration(TIntermSymbol *plsSymbol) override
{
// Replace the PLS declaration with a framebuffer attachment.
PLSAttachment attachment(mCompiler, mSymbolTable, *mCompileOptions, plsSymbol->variable());
mPLSAttachments.insertNew(plsSymbol, attachment);
insertStatementInParentBlock(
new TIntermDeclaration({new TIntermSymbol(attachment.fragmentVar)}));
queueReplacement(CreateTempDeclarationNode(attachment.accessVar), OriginalNode::IS_DROPPED);
}
void visitPLSLoad(TIntermSymbol *plsSymbol) override
{
// Read our temporary accessVar.
const PLSAttachment &attachment = mPLSAttachments.find(plsSymbol);
queueReplacement(Expand(attachment.accessVar), OriginalNode::IS_DROPPED);
}
void visitPLSStore(TIntermSymbol *plsSymbol, TVariable *value) override
{
// Set our temporary accessVar.
const PLSAttachment &attachment = mPLSAttachments.find(plsSymbol);
queueReplacement(CreateTempAssignmentNode(attachment.accessVar, attachment.swizzle(value)),
OriginalNode::IS_DROPPED);
}
void injectPrePLSCode(TCompiler *compiler,
TSymbolTable &symbolTable,
const ShCompileOptions &compileOptions,
TIntermBlock *mainBody,
size_t plsBeginPosition) override
{
// [OpenGL ES Version 3.0.6, 3.9.2.3 "Shader Output"]: Any colors, or color components,
// associated with a fragment that are not written by the fragment shader are undefined.
//
// [EXT_shader_framebuffer_fetch]: Prior to fragment shading, fragment outputs declared
// inout are populated with the value last written to the framebuffer at the same(x, y,
// sample) position.
//
// It's unclear from the EXT_shader_framebuffer_fetch spec whether inout fragment variables
// become undefined if not explicitly written, but either way, when this compiles to subpass
// loads in Vulkan, we definitely get undefined behavior if PLS variables are not written.
//
// To make sure every PLS variable gets written, we read them all before PLS operations,
// then write them all back out after all PLS is complete.
TIntermSequence plsPreloads;
plsPreloads.reserve(mPLSAttachments.bindingOrderedMap().size());
for (const auto &entry : mPLSAttachments.bindingOrderedMap())
{
const PLSAttachment &attachment = entry.second;
plsPreloads.push_back(
CreateTempAssignmentNode(attachment.accessVar, attachment.swizzleFragmentVar()));
}
mainBody->getSequence()->insert(mainBody->getSequence()->begin() + plsBeginPosition,
plsPreloads.begin(), plsPreloads.end());
}
void injectPostPLSCode(TCompiler *,
TSymbolTable &symbolTable,
const ShCompileOptions &compileOptions,
TIntermBlock *mainBody,
size_t plsEndPosition) override
{
TIntermSequence plsWrites;
plsWrites.reserve(mPLSAttachments.bindingOrderedMap().size());
for (const auto &entry : mPLSAttachments.bindingOrderedMap())
{
const PLSAttachment &attachment = entry.second;
plsWrites.push_back(new TIntermBinary(EOpAssign, attachment.swizzleFragmentVar(),
new TIntermSymbol(attachment.accessVar)));
}
mainBody->getSequence()->insert(mainBody->getSequence()->begin() + plsEndPosition,
plsWrites.begin(), plsWrites.end());
}
private:
struct PLSAttachment
{
PLSAttachment(const TCompiler *compiler,
TSymbolTable *symbolTable,
const ShCompileOptions &compileOptions,
const TVariable &plsVar)
{
const TType &plsType = plsVar.getType();
TType *accessVarType;
switch (plsType.getLayoutQualifier().imageInternalFormat)
{
default:
UNREACHABLE();
[[fallthrough]];
case EiifRGBA8:
accessVarType = new TType(EbtFloat, 4);
break;
case EiifRGBA8I:
accessVarType = new TType(EbtInt, 4);
break;
case EiifRGBA8UI:
accessVarType = new TType(EbtUInt, 4);
break;
case EiifR32F:
accessVarType = new TType(EbtFloat, 1);
break;
case EiifR32UI:
accessVarType = new TType(EbtUInt, 1);
break;
}
accessVarType->setPrecision(plsType.getPrecision());
accessVar = CreateTempVariable(symbolTable, accessVarType);
// Qualcomm seems to want fragment outputs to be 4-component vectors, and produces a
// compile error from "inout uint". Our Metal translator also saturates color outputs to
// 4 components. And since the spec also seems silent on how many components an output
// must have, we always use 4.
TType *fragmentVarType = new TType(accessVarType->getBasicType(), 4);
fragmentVarType->setPrecision(plsType.getPrecision());
fragmentVarType->setQualifier(EvqFragmentInOut);
// PLS attachments are bound in reverse order from the rear.
TLayoutQualifier layoutQualifier = TLayoutQualifier::Create();
layoutQualifier.location =
compiler->getResources().MaxCombinedDrawBuffersAndPixelLocalStoragePlanes -
plsType.getLayoutQualifier().binding - 1;
layoutQualifier.locationsSpecified = 1;
if (compileOptions.pls.fragmentSyncType == ShFragmentSynchronizationType::NotSupported)
{
// We're using EXT_shader_framebuffer_fetch_non_coherent, which requires the
// "noncoherent" qualifier.
layoutQualifier.noncoherent = true;
}
fragmentVarType->setLayoutQualifier(layoutQualifier);
fragmentVar = new TVariable(plsVar.uniqueId(), plsVar.name(), plsVar.symbolType(),
plsVar.extensions(), fragmentVarType);
}
// Swizzles a variable down to the same number of components as the PLS internalformat.
TIntermTyped *swizzle(TVariable *var) const
{
return Swizzle(var, accessVar->getType().getNominalSize());
}
TIntermTyped *swizzleFragmentVar() const { return swizzle(fragmentVar); }
TVariable *fragmentVar;
TVariable *accessVar;
};
PLSBackingStoreMap<PLSAttachment> mPLSAttachments;
};
// Rewrites ANGLE_shader_pixel_local_storage to EXT_shader_pixel_local_storage.
class RewriteANGLEToEXTTraverser : public RewritePLSTraverser
{
public:
RewriteANGLEToEXTTraverser(TCompiler *compiler,
TSymbolTable &symbolTable,
const ShCompileOptions &compileOptions,
int shaderVersion)
: RewritePLSTraverser(compiler, symbolTable, compileOptions, shaderVersion)
{}
// Runs before traversal. Collects PLS declarations into a global __pixel_localEXT interface
// block and establishes their indices.
void rewriteDeclarations(TCompiler *compiler, TIntermBlock *root, TIntermBlock *mainBody)
{
// Create EXT fields for ANGLE uniforms, then delete the ANGLE uniforms.
TIntermSequence &rootSequence = *root->getSequence();
for (size_t i = 0; i < rootSequence.size(); ++i)
{
TIntermNode *node = rootSequence[i];
TIntermDeclaration *decl = node->getAsDeclarationNode();
if (decl == nullptr)
{
continue;
}
TIntermTyped *declVariable = (decl->getSequence())->front()->getAsTyped();
ASSERT(declVariable);
if (!IsPixelLocal(declVariable->getBasicType()))
{
continue;
}
// Create a native pixel local storage field that describes this plane.
TIntermSymbol *symbolANGLE = declVariable->getAsSymbolNode();
ASSERT(symbolANGLE);
const TVariable &varANGLE = symbolANGLE->variable();
const TType &typeANGLE = varANGLE.getType();
TType *typeEXT;
switch (typeANGLE.getLayoutQualifier().imageInternalFormat)
{
default:
UNREACHABLE();
[[fallthrough]];
case EiifRGBA8:
typeEXT = new TType(EbtFloat, 4);
break;
case EiifRGBA8I:
typeEXT = new TType(EbtInt, 4);
break;
case EiifRGBA8UI:
typeEXT = new TType(EbtUInt, 4);
break;
case EiifR32F:
typeEXT = new TType(EbtFloat, 1);
break;
case EiifR32UI:
typeEXT = new TType(EbtUInt, 1);
break;
}
typeEXT->setPrecision(typeANGLE.getPrecision());
TLayoutQualifier layoutEXT = TLayoutQualifier::Create();
layoutEXT.imageInternalFormat = typeANGLE.getLayoutQualifier().imageInternalFormat;
typeEXT->setLayoutQualifier(layoutEXT);
mFieldsEXT.insertNew(
symbolANGLE,
FieldEXT(typeEXT, varANGLE.name(), symbolANGLE->getLine(), varANGLE.symbolType()));
rootSequence.erase(rootSequence.begin() + i);
--i;
}
// Create the global __pixel_localEXT interface block and save each field's index.
TFieldList *fieldsEXT = new TFieldList;
fieldsEXT->reserve(mFieldsEXT.bindingOrderedMap().size());
for (const auto &entry : mFieldsEXT.bindingOrderedMap())
{
const FieldEXT &fieldEXT = entry.second;
fieldEXT.indexInPLSBlock->setIConst(static_cast<int>(fieldsEXT->size()));
fieldsEXT->push_back(fieldEXT.field);
}
TLayoutQualifier emptyLayoutQualifier = TLayoutQualifier::Create();
TInterfaceBlock *blockEXT =
new TInterfaceBlock(mSymbolTable, ImmutableString("PLS"), fieldsEXT,
emptyLayoutQualifier, SymbolType::AngleInternal);
TType *blockTypeEXT = new TType(blockEXT, EvqPixelLocalEXT, emptyLayoutQualifier);
mBlockEXT = new TVariable(mSymbolTable, ImmutableString("pls"), blockTypeEXT,
SymbolType::AngleInternal);
root->insertChildNodes(0, {new TIntermDeclaration(mBlockEXT, nullptr)});
}
void visitPLSDeclaration(TIntermSymbol *symbolANGLE) override
{
// ANGLE_shader_pixel_local_storage only allows PLS uniform declarations at global scope,
// which should have been rewritten during rewriteDeclarations().
UNREACHABLE();
}
void visitPLSLoad(TIntermSymbol *symbolANGLE) override
{
const FieldEXT &fieldEXT = mFieldsEXT.find(symbolANGLE);
const TType &typeEXT = *fieldEXT.field->type();
TIntermConstantUnion *index = new TIntermConstantUnion(fieldEXT.indexInPLSBlock, typeEXT);
TIntermTyped *fieldAccess =
new TIntermBinary(EOpIndexDirectInterfaceBlock, new TIntermSymbol(mBlockEXT), index);
queueReplacement(Expand(fieldAccess), OriginalNode::IS_DROPPED);
}
void visitPLSStore(TIntermSymbol *symbolANGLE, TVariable *value) override
{
const FieldEXT &fieldEXT = mFieldsEXT.find(symbolANGLE);
const TType &typeEXT = *fieldEXT.field->type();
TIntermConstantUnion *index = new TIntermConstantUnion(fieldEXT.indexInPLSBlock, typeEXT);
TIntermTyped *fieldAccess =
new TIntermBinary(EOpIndexDirectInterfaceBlock, new TIntermSymbol(mBlockEXT), index);
clampPLSVarIfNeeded(value, typeEXT.getLayoutQualifier().imageInternalFormat);
queueReplacement(
new TIntermBinary(EOpAssign, fieldAccess, Swizzle(value, typeEXT.getNominalSize())),
OriginalNode::IS_DROPPED);
}
private:
// Represents a pixel local storage plane within the global __pixel_localEXT interface block.
struct FieldEXT
{
FieldEXT(TType *type,
const ImmutableString &name,
const TSourceLoc &line,
SymbolType symbolType)
: field(new TField(type, name, line, symbolType))
{}
TField *const field;
TConstantUnion *const indexInPLSBlock = new TConstantUnion;
};
TVariable *mBlockEXT; // Global __pixel_localEXT interface block.
PLSBackingStoreMap<FieldEXT> mFieldsEXT; // Planes within the __pixel_localEXT interface block.
};
} // anonymous namespace
bool RewritePixelLocalStorage(TCompiler *compiler,
TIntermBlock *root,
TSymbolTable &symbolTable,
const ShCompileOptions &compileOptions,
int shaderVersion)
{
// If any functions take PLS arguments, monomorphize the functions by removing said parameters
// and making the PLS calls from main() instead, using the global uniform from the call site
// instead of the function argument. This is necessary because function arguments don't carry
// the necessary "binding" or "format" layout qualifiers.
if (!MonomorphizeUnsupportedFunctions(
compiler, root, &symbolTable, compileOptions,
UnsupportedFunctionArgsBitSet{UnsupportedFunctionArgs::PixelLocalStorage}))
{
return false;
}
TIntermBlock *mainBody = FindMainBody(root);
std::unique_ptr<RewritePLSTraverser> traverser;
switch (compileOptions.pls.type)
{
case ShPixelLocalStorageType::ImageLoadStore:
traverser = std::make_unique<RewritePLSToImagesTraverser>(
compiler, symbolTable, compileOptions, shaderVersion);
break;
case ShPixelLocalStorageType::FramebufferFetch:
traverser = std::make_unique<RewritePLSToFramebufferFetchTraverser>(
compiler, symbolTable, compileOptions, shaderVersion);
break;
case ShPixelLocalStorageType::PixelLocalStorageEXT:
{
auto angle2extTraverser = std::make_unique<RewriteANGLEToEXTTraverser>(
compiler, symbolTable, compileOptions, shaderVersion);
// The ANGLE -> EXT transformation has to rewrite declarations in a separate pre-pass
// that sorts them into a global __pixel_localEXT interface block at the top of the
// shader.
angle2extTraverser->rewriteDeclarations(compiler, root, mainBody);
traverser = std::move(angle2extTraverser);
break;
}
case ShPixelLocalStorageType::NotSupported:
UNREACHABLE();
return false;
}
// Rewrite PLS operations.
root->traverse(traverser.get());
if (!traverser->updateTree(compiler, root))
{
return false;
}
// Inject the code that needs to run before and after all PLS operations.
// TODO(anglebug.com/7279): Inject these functions in a tight critical section, instead of
// just locking the entire main() function:
// - Monomorphize all PLS calls into main().
// - Insert begin/end calls around the first/last PLS calls (and outside of flow control).
traverser->injectPrePLSCode(compiler, symbolTable, compileOptions, mainBody, 0);
traverser->injectPostPLSCode(compiler, symbolTable, compileOptions, mainBody,
mainBody->getChildCount());
// Assign the global pixel coord at the beginning of main(), if used.
traverser->injectPixelCoordInitializationCodeIfNeeded(compiler, root, mainBody);
return compiler->validateAST(root);
}
} // namespace sh