Implement extension of sign bits for negative values in the uint64_t
[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/Linker.h"
16 #include "llvm/Module.h"
17 #include "llvm/Analysis/Verifier.h"
18 #include "llvm/Bytecode/Reader.h"
19 #include "llvm/Bytecode/Writer.h"
20 #include "llvm/Support/CommandLine.h"
21 #include "llvm/Support/ManagedStatic.h"
22 #include "llvm/Support/Streams.h"
23 #include "llvm/System/Signals.h"
24 #include "llvm/System/Path.h"
25 #include <fstream>
26 #include <iostream>
27 #include <memory>
28 using namespace llvm;
29
30 static cl::list<std::string>
31 InputFilenames(cl::Positional, cl::OneOrMore,
32                cl::desc("<input bytecode files>"));
33
34 static cl::opt<std::string>
35 OutputFilename("o", cl::desc("Override output filename"), cl::init("-"),
36                cl::value_desc("filename"));
37
38 static cl::opt<bool> Force("f", cl::desc("Overwrite output files"));
39
40 static cl::opt<bool>
41 Verbose("v", cl::desc("Print information about actions taken"));
42
43 static cl::opt<bool>
44 DumpAsm("d", cl::desc("Print assembly as linked"), cl::Hidden);
45
46 static cl::opt<bool> NoCompress("disable-compression", cl::init(true),
47        cl::desc("Don't compress the generated bytecode"));
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   sys::Path Filename;
54   if (!Filename.set(FN)) {
55     cerr << "Invalid file name: '" << FN << "'\n";
56     return std::auto_ptr<Module>();
57   }
58
59   std::string ErrorMessage;
60   if (Filename.exists()) {
61     if (Verbose) cerr << "Loading '" << Filename.c_str() << "'\n";
62     Module* Result = ParseBytecodeFile(Filename.toString(), 
63                                        Compressor::decompressToNewBuffer,
64                                        &ErrorMessage);
65     if (Result) return std::auto_ptr<Module>(Result);   // Load successful!
66
67     if (Verbose) {
68       cerr << "Error opening bytecode file: '" << Filename.c_str() << "'";
69       if (ErrorMessage.size()) cerr << ": " << ErrorMessage;
70       cerr << "\n";
71     }
72   } else {
73     cerr << "Bytecode file: '" << Filename.c_str() << "' does not exist.\n";
74   }
75
76   return std::auto_ptr<Module>();
77 }
78
79 int main(int argc, char **argv) {
80   llvm_shutdown_obj X;  // Call llvm_shutdown() on exit.
81   try {
82     cl::ParseCommandLineOptions(argc, argv, " llvm linker\n");
83     sys::PrintStackTraceOnErrorSignal();
84     assert(InputFilenames.size() > 0 && "OneOrMore is not working");
85
86     unsigned BaseArg = 0;
87     std::string ErrorMessage;
88
89     std::auto_ptr<Module> Composite(LoadFile(InputFilenames[BaseArg]));
90     if (Composite.get() == 0) {
91       cerr << argv[0] << ": error loading file '"
92            << InputFilenames[BaseArg] << "'\n";
93       return 1;
94     }
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) {
99         cerr << argv[0] << ": error loading file '" <<InputFilenames[i]<< "'\n";
100         return 1;
101       }
102
103       if (Verbose) cerr << "Linking in '" << InputFilenames[i] << "'\n";
104
105       if (Linker::LinkModules(Composite.get(), M.get(), &ErrorMessage)) {
106         cerr << argv[0] << ": link error in '" << InputFilenames[i]
107              << "': " << ErrorMessage << "\n";
108         return 1;
109       }
110     }
111
112     // TODO: Iterate over the -l list and link in any modules containing
113     // global symbols that have not been resolved so far.
114
115     if (DumpAsm) cerr << "Here's the assembly:\n" << *Composite.get();
116
117     // FIXME: cout is not binary!
118     std::ostream *Out = &std::cout;  // Default to printing to stdout...
119     if (OutputFilename != "-") {
120       if (!Force && std::ifstream(OutputFilename.c_str())) {
121         // If force is not specified, make sure not to overwrite a file!
122         cerr << argv[0] << ": error opening '" << OutputFilename
123              << "': file exists!\n"
124              << "Use -f command line argument to force output\n";
125         return 1;
126       }
127       std::ios::openmode io_mode = std::ios::out | std::ios::trunc |
128                                    std::ios::binary;
129       Out = new std::ofstream(OutputFilename.c_str(), io_mode);
130       if (!Out->good()) {
131         cerr << argv[0] << ": error opening '" << OutputFilename << "'!\n";
132         return 1;
133       }
134
135       // Make sure that the Out file gets unlinked from the disk if we get a
136       // SIGINT
137       sys::RemoveFileOnSignal(sys::Path(OutputFilename));
138     }
139
140     if (verifyModule(*Composite.get())) {
141       cerr << argv[0] << ": linked module is broken!\n";
142       return 1;
143     }
144
145     if (Verbose) cerr << "Writing bytecode...\n";
146     OStream L(*Out);
147     WriteBytecodeToFile(Composite.get(), L, !NoCompress);
148
149     if (Out != &std::cout) delete Out;
150     return 0;
151   } catch (const std::string& msg) {
152     cerr << argv[0] << ": " << msg << "\n";
153   } catch (...) {
154     cerr << argv[0] << ": Unexpected unknown exception occurred.\n";
155   }
156   return 1;
157 }