diff options
author | Rui Ueyama <ruiu@google.com> | 2014-04-02 05:03:40 +0000 |
---|---|---|
committer | Rui Ueyama <ruiu@google.com> | 2014-04-02 05:03:40 +0000 |
commit | eb4b54349d1917e7054cdcb1360f1b5a054c09ef (patch) | |
tree | 8605ca199c4dd9f0d19189a71df7a7de904e9eed /lld/lib/Core/LinkingContext.cpp | |
parent | 2895496852ea2adf9be8418aad101eee2b063f7f (diff) | |
download | bcm5719-llvm-eb4b54349d1917e7054cdcb1360f1b5a054c09ef.tar.gz bcm5719-llvm-eb4b54349d1917e7054cdcb1360f1b5a054c09ef.zip |
Move nextFile() from LinkingContext to InputGraph.
LinkingContext and InputGraph are unnecessarily entangled. Most linker
input file data, e.g. the vector containing input files, the next index
of the input file, etc. are managed by InputGraph, but only the current
input file is for no obvious reason managed by LinkingContext.
This patch is to move code from LinkingContext to InputGraph to fix it.
It's now clear who's reponsible for managing input file state, which is
InputGraph, and LinkingContext is now free from that responsibility.
It improves the readability as we now have fewer dependencies between
classes. No functionality change.
Differential Revision: http://llvm-reviews.chandlerc.com/D3259
llvm-svn: 205394
Diffstat (limited to 'lld/lib/Core/LinkingContext.cpp')
-rw-r--r-- | lld/lib/Core/LinkingContext.cpp | 34 |
1 files changed, 1 insertions, 33 deletions
diff --git a/lld/lib/Core/LinkingContext.cpp b/lld/lib/Core/LinkingContext.cpp index d92ef27968c..7be470404e0 100644 --- a/lld/lib/Core/LinkingContext.cpp +++ b/lld/lib/Core/LinkingContext.cpp @@ -25,8 +25,7 @@ LinkingContext::LinkingContext() _warnIfCoalesableAtomsHaveDifferentLoadName(false), _printRemainingUndefines(true), _allowRemainingUndefines(false), _logInputFiles(false), _allowShlibUndefines(false), - _outputFileType(OutputFileType::Default), _currentInputElement(nullptr), - _nextOrdinal(0) {} + _outputFileType(OutputFileType::Default), _nextOrdinal(0) {} LinkingContext::~LinkingContext() {} @@ -83,37 +82,6 @@ void LinkingContext::createInternalFiles( result.push_back(std::move(internalFile)); } -void LinkingContext::setResolverState(uint32_t state) { - _currentInputElement->setResolveState(state); -} - -ErrorOr<File &> LinkingContext::nextFile() { - // When nextFile() is called for the first time, _currentInputElement is not - // initialized. Initialize it with the first element of the input graph. - if (_currentInputElement == nullptr) { - ErrorOr<InputElement *> elem = inputGraph().getNextInputElement(); - if (elem.getError() == InputGraphError::no_more_elements) - return make_error_code(InputGraphError::no_more_files); - _currentInputElement = *elem; - } - - // Otherwise, try to get the next file of _currentInputElement. If the current - // input element points to an archive file, and there's a file left in the - // archive, it will succeed. If not, try to get the next file in the input - // graph. - for (;;) { - ErrorOr<File &> nextFile = _currentInputElement->getNextFile(); - if (nextFile.getError() != InputGraphError::no_more_files) - return std::move(nextFile); - - ErrorOr<InputElement *> elem = inputGraph().getNextInputElement(); - if (elem.getError() == InputGraphError::no_more_elements || - *elem == nullptr) - return make_error_code(InputGraphError::no_more_files); - _currentInputElement = *elem; - } -} - void LinkingContext::addPasses(PassManager &pm) {} } // end namespace lld |