Files
carbon-lang/toolchain/check/pointer_dereference.cpp
Richard SmithandJon Ross-Perkins 95903dc624 Generate thunks for functions in impls (#5390)
Generate a thunk when a function in an `impl` has a different signature
than the function in the interface. This follows the design in
[#3763](https://docs.carbon-lang.dev/proposals/p3763.html#impl-members-vs-interface-members),
although some of the checks described there are not yet implemented.

---------

Co-authored-by: Jon Ross-Perkins <jperkins@google.com>
2025-05-01 22:17:55 +00:00

41 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, SemIR::LocId loc_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, loc_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, loc_id, {.type_id = result_type_id, .pointer_id = base_id});
}
} // namespace Carbon::Check