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>
|
2020-11-16 14:46:27 +00:00
|
|
|
#include <string>
|
2020-04-06 19:37:37 +00:00
|
|
|
#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;
|
2020-04-07 19:27:41 +00:00
|
|
|
class BinaryExpression;
|
2020-09-22 22:07:13 +00:00
|
|
|
class BitcastExpression;
|
2020-03-02 20:47:43 +00:00
|
|
|
class CallExpression;
|
|
|
|
class IdentifierExpression;
|
2020-03-30 22:46:06 +00:00
|
|
|
class ConstructorExpression;
|
2020-03-02 20:47:43 +00:00
|
|
|
class MemberAccessorExpression;
|
|
|
|
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
|
2020-04-22 00:23:49 +00:00
|
|
|
void set_result_type(type::Type* type);
|
2020-04-06 18:44:09 +00:00
|
|
|
/// @returns the resulting type from this expression
|
|
|
|
type::Type* result_type() const { return result_type_; }
|
|
|
|
|
2020-11-16 14:46:27 +00:00
|
|
|
/// @returns a string representation of the result type or 'not set' if no
|
|
|
|
/// result type present
|
|
|
|
std::string result_type_str() const {
|
|
|
|
return result_type_ ? result_type_->type_name() : "not set";
|
|
|
|
}
|
|
|
|
|
2020-03-02 20:47:43 +00:00
|
|
|
/// @returns true if this is an array accessor expression
|
2020-04-09 18:52:06 +00:00
|
|
|
virtual bool IsArrayAccessor() const;
|
2020-09-22 22:07:13 +00:00
|
|
|
/// @returns true if this is a bitcast expression
|
|
|
|
virtual bool IsBitcast() const;
|
2020-03-02 20:47:43 +00:00
|
|
|
/// @returns true if this is a call expression
|
2020-04-09 18:52:06 +00:00
|
|
|
virtual bool IsCall() const;
|
2020-03-02 20:47:43 +00:00
|
|
|
/// @returns true if this is an identifier expression
|
2020-04-09 18:52:06 +00:00
|
|
|
virtual bool IsIdentifier() const;
|
2020-03-30 22:46:06 +00:00
|
|
|
/// @returns true if this is an constructor expression
|
2020-04-09 18:52:06 +00:00
|
|
|
virtual bool IsConstructor() const;
|
2020-03-02 20:47:43 +00:00
|
|
|
/// @returns true if this is a member accessor expression
|
2020-04-09 18:52:06 +00:00
|
|
|
virtual bool IsMemberAccessor() const;
|
2020-04-07 19:27:41 +00:00
|
|
|
/// @returns true if this is a binary expression
|
2020-04-09 18:52:06 +00:00
|
|
|
virtual bool IsBinary() const;
|
2020-03-02 20:47:43 +00:00
|
|
|
/// @returns true if this is a unary op expression
|
2020-04-09 18:52:06 +00:00
|
|
|
virtual bool IsUnaryOp() const;
|
2020-03-02 20:47:43 +00:00
|
|
|
|
|
|
|
/// @returns the expression as an array accessor
|
2020-04-23 13:52:32 +00:00
|
|
|
const ArrayAccessorExpression* AsArrayAccessor() const;
|
2020-09-22 22:07:13 +00:00
|
|
|
/// @returns the expression as a bitcast
|
|
|
|
const BitcastExpression* AsBitcast() const;
|
2020-04-23 13:52:32 +00:00
|
|
|
/// @returns the expression as a call
|
|
|
|
const CallExpression* AsCall() const;
|
|
|
|
/// @returns the expression as an identifier
|
|
|
|
const IdentifierExpression* AsIdentifier() const;
|
|
|
|
/// @returns the expression as an constructor
|
|
|
|
const ConstructorExpression* AsConstructor() const;
|
|
|
|
/// @returns the expression as a member accessor
|
|
|
|
const MemberAccessorExpression* AsMemberAccessor() const;
|
|
|
|
/// @returns the expression as a binary expression
|
|
|
|
const BinaryExpression* AsBinary() const;
|
|
|
|
/// @returns the expression as a unary op expression
|
|
|
|
const UnaryOpExpression* AsUnaryOp() const;
|
|
|
|
|
2020-04-23 22:26:52 +00:00
|
|
|
/// @returns the expression as an array accessor
|
2020-03-02 20:47:43 +00:00
|
|
|
ArrayAccessorExpression* AsArrayAccessor();
|
2020-09-22 22:07:13 +00:00
|
|
|
/// @returns the expression as a bitcast
|
|
|
|
BitcastExpression* AsBitcast();
|
2020-03-02 20:47:43 +00:00
|
|
|
/// @returns the expression as a call
|
|
|
|
CallExpression* AsCall();
|
|
|
|
/// @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 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_
|