mirror of
https://github.com/carbon-language/carbon-lang.git
synced 2026-09-24 22:02:23 +01:00
201 lines
6.4 KiB
C++
201 lines
6.4 KiB
C++
// Part of the Carbon Language project, under the Apache License v2.0 with LLVM
|
|
// Exceptions. See /LICENSE for license information.
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
|
|
|
#ifndef EXECUTABLE_SEMANTICS_AST_PATTERN_H_
|
|
#define EXECUTABLE_SEMANTICS_AST_PATTERN_H_
|
|
|
|
#include <optional>
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
#include "common/ostream.h"
|
|
#include "executable_semantics/ast/expression.h"
|
|
|
|
namespace Carbon {
|
|
|
|
// Abstract base class of all AST nodes representing patterns.
|
|
//
|
|
// Pattern and its derived classes support LLVM-style RTTI, including
|
|
// llvm::isa, llvm::cast, and llvm::dyn_cast. To support this, every
|
|
// class derived from Pattern must provide a `classof` operation, and
|
|
// every concrete derived class must have a corresponding enumerator
|
|
// in `Kind`; see https://llvm.org/docs/HowToSetUpLLVMStyleRTTI.html for
|
|
// details.
|
|
class Pattern {
|
|
public:
|
|
enum class Kind {
|
|
AutoPattern,
|
|
BindingPattern,
|
|
TuplePattern,
|
|
AlternativePattern,
|
|
ExpressionPattern,
|
|
};
|
|
|
|
Pattern(const Pattern&) = delete;
|
|
Pattern& operator=(const Pattern&) = delete;
|
|
|
|
// Returns the enumerator corresponding to the most-derived type of this
|
|
// object.
|
|
auto Tag() const -> Kind { return tag; }
|
|
|
|
auto LineNumber() const -> int { return line_num; }
|
|
|
|
void Print(llvm::raw_ostream& out) const;
|
|
LLVM_DUMP_METHOD void Dump() const { Print(llvm::errs()); }
|
|
|
|
protected:
|
|
// Constructs a Pattern representing syntax at the given line number.
|
|
// `tag` must be the enumerator corresponding to the most-derived type being
|
|
// constructed.
|
|
Pattern(Kind tag, int line_num) : tag(tag), line_num(line_num) {}
|
|
|
|
private:
|
|
const Kind tag;
|
|
int line_num;
|
|
};
|
|
|
|
// A pattern consisting of the `auto` keyword.
|
|
class AutoPattern : public Pattern {
|
|
public:
|
|
explicit AutoPattern(int line_num) : Pattern(Kind::AutoPattern, line_num) {}
|
|
|
|
static auto classof(const Pattern* pattern) -> bool {
|
|
return pattern->Tag() == Kind::AutoPattern;
|
|
}
|
|
};
|
|
|
|
// A pattern that matches a value of a specified type, and optionally binds
|
|
// a name to it.
|
|
class BindingPattern : public Pattern {
|
|
public:
|
|
BindingPattern(int line_num, std::optional<std::string> name,
|
|
const Pattern* type)
|
|
: Pattern(Kind::BindingPattern, line_num),
|
|
name(std::move(name)),
|
|
type(type) {}
|
|
|
|
static auto classof(const Pattern* pattern) -> bool {
|
|
return pattern->Tag() == Kind::BindingPattern;
|
|
}
|
|
|
|
// The name this pattern binds, if any.
|
|
auto Name() const -> const std::optional<std::string>& { return name; }
|
|
|
|
// The pattern specifying the type of values that this pattern matches.
|
|
auto Type() const -> const Pattern* { return type; }
|
|
|
|
private:
|
|
std::optional<std::string> name;
|
|
const Pattern* type;
|
|
};
|
|
|
|
// A pattern that matches a tuple value field-wise.
|
|
class TuplePattern : public Pattern {
|
|
public:
|
|
// Represents a portion of a tuple pattern corresponding to a single field.
|
|
struct Field {
|
|
Field(std::string name, const Pattern* pattern)
|
|
: name(std::move(name)), pattern(pattern) {}
|
|
|
|
// The field name. Cannot be empty
|
|
std::string name;
|
|
|
|
// The pattern the field must match.
|
|
const Pattern* pattern;
|
|
};
|
|
|
|
TuplePattern(int line_num, std::vector<Field> fields)
|
|
: Pattern(Kind::TuplePattern, line_num), fields(std::move(fields)) {}
|
|
|
|
// Converts tuple_literal to a TuplePattern, by wrapping each field in an
|
|
// ExpressionPattern.
|
|
//
|
|
// REQUIRES: tuple_literal->Tag() == Expression::Kind::TupleLiteral
|
|
explicit TuplePattern(const Expression* tuple_literal);
|
|
|
|
static auto classof(const Pattern* pattern) -> bool {
|
|
return pattern->Tag() == Kind::TuplePattern;
|
|
}
|
|
|
|
auto Fields() const -> const std::vector<Field>& { return fields; }
|
|
|
|
private:
|
|
std::vector<Field> fields;
|
|
};
|
|
|
|
// Converts paren_contents to a Pattern, interpreting the parentheses as
|
|
// grouping if their contents permit that interpretation, or as forming a
|
|
// tuple otherwise.
|
|
auto PatternFromParenContents(int line_num,
|
|
const ParenContents<Pattern>& paren_contents)
|
|
-> const Pattern*;
|
|
|
|
// Converts paren_contents to a TuplePattern, interpreting the parentheses as
|
|
// forming a tuple.
|
|
auto TuplePatternFromParenContents(int line_num,
|
|
const ParenContents<Pattern>& paren_contents)
|
|
-> const TuplePattern*;
|
|
|
|
// Converts `contents` to ParenContents<Pattern> by replacing each Expression
|
|
// with an ExpressionPattern.
|
|
auto ParenExpressionToParenPattern(const ParenContents<Expression>& contents)
|
|
-> ParenContents<Pattern>;
|
|
|
|
// A pattern that matches an alternative of a choice type.
|
|
class AlternativePattern : public Pattern {
|
|
public:
|
|
// Constructs an AlternativePattern that matches a value of the type
|
|
// specified by choice_type if it represents an alternative named
|
|
// alternative_name, and its arguments match `arguments`.
|
|
AlternativePattern(int line_num, const Expression* choice_type,
|
|
std::string alternative_name,
|
|
const TuplePattern* arguments)
|
|
: Pattern(Kind::AlternativePattern, line_num),
|
|
choice_type(choice_type),
|
|
alternative_name(std::move(alternative_name)),
|
|
arguments(arguments) {}
|
|
|
|
// Constructs an AlternativePattern that matches the alternative specified
|
|
// by `alternative`, if its arguments match `arguments`.
|
|
AlternativePattern(int line_num, const Expression* alternative,
|
|
const TuplePattern* arguments);
|
|
|
|
static auto classof(const Pattern* pattern) -> bool {
|
|
return pattern->Tag() == Kind::AlternativePattern;
|
|
}
|
|
|
|
auto ChoiceType() const -> const Expression* { return choice_type; }
|
|
auto AlternativeName() const -> const std::string& {
|
|
return alternative_name;
|
|
}
|
|
auto Arguments() const -> const TuplePattern* { return arguments; }
|
|
|
|
private:
|
|
const Expression* choice_type;
|
|
std::string alternative_name;
|
|
const TuplePattern* arguments;
|
|
};
|
|
|
|
// A pattern that matches a value if it is equal to the value of a given
|
|
// expression.
|
|
class ExpressionPattern : public Pattern {
|
|
public:
|
|
ExpressionPattern(const Expression* expression)
|
|
: Pattern(Kind::ExpressionPattern, expression->LineNumber()),
|
|
expression(expression) {}
|
|
|
|
static auto classof(const Pattern* pattern) -> bool {
|
|
return pattern->Tag() == Kind::ExpressionPattern;
|
|
}
|
|
|
|
auto Expression() const -> const Expression* { return expression; }
|
|
|
|
private:
|
|
const Carbon::Expression* expression;
|
|
};
|
|
|
|
} // namespace Carbon
|
|
|
|
#endif // EXECUTABLE_SEMANTICS_AST_PATTERN_H_
|