mirror of
https://github.com/carbon-language/carbon-lang.git
synced 2026-09-24 22:02:23 +01:00
We frequently want to operate on singletons. Per discussion, drop `Singleton` to make the code shorter. This started off as wanting to write `inst_id.is_error()`, but the dependency relationship between ids.h and singleton_insts.h would require some kind of delayed evaluation to allow the implementation to remain in headers (which I suspect is helpful to have for inlining). I could have added something like `IsErrorInst`, forward declared in ids.h and defined in singleton_insts.h (which would always be included by typed_insts.h), but the template approach felt like a decent balance between (a) removing the boilerplate `::SingletonInstId`, (b) understandability, (c) still visually mirroring if we immediately return a singleton, and (d) flexibility for more than just `ErrorInst`. But TBH I'd probably still have written `is_error()` if it didn't require addressing the cross-header cycle. Then I tried `SemIR::InstId::Is<SemIR::ErrorInst>`, which generally worked with types but generated the complaint that it didn't shorten *all* singleton uses. So pulling back on `::Is`, and instead just dropping `Singleton`.
42 lines
1.5 KiB
C++
42 lines
1.5 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/check/pointer_dereference.h"
|
|
|
|
#include "llvm/ADT/STLFunctionalExtras.h"
|
|
#include "toolchain/check/context.h"
|
|
#include "toolchain/check/convert.h"
|
|
#include "toolchain/check/inst.h"
|
|
#include "toolchain/parse/node_ids.h"
|
|
#include "toolchain/sem_ir/ids.h"
|
|
|
|
namespace Carbon::Check {
|
|
|
|
auto PerformPointerDereference(
|
|
Context& context, Parse::AnyPointerDeferenceExprId node_id,
|
|
SemIR::InstId base_id,
|
|
llvm::function_ref<auto(SemIR::TypeId not_pointer_type_id)->void>
|
|
diagnose_not_pointer) -> SemIR::InstId {
|
|
// TODO: Once we have a finalized design for a pointer interface, use
|
|
//
|
|
// HandleUnaryOperator(context, node_id, {"Pointer", "Dereference"});
|
|
//
|
|
// to convert to a pointer value.
|
|
base_id = ConvertToValueExpr(context, base_id);
|
|
auto type_id = context.types().GetUnqualifiedType(
|
|
context.insts().Get(base_id).type_id());
|
|
auto result_type_id = SemIR::ErrorInst::TypeId;
|
|
if (auto pointer_type =
|
|
context.types().TryGetAs<SemIR::PointerType>(type_id)) {
|
|
result_type_id =
|
|
context.types().GetTypeIdForTypeInstId(pointer_type->pointee_id);
|
|
} else if (type_id != SemIR::ErrorInst::TypeId) {
|
|
diagnose_not_pointer(type_id);
|
|
}
|
|
return AddInst<SemIR::Deref>(
|
|
context, node_id, {.type_id = result_type_id, .pointer_id = base_id});
|
|
}
|
|
|
|
} // namespace Carbon::Check
|