1b3dda790d32b9be90718f3e2460f0f3da271780
[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/Transforms/Utils/Linker.h"
20 #include "Support/CommandLine.h"
21 #include "Support/FileUtilities.h"
22 #include "Support/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   assert(InputFilenames.size() > 0 && "OneOrMore is not working");
88
89   unsigned BaseArg = 0;
90   std::string ErrorMessage;
91
92   std::auto_ptr<Module> Composite(LoadFile(InputFilenames[BaseArg]));
93   if (Composite.get() == 0) return 1;
94
95   for (unsigned i = BaseArg+1; i < InputFilenames.size(); ++i) {
96     std::auto_ptr<Module> M(LoadFile(InputFilenames[i]));
97     if (M.get() == 0) return 1;
98
99     if (Verbose) std::cerr << "Linking in '" << InputFilenames[i] << "'\n";
100
101     if (LinkModules(Composite.get(), M.get(), &ErrorMessage)) {
102       std::cerr << argv[0] << ": error linking in '" << InputFilenames[i]
103                 << "': " << ErrorMessage << "\n";
104       return 1;
105     }
106   }
107
108   if (DumpAsm) std::cerr << "Here's the assembly:\n" << Composite.get();
109
110   std::ostream *Out = &std::cout;  // Default to printing to stdout...
111   if (OutputFilename != "-") {
112     if (!Force && std::ifstream(OutputFilename.c_str())) {
113       // If force is not specified, make sure not to overwrite a file!
114       std::cerr << argv[0] << ": error opening '" << OutputFilename
115                 << "': file exists!\n"
116                 << "Use -f command line argument to force output\n";
117       return 1;
118     }
119     Out = new std::ofstream(OutputFilename.c_str());
120     if (!Out->good()) {
121       std::cerr << argv[0] << ": error opening '" << OutputFilename << "'!\n";
122       return 1;
123     }
124
125     // Make sure that the Out file gets unlinked from the disk if we get a
126     // SIGINT
127     RemoveFileOnSignal(OutputFilename);
128   }
129
130   if (verifyModule(*Composite.get())) {
131     std::cerr << argv[0] << ": linked module is broken!\n";
132     return 1;
133   }
134
135   if (Verbose) std::cerr << "Writing bytecode...\n";
136   WriteBytecodeToFile(Composite.get(), *Out);
137
138   if (Out != &std::cout) delete Out;
139   return 0;
140 }