mirror of
https://github.com/carbon-language/carbon-lang.git
synced 2026-09-24 15:10:12 +01:00
This solves the problem where `interface` imports are incorrectly diagnosed as duplicate names in impl files. Follows the implementation logic used in `handle_class.cpp`. --------- Co-authored-by: Richard Smith <richard@metafoo.co.uk>
98 lines
3.8 KiB
C++
98 lines
3.8 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_TOOLCHAIN_SEM_IR_INTERFACE_H_
|
|
#define CARBON_TOOLCHAIN_SEM_IR_INTERFACE_H_
|
|
|
|
#include "toolchain/base/value_store.h"
|
|
#include "toolchain/sem_ir/core_interface.h"
|
|
#include "toolchain/sem_ir/entity_with_params_base.h"
|
|
#include "toolchain/sem_ir/ids.h"
|
|
|
|
namespace Carbon::SemIR {
|
|
|
|
// Interface-specific fields.
|
|
//
|
|
// TODO: Factor out the shared fields between InterfaceFields and
|
|
// NamedConstraintFields.
|
|
struct InterfaceFields {
|
|
// The following members are set at the `{` of the interface definition.
|
|
|
|
// The interface scopes.
|
|
NameScopeId scope_without_self_id = NameScopeId::None;
|
|
NameScopeId scope_with_self_id = NameScopeId::None;
|
|
// The block of instructions outside the interface-with-self. This is where
|
|
// the `Self` instruction can be constructed.
|
|
InstBlockId body_block_without_self_id = InstBlockId::None;
|
|
// The interface-with-self generic, where the `Self` is a parameter to the
|
|
// generic. This generic contains all the associated entities of the
|
|
// interface.
|
|
GenericId generic_with_self_id = GenericId::None;
|
|
// The first block of the interface-with-self body.
|
|
// TODO: Handle control flow in the interface body, such as if-expressions.
|
|
InstBlockId body_block_with_self_id = InstBlockId::None;
|
|
// The implicit `Self` parameter. This is a SymbolicBinding instruction.
|
|
InstId self_param_id = InstId::None;
|
|
// Identifies whether the interface is a core interface.
|
|
CoreInterface core_interface = CoreInterface::Unknown;
|
|
|
|
// The following members are set at the `}` of the interface definition.
|
|
|
|
RequireImplsBlockId require_impls_block_id = RequireImplsBlockId::None;
|
|
ObserveBlockId observe_block_id = ObserveBlockId::None;
|
|
InstBlockId associated_entities_id = InstBlockId::None;
|
|
};
|
|
|
|
// An interface. See EntityWithParamsBase regarding the inheritance here.
|
|
struct Interface : public EntityWithParamsBase,
|
|
public InterfaceFields,
|
|
public Printable<Interface> {
|
|
auto Print(llvm::raw_ostream& out) const -> void {
|
|
out << "{";
|
|
PrintBaseFields(out);
|
|
out << ", require_impls_block_id: " << require_impls_block_id;
|
|
if (core_interface != CoreInterface::Unknown) {
|
|
out << ", core_interface: " << core_interface;
|
|
}
|
|
out << "}";
|
|
}
|
|
|
|
// This is false until we reach the `}` of the interface definition.
|
|
auto is_complete() const -> bool {
|
|
return associated_entities_id.has_value();
|
|
}
|
|
|
|
// Determines whether we're currently defining the interface. This is true
|
|
// between the braces of the interface.
|
|
auto is_being_defined() const -> bool {
|
|
return has_definition_started() && !is_complete();
|
|
}
|
|
|
|
// When merging a declaration and definition, prefer things which would point
|
|
// at the definition for diagnostics.
|
|
auto MergeDefinition(const Interface& definition) -> void {
|
|
EntityWithParamsBase::MergeBaseDefinition(definition);
|
|
scope_with_self_id = definition.scope_with_self_id;
|
|
scope_without_self_id = definition.scope_without_self_id;
|
|
body_block_without_self_id = definition.body_block_without_self_id;
|
|
body_block_with_self_id = definition.body_block_with_self_id;
|
|
self_param_id = definition.self_param_id;
|
|
core_interface = definition.core_interface;
|
|
require_impls_block_id = definition.require_impls_block_id;
|
|
observe_block_id = definition.observe_block_id;
|
|
associated_entities_id = definition.associated_entities_id;
|
|
}
|
|
};
|
|
|
|
using InterfaceStore = ValueStore<InterfaceId, Interface, Tag<CheckIRId>>;
|
|
|
|
} // namespace Carbon::SemIR
|
|
|
|
namespace Carbon {
|
|
extern template class ValueStore<SemIR::InterfaceId, SemIR::Interface,
|
|
Tag<SemIR::CheckIRId>>;
|
|
} // namespace Carbon
|
|
|
|
#endif // CARBON_TOOLCHAIN_SEM_IR_INTERFACE_H_
|