mirror of
https://github.com/carbon-language/carbon-lang.git
synced 2026-09-24 22:02:23 +01:00
Represent the type as an `InstId` rather than as a `TypeId` to preserve how it was written and better support tracking its value in a generic. Add accessors to `Class` to get the base and adapted type to reduce code duplication, and add `TypeStore::GetObjectRepr` to make it easier to map from a type to its possibly-adapted object representation type. In passing, also move `GetIntTypeInfo` and `GetUnqualifiedType` into `TypeStore`. This fixes specifics of generic adapters to properly look at the specific adapted type, and also fixes importing of adapters. --------- Co-authored-by: Jon Ross-Perkins <jperkins@google.com>
53 lines
1.6 KiB
C++
53 lines
1.6 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
|
|
|
|
#include "toolchain/sem_ir/class.h"
|
|
|
|
#include "toolchain/sem_ir/file.h"
|
|
#include "toolchain/sem_ir/generic.h"
|
|
#include "toolchain/sem_ir/ids.h"
|
|
#include "toolchain/sem_ir/typed_insts.h"
|
|
|
|
namespace Carbon::SemIR {
|
|
|
|
static auto GetFoundationType(const File& file, SpecificId specific_id,
|
|
InstId inst_id) -> TypeId {
|
|
if (!inst_id.is_valid()) {
|
|
return TypeId::Invalid;
|
|
}
|
|
if (inst_id == SemIR::InstId::BuiltinErrorInst) {
|
|
return TypeId::Error;
|
|
}
|
|
return TypeId::ForTypeConstant(GetConstantValueInSpecific(
|
|
file, specific_id,
|
|
file.insts().GetAs<AnyFoundationDecl>(inst_id).foundation_type_inst_id));
|
|
}
|
|
|
|
auto Class::GetAdaptedType(const File& file, SpecificId specific_id) const
|
|
-> TypeId {
|
|
return GetFoundationType(file, specific_id, adapt_id);
|
|
}
|
|
|
|
auto Class::GetBaseType(const File& file, SpecificId specific_id) const
|
|
-> TypeId {
|
|
return GetFoundationType(file, specific_id, base_id);
|
|
}
|
|
|
|
auto Class::GetObjectRepr(const File& file, SpecificId specific_id) const
|
|
-> TypeId {
|
|
if (!complete_type_witness_id.is_valid()) {
|
|
return TypeId::Invalid;
|
|
}
|
|
auto witness_id =
|
|
GetConstantValueInSpecific(file, specific_id, complete_type_witness_id);
|
|
if (witness_id == ConstantId::Error) {
|
|
return TypeId::Error;
|
|
}
|
|
return file.insts()
|
|
.GetAs<CompleteTypeWitness>(file.constant_values().GetInstId(witness_id))
|
|
.object_repr_id;
|
|
}
|
|
|
|
} // namespace Carbon::SemIR
|