//===- 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" usingnamespacellvm; usingnamespacelld; // 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() { … } CommonLinkerContext::~CommonLinkerContext() { … } CommonLinkerContext &lld::commonContext() { … } bool lld::hasContext() { … } void CommonLinkerContext::destroy() { … }