blob: 562066a9acd5c8209a31180804d289ae5b11e2b5 [file] [log] [blame]
/*
* Copyright 2016 Google Inc.
*
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
#ifndef SKSL_FORSTATEMENT
#define SKSL_FORSTATEMENT
#include "include/private/SkSLStatement.h"
#include "src/sksl/ir/SkSLExpression.h"
#include "src/sksl/ir/SkSLSymbolTable.h"
namespace SkSL {
/**
* The unrollability information for an ES2-compatible loop.
*/
struct LoopUnrollInfo {
const Variable* fIndex;
double fStart;
double fDelta;
int fCount;
};
/**
* A 'for' statement.
*/
class ForStatement final : public Statement {
public:
inline static constexpr Kind kStatementKind = Kind::kFor;
ForStatement(int line,
std::unique_ptr<Statement> initializer,
std::unique_ptr<Expression> test,
std::unique_ptr<Expression> next,
std::unique_ptr<Statement> statement,
std::unique_ptr<LoopUnrollInfo> unrollInfo,
std::shared_ptr<SymbolTable> symbols)
: INHERITED(line, kStatementKind)
, fSymbolTable(std::move(symbols))
, fInitializer(std::move(initializer))
, fTest(std::move(test))
, fNext(std::move(next))
, fStatement(std::move(statement))
, fUnrollInfo(std::move(unrollInfo)) {}
// Creates an SkSL for loop; handles type-coercion and uses the ErrorReporter to report errors.
static std::unique_ptr<Statement> Convert(const Context& context, int line,
std::unique_ptr<Statement> initializer,
std::unique_ptr<Expression> test,
std::unique_ptr<Expression> next,
std::unique_ptr<Statement> statement,
std::shared_ptr<SymbolTable> symbolTable);
// Creates an SkSL while loop; handles type-coercion and uses the ErrorReporter for errors.
static std::unique_ptr<Statement> ConvertWhile(const Context& context, int line,
std::unique_ptr<Expression> test,
std::unique_ptr<Statement> statement,
std::shared_ptr<SymbolTable> symbolTable);
// Creates an SkSL for/while loop. Assumes properly coerced types and reports errors via assert.
static std::unique_ptr<Statement> Make(const Context& context, int line,
std::unique_ptr<Statement> initializer,
std::unique_ptr<Expression> test,
std::unique_ptr<Expression> next,
std::unique_ptr<Statement> statement,
std::unique_ptr<LoopUnrollInfo> unrollInfo,
std::shared_ptr<SymbolTable> symbolTable);
std::unique_ptr<Statement>& initializer() {
return fInitializer;
}
const std::unique_ptr<Statement>& initializer() const {
return fInitializer;
}
std::unique_ptr<Expression>& test() {
return fTest;
}
const std::unique_ptr<Expression>& test() const {
return fTest;
}
std::unique_ptr<Expression>& next() {
return fNext;
}
const std::unique_ptr<Expression>& next() const {
return fNext;
}
std::unique_ptr<Statement>& statement() {
return fStatement;
}
const std::unique_ptr<Statement>& statement() const {
return fStatement;
}
const std::shared_ptr<SymbolTable>& symbols() const {
return fSymbolTable;
}
/** Loop-unroll information is only supported in strict-ES2 code. Null is returned in ES3+. */
const LoopUnrollInfo* unrollInfo() const {
return fUnrollInfo.get();
}
std::unique_ptr<Statement> clone() const override;
String description() const override;
private:
std::shared_ptr<SymbolTable> fSymbolTable;
std::unique_ptr<Statement> fInitializer;
std::unique_ptr<Expression> fTest;
std::unique_ptr<Expression> fNext;
std::unique_ptr<Statement> fStatement;
std::unique_ptr<LoopUnrollInfo> fUnrollInfo;
using INHERITED = Statement;
};
} // namespace SkSL
#endif