mirror of
https://github.com/intel/llvm.git
synced 2026-01-31 16:29:50 +08:00
Having clarified that executing the SerializeToHsaco pass can depend on a ROCm installation, switch from calling lld as a library to using the copy of lld guaranteed to be included in a ROCm install. This removes the workaround introduced in D119277 Reviewed By: whchung Differential Revision: https://reviews.llvm.org/D119463
46 lines
1.4 KiB
C++
46 lines
1.4 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"
|
|
|
|
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; }
|
|
|
|
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;
|
|
}
|