blob: f43166c861b46e9875135ebd6899c2c818fc8206 [file] [log] [blame]
Reid Spencer4bdf1c92004-12-05 19:14:55 +00001//===- lib/Linker/LinkItems.cpp - Link LLVM objects and libraries ---------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file was developed by Reid Spencer and is distributed under the
6// University of Illinois Open Source License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file contains routines to handle linking together LLVM bytecode files,
11// and to handle annoying things like static libraries.
12//
13//===----------------------------------------------------------------------===//
14
15#include "llvm/Linker.h"
16#include "llvm/Module.h"
Reid Spencere84de292004-12-13 02:59:52 +000017
Reid Spencer4bdf1c92004-12-05 19:14:55 +000018using namespace llvm;
19
Reid Spencer4bdf1c92004-12-05 19:14:55 +000020// LinkItems - preserve link order for an arbitrary set of linkage items.
Reid Spencere84de292004-12-13 02:59:52 +000021bool
22Linker::LinkInItems(const ItemList& Items) {
Reid Spencer4bdf1c92004-12-05 19:14:55 +000023 // For each linkage item ...
Reid Spencere84de292004-12-13 02:59:52 +000024 for (ItemList::const_iterator I = Items.begin(), E = Items.end();
Reid Spencer4bdf1c92004-12-05 19:14:55 +000025 I != E; ++I) {
26 if (I->second) {
27 // Link in the library suggested.
Reid Spencere84de292004-12-13 02:59:52 +000028 if (LinkInLibrary(I->first))
29 return true;
Reid Spencer4bdf1c92004-12-05 19:14:55 +000030 } else {
Reid Spencere84de292004-12-13 02:59:52 +000031 if (LinkInFile(sys::Path(I->first)))
32 return true;
Reid Spencer4bdf1c92004-12-05 19:14:55 +000033 }
34 }
35
36 // At this point we have processed all the link items provided to us. Since
37 // we have an aggregated module at this point, the dependent libraries in
38 // that module should also be aggregated with duplicates eliminated. This is
39 // now the time to process the dependent libraries to resolve any remaining
40 // symbols.
Reid Spencere84de292004-12-13 02:59:52 +000041 const Module::LibraryListType& DepLibs = Composite->getLibraries();
Reid Spencer4bdf1c92004-12-05 19:14:55 +000042 for (Module::LibraryListType::const_iterator I = DepLibs.begin(),
43 E = DepLibs.end(); I != E; ++I) {
Reid Spencere84de292004-12-13 02:59:52 +000044 if(LinkInLibrary(*I))
45 return true;
Reid Spencer4bdf1c92004-12-05 19:14:55 +000046 }
47
Reid Spencere84de292004-12-13 02:59:52 +000048 return false;
Reid Spencer4bdf1c92004-12-05 19:14:55 +000049}