Hrm, if there is an error loading a file, try printing a message so the
[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) {
84     std::cerr << argv[0] << ": error loading file '"
85               << InputFilenames[BaseArg] << "'\n";
86     return 1;
87   }
88
89   for (unsigned i = BaseArg+1; i < InputFilenames.size(); ++i) {
90     std::auto_ptr<Module> M(LoadFile(InputFilenames[i]));
91     if (M.get() == 0) {
92       std::cerr << argv[0] << ": error loading file '"
93                 << InputFilenames[i] << "'\n";
94       return 1;
95     }
96
97     if (Verbose) std::cerr << "Linking in '" << InputFilenames[i] << "'\n";
98
99     if (LinkModules(Composite.get(), M.get(), &ErrorMessage)) {
100       std::cerr << argv[0] << ": link error in '" << InputFilenames[i]
101                 << "': " << ErrorMessage << "\n";
102       return 1;
103     }
104   }
105
106   // TODO: Iterate over the -l list and link in any modules containing
107   // global symbols that have not been resolved so far.
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     sys::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 }