https://github.com/jansvoboda11 updated https://github.com/llvm/llvm-project/pull/106271
>From f5f761adf9ec2f150e32dc42cd70143b5d91bd7a Mon Sep 17 00:00:00 2001 From: Jan Svoboda <jan_svob...@apple.com> Date: Tue, 27 Aug 2024 09:34:01 -0700 Subject: [PATCH 1/5] [clang] `TargetInfo` does not own `TargetOptions` --- clang-tools-extra/clangd/SystemIncludeExtractor.cpp | 2 +- clang-tools-extra/modularize/ModularizeUtilities.cpp | 2 +- clang/include/clang/Basic/TargetInfo.h | 7 +++---- clang/include/clang/Frontend/CompilerInstance.h | 3 +++ clang/lib/Basic/Targets.cpp | 7 ++++--- clang/lib/Frontend/ASTUnit.cpp | 2 +- clang/lib/Frontend/ChainedIncludesSource.cpp | 2 +- clang/lib/Frontend/CompilerInstance.cpp | 6 +++--- clang/lib/Interpreter/Interpreter.cpp | 2 +- clang/tools/clang-import-test/clang-import-test.cpp | 2 +- clang/unittests/Analysis/MacroExpansionContextTest.cpp | 2 +- clang/unittests/Basic/SourceManagerTest.cpp | 2 +- clang/unittests/CodeGen/TestCompiler.h | 3 +-- clang/unittests/Frontend/UtilsTest.cpp | 2 +- clang/unittests/Lex/HeaderSearchTest.cpp | 2 +- clang/unittests/Lex/LexerTest.cpp | 2 +- clang/unittests/Lex/ModuleDeclStateTest.cpp | 2 +- clang/unittests/Lex/PPCallbacksTest.cpp | 2 +- clang/unittests/Lex/PPConditionalDirectiveRecordTest.cpp | 2 +- clang/unittests/Lex/PPDependencyDirectivesTest.cpp | 2 +- clang/unittests/Lex/PPMemoryAllocationsTest.cpp | 2 +- 21 files changed, 30 insertions(+), 28 deletions(-) diff --git a/clang-tools-extra/clangd/SystemIncludeExtractor.cpp b/clang-tools-extra/clangd/SystemIncludeExtractor.cpp index d4b9b173d149da..58ddc29ae33b7c 100644 --- a/clang-tools-extra/clangd/SystemIncludeExtractor.cpp +++ b/clang-tools-extra/clangd/SystemIncludeExtractor.cpp @@ -256,7 +256,7 @@ bool isValidTarget(llvm::StringRef Triple) { DiagnosticsEngine Diags(new DiagnosticIDs, new DiagnosticOptions, new IgnoringDiagConsumer); llvm::IntrusiveRefCntPtr<TargetInfo> Target = - TargetInfo::CreateTargetInfo(Diags, TargetOpts); + TargetInfo::CreateTargetInfo(Diags, *TargetOpts); return bool(Target); } diff --git a/clang-tools-extra/modularize/ModularizeUtilities.cpp b/clang-tools-extra/modularize/ModularizeUtilities.cpp index b202b3aae8f8a3..517d7454d161b8 100644 --- a/clang-tools-extra/modularize/ModularizeUtilities.cpp +++ b/clang-tools-extra/modularize/ModularizeUtilities.cpp @@ -53,7 +53,7 @@ ModularizeUtilities::ModularizeUtilities(std::vector<std::string> &InputPaths, Diagnostics( new DiagnosticsEngine(DiagIDs, DiagnosticOpts.get(), &DC, false)), TargetOpts(new ModuleMapTargetOptions()), - Target(TargetInfo::CreateTargetInfo(*Diagnostics, TargetOpts)), + Target(TargetInfo::CreateTargetInfo(*Diagnostics, *TargetOpts)), FileMgr(new FileManager(FileSystemOpts)), SourceMgr(new SourceManager(*Diagnostics, *FileMgr, false)), HeaderInfo(new HeaderSearch(std::make_shared<HeaderSearchOptions>(), diff --git a/clang/include/clang/Basic/TargetInfo.h b/clang/include/clang/Basic/TargetInfo.h index a58fb5f9792720..63dd84991314eb 100644 --- a/clang/include/clang/Basic/TargetInfo.h +++ b/clang/include/clang/Basic/TargetInfo.h @@ -216,7 +216,7 @@ enum OpenCLTypeKind : uint8_t { /// class TargetInfo : public TransferrableTargetInfo, public RefCountedBase<TargetInfo> { - std::shared_ptr<TargetOptions> TargetOpts; + TargetOptions *TargetOpts; llvm::Triple Triple; protected: // Target values set by the ctor of the actual target implementation. Default @@ -302,9 +302,8 @@ class TargetInfo : public TransferrableTargetInfo, /// \param Opts - The options to use to initialize the target. The target may /// modify the options to canonicalize the target feature information to match /// what the backend expects. - static TargetInfo * - CreateTargetInfo(DiagnosticsEngine &Diags, - const std::shared_ptr<TargetOptions> &Opts); + static TargetInfo *CreateTargetInfo(DiagnosticsEngine &Diags, + TargetOptions &Opts); virtual ~TargetInfo(); diff --git a/clang/include/clang/Frontend/CompilerInstance.h b/clang/include/clang/Frontend/CompilerInstance.h index 3464654284f199..5e0a1ca3401678 100644 --- a/clang/include/clang/Frontend/CompilerInstance.h +++ b/clang/include/clang/Frontend/CompilerInstance.h @@ -86,6 +86,9 @@ class CompilerInstance : public ModuleLoader { /// The target being compiled for. IntrusiveRefCntPtr<TargetInfo> Target; + /// Options for the auxiliary target. + std::unique_ptr<TargetOptions> AuxTargetOpts; + /// Auxiliary Target info. IntrusiveRefCntPtr<TargetInfo> AuxTarget; diff --git a/clang/lib/Basic/Targets.cpp b/clang/lib/Basic/Targets.cpp index 0b8e565345b6a4..b54075ac5a3150 100644 --- a/clang/lib/Basic/Targets.cpp +++ b/clang/lib/Basic/Targets.cpp @@ -748,9 +748,10 @@ std::unique_ptr<TargetInfo> AllocateTarget(const llvm::Triple &Triple, using namespace clang::targets; /// CreateTargetInfo - Return the target info object for the specified target /// options. -TargetInfo * -TargetInfo::CreateTargetInfo(DiagnosticsEngine &Diags, - const std::shared_ptr<TargetOptions> &Opts) { +TargetInfo *TargetInfo::CreateTargetInfo(DiagnosticsEngine &Diags, + TargetOptions &OptsRef) { + TargetOptions *Opts = &OptsRef; + llvm::Triple Triple(llvm::Triple::normalize(Opts->Triple)); // Construct the target diff --git a/clang/lib/Frontend/ASTUnit.cpp b/clang/lib/Frontend/ASTUnit.cpp index 84e273a3949ef0..acc6d621c7f2fe 100644 --- a/clang/lib/Frontend/ASTUnit.cpp +++ b/clang/lib/Frontend/ASTUnit.cpp @@ -615,7 +615,7 @@ class ASTInfoCollector : public ASTReaderListener { this->TargetOpts = std::make_shared<TargetOptions>(TargetOpts); Target = - TargetInfo::CreateTargetInfo(PP.getDiagnostics(), this->TargetOpts); + TargetInfo::CreateTargetInfo(PP.getDiagnostics(), *this->TargetOpts); updated(); return false; diff --git a/clang/lib/Frontend/ChainedIncludesSource.cpp b/clang/lib/Frontend/ChainedIncludesSource.cpp index c1a9f25a8798c7..ad08ebdad4a1d2 100644 --- a/clang/lib/Frontend/ChainedIncludesSource.cpp +++ b/clang/lib/Frontend/ChainedIncludesSource.cpp @@ -127,7 +127,7 @@ IntrusiveRefCntPtr<ExternalSemaSource> clang::createChainedIncludesSource( Clang->setInvocation(std::move(CInvok)); Clang->setDiagnostics(Diags.get()); Clang->setTarget(TargetInfo::CreateTargetInfo( - Clang->getDiagnostics(), Clang->getInvocation().TargetOpts)); + Clang->getDiagnostics(), Clang->getInvocation().getTargetOpts())); Clang->createFileManager(); Clang->createSourceManager(Clang->getFileManager()); Clang->createPreprocessor(TU_Prefix); diff --git a/clang/lib/Frontend/CompilerInstance.cpp b/clang/lib/Frontend/CompilerInstance.cpp index 1364641a9b71e1..cde4c7e874e240 100644 --- a/clang/lib/Frontend/CompilerInstance.cpp +++ b/clang/lib/Frontend/CompilerInstance.cpp @@ -107,7 +107,7 @@ void CompilerInstance::setAuxTarget(TargetInfo *Value) { AuxTarget = Value; } bool CompilerInstance::createTarget() { // Create the target instance. setTarget(TargetInfo::CreateTargetInfo(getDiagnostics(), - getInvocation().TargetOpts)); + getInvocation().getTargetOpts())); if (!hasTarget()) return false; @@ -117,14 +117,14 @@ bool CompilerInstance::createTarget() { (getLangOpts().CUDA || getLangOpts().OpenMPIsTargetDevice || getLangOpts().SYCLIsDevice) && !getFrontendOpts().AuxTriple.empty()) { - auto TO = std::make_shared<TargetOptions>(); + auto &TO = AuxTargetOpts = std::make_unique<TargetOptions>(); TO->Triple = llvm::Triple::normalize(getFrontendOpts().AuxTriple); if (getFrontendOpts().AuxTargetCPU) TO->CPU = *getFrontendOpts().AuxTargetCPU; if (getFrontendOpts().AuxTargetFeatures) TO->FeaturesAsWritten = *getFrontendOpts().AuxTargetFeatures; TO->HostTriple = getTarget().getTriple().str(); - setAuxTarget(TargetInfo::CreateTargetInfo(getDiagnostics(), TO)); + setAuxTarget(TargetInfo::CreateTargetInfo(getDiagnostics(), *TO)); } if (!getTarget().hasStrictFP() && !getLangOpts().ExpStrictFP) { diff --git a/clang/lib/Interpreter/Interpreter.cpp b/clang/lib/Interpreter/Interpreter.cpp index 7209a33272ef22..723b7ebfa82249 100644 --- a/clang/lib/Interpreter/Interpreter.cpp +++ b/clang/lib/Interpreter/Interpreter.cpp @@ -119,7 +119,7 @@ CreateCI(const llvm::opt::ArgStringList &Argv) { Clang->getPreprocessorOpts().addRemappedFile("<<< inputs >>>", MB); Clang->setTarget(TargetInfo::CreateTargetInfo( - Clang->getDiagnostics(), Clang->getInvocation().TargetOpts)); + Clang->getDiagnostics(), Clang->getInvocation().getTargetOpts())); if (!Clang->hasTarget()) return llvm::createStringError(llvm::errc::not_supported, "Initialization failed. " diff --git a/clang/tools/clang-import-test/clang-import-test.cpp b/clang/tools/clang-import-test/clang-import-test.cpp index 2473e16a546dc0..98007ff25b44cf 100644 --- a/clang/tools/clang-import-test/clang-import-test.cpp +++ b/clang/tools/clang-import-test/clang-import-test.cpp @@ -206,7 +206,7 @@ std::unique_ptr<CompilerInstance> BuildCompilerInstance() { Ins->setInvocation(std::move(Inv)); TargetInfo *TI = TargetInfo::CreateTargetInfo( - Ins->getDiagnostics(), Ins->getInvocation().TargetOpts); + Ins->getDiagnostics(), Ins->getInvocation().getTargetOpts()); Ins->setTarget(TI); Ins->getTarget().adjust(Ins->getDiagnostics(), Ins->getLangOpts()); Ins->createFileManager(); diff --git a/clang/unittests/Analysis/MacroExpansionContextTest.cpp b/clang/unittests/Analysis/MacroExpansionContextTest.cpp index 54b209e7b28c18..0a555f36a09375 100644 --- a/clang/unittests/Analysis/MacroExpansionContextTest.cpp +++ b/clang/unittests/Analysis/MacroExpansionContextTest.cpp @@ -39,7 +39,7 @@ class MacroExpansionContextTest : public ::testing::Test { Diags(DiagID, DiagOpts.get(), new IgnoringDiagConsumer()), SourceMgr(Diags, FileMgr), TargetOpts(new TargetOptions()) { TargetOpts->Triple = "x86_64-pc-linux-unknown"; - Target = TargetInfo::CreateTargetInfo(Diags, TargetOpts); + Target = TargetInfo::CreateTargetInfo(Diags, *TargetOpts); LangOpts.CPlusPlus20 = 1; // For __VA_OPT__ } diff --git a/clang/unittests/Basic/SourceManagerTest.cpp b/clang/unittests/Basic/SourceManagerTest.cpp index 45840f5188cdcd..b9dcd74e3b4891 100644 --- a/clang/unittests/Basic/SourceManagerTest.cpp +++ b/clang/unittests/Basic/SourceManagerTest.cpp @@ -45,7 +45,7 @@ class SourceManagerTest : public ::testing::Test { SourceMgr(Diags, FileMgr), TargetOpts(new TargetOptions) { TargetOpts->Triple = "x86_64-apple-darwin11.1.0"; - Target = TargetInfo::CreateTargetInfo(Diags, TargetOpts); + Target = TargetInfo::CreateTargetInfo(Diags, *TargetOpts); } FileSystemOptions FileMgrOpts; diff --git a/clang/unittests/CodeGen/TestCompiler.h b/clang/unittests/CodeGen/TestCompiler.h index 891489cb511a4f..fa2cc10f8c3532 100644 --- a/clang/unittests/CodeGen/TestCompiler.h +++ b/clang/unittests/CodeGen/TestCompiler.h @@ -44,8 +44,7 @@ struct TestCompiler { Tr.setEnvironment(Triple::EnvironmentType::UnknownEnvironment); compiler.getTargetOpts().Triple = Tr.getTriple(); compiler.setTarget(clang::TargetInfo::CreateTargetInfo( - compiler.getDiagnostics(), - std::make_shared<clang::TargetOptions>(compiler.getTargetOpts()))); + compiler.getDiagnostics(), compiler.getTargetOpts())); const clang::TargetInfo &TInfo = compiler.getTarget(); PtrSize = TInfo.getPointerWidth(clang::LangAS::Default) / 8; diff --git a/clang/unittests/Frontend/UtilsTest.cpp b/clang/unittests/Frontend/UtilsTest.cpp index ae014d3f86b5aa..854fef9e39c360 100644 --- a/clang/unittests/Frontend/UtilsTest.cpp +++ b/clang/unittests/Frontend/UtilsTest.cpp @@ -33,7 +33,7 @@ TEST(BuildCompilerInvocationTest, RecoverMultipleJobs) { Opts.VFS = new llvm::vfs::InMemoryFileSystem(); std::unique_ptr<CompilerInvocation> CI = createInvocation(Args, Opts); ASSERT_TRUE(CI); - EXPECT_THAT(CI->TargetOpts->Triple, testing::StartsWith("i386-")); + EXPECT_THAT(CI->getTargetOpts().Triple, testing::StartsWith("i386-")); } // buildInvocationFromCommandLine should not translate -include to -include-pch, diff --git a/clang/unittests/Lex/HeaderSearchTest.cpp b/clang/unittests/Lex/HeaderSearchTest.cpp index b0375d5985f2ef..6bd5ca1331683d 100644 --- a/clang/unittests/Lex/HeaderSearchTest.cpp +++ b/clang/unittests/Lex/HeaderSearchTest.cpp @@ -36,7 +36,7 @@ class HeaderSearchTest : public ::testing::Test { Search(std::make_shared<HeaderSearchOptions>(), SourceMgr, Diags, LangOpts, Target.get()) { TargetOpts->Triple = "x86_64-apple-darwin11.1.0"; - Target = TargetInfo::CreateTargetInfo(Diags, TargetOpts); + Target = TargetInfo::CreateTargetInfo(Diags, *TargetOpts); } void addSearchDir(llvm::StringRef Dir) { diff --git a/clang/unittests/Lex/LexerTest.cpp b/clang/unittests/Lex/LexerTest.cpp index 47aa2c131a304d..3bfd101733b610 100644 --- a/clang/unittests/Lex/LexerTest.cpp +++ b/clang/unittests/Lex/LexerTest.cpp @@ -48,7 +48,7 @@ class LexerTest : public ::testing::Test { TargetOpts(new TargetOptions) { TargetOpts->Triple = "x86_64-apple-darwin11.1.0"; - Target = TargetInfo::CreateTargetInfo(Diags, TargetOpts); + Target = TargetInfo::CreateTargetInfo(Diags, *TargetOpts); } std::unique_ptr<Preprocessor> CreatePP(StringRef Source, diff --git a/clang/unittests/Lex/ModuleDeclStateTest.cpp b/clang/unittests/Lex/ModuleDeclStateTest.cpp index 15306ba22bf67e..ca277aca4be274 100644 --- a/clang/unittests/Lex/ModuleDeclStateTest.cpp +++ b/clang/unittests/Lex/ModuleDeclStateTest.cpp @@ -58,7 +58,7 @@ class ModuleDeclStateTest : public ::testing::Test { Diags(DiagID, new DiagnosticOptions, new IgnoringDiagConsumer()), SourceMgr(Diags, FileMgr), TargetOpts(new TargetOptions) { TargetOpts->Triple = "x86_64-unknown-linux-gnu"; - Target = TargetInfo::CreateTargetInfo(Diags, TargetOpts); + Target = TargetInfo::CreateTargetInfo(Diags, *TargetOpts); } std::unique_ptr<Preprocessor> diff --git a/clang/unittests/Lex/PPCallbacksTest.cpp b/clang/unittests/Lex/PPCallbacksTest.cpp index f3cdb1dfb28742..e9750d21a662a9 100644 --- a/clang/unittests/Lex/PPCallbacksTest.cpp +++ b/clang/unittests/Lex/PPCallbacksTest.cpp @@ -139,7 +139,7 @@ class PPCallbacksTest : public ::testing::Test { Diags(DiagID, DiagOpts.get(), new IgnoringDiagConsumer()), SourceMgr(Diags, FileMgr), TargetOpts(new TargetOptions()) { TargetOpts->Triple = "x86_64-apple-darwin11.1.0"; - Target = TargetInfo::CreateTargetInfo(Diags, TargetOpts); + Target = TargetInfo::CreateTargetInfo(Diags, *TargetOpts); } IntrusiveRefCntPtr<llvm::vfs::InMemoryFileSystem> InMemoryFileSystem; diff --git a/clang/unittests/Lex/PPConditionalDirectiveRecordTest.cpp b/clang/unittests/Lex/PPConditionalDirectiveRecordTest.cpp index 84c4cc3a1b2dc0..e9019fe298f704 100644 --- a/clang/unittests/Lex/PPConditionalDirectiveRecordTest.cpp +++ b/clang/unittests/Lex/PPConditionalDirectiveRecordTest.cpp @@ -36,7 +36,7 @@ class PPConditionalDirectiveRecordTest : public ::testing::Test { TargetOpts(new TargetOptions) { TargetOpts->Triple = "x86_64-apple-darwin11.1.0"; - Target = TargetInfo::CreateTargetInfo(Diags, TargetOpts); + Target = TargetInfo::CreateTargetInfo(Diags, *TargetOpts); } FileSystemOptions FileMgrOpts; diff --git a/clang/unittests/Lex/PPDependencyDirectivesTest.cpp b/clang/unittests/Lex/PPDependencyDirectivesTest.cpp index 6ff87f720a559f..83e42cacf188a1 100644 --- a/clang/unittests/Lex/PPDependencyDirectivesTest.cpp +++ b/clang/unittests/Lex/PPDependencyDirectivesTest.cpp @@ -35,7 +35,7 @@ class PPDependencyDirectivesTest : public ::testing::Test { Diags(DiagID, new DiagnosticOptions, new IgnoringDiagConsumer()), SourceMgr(Diags, FileMgr), TargetOpts(new TargetOptions) { TargetOpts->Triple = "x86_64-apple-macos12"; - Target = TargetInfo::CreateTargetInfo(Diags, TargetOpts); + Target = TargetInfo::CreateTargetInfo(Diags, *TargetOpts); } FileSystemOptions FileMgrOpts; diff --git a/clang/unittests/Lex/PPMemoryAllocationsTest.cpp b/clang/unittests/Lex/PPMemoryAllocationsTest.cpp index f7fb097b1f7faf..e500c1b4cd670e 100644 --- a/clang/unittests/Lex/PPMemoryAllocationsTest.cpp +++ b/clang/unittests/Lex/PPMemoryAllocationsTest.cpp @@ -31,7 +31,7 @@ class PPMemoryAllocationsTest : public ::testing::Test { Diags(DiagID, new DiagnosticOptions, new IgnoringDiagConsumer()), SourceMgr(Diags, FileMgr), TargetOpts(new TargetOptions) { TargetOpts->Triple = "x86_64-apple-darwin11.1.0"; - Target = TargetInfo::CreateTargetInfo(Diags, TargetOpts); + Target = TargetInfo::CreateTargetInfo(Diags, *TargetOpts); } FileSystemOptions FileMgrOpts; >From 885bfaf9c25fa395f20434a2e7ac37361379612c Mon Sep 17 00:00:00 2001 From: Jan Svoboda <jan_svob...@apple.com> Date: Tue, 27 Aug 2024 11:27:28 -0700 Subject: [PATCH 2/5] [clang] Extend the lifetime of `CompilerInvocation` in `ASTUnit::Parse()` --- clang/include/clang/Frontend/ASTUnit.h | 4 ++++ clang/lib/Frontend/ASTUnit.cpp | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/clang/include/clang/Frontend/ASTUnit.h b/clang/include/clang/Frontend/ASTUnit.h index 080844893c13c9..f223ea6372b9d1 100644 --- a/clang/include/clang/Frontend/ASTUnit.h +++ b/clang/include/clang/Frontend/ASTUnit.h @@ -140,6 +140,10 @@ class ASTUnit { /// LoadFromCommandLine available. std::shared_ptr<CompilerInvocation> Invocation; + /// Optional owned invocation, just used to keep the invocation alive for the + /// members initialized in transferASTDataFromCompilerInstance. + std::shared_ptr<CompilerInvocation> ModifiedInvocation; + /// Fake module loader: the AST unit doesn't need to load any modules. TrivialModuleLoader ModuleLoader; diff --git a/clang/lib/Frontend/ASTUnit.cpp b/clang/lib/Frontend/ASTUnit.cpp index acc6d621c7f2fe..9acebc67786e0e 100644 --- a/clang/lib/Frontend/ASTUnit.cpp +++ b/clang/lib/Frontend/ASTUnit.cpp @@ -1501,6 +1501,10 @@ void ASTUnit::transferASTDataFromCompilerInstance(CompilerInstance &CI) { Target = &CI.getTarget(); Reader = CI.getASTReader(); HadModuleLoaderFatalFailure = CI.hadModuleLoaderFatalFailure(); + if (Invocation != CI.getInvocationPtr()) { + // This happens when Parse creates a copy of \c Invocation to modify. + ModifiedInvocation = CI.getInvocationPtr(); + } } StringRef ASTUnit::getMainFileName() const { >From d4c2b2ea3410145bbde2fda4347d92303b58d1a1 Mon Sep 17 00:00:00 2001 From: Jan Svoboda <jan_svob...@apple.com> Date: Tue, 27 Aug 2024 11:41:15 -0700 Subject: [PATCH 3/5] [clangd] `Preamble` owns `TargetOptions` --- clang-tools-extra/clangd/Preamble.cpp | 7 +++++-- clang-tools-extra/clangd/Preamble.h | 2 +- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/clang-tools-extra/clangd/Preamble.cpp b/clang-tools-extra/clangd/Preamble.cpp index dd13b1a9e5613d..59917c9b64ecd9 100644 --- a/clang-tools-extra/clangd/Preamble.cpp +++ b/clang-tools-extra/clangd/Preamble.cpp @@ -714,7 +714,10 @@ buildPreamble(PathRef FileName, CompilerInvocation CI, Result->Marks = CapturedInfo.takeMarks(); Result->StatCache = StatCache; Result->MainIsIncludeGuarded = CapturedInfo.isMainFileIncludeGuarded(); - Result->TargetOpts = CI.TargetOpts; + // Move the options instead of copying them. The invocation doesn't need + // them anymore. + Result->TargetOpts = + std::make_unique<TargetOptions>(std::move(CI.getTargetOpts())); if (PreambleCallback) { trace::Span Tracer("Running PreambleCallback"); auto Ctx = CapturedInfo.takeLife(); @@ -936,7 +939,7 @@ void PreamblePatch::apply(CompilerInvocation &CI) const { // ParsedASTTest.PreambleWithDifferentTarget. // Make sure this is a deep copy, as the same Baseline might be used // concurrently. - *CI.TargetOpts = *Baseline->TargetOpts; + CI.getTargetOpts() = *Baseline->TargetOpts; // No need to map an empty file. if (PatchContents.empty()) diff --git a/clang-tools-extra/clangd/Preamble.h b/clang-tools-extra/clangd/Preamble.h index be8fed4ab88cdd..7f2eb233ee1aa4 100644 --- a/clang-tools-extra/clangd/Preamble.h +++ b/clang-tools-extra/clangd/Preamble.h @@ -103,7 +103,7 @@ struct PreambleData { // Target options used when building the preamble. Changes in target can cause // crashes when deserializing preamble, this enables consumers to use the // same target (without reparsing CompileCommand). - std::shared_ptr<TargetOptions> TargetOpts = nullptr; + std::unique_ptr<TargetOptions> TargetOpts = nullptr; PrecompiledPreamble Preamble; std::vector<Diag> Diags; // Processes like code completions and go-to-definitions will need #include >From aa6116b35bff2956348901a259aa784615d52faa Mon Sep 17 00:00:00 2001 From: Jan Svoboda <jan_svob...@apple.com> Date: Tue, 27 Aug 2024 11:41:38 -0700 Subject: [PATCH 4/5] [clang] Hide `CompilerInvocation::TargetOpts` --- clang/include/clang/Frontend/CompilerInvocation.h | 1 - 1 file changed, 1 deletion(-) diff --git a/clang/include/clang/Frontend/CompilerInvocation.h b/clang/include/clang/Frontend/CompilerInvocation.h index 9daa0a1ecf9488..e18498600799bc 100644 --- a/clang/include/clang/Frontend/CompilerInvocation.h +++ b/clang/include/clang/Frontend/CompilerInvocation.h @@ -268,7 +268,6 @@ class CompilerInvocation : public CompilerInvocationBase { /// Base class internals. /// @{ using CompilerInvocationBase::LangOpts; - using CompilerInvocationBase::TargetOpts; using CompilerInvocationBase::DiagnosticOpts; std::shared_ptr<HeaderSearchOptions> getHeaderSearchOptsPtr() { return HSOpts; >From aa23cc22c2d8e73747bba9f4a7888c76250255c7 Mon Sep 17 00:00:00 2001 From: Jan Svoboda <jan_svob...@apple.com> Date: Tue, 27 Aug 2024 15:59:19 -0700 Subject: [PATCH 5/5] Document lifetime on `CreateTargetInfo()` --- clang/include/clang/Basic/TargetInfo.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clang/include/clang/Basic/TargetInfo.h b/clang/include/clang/Basic/TargetInfo.h index 63dd84991314eb..29b5e3f4ff8e45 100644 --- a/clang/include/clang/Basic/TargetInfo.h +++ b/clang/include/clang/Basic/TargetInfo.h @@ -301,7 +301,7 @@ class TargetInfo : public TransferrableTargetInfo, /// /// \param Opts - The options to use to initialize the target. The target may /// modify the options to canonicalize the target feature information to match - /// what the backend expects. + /// what the backend expects. These must outlive the returned TargetInfo. static TargetInfo *CreateTargetInfo(DiagnosticsEngine &Diags, TargetOptions &Opts); _______________________________________________ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits