| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276 |
- // 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
- #include "toolchain/check/type_structure.h"
- #include <concepts>
- #include <utility>
- #include <variant>
- #include "toolchain/base/kind_switch.h"
- #include "toolchain/check/context.h"
- #include "toolchain/sem_ir/ids.h"
- #include "toolchain/sem_ir/type_iterator.h"
- namespace Carbon::Check {
- auto TypeStructure::IsCompatibleWith(const TypeStructure& other) const -> bool {
- const auto& lhs = structure_;
- const auto& rhs = other.structure_;
- const auto* lhs_cursor = lhs.begin();
- const auto* rhs_cursor = rhs.begin();
- const auto* lhs_concrete_cursor = concrete_types_.begin();
- const auto* rhs_concrete_cursor = other.concrete_types_.begin();
- while (true) {
- // If both structures end at the same time, they match.
- if (lhs_cursor == lhs.end() && rhs_cursor == rhs.end()) {
- return true;
- }
- // If one structure ends sooner than the other, they don't match.
- if (lhs_cursor == lhs.end() || rhs_cursor == rhs.end()) {
- return false;
- }
- // Same structural element on both sides. Compare concrete values if
- // possible to ensure they match. Both will be consumed.
- if (*lhs_cursor == *rhs_cursor) {
- // Each Concrete and ConcreteOpenParen shape entry has a paired concrete
- // value.
- if (*lhs_cursor == Structural::Concrete ||
- *lhs_cursor == Structural::ConcreteOpenParen) {
- if (*lhs_concrete_cursor != *rhs_concrete_cursor) {
- return false;
- }
- // Move past the shape and concrete value together.
- ++lhs_concrete_cursor;
- ++rhs_concrete_cursor;
- }
- ++lhs_cursor;
- ++rhs_cursor;
- continue;
- }
- // If the element on each side is concrete but they not the same structural
- // shape, then the structures don't match.
- if (*lhs_cursor != Structural::Symbolic &&
- *rhs_cursor != Structural::Symbolic) {
- return false;
- }
- // From here we know one side is a Symbolic and the other is not. We can
- // match the Symbolic against either a single Concrete or a larger bracketed
- // set of Concrete structural elements.
- //
- // We move the symbolic to the RHS to make only one case to handle in the
- // lambda.
- if (*lhs_cursor == Structural::Symbolic) {
- if (!ConsumeRhsSymbolic(rhs_cursor, rhs_concrete_cursor, lhs_cursor)) {
- return false;
- }
- } else {
- if (!ConsumeRhsSymbolic(lhs_cursor, lhs_concrete_cursor, rhs_cursor)) {
- return false;
- }
- }
- }
- return true;
- }
- // Returns false if the lhs and rhs can not match, true if we should
- // continue checking for compatibility.
- auto TypeStructure::ConsumeRhsSymbolic(
- llvm::SmallVector<Structural>::const_iterator& lhs_cursor,
- llvm::SmallVector<ConcreteType>::const_iterator& lhs_concrete_cursor,
- llvm::SmallVector<Structural>::const_iterator& rhs_cursor) -> bool {
- // Consume the symbolic on the RHS.
- ++rhs_cursor;
- // The symbolic on the RHS is in the same position as a close paren on the
- // LHS, which means the structures can not match.
- //
- // Example:
- // - ((c))
- // - ((c?))
- if (*lhs_cursor == TypeStructure::Structural::ConcreteCloseParen) {
- return false;
- }
- // There's either a Concrete element or an open paren on the LHS. If it's
- // the former, the Symbolic just matches with it. If it's the latter, the
- // Symbolic matches with everything on the LHS up to the matching closing
- // paren.
- CARBON_CHECK(*lhs_cursor == Structural::Concrete ||
- *lhs_cursor == Structural::ConcreteOpenParen);
- int depth = 0;
- do {
- switch (*lhs_cursor) {
- case Structural::ConcreteOpenParen:
- depth += 1;
- // Each Concrete and ConcreteOpenParen shape entry has a paired
- // concrete value. Skip the shape and concrete value together.
- ++lhs_concrete_cursor;
- break;
- case Structural::ConcreteCloseParen:
- depth -= 1;
- break;
- case Structural::Concrete:
- // Each Concrete and ConcreteOpenParen shape entry has a paired
- // concrete value. Skip the shape and concrete value together.
- ++lhs_concrete_cursor;
- break;
- case Structural::Symbolic:
- break;
- }
- ++lhs_cursor;
- } while (depth > 0);
- return true;
- }
- // A class that builds a `TypeStructure` for an `Impl`, or an impl lookup query,
- // that represents its self type and interface.
- class TypeStructureBuilder {
- public:
- // `context` must not be null.
- explicit TypeStructureBuilder(Context* context) : context_(context) {}
- auto Run(SemIR::InstId self_inst_id,
- SemIR::SpecificInterface interface_constraint) -> TypeStructure {
- structure_.clear();
- symbolic_type_indices_.clear();
- concrete_types_.clear();
- SemIR::TypeIterator type_iter(&context_->sem_ir());
- // The self type comes first in the type structure, so we push it last, as
- // the iterator starts with the last thing added.
- type_iter.Add(interface_constraint);
- if (self_inst_id.has_value()) {
- type_iter.Add(self_inst_id);
- }
- return Build(std::move(type_iter));
- }
- private:
- auto Build(SemIR::TypeIterator type_iter) -> TypeStructure;
- // Append a structural element to the TypeStructure being built.
- auto AppendStructuralConcrete(TypeStructure::ConcreteType type) -> void {
- concrete_types_.push_back(type);
- structure_.push_back(TypeStructure::Structural::Concrete);
- }
- auto AppendStructuralConcreteOpenParen(TypeStructure::ConcreteType type)
- -> void {
- concrete_types_.push_back(type);
- structure_.push_back(TypeStructure::Structural::ConcreteOpenParen);
- }
- auto AppendStructuralConcreteCloseParen() -> void {
- structure_.push_back(TypeStructure::Structural::ConcreteCloseParen);
- }
- auto AppendStructuralSymbolic() -> void {
- symbolic_type_indices_.push_back(structure_.size());
- structure_.push_back(TypeStructure::Structural::Symbolic);
- }
- Context* context_;
- // In-progress state for the equivalent `TypeStructure` fields.
- llvm::SmallVector<TypeStructure::Structural> structure_;
- llvm::SmallVector<int> symbolic_type_indices_;
- llvm::SmallVector<TypeStructure::ConcreteType> concrete_types_;
- };
- // Builds the type structure and returns it.
- auto TypeStructureBuilder::Build(SemIR::TypeIterator type_iter)
- -> TypeStructure {
- while (true) {
- using Step = SemIR::TypeIterator::Step;
- CARBON_KIND_SWITCH(type_iter.Next().any) {
- case CARBON_KIND(Step::Done _):
- // TODO: This requires 4 SmallVector moves (two here and two in the
- // constructor). Find a way to reduce that.
- return TypeStructure(std::exchange(structure_, {}),
- std::exchange(symbolic_type_indices_, {}),
- std::exchange(concrete_types_, {}));
- case CARBON_KIND(Step::End _):
- AppendStructuralConcreteCloseParen();
- break;
- case CARBON_KIND(Step::ConcreteType concrete):
- AppendStructuralConcrete(concrete.type_id);
- break;
- case CARBON_KIND(Step::SymbolicType _):
- AppendStructuralSymbolic();
- break;
- case CARBON_KIND(Step::TemplateType _):
- AppendStructuralSymbolic();
- break;
- case CARBON_KIND(Step::ConcreteValue value):
- AppendStructuralConcrete(
- context_->constant_values().Get(value.inst_id));
- break;
- case CARBON_KIND(Step::SymbolicValue _):
- AppendStructuralSymbolic();
- break;
- case CARBON_KIND(Step::StructFieldName field_name):
- AppendStructuralConcrete(field_name.name_id);
- break;
- case CARBON_KIND(Step::StartOnly start):
- CARBON_KIND_SWITCH(start.any) {
- case CARBON_KIND(Step::ClassStart class_start):
- AppendStructuralConcrete(class_start.class_id);
- break;
- case CARBON_KIND(Step::StructStart _):
- AppendStructuralConcrete(TypeStructure::ConcreteStructType());
- break;
- case CARBON_KIND(Step::TupleStart _):
- AppendStructuralConcrete(TypeStructure::ConcreteTupleType());
- break;
- case CARBON_KIND(Step::InterfaceStart interface_start):
- AppendStructuralConcrete(interface_start.interface_id);
- break;
- }
- break;
- case CARBON_KIND(Step::StartWithEnd start_with_end): {
- CARBON_KIND_SWITCH(start_with_end.any) {
- case CARBON_KIND(Step::ClassStart class_start):
- AppendStructuralConcreteOpenParen(class_start.class_id);
- break;
- case CARBON_KIND(Step::StructStart _):
- AppendStructuralConcreteOpenParen(
- TypeStructure::ConcreteStructType());
- break;
- case CARBON_KIND(Step::TupleStart _):
- AppendStructuralConcreteOpenParen(
- TypeStructure::ConcreteTupleType());
- break;
- case CARBON_KIND(Step::InterfaceStart interface_start):
- AppendStructuralConcreteOpenParen(interface_start.interface_id);
- break;
- case CARBON_KIND(Step::IntStart int_start):
- AppendStructuralConcreteOpenParen(int_start.type_id);
- break;
- case CARBON_KIND(Step::ArrayStart _):
- AppendStructuralConcreteOpenParen(
- TypeStructure::ConcreteArrayType());
- break;
- case CARBON_KIND(Step::PointerStart _):
- AppendStructuralConcreteOpenParen(
- TypeStructure::ConcretePointerType());
- break;
- }
- break;
- }
- }
- }
- }
- auto BuildTypeStructure(Context& context, SemIR::InstId self_inst_id,
- SemIR::SpecificInterface interface) -> TypeStructure {
- TypeStructureBuilder builder(&context);
- return builder.Run(self_inst_id, interface);
- }
- } // namespace Carbon::Check
|