mirror of
https://github.com/carbon-language/carbon-lang.git
synced 2026-09-24 22:02:23 +01:00
Support is added for all overloaded operator interfaces in the current design apart from `Assign`, which is going to require some more work to properly handle, given that primitive assignment currently has a special implementation for quite a few builtin types. As we don't have support for generics yet -- in particular, generic interfaces -- there is no support for `*With` interfaces, but homogenous interfaces such as `Add` are supported instead. Factor out building of call expressions so that overloaded operators can generate calls. Switch a few places from using specific kinds of NodeId to a general NodeId. Because overloaded operators and other things like implicit conversions can result in member access and function calls, those operations can't require a specific kind of NodeId. Add import support for associated entities, and fix import support for interfaces and symbolic bindings. We now import interfaces in two steps, first importing a forward declaration then a definition, just like we do for classes. For symbolic bindings, we ensure that each BindSymbolicName is imported only once, because its ID is used as its symbolic identity. This is necessary because we (only) support operator interfaces that are defined in an imported Carbon package for now. The entire contents of `check/operator.cpp` should probably be rethought. In particular, doing a lot of name lookups on each operator is likely to be bad for performance. But this gets us to the point where overloaded operators are basically working, which seems like a good place to iterate from. For now, the tests that the individual operators map to the right interfaces are mostly generated by a script, but that's just because I'm expecting a fair bit of churn in how we define the prelude and the `impl`s -- in particular, when we add support for `AddWith`, we'll need to update all the tests. The plan is to remove the script once things settle down. --------- Co-authored-by: Jon Ross-Perkins <jperkins@google.com> Co-authored-by: Carbon Infra Bot <carbon-external-infra@google.com>
37 lines
1.3 KiB
C++
37 lines
1.3 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 "llvm/ADT/STLFunctionalExtras.h"
|
|
#include "toolchain/check/context.h"
|
|
#include "toolchain/check/convert.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.GetUnqualifiedType(context.insts().Get(base_id).type_id());
|
|
auto result_type_id = SemIR::TypeId::Error;
|
|
if (auto pointer_type =
|
|
context.types().TryGetAs<SemIR::PointerType>(type_id)) {
|
|
result_type_id = pointer_type->pointee_id;
|
|
} else if (type_id != SemIR::TypeId::Error) {
|
|
diagnose_not_pointer(type_id);
|
|
}
|
|
return context.AddInst({node_id, SemIR::Deref{result_type_id, base_id}});
|
|
}
|
|
|
|
} // namespace Carbon::Check
|