Hash :
54d4bfe5
Author :
Date :
2021-09-28T17:27:57
Update ANGLE Metal to Webkit at Sept 29 2021
This commit merges changes from Webkit into ANGLE upstream.
The following commits were used:
Current:
https://git.webkit.org/?p=WebKit.git;a=commit;h=e01d0bda8f4b7dc2fd834b92802d15d8c15735f
Previous:
https://git.webkit.org/?p=WebKit.git;a=commit;h=492f078198748e8ff248eea0bb979cf79e5f5adfj
The following commits were merged in from the Webkit Repository:
(Hashes from git://git.webkit.org/WebKit-https.git)
03ea44c78ce5665d4ec9add271260121cbc7bc6c
Problems with drawElements in some conditions
https://bugs.webkit.org/show_bug.cgi?id=230107
c8dc8e0c4d1109d39a62eb197b45e95132380290
ANGLE Metal: single-component swizzles do not compile
https://bugs.webkit.org/show_bug.cgi?id=230472
7285dbaaf5af15877d6c332b30ef7a4d67225460
webgl-compressed-texture-s3tc-srgb.html fails on Intel+AMD Metal
https://bugs.webkit.org/show_bug.cgi?id=229941
4c72f92967ecd2a095666fef431384c4f5f60fb4
fragcolor-fragdata-invariant.html fails
https://bugs.webkit.org/show_bug.cgi?id=223317
cd943145467f54e5928793c0dd3dfa2313c007dd
ANGLE Metal index buffer restart range cache could be maintained..
https://bugs.webkit.org/show_bug.cgi?id=227451
f075ff77e592eabd54dd659a8e13617cc5faedc8
ANGLE Metal infinities and NaNs generated with incorrect syntax
https://bugs.webkit.org/show_bug.cgi?id=229439
5862073269122f4b2d43d96d3922757557755e86
[Metal ANGLE] Fix over-autorelease of
rx::DisplayMtl::getMetalDeviceMatchingAttribute()...
<https://webkit.org/b/229128>
85f797ad31db048cb82cbafd428ef77f0b839312 ANGLE Cocoa compiles....
https://bugs.webkit.org/show_bug.cgi?id=228987
a67918ba279ad4842b6ae84a79c3f1c0cdc35ace Avoid infinite recursion...
https://bugs.webkit.org/show_bug.cgi?id=228978
d341f67de0033adcf1ec6373ace6a54b06c4a031
Cherry-pick ANGLE: Revise WebGL's shaderSource validation
https://bugs.webkit.org/show_bug.cgi?id=228951
1e2714d981e97de8234ba055570dfdf56e8b6944
3.5 MB system-wide footprint impact due to thread-locals...
https://bugs.webkit.org/show_bug.cgi?id=228240
d32e5cca34081997d32504b0b56c18b9703ff3be
Build Default Metal library offline
https://bugs.webkit.org/show_bug.cgi?id=227333
33702279faccfd4c8d1c8a6d549925f9ca9a4e8f
WebGL2 demo doesn't work due to failing compilation....
https://bugs.webkit.org/show_bug.cgi?id=226865
0a075885d242db38c4e435a6597173dc3b082173
rAF driven WebGL submits excessive amount of GPU work...
https://bugs.webkit.org/show_bug.cgi?id=227059
f38a92b3e7c17efda269caa7066e7ffe2f828e72
WebGL shader link error in iOS 15 beta: "Internal error..."
https://bugs.webkit.org/show_bug.cgi?id=227723
98d48f011d561531470d97f26a022767b5452fb7
REGRESSION (r279466): [Big Sur] webgl/1.0.3/conformance &...
https://bugs.webkit.org/show_bug.cgi?id=227596
Bug: angleproject:6471
Change-Id: I07166d0dc4b5c3579d98353485b3245b81c7b882
Reviewed-on: https://chromium-review.googlesource.com/c/angle/angle/+/3194322
Reviewed-by: Jonah Ryan-Davis <jonahr@google.com>
Reviewed-by: Kenneth Russell <kbr@chromium.org>
Commit-Queue: Jonah Ryan-Davis <jonahr@google.com>
Commit-Queue: Kyle Piddington <kpiddington@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
//
// 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.
//
#include <cstring>
#include <unordered_map>
#include <unordered_set>
#include "compiler/translator/TranslatorMetalDirect/DiscoverDependentFunctions.h"
#include "compiler/translator/TranslatorMetalDirect/DiscoverEnclosingFunctionTraverser.h"
#include "compiler/translator/TranslatorMetalDirect/MapFunctionsToDefinitions.h"
using namespace sh;
////////////////////////////////////////////////////////////////////////////////
namespace
{
class Discoverer : public DiscoverEnclosingFunctionTraverser
{
private:
const std::function<bool(const TVariable &)> &mVars;
const FunctionToDefinition &mFuncToDef;
std::unordered_set<const TFunction *> mNonDepFunctions;
public:
std::unordered_set<const TFunction *> mDepFunctions;
public:
Discoverer(const std::function<bool(const TVariable &)> &vars,
const FunctionToDefinition &funcToDef)
: DiscoverEnclosingFunctionTraverser(true, false, true), mVars(vars), mFuncToDef(funcToDef)
{}
void visitSymbol(TIntermSymbol *symbolNode) override
{
const TVariable &var = symbolNode->variable();
if (!mVars(var))
{
return;
}
const TFunction *owner = discoverEnclosingFunction(symbolNode);
if (owner)
{
mDepFunctions.insert(owner);
}
}
bool visitAggregate(Visit visit, TIntermAggregate *aggregateNode) override
{
if (visit != Visit::PreVisit)
{
return true;
}
if (!aggregateNode->isConstructor())
{
const TFunction *func = aggregateNode->getFunction();
if (mNonDepFunctions.find(func) != mNonDepFunctions.end())
{
return true;
}
if (mDepFunctions.find(func) == mDepFunctions.end())
{
auto it = mFuncToDef.find(func);
if (it == mFuncToDef.end())
{
return true;
}
// Recursion is banned in GLSL, so I believe AngleIR has this property too.
// This implementation assumes (direct and mutual) recursion is prohibited.
TIntermFunctionDefinition &funcDefNode = *it->second;
funcDefNode.traverse(this);
if (mNonDepFunctions.find(func) != mNonDepFunctions.end())
{
return true;
}
ASSERT(mDepFunctions.find(func) != mDepFunctions.end());
}
const TFunction *owner = discoverEnclosingFunction(aggregateNode);
ASSERT(owner);
mDepFunctions.insert(owner);
}
return true;
}
bool visitFunctionDefinition(Visit visit, TIntermFunctionDefinition *funcDefNode) override
{
const TFunction *func = funcDefNode->getFunction();
if (visit != Visit::PostVisit)
{
if (mDepFunctions.find(func) != mDepFunctions.end())
{
return false;
}
if (mNonDepFunctions.find(func) != mNonDepFunctions.end())
{
return false;
}
return true;
}
if (mDepFunctions.find(func) == mDepFunctions.end())
{
mNonDepFunctions.insert(func);
}
return true;
}
};
} // namespace
std::unordered_set<const TFunction *> sh::DiscoverDependentFunctions(
TIntermBlock &root,
const std::function<bool(const TVariable &)> &vars)
{
const FunctionToDefinition funcToDef = MapFunctionsToDefinitions(root);
Discoverer discoverer(vars, funcToDef);
root.traverse(&discoverer);
return std::move(discoverer.mDepFunctions);
}