2020-03-02 20:47:43 +00:00
|
|
|
// Copyright 2020 The Tint Authors.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
//
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
|
|
|
|
#ifndef SRC_AST_EXPRESSION_H_
|
|
|
|
#define SRC_AST_EXPRESSION_H_
|
|
|
|
|
2020-04-06 19:37:37 +00:00
|
|
|
#include <memory>
|
|
|
|
#include <vector>
|
|
|
|
|
2020-03-02 20:47:43 +00:00
|
|
|
#include "src/ast/node.h"
|
2020-04-06 18:44:09 +00:00
|
|
|
#include "src/ast/type/type.h"
|
2020-03-02 20:47:43 +00:00
|
|
|
|
|
|
|
namespace tint {
|
|
|
|
namespace ast {
|
|
|
|
|
|
|
|
class ArrayAccessorExpression;
|
|
|
|
class AsExpression;
|
2020-04-07 19:27:41 +00:00
|
|
|
class BinaryExpression;
|
2020-03-02 20:47:43 +00:00
|
|
|
class CallExpression;
|
|
|
|
class CastExpression;
|
|
|
|
class IdentifierExpression;
|
2020-03-30 22:46:06 +00:00
|
|
|
class ConstructorExpression;
|
2020-03-02 20:47:43 +00:00
|
|
|
class MemberAccessorExpression;
|
|
|
|
class UnaryDerivativeExpression;
|
|
|
|
class UnaryMethodExpression;
|
|
|
|
class UnaryOpExpression;
|
|
|
|
|
|
|
|
/// Base expression class
|
|
|
|
class Expression : public Node {
|
|
|
|
public:
|
|
|
|
~Expression() override;
|
|
|
|
|
2020-04-06 18:44:09 +00:00
|
|
|
/// Sets the resulting type of this expression
|
|
|
|
/// @param type the result type to set
|
|
|
|
void set_result_type(type::Type* type) { result_type_ = type; }
|
|
|
|
/// @returns the resulting type from this expression
|
|
|
|
type::Type* result_type() const { return result_type_; }
|
|
|
|
|
2020-03-02 20:47:43 +00:00
|
|
|
/// @returns true if this is an array accessor expression
|
|
|
|
virtual bool IsArrayAccessor() const { return false; }
|
|
|
|
/// @returns true if this is an as expression
|
|
|
|
virtual bool IsAs() const { return false; }
|
|
|
|
/// @returns true if this is a call expression
|
|
|
|
virtual bool IsCall() const { return false; }
|
|
|
|
/// @returns true if this is a cast expression
|
|
|
|
virtual bool IsCast() const { return false; }
|
|
|
|
/// @returns true if this is an identifier expression
|
|
|
|
virtual bool IsIdentifier() const { return false; }
|
2020-03-30 22:46:06 +00:00
|
|
|
/// @returns true if this is an constructor expression
|
|
|
|
virtual bool IsConstructor() const { return false; }
|
2020-03-02 20:47:43 +00:00
|
|
|
/// @returns true if this is a member accessor expression
|
|
|
|
virtual bool IsMemberAccessor() const { return false; }
|
2020-04-07 19:27:41 +00:00
|
|
|
/// @returns true if this is a binary expression
|
|
|
|
virtual bool IsBinary() const { return false; }
|
2020-03-02 20:47:43 +00:00
|
|
|
/// @returns true if this is a unary derivative expression
|
|
|
|
virtual bool IsUnaryDerivative() const { return false; }
|
|
|
|
/// @returns true if this is a unary method expression
|
|
|
|
virtual bool IsUnaryMethod() const { return false; }
|
|
|
|
/// @returns true if this is a unary op expression
|
|
|
|
virtual bool IsUnaryOp() const { return false; }
|
|
|
|
|
|
|
|
/// @returns the expression as an array accessor
|
|
|
|
ArrayAccessorExpression* AsArrayAccessor();
|
|
|
|
/// @returns the expression as an as
|
|
|
|
AsExpression* AsAs();
|
|
|
|
/// @returns the expression as a call
|
|
|
|
CallExpression* AsCall();
|
|
|
|
/// @returns the expression as a cast
|
|
|
|
CastExpression* AsCast();
|
|
|
|
/// @returns the expression as an identifier
|
|
|
|
IdentifierExpression* AsIdentifier();
|
2020-03-30 22:46:06 +00:00
|
|
|
/// @returns the expression as an constructor
|
|
|
|
ConstructorExpression* AsConstructor();
|
2020-03-02 20:47:43 +00:00
|
|
|
/// @returns the expression as a member accessor
|
|
|
|
MemberAccessorExpression* AsMemberAccessor();
|
2020-04-07 19:27:41 +00:00
|
|
|
/// @returns the expression as a binary expression
|
|
|
|
BinaryExpression* AsBinary();
|
2020-03-02 20:47:43 +00:00
|
|
|
/// @returns the expression as a unary derivative expression
|
|
|
|
UnaryDerivativeExpression* AsUnaryDerivative();
|
|
|
|
/// @returns the expression as a unary method expression
|
|
|
|
UnaryMethodExpression* AsUnaryMethod();
|
|
|
|
/// @returns the expression as a unary op expression
|
|
|
|
UnaryOpExpression* AsUnaryOp();
|
|
|
|
|
|
|
|
protected:
|
|
|
|
/// Constructor
|
|
|
|
Expression();
|
|
|
|
/// Constructor
|
|
|
|
/// @param source the source of the expression
|
|
|
|
explicit Expression(const Source& source);
|
|
|
|
/// Move constructor
|
|
|
|
Expression(Expression&&) = default;
|
|
|
|
|
|
|
|
private:
|
|
|
|
Expression(const Expression&) = delete;
|
2020-04-06 18:44:09 +00:00
|
|
|
|
|
|
|
type::Type* result_type_ = nullptr;
|
2020-03-02 20:47:43 +00:00
|
|
|
};
|
|
|
|
|
2020-04-06 19:37:37 +00:00
|
|
|
/// A list of unique expressions
|
|
|
|
using ExpressionList = std::vector<std::unique_ptr<Expression>>;
|
|
|
|
|
2020-03-02 20:47:43 +00:00
|
|
|
} // namespace ast
|
|
|
|
} // namespace tint
|
|
|
|
|
|
|
|
#endif // SRC_AST_EXPRESSION_H_
|