Linker.h moved to include/llvm/Support
[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 "Support/CommandLine.h"
21 #include "Support/FileUtilities.h"
22 #include "llvm/System/Signals.h"
23 #include <fstream>
24 #include <memory>
25
26 using namespace llvm;
27
28 static cl::list<std::string>
29 InputFilenames(cl::Positional, cl::OneOrMore,
30                cl::desc("<input bytecode files>"));
31
32 static cl::opt<std::string>
33 OutputFilename("o", cl::desc("Override output filename"), cl::init("-"),
34                cl::value_desc("filename"));
35
36 static cl::opt<bool> Force("f", cl::desc("Overwrite output files"));
37
38 static cl::opt<bool>
39 Verbose("v", cl::desc("Print information about actions taken"));
40
41 static cl::opt<bool>
42 DumpAsm("d", cl::desc("Print assembly as linked"), cl::Hidden);
43
44 static cl::list<std::string>
45 LibPaths("L", cl::desc("Specify a library search path"), cl::ZeroOrMore,
46          cl::value_desc("directory"), cl::Prefix);
47
48 // LoadFile - Read the specified bytecode file in and return it.  This routine
49 // searches the link path for the specified file to try to find it...
50 //
51 static inline std::auto_ptr<Module> LoadFile(const std::string &FN) {
52   std::string Filename = FN;
53   std::string ErrorMessage;
54
55   unsigned NextLibPathIdx = 0;
56   bool FoundAFile = false;
57
58   while (1) {
59     if (Verbose) std::cerr << "Loading '" << Filename << "'\n";
60     if (getFileSize(Filename) != -1) FoundAFile = true;
61     Module *Result = ParseBytecodeFile(Filename, &ErrorMessage);
62     if (Result) return std::auto_ptr<Module>(Result);   // Load successful!
63
64     if (Verbose) {
65       std::cerr << "Error opening bytecode file: '" << Filename << "'";
66       if (ErrorMessage.size()) std::cerr << ": " << ErrorMessage;
67       std::cerr << "\n";
68     }
69     
70     if (NextLibPathIdx == LibPaths.size()) break;
71     Filename = LibPaths[NextLibPathIdx++] + "/" + FN;
72   }
73
74   if (FoundAFile)
75     std::cerr << "Bytecode file '" << FN << "' corrupt!  "
76               << "Use 'llvm-link -v ...' for more info.\n";
77   else
78     std::cerr << "Could not locate bytecode file: '" << FN << "'\n";
79   return std::auto_ptr<Module>();
80 }
81
82
83
84
85 int main(int argc, char **argv) {
86   cl::ParseCommandLineOptions(argc, argv, " llvm linker\n");
87   PrintStackTraceOnErrorSignal();
88   assert(InputFilenames.size() > 0 && "OneOrMore is not working");
89
90   unsigned BaseArg = 0;
91   std::string ErrorMessage;
92
93   std::auto_ptr<Module> Composite(LoadFile(InputFilenames[BaseArg]));
94   if (Composite.get() == 0) return 1;
95
96   for (unsigned i = BaseArg+1; i < InputFilenames.size(); ++i) {
97     std::auto_ptr<Module> M(LoadFile(InputFilenames[i]));
98     if (M.get() == 0) return 1;
99
100     if (Verbose) std::cerr << "Linking in '" << InputFilenames[i] << "'\n";
101
102     if (LinkModules(Composite.get(), M.get(), &ErrorMessage)) {
103       std::cerr << argv[0] << ": error linking in '" << InputFilenames[i]
104                 << "': " << ErrorMessage << "\n";
105       return 1;
106     }
107   }
108
109   if (DumpAsm) std::cerr << "Here's the assembly:\n" << Composite.get();
110
111   std::ostream *Out = &std::cout;  // Default to printing to stdout...
112   if (OutputFilename != "-") {
113     if (!Force && std::ifstream(OutputFilename.c_str())) {
114       // If force is not specified, make sure not to overwrite a file!
115       std::cerr << argv[0] << ": error opening '" << OutputFilename
116                 << "': file exists!\n"
117                 << "Use -f command line argument to force output\n";
118       return 1;
119     }
120     Out = new std::ofstream(OutputFilename.c_str());
121     if (!Out->good()) {
122       std::cerr << argv[0] << ": error opening '" << OutputFilename << "'!\n";
123       return 1;
124     }
125
126     // Make sure that the Out file gets unlinked from the disk if we get a
127     // SIGINT
128     RemoveFileOnSignal(OutputFilename);
129   }
130
131   if (verifyModule(*Composite.get())) {
132     std::cerr << argv[0] << ": linked module is broken!\n";
133     return 1;
134   }
135
136   if (Verbose) std::cerr << "Writing bytecode...\n";
137   WriteBytecodeToFile(Composite.get(), *Out);
138
139   if (Out != &std::cout) delete Out;
140   return 0;
141 }