Excise the -L option since llvm-link should not do library searches. It
[oota-llvm.git] / tools / llvm-link / llvm-link.cpp
1 //===- llvm-link.cpp - Low-level LLVM linker ------------------------------===//
2 // 
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file was developed by the LLVM research group and is distributed under
6 // the University of Illinois Open Source License. See LICENSE.TXT for details.
7 // 
8 //===----------------------------------------------------------------------===//
9 //
10 // This utility may be invoked in the following manner:
11 //  llvm-link a.bc b.bc c.bc -o x.bc
12 //
13 //===----------------------------------------------------------------------===//
14
15 #include "llvm/Module.h"
16 #include "llvm/Analysis/Verifier.h"
17 #include "llvm/Bytecode/Reader.h"
18 #include "llvm/Bytecode/Writer.h"
19 #include "llvm/Support/Linker.h"
20 #include "llvm/Support/CommandLine.h"
21 #include "llvm/System/Signals.h"
22 #include "llvm/System/Path.h"
23 #include <fstream>
24 #include <iostream>
25 #include <memory>
26
27 using namespace llvm;
28
29 static cl::list<std::string>
30 InputFilenames(cl::Positional, cl::OneOrMore,
31                cl::desc("<input bytecode files>"));
32
33 static cl::opt<std::string>
34 OutputFilename("o", cl::desc("Override output filename"), cl::init("-"),
35                cl::value_desc("filename"));
36
37 static cl::opt<bool> Force("f", cl::desc("Overwrite output files"));
38
39 static cl::opt<bool>
40 Verbose("v", cl::desc("Print information about actions taken"));
41
42 static cl::opt<bool>
43 DumpAsm("d", cl::desc("Print assembly as linked"), cl::Hidden);
44
45 // LoadFile - Read the specified bytecode file in and return it.  This routine
46 // searches the link path for the specified file to try to find it...
47 //
48 static inline std::auto_ptr<Module> LoadFile(const std::string &FN) {
49   sys::Path Filename;
50   if (!Filename.set_file(FN)) {
51     std::cerr << "Invalid file name: '" << FN << "'\n";
52     return std::auto_ptr<Module>();
53   }
54
55   std::string ErrorMessage;
56   if (Filename.exists()) {
57     if (Verbose) std::cerr << "Loading '" << Filename.c_str() << "'\n";
58     Module* Result = ParseBytecodeFile(Filename.get(), &ErrorMessage);
59     if (Result) return std::auto_ptr<Module>(Result);   // Load successful!
60
61     if (Verbose) {
62       std::cerr << "Error opening bytecode file: '" << Filename.c_str() << "'";
63       if (ErrorMessage.size()) std::cerr << ": " << ErrorMessage;
64       std::cerr << "\n";
65     }
66   } else {
67     std::cerr << "Bytecode file: '" << Filename.c_str() 
68               << "' does not exist.\n";
69   }
70
71   return std::auto_ptr<Module>();
72 }
73
74 int main(int argc, char **argv) {
75   cl::ParseCommandLineOptions(argc, argv, " llvm linker\n");
76   sys::PrintStackTraceOnErrorSignal();
77   assert(InputFilenames.size() > 0 && "OneOrMore is not working");
78
79   unsigned BaseArg = 0;
80   std::string ErrorMessage;
81
82   std::auto_ptr<Module> Composite(LoadFile(InputFilenames[BaseArg]));
83   if (Composite.get() == 0) return 1;
84
85   for (unsigned i = BaseArg+1; i < InputFilenames.size(); ++i) {
86     std::auto_ptr<Module> M(LoadFile(InputFilenames[i]));
87     if (M.get() == 0) return 1;
88
89     if (Verbose) std::cerr << "Linking in '" << InputFilenames[i] << "'\n";
90
91     if (LinkModules(Composite.get(), M.get(), &ErrorMessage)) {
92       std::cerr << argv[0] << ": link error in '" << InputFilenames[i]
93                 << "': " << ErrorMessage << "\n";
94       return 1;
95     }
96   }
97
98   // TODO: Iterate over the -l list and link in any modules containing
99   // global symbols that have not been resolved so far.
100
101   if (DumpAsm) std::cerr << "Here's the assembly:\n" << Composite.get();
102
103   std::ostream *Out = &std::cout;  // Default to printing to stdout...
104   if (OutputFilename != "-") {
105     if (!Force && std::ifstream(OutputFilename.c_str())) {
106       // If force is not specified, make sure not to overwrite a file!
107       std::cerr << argv[0] << ": error opening '" << OutputFilename
108                 << "': file exists!\n"
109                 << "Use -f command line argument to force output\n";
110       return 1;
111     }
112     Out = new std::ofstream(OutputFilename.c_str());
113     if (!Out->good()) {
114       std::cerr << argv[0] << ": error opening '" << OutputFilename << "'!\n";
115       return 1;
116     }
117
118     // Make sure that the Out file gets unlinked from the disk if we get a
119     // SIGINT
120     sys::RemoveFileOnSignal(OutputFilename);
121   }
122
123   if (verifyModule(*Composite.get())) {
124     std::cerr << argv[0] << ": linked module is broken!\n";
125     return 1;
126   }
127
128   if (Verbose) std::cerr << "Writing bytecode...\n";
129   WriteBytecodeToFile(Composite.get(), *Out);
130
131   if (Out != &std::cout) delete Out;
132   return 0;
133 }