blob: b6088de441fd1ac1cb73fb6bf7ee11e7ec9e88ee [file] [log] [blame]
/*
* Copyright 2021 Google LLC
*
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
#include "src/sksl/SkSLAnalysis.h"
#include "src/sksl/SkSLContext.h"
#include "src/sksl/SkSLIntrinsicMap.h"
#include "src/sksl/SkSLProgramSettings.h"
#include "src/sksl/SkSLThreadContext.h"
#include "src/sksl/ir/SkSLFunctionCall.h"
#include "src/sksl/ir/SkSLFunctionDefinition.h"
#include "src/sksl/ir/SkSLReturnStatement.h"
#include "src/sksl/transform/SkSLProgramWriter.h"
#include <forward_list>
namespace SkSL {
std::unique_ptr<FunctionDefinition> FunctionDefinition::Convert(const Context& context,
int line,
const FunctionDeclaration& function,
std::unique_ptr<Statement> body,
bool builtin) {
class Finalizer : public ProgramWriter {
public:
Finalizer(const Context& context, const FunctionDeclaration& function,
IntrinsicSet* referencedIntrinsics)
: fContext(context)
, fFunction(function)
, fReferencedIntrinsics(referencedIntrinsics) {}
~Finalizer() override {
SkASSERT(fBreakableLevel == 0);
SkASSERT(fContinuableLevel == std::forward_list<int>{0});
}
void copyIntrinsicIfNeeded(const FunctionDeclaration& function) {
if (const ProgramElement* found =
fContext.fIntrinsics->findAndInclude(function.description())) {
const FunctionDefinition& original = found->as<FunctionDefinition>();
// Sort the referenced intrinsics into a consistent order; otherwise our output will
// become non-deterministic.
std::vector<const FunctionDeclaration*> intrinsics(
original.referencedIntrinsics().begin(),
original.referencedIntrinsics().end());
std::sort(intrinsics.begin(), intrinsics.end(),
[](const FunctionDeclaration* a, const FunctionDeclaration* b) {
if (a->isBuiltin() != b->isBuiltin()) {
return a->isBuiltin() < b->isBuiltin();
}
if (a->fLine != b->fLine) {
return a->fLine < b->fLine;
}
if (a->name() != b->name()) {
return a->name() < b->name();
}
return a->description() < b->description();
});
for (const FunctionDeclaration* f : intrinsics) {
this->copyIntrinsicIfNeeded(*f);
}
ThreadContext::SharedElements().push_back(found);
}
}
bool functionReturnsValue() const {
return !fFunction.returnType().isVoid();
}
bool visitExpression(Expression& expr) override {
if (expr.is<FunctionCall>()) {
const FunctionDeclaration& func = expr.as<FunctionCall>().function();
if (func.isBuiltin()) {
if (func.intrinsicKind() == k_dFdy_IntrinsicKind) {
ThreadContext::Inputs().fUseFlipRTUniform = true;
}
if (func.definition()) {
fReferencedIntrinsics->insert(&func);
}
if (!fContext.fConfig->fIsBuiltinCode && fContext.fIntrinsics) {
this->copyIntrinsicIfNeeded(func);
}
}
}
return INHERITED::visitExpression(expr);
}
bool visitStatement(Statement& stmt) override {
switch (stmt.kind()) {
case Statement::Kind::kReturn: {
// Early returns from a vertex main() function will bypass sk_Position
// normalization, so SkASSERT that we aren't doing that. If this becomes an
// issue, we can add normalization before each return statement.
if (fContext.fConfig->fKind == ProgramKind::kVertex && fFunction.isMain()) {
fContext.fErrors->error(
stmt.fLine,
"early returns from vertex programs are not supported");
}
// Verify that the return statement matches the function's return type.
ReturnStatement& returnStmt = stmt.as<ReturnStatement>();
if (returnStmt.expression()) {
if (this->functionReturnsValue()) {
// Coerce return expression to the function's return type.
returnStmt.setExpression(fFunction.returnType().coerceExpression(
std::move(returnStmt.expression()), fContext));
} else {
// Returning something from a function with a void return type.
returnStmt.setExpression(nullptr);
fContext.fErrors->error(returnStmt.fLine,
"may not return a value from a void function");
}
} else {
if (this->functionReturnsValue()) {
// Returning nothing from a function with a non-void return type.
fContext.fErrors->error(returnStmt.fLine,
"expected function to return '" +
fFunction.returnType().displayName() + "'");
}
}
break;
}
case Statement::Kind::kDo:
case Statement::Kind::kFor: {
++fBreakableLevel;
++fContinuableLevel.front();
bool result = INHERITED::visitStatement(stmt);
--fContinuableLevel.front();
--fBreakableLevel;
return result;
}
case Statement::Kind::kSwitch: {
++fBreakableLevel;
fContinuableLevel.push_front(0);
bool result = INHERITED::visitStatement(stmt);
fContinuableLevel.pop_front();
--fBreakableLevel;
return result;
}
case Statement::Kind::kBreak:
if (fBreakableLevel == 0) {
fContext.fErrors->error(stmt.fLine,
"break statement must be inside a loop or switch");
}
break;
case Statement::Kind::kContinue:
if (fContinuableLevel.front() == 0) {
if (std::any_of(fContinuableLevel.begin(),
fContinuableLevel.end(),
[](int level) { return level > 0; })) {
fContext.fErrors->error(stmt.fLine,
"continue statement cannot be used in a switch");
} else {
fContext.fErrors->error(stmt.fLine,
"continue statement must be inside a loop");
}
}
break;
default:
break;
}
return INHERITED::visitStatement(stmt);
}
private:
const Context& fContext;
const FunctionDeclaration& fFunction;
// which intrinsics have we encountered in this function
IntrinsicSet* fReferencedIntrinsics;
// how deeply nested we are in breakable constructs (for, do, switch).
int fBreakableLevel = 0;
// how deeply nested we are in continuable constructs (for, do).
// We keep a stack (via a forward_list) in order to disallow continue inside of switch.
std::forward_list<int> fContinuableLevel{0};
using INHERITED = ProgramWriter;
};
IntrinsicSet referencedIntrinsics;
Finalizer(context, function, &referencedIntrinsics).visitStatement(*body);
if (Analysis::CanExitWithoutReturningValue(function, *body)) {
context.fErrors->error(function.fLine, "function '" + function.name() +
"' can exit without returning a value");
}
return std::make_unique<FunctionDefinition>(line, &function, builtin, std::move(body),
std::move(referencedIntrinsics));
}
} // namespace SkSL