/
githubmirror
/
carbon-lang
Обзор
Документация
Войти
/
githubmirror
/
carbon-lang
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
trunk
toolchain/check/cpp/overload_resolution.h
53 строки
2 KB
Chandler Carruth
Don't include expensive Clang headers in widely-included headers (#7319)
07 июн 2026, 19:27
Не верифицирован
07 июн 2026, 19:27
7901fb3
Код
Авторство
О чём код?
// 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_CHECK_CPP_OVERLOAD_RESOLUTION_H_ #define CARBON_TOOLCHAIN_CHECK_CPP_OVERLOAD_RESOLUTION_H_ #include "clang/Sema/Overload.h" #include "toolchain/check/context.h" #include "toolchain/sem_ir/function.h" #include "toolchain/sem_ir/ids.h" namespace Carbon::Check { // Checks whether a selected overload is accessible and diagnoses if not. // `parent_scope_id`, if specified, describes the scope that was named to find // the overload. If unspecified, we assume the overload was found in the class // that it is a direct member of, rather than a derived class. auto CheckCppOverloadAccess( Context& context, SemIR::LocId loc_id, clang::DeclAccessPair overload, SemIR::KnownInstId<SemIR::FunctionDecl> overload_inst_id, SemIR::NameScopeId parent_scope_id = SemIR::NameScopeId::None) -> void; // Returns the passing mode to use for a parameter given the implicit // conversion sequence and the argument expression. auto GetPassingModeForCppParameter(const clang::ImplicitConversionSequence& ics, const clang::Expr* arg_expr) -> SemIR::ClangDeclSignature::PassingMode; auto ComputeClangDeclSignatureFromBestViableFunction( Context& context, clang::OverloadCandidateSet::iterator candidate, clang::Expr* self_expr, llvm::ArrayRef<clang::Expr*> arg_exprs, SemIR::ClangDeclSignature::Kind kind = SemIR::ClangDeclSignature::Normal) -> SemIR::ClangDeclSignatureId; // Resolves which function to call using Clang overload resolution. Returns an // instruction referring to that function, or an error instruction if overload // resolution failed. // // A set with a single non-templated function goes through the same rules for // overload resolution. This is to make sure that calls that have no viable // implicit conversion sequence are rejected even when an implicit conversion is // possible. Keeping the same behavior here for consistency and supporting // migrations so that the migrated callers from C++ remain valid. auto PerformCppOverloadResolution( Context& context, SemIR::LocId loc_id, const SemIR::CppOverloadSet& overload_set, llvm::ArrayRef<SemIR::InstId> template_arg_ids, SemIR::InstId self_id, llvm::ArrayRef<SemIR::InstId> arg_ids) -> SemIR::InstId; } // namespace Carbon::Check #endif // CARBON_TOOLCHAIN_CHECK_CPP_OVERLOAD_RESOLUTION_H_