diff options
author | Duncan P. N. Exon Smith <dexonsmith@apple.com> | 2015-04-22 04:08:22 +0000 |
---|---|---|
committer | Duncan P. N. Exon Smith <dexonsmith@apple.com> | 2015-04-22 04:08:22 +0000 |
commit | 0de129d42195bcc53ff8cf287d80a2b91c8cde16 (patch) | |
tree | 494adb1f2b70c4bf246f9958b2abe076bc94e09c | |
parent | 287231cb7a89ed7da152aef3ea86f893b62f6e59 (diff) | |
download | bcm5719-llvm-0de129d42195bcc53ff8cf287d80a2b91c8cde16.tar.gz bcm5719-llvm-0de129d42195bcc53ff8cf287d80a2b91c8cde16.zip |
llvm-link: Factor out loop over input files, NFC
Factor the loop for linking input files together into a combined module
into a separate function. This is in preparation for an upcoming patch
that runs the logic twice.
Patch by Luqman Aden!
llvm-svn: 235472
-rw-r--r-- | llvm/tools/llvm-link/llvm-link.cpp | 44 |
1 files changed, 26 insertions, 18 deletions
diff --git a/llvm/tools/llvm-link/llvm-link.cpp b/llvm/tools/llvm-link/llvm-link.cpp index bcefc0b507a..9f287e4fdb6 100644 --- a/llvm/tools/llvm-link/llvm-link.cpp +++ b/llvm/tools/llvm-link/llvm-link.cpp @@ -107,6 +107,30 @@ static void diagnosticHandler(const DiagnosticInfo &DI) { errs() << '\n'; } +static bool linkFiles(const char *argv0, LLVMContext &Context, Linker &L, + const cl::list<std::string> &Files) { + for (const auto &File : Files) { + std::unique_ptr<Module> M = loadFile(argv0, File, Context); + if (!M.get()) { + errs() << argv0 << ": error loading file '" << File << "'\n"; + return false; + } + + if (verifyModule(*M, &errs())) { + errs() << argv0 << ": " << File << ": error: input module is broken!\n"; + return false; + } + + if (Verbose) + errs() << "Linking in '" << File << "'\n"; + + if (L.linkInModule(M.get())) + return false; + } + + return true; +} + int main(int argc, char **argv) { // Print a stack trace if we signal out. sys::PrintStackTraceOnErrorSignal(); @@ -119,24 +143,8 @@ int main(int argc, char **argv) { auto Composite = make_unique<Module>("llvm-link", Context); Linker L(Composite.get(), diagnosticHandler); - for (unsigned i = 0; i < InputFilenames.size(); ++i) { - std::unique_ptr<Module> M = loadFile(argv[0], InputFilenames[i], Context); - if (!M.get()) { - errs() << argv[0] << ": error loading file '" <<InputFilenames[i]<< "'\n"; - return 1; - } - - if (verifyModule(*M, &errs())) { - errs() << argv[0] << ": " << InputFilenames[i] - << ": error: input module is broken!\n"; - return 1; - } - - if (Verbose) errs() << "Linking in '" << InputFilenames[i] << "'\n"; - - if (L.linkInModule(M.get())) - return 1; - } + if (!linkFiles(argv[0], Context, L, InputFilenames)) + return 1; if (DumpAsm) errs() << "Here's the assembly:\n" << *Composite; |