mirror of
https://github.com/carbon-language/carbon-lang.git
synced 2026-09-24 19:10:14 +01:00
This modifies scripts/check_header_guards.py to add the CARBON_ prefix; everything else is pre-commit.
350 lines
12 KiB
C++
350 lines
12 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 CARBON_EXPLORER_AST_PATTERN_H_
|
|
#define CARBON_EXPLORER_AST_PATTERN_H_
|
|
|
|
#include <optional>
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
#include "common/ostream.h"
|
|
#include "explorer/ast/ast_node.h"
|
|
#include "explorer/ast/ast_rtti.h"
|
|
#include "explorer/ast/expression.h"
|
|
#include "explorer/ast/static_scope.h"
|
|
#include "explorer/ast/value_category.h"
|
|
#include "explorer/common/source_location.h"
|
|
#include "llvm/ADT/ArrayRef.h"
|
|
#include "llvm/ADT/STLFunctionalExtras.h"
|
|
|
|
namespace Carbon {
|
|
|
|
class Value;
|
|
|
|
// 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 AstNode {
|
|
public:
|
|
Pattern(const Pattern&) = delete;
|
|
auto operator=(const Pattern&) -> Pattern& = delete;
|
|
|
|
~Pattern() override = 0;
|
|
|
|
void Print(llvm::raw_ostream& out) const override;
|
|
void PrintID(llvm::raw_ostream& out) const override;
|
|
|
|
static auto classof(const AstNode* node) -> bool {
|
|
return InheritsFromPattern(node->kind());
|
|
}
|
|
|
|
// Returns the enumerator corresponding to the most-derived type of this
|
|
// object.
|
|
auto kind() const -> PatternKind {
|
|
return static_cast<PatternKind>(root_kind());
|
|
}
|
|
|
|
// The static type of this pattern. Cannot be called before typechecking.
|
|
auto static_type() const -> const Value& {
|
|
CARBON_CHECK(static_type_.has_value());
|
|
return **static_type_;
|
|
}
|
|
|
|
// Sets the static type of this expression. Can only be called once, during
|
|
// typechecking.
|
|
void set_static_type(Nonnull<const Value*> type) {
|
|
CARBON_CHECK(!static_type_.has_value());
|
|
static_type_ = type;
|
|
}
|
|
|
|
// The value of this pattern. Cannot be called before typechecking.
|
|
// TODO rename to avoid confusion with BindingPattern::constant_value
|
|
auto value() const -> const Value& { return **value_; }
|
|
|
|
// Sets the value of this pattern. Can only be called once, during
|
|
// typechecking.
|
|
void set_value(Nonnull<const Value*> value) { value_ = value; }
|
|
|
|
// Returns whether the value has been set. Should only be called
|
|
// during typechecking: before typechecking it's guaranteed to be false,
|
|
// and after typechecking it's guaranteed to be true.
|
|
auto has_value() const -> bool { return value_.has_value(); }
|
|
|
|
protected:
|
|
// Constructs a Pattern representing syntax at the given line number.
|
|
// `kind` must be the enumerator corresponding to the most-derived type being
|
|
// constructed.
|
|
Pattern(AstNodeKind kind, SourceLocation source_loc)
|
|
: AstNode(kind, source_loc) {}
|
|
|
|
private:
|
|
std::optional<Nonnull<const Value*>> static_type_;
|
|
std::optional<Nonnull<const Value*>> value_;
|
|
};
|
|
|
|
// Call the given `visitor` on all patterns nested within the given pattern,
|
|
// including `pattern` itself. Aborts and returns `false` if `visitor` returns
|
|
// `false`, otherwise returns `true`.
|
|
auto VisitNestedPatterns(const Pattern& pattern,
|
|
llvm::function_ref<bool(const Pattern&)> visitor)
|
|
-> bool;
|
|
|
|
// A pattern consisting of the `auto` keyword.
|
|
class AutoPattern : public Pattern {
|
|
public:
|
|
explicit AutoPattern(SourceLocation source_loc)
|
|
: Pattern(AstNodeKind::AutoPattern, source_loc) {}
|
|
|
|
static auto classof(const AstNode* node) -> bool {
|
|
return InheritsFromAutoPattern(node->kind());
|
|
}
|
|
};
|
|
|
|
class VarPattern : public Pattern {
|
|
public:
|
|
explicit VarPattern(SourceLocation source_loc, Nonnull<Pattern*> pattern)
|
|
: Pattern(AstNodeKind::VarPattern, source_loc), pattern_(pattern) {}
|
|
|
|
static auto classof(const AstNode* node) -> bool {
|
|
return InheritsFromVarPattern(node->kind());
|
|
}
|
|
|
|
auto pattern() const -> const Pattern& { return *pattern_; }
|
|
auto pattern() -> Pattern& { return *pattern_; }
|
|
|
|
auto value_category() const -> ValueCategory { return ValueCategory::Var; }
|
|
|
|
private:
|
|
Nonnull<Pattern*> pattern_;
|
|
};
|
|
|
|
// A pattern that matches a value of a specified type, and optionally binds
|
|
// a name to it.
|
|
class BindingPattern : public Pattern {
|
|
public:
|
|
using ImplementsCarbonValueNode = void;
|
|
|
|
BindingPattern(SourceLocation source_loc, std::string name,
|
|
Nonnull<Pattern*> type,
|
|
std::optional<ValueCategory> value_category)
|
|
: Pattern(AstNodeKind::BindingPattern, source_loc),
|
|
name_(std::move(name)),
|
|
type_(type),
|
|
value_category_(value_category) {}
|
|
|
|
static auto classof(const AstNode* node) -> bool {
|
|
return InheritsFromBindingPattern(node->kind());
|
|
}
|
|
|
|
// The name this pattern binds, if any. If equal to AnonymousName, indicates
|
|
// that this BindingPattern does not bind a name, which in turn means it
|
|
// should not be used as a ValueNode.
|
|
auto name() const -> const std::string& { return name_; }
|
|
|
|
// The pattern specifying the type of values that this pattern matches.
|
|
auto type() const -> const Pattern& { return *type_; }
|
|
auto type() -> Pattern& { return *type_; }
|
|
|
|
// Returns the value category of this pattern. Can only be called after
|
|
// typechecking.
|
|
auto value_category() const -> ValueCategory {
|
|
return value_category_.value();
|
|
}
|
|
|
|
// Returns whether the value category has been set. Should only be called
|
|
// during typechecking.
|
|
auto has_value_category() const -> bool {
|
|
return value_category_.has_value();
|
|
}
|
|
|
|
// Sets the value category of the variable being bound. Can only be called
|
|
// once during typechecking
|
|
void set_value_category(ValueCategory vc) {
|
|
CARBON_CHECK(!value_category_.has_value());
|
|
value_category_ = vc;
|
|
}
|
|
|
|
auto constant_value() const -> std::optional<Nonnull<const Value*>> {
|
|
return std::nullopt;
|
|
}
|
|
auto symbolic_identity() const -> std::optional<Nonnull<const Value*>> {
|
|
return std::nullopt;
|
|
}
|
|
|
|
private:
|
|
std::string name_;
|
|
Nonnull<Pattern*> type_;
|
|
std::optional<ValueCategory> value_category_;
|
|
};
|
|
|
|
// A pattern that matches a tuple value field-wise.
|
|
class TuplePattern : public Pattern {
|
|
public:
|
|
TuplePattern(SourceLocation source_loc, std::vector<Nonnull<Pattern*>> fields)
|
|
: Pattern(AstNodeKind::TuplePattern, source_loc),
|
|
fields_(std::move(fields)) {}
|
|
|
|
static auto classof(const AstNode* node) -> bool {
|
|
return InheritsFromTuplePattern(node->kind());
|
|
}
|
|
|
|
auto fields() const -> llvm::ArrayRef<Nonnull<const Pattern*>> {
|
|
return fields_;
|
|
}
|
|
auto fields() -> llvm::ArrayRef<Nonnull<Pattern*>> { return fields_; }
|
|
|
|
private:
|
|
std::vector<Nonnull<Pattern*>> fields_;
|
|
};
|
|
|
|
class GenericBinding : public Pattern {
|
|
public:
|
|
using ImplementsCarbonValueNode = void;
|
|
|
|
GenericBinding(SourceLocation source_loc, std::string name,
|
|
Nonnull<Expression*> type)
|
|
: Pattern(AstNodeKind::GenericBinding, source_loc),
|
|
name_(std::move(name)),
|
|
type_(type) {}
|
|
|
|
void Print(llvm::raw_ostream& out) const override;
|
|
void PrintID(llvm::raw_ostream& out) const override;
|
|
|
|
static auto classof(const AstNode* node) -> bool {
|
|
return InheritsFromGenericBinding(node->kind());
|
|
}
|
|
|
|
auto name() const -> const std::string& { return name_; }
|
|
auto type() const -> const Expression& { return *type_; }
|
|
auto type() -> Expression& { return *type_; }
|
|
|
|
auto value_category() const -> ValueCategory { return ValueCategory::Let; }
|
|
|
|
auto constant_value() const -> std::optional<Nonnull<const Value*>> {
|
|
return std::nullopt;
|
|
}
|
|
|
|
auto symbolic_identity() const -> std::optional<Nonnull<const Value*>> {
|
|
return symbolic_identity_;
|
|
}
|
|
void set_symbolic_identity(Nonnull<const Value*> value) {
|
|
CARBON_CHECK(!symbolic_identity_.has_value());
|
|
symbolic_identity_ = value;
|
|
}
|
|
|
|
// The impl binding associated with this type variable.
|
|
auto impl_binding() const -> std::optional<Nonnull<const ImplBinding*>> {
|
|
return impl_binding_;
|
|
}
|
|
// Set the impl binding.
|
|
void set_impl_binding(Nonnull<const ImplBinding*> binding) {
|
|
CARBON_CHECK(!impl_binding_.has_value());
|
|
impl_binding_ = binding;
|
|
}
|
|
|
|
private:
|
|
std::string name_;
|
|
Nonnull<Expression*> type_;
|
|
std::optional<Nonnull<const Value*>> symbolic_identity_;
|
|
std::optional<Nonnull<const ImplBinding*>> impl_binding_;
|
|
};
|
|
|
|
// 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(Nonnull<Arena*> arena, SourceLocation source_loc,
|
|
const ParenContents<Pattern>& paren_contents)
|
|
-> Nonnull<Pattern*>;
|
|
|
|
// Converts paren_contents to a TuplePattern, interpreting the parentheses as
|
|
// forming a tuple.
|
|
auto TuplePatternFromParenContents(Nonnull<Arena*> arena,
|
|
SourceLocation source_loc,
|
|
const ParenContents<Pattern>& paren_contents)
|
|
-> Nonnull<TuplePattern*>;
|
|
|
|
// Converts `contents` to ParenContents<Pattern> by replacing each Expression
|
|
// with an ExpressionPattern.
|
|
auto ParenExpressionToParenPattern(Nonnull<Arena*> arena,
|
|
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 the alternative specified
|
|
// by `alternative`, if its arguments match `arguments`.
|
|
static auto Create(Nonnull<Arena*> arena, SourceLocation source_loc,
|
|
Nonnull<Expression*> alternative,
|
|
Nonnull<TuplePattern*> arguments)
|
|
-> ErrorOr<Nonnull<AlternativePattern*>> {
|
|
CARBON_ASSIGN_OR_RETURN(Nonnull<FieldAccessExpression*> field_access,
|
|
RequireFieldAccess(alternative));
|
|
return arena->New<AlternativePattern>(source_loc,
|
|
&field_access->aggregate(),
|
|
field_access->field(), arguments);
|
|
}
|
|
|
|
// 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(SourceLocation source_loc,
|
|
Nonnull<Expression*> choice_type,
|
|
std::string alternative_name,
|
|
Nonnull<TuplePattern*> arguments)
|
|
: Pattern(AstNodeKind::AlternativePattern, source_loc),
|
|
choice_type_(choice_type),
|
|
alternative_name_(std::move(alternative_name)),
|
|
arguments_(arguments) {}
|
|
|
|
static auto classof(const AstNode* node) -> bool {
|
|
return InheritsFromAlternativePattern(node->kind());
|
|
}
|
|
|
|
auto choice_type() const -> const Expression& { return *choice_type_; }
|
|
auto choice_type() -> Expression& { return *choice_type_; }
|
|
auto alternative_name() const -> const std::string& {
|
|
return alternative_name_;
|
|
}
|
|
auto arguments() const -> const TuplePattern& { return *arguments_; }
|
|
auto arguments() -> TuplePattern& { return *arguments_; }
|
|
|
|
private:
|
|
static auto RequireFieldAccess(Nonnull<Expression*> alternative)
|
|
-> ErrorOr<Nonnull<FieldAccessExpression*>>;
|
|
|
|
Nonnull<Expression*> choice_type_;
|
|
std::string alternative_name_;
|
|
Nonnull<TuplePattern*> arguments_;
|
|
};
|
|
|
|
// A pattern that matches a value if it is equal to the value of a given
|
|
// expression.
|
|
class ExpressionPattern : public Pattern {
|
|
public:
|
|
explicit ExpressionPattern(Nonnull<Expression*> expression)
|
|
: Pattern(AstNodeKind::ExpressionPattern, expression->source_loc()),
|
|
expression_(expression) {}
|
|
|
|
static auto classof(const AstNode* node) -> bool {
|
|
return InheritsFromExpressionPattern(node->kind());
|
|
}
|
|
|
|
auto expression() const -> const Expression& { return *expression_; }
|
|
auto expression() -> Expression& { return *expression_; }
|
|
|
|
private:
|
|
Nonnull<Expression*> expression_;
|
|
};
|
|
|
|
} // namespace Carbon
|
|
|
|
#endif // CARBON_EXPLORER_AST_PATTERN_H_
|