freebsd-src/contrib/llvm-project/lld/Common/CommonLinkerContext.cpp
Dimitry Andric 81ad626541 Merge llvm-project main llvmorg-15-init-15358-g53dc0f10787
This updates llvm, clang, compiler-rt, libc++, libunwind, lld, lldb and
openmp to llvmorg-15-init-15358-g53dc0f10787.

PR:		265425
MFC after:	2 weeks
2023-02-08 20:02:26 +01:00

52 lines
1.5 KiB
C++

//===- CommonLinkerContext.cpp --------------------------------------------===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
#include "lld/Common/CommonLinkerContext.h"
#include "lld/Common/ErrorHandler.h"
#include "lld/Common/Memory.h"
#include "llvm/CodeGen/CommandFlags.h"
using namespace llvm;
using namespace lld;
// Reference to the current LLD instance. This is a temporary situation, until
// we pass this context everywhere by reference, or we make it a thread_local,
// as in https://reviews.llvm.org/D108850?id=370678 where each thread can be
// associated with a LLD instance. Only then will LLD be free of global
// state.
static CommonLinkerContext *lctx;
CommonLinkerContext::CommonLinkerContext() {
lctx = this;
// Fire off the static initializations in CGF's constructor.
codegen::RegisterCodeGenFlags CGF;
}
CommonLinkerContext::~CommonLinkerContext() {
assert(lctx);
// Explicitly call the destructors since we created the objects with placement
// new in SpecificAlloc::create().
for (auto &it : instances)
it.second->~SpecificAllocBase();
lctx = nullptr;
}
CommonLinkerContext &lld::commonContext() {
assert(lctx);
return *lctx;
}
bool lld::hasContext() { return lctx != nullptr; }
void CommonLinkerContext::destroy() {
if (lctx == nullptr)
return;
delete lctx;
}