Hash :
472c74c6
Author :
Date :
2019-08-19T16:32:13
Translator: Allow tree validation in children of TCompiler This is to be able to perform validation inside TranslatorVulkan, even if it's through ASSERTs. Additionally, every transformation is changed such that they do their validation themselves. TIntermTraverser::updateTree() performs the validation, which indirectly validates many of three tree transformations. Some of the more ancient transformations that don't use this function directly call TCompiler::validateAST. Bug: angleproject:2733 Change-Id: Ie4af029d34e053c5ad1dc8c2c2568eecd625d344 Reviewed-on: https://chromium-review.googlesource.com/c/angle/angle/+/1761149 Reviewed-by: Geoff Lang <geofflang@chromium.org> Reviewed-by: Jamie Madill <jmadill@chromium.org> Commit-Queue: Shahbaz Youssefi <syoussefi@chromium.org>
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
//
// Copyright 2018 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.
//
// ReplaceVariable.cpp: Replace all references to a specific variable in the AST with references to
// another variable.
#include "compiler/translator/tree_util/ReplaceVariable.h"
#include "compiler/translator/IntermNode.h"
#include "compiler/translator/Symbol.h"
#include "compiler/translator/tree_util/IntermTraverse.h"
namespace sh
{
namespace
{
class ReplaceVariableTraverser : public TIntermTraverser
{
public:
ReplaceVariableTraverser(const TVariable *toBeReplaced, const TIntermTyped *replacement)
: TIntermTraverser(true, false, false),
mToBeReplaced(toBeReplaced),
mReplacement(replacement)
{}
void visitSymbol(TIntermSymbol *node) override
{
if (&node->variable() == mToBeReplaced)
{
queueReplacement(mReplacement->deepCopy(), OriginalNode::IS_DROPPED);
}
}
private:
const TVariable *const mToBeReplaced;
const TIntermTyped *const mReplacement;
};
} // anonymous namespace
// Replaces every occurrence of a variable with another variable.
ANGLE_NO_DISCARD bool ReplaceVariable(TCompiler *compiler,
TIntermBlock *root,
const TVariable *toBeReplaced,
const TVariable *replacement)
{
ReplaceVariableTraverser traverser(toBeReplaced, new TIntermSymbol(replacement));
root->traverse(&traverser);
return traverser.updateTree(compiler, root);
}
// Replaces every occurrence of a variable with a TIntermNode.
ANGLE_NO_DISCARD bool ReplaceVariableWithTyped(TCompiler *compiler,
TIntermBlock *root,
const TVariable *toBeReplaced,
const TIntermTyped *replacement)
{
ReplaceVariableTraverser traverser(toBeReplaced, replacement);
root->traverse(&traverser);
return traverser.updateTree(compiler, root);
}
TIntermFunctionPrototype *RetypeOpaqueVariablesHelper::convertFunctionPrototype(
TSymbolTable *symbolTable,
const TFunction *oldFunction)
{
if (mReplacedFunctionParams.empty())
{
return nullptr;
}
// Create a new function prototype for replacement.
TFunction *replacementFunction = new TFunction(
symbolTable, oldFunction->name(), SymbolType::UserDefined,
new TType(oldFunction->getReturnType()), oldFunction->isKnownToNotHaveSideEffects());
for (size_t paramIndex = 0; paramIndex < oldFunction->getParamCount(); ++paramIndex)
{
const TVariable *param = oldFunction->getParam(paramIndex);
TVariable *replacement = nullptr;
auto replaced = mReplacedFunctionParams.find(param);
if (replaced != mReplacedFunctionParams.end())
{
replacement = replaced->second;
}
else
{
replacement = new TVariable(symbolTable, param->name(), new TType(param->getType()),
SymbolType::UserDefined);
}
replacementFunction->addParameter(replacement);
}
mReplacedFunctions[oldFunction] = replacementFunction;
TIntermFunctionPrototype *replacementPrototype =
new TIntermFunctionPrototype(replacementFunction);
return replacementPrototype;
}
TIntermAggregate *RetypeOpaqueVariablesHelper::convertASTFunction(TIntermAggregate *node)
{
// See if the function needs replacement at all.
const TFunction *function = node->getFunction();
auto replacedFunction = mReplacedFunctions.find(function);
if (replacedFunction == mReplacedFunctions.end())
{
return nullptr;
}
// Arguments to this call are staged to be replaced at the same time.
TFunction *substituteFunction = replacedFunction->second;
TIntermSequence *substituteArguments = new TIntermSequence;
for (size_t paramIndex = 0; paramIndex < function->getParamCount(); ++paramIndex)
{
TIntermNode *param = node->getChildNode(paramIndex);
TIntermNode *replacement = nullptr;
auto replacedArg = mReplacedFunctionCallArgs.top().find(param);
if (replacedArg != mReplacedFunctionCallArgs.top().end())
{
replacement = replacedArg->second;
}
else
{
replacement = param->getAsTyped()->deepCopy();
}
substituteArguments->push_back(replacement);
}
return TIntermAggregate::CreateFunctionCall(*substituteFunction, substituteArguments);
}
} // namespace sh