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