mirror of
https://github.com/carbon-language/carbon-lang.git
synced 2026-09-25 06:30:09 +01:00
Instead of injecting code to declare an `operator new`, generate AST for it directly. In order to use this, directly generate a `CXXNewExpr` rather than asking Clang to build one. This is less of a hack, and doesn't visibly leak an `operator new` declaration that inline C++ code or template instantiations might see. It also avoids generating a warning in C++26 and later that the `constexpr` declaration of `operator new` is used but not defined. Assisted-by: Gemini 3.1 Pro via Antigravity
71 lines
2.1 KiB
C++
71 lines
2.1 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
|
|
|
|
#ifndef CARBON_TOOLCHAIN_CHECK_CPP_CONTEXT_H_
|
|
#define CARBON_TOOLCHAIN_CHECK_CPP_CONTEXT_H_
|
|
|
|
#include <memory>
|
|
|
|
#include "clang/Basic/SourceLocation.h"
|
|
#include "clang/Frontend/CompilerInstance.h"
|
|
#include "clang/Frontend/FrontendAction.h"
|
|
#include "clang/Parse/Parser.h"
|
|
#include "common/check.h"
|
|
#include "llvm/ADT/SmallVector.h"
|
|
|
|
namespace Carbon::Check {
|
|
|
|
// Context for C++ code during check.
|
|
//
|
|
// This stores state for a Clang AST and Sema, as well as any additional
|
|
// information needed to perform mapping between Carbon and C++ types,
|
|
// declarations, and similar values.
|
|
class CppContext {
|
|
public:
|
|
explicit CppContext(clang::CompilerInstance& instance,
|
|
std::unique_ptr<clang::Parser> parser);
|
|
~CppContext();
|
|
|
|
auto ast_context() -> clang::ASTContext& { return *ast_context_; }
|
|
auto sema() -> clang::Sema& { return *sema_; }
|
|
auto parser() -> clang::Parser& { return *parser_; }
|
|
|
|
auto clang_mangle_context() -> clang::MangleContext&;
|
|
|
|
auto carbon_file_locations() -> llvm::SmallVector<clang::SourceLocation>& {
|
|
return carbon_file_locations_;
|
|
}
|
|
|
|
auto placement_new_decl() const -> clang::FunctionDecl* {
|
|
return placement_new_decl_;
|
|
}
|
|
void set_placement_new_decl(clang::FunctionDecl* decl) {
|
|
placement_new_decl_ = decl;
|
|
}
|
|
|
|
private:
|
|
// The Clang AST context.
|
|
clang::ASTContext* ast_context_;
|
|
|
|
// The Clang semantic analysis engine.
|
|
clang::Sema* sema_;
|
|
|
|
// The Clang parser.
|
|
std::unique_ptr<clang::Parser> parser_;
|
|
|
|
// Per-Carbon-file start locations for corresponding Clang source buffers.
|
|
// Owned and managed by code in location.cpp.
|
|
llvm::SmallVector<clang::SourceLocation> carbon_file_locations_;
|
|
|
|
// The Clang mangle context for the target in the ASTContext.
|
|
std::unique_ptr<clang::MangleContext> clang_mangle_context_;
|
|
|
|
// The cached placement new function declaration.
|
|
clang::FunctionDecl* placement_new_decl_ = nullptr;
|
|
};
|
|
|
|
} // namespace Carbon::Check
|
|
|
|
#endif // CARBON_TOOLCHAIN_CHECK_CPP_CONTEXT_H_
|