mirror of
https://github.com/AxioDL/lld.git
synced 2026-03-30 11:44:17 -07:00
3c5c20aa2e
Differential revision: https://reviews.llvm.org/D26320 git-svn-id: https://llvm.org/svn/llvm-project/lld/trunk@286030 91177308-0d34-0410-b5e6-96231b3b80d8
30 lines
849 B
C++
30 lines
849 B
C++
//===- Core/File.cpp - A Container of Atoms -------------------------------===//
|
|
//
|
|
// The LLVM Linker
|
|
//
|
|
// This file is distributed under the University of Illinois Open Source
|
|
// License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#include "lld/Core/File.h"
|
|
#include <mutex>
|
|
|
|
namespace lld {
|
|
|
|
File::~File() = default;
|
|
|
|
File::AtomVector<DefinedAtom> File::_noDefinedAtoms;
|
|
File::AtomVector<UndefinedAtom> File::_noUndefinedAtoms;
|
|
File::AtomVector<SharedLibraryAtom> File::_noSharedLibraryAtoms;
|
|
File::AtomVector<AbsoluteAtom> File::_noAbsoluteAtoms;
|
|
|
|
std::error_code File::parse() {
|
|
std::lock_guard<std::mutex> lock(_parseMutex);
|
|
if (!_lastError.hasValue())
|
|
_lastError = doParse();
|
|
return _lastError.getValue();
|
|
}
|
|
|
|
} // end namespace lld
|