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