Changes for 64bit gcc
[oota-llvm.git] / tools / llvm-link / llvm-link.cpp
1 //===----------------------------------------------------------------------===//
2 // LLVM 'LINK' UTILITY 
3 //
4 // This utility may be invoked in the following manner:
5 //  link a.bc b.bc c.bc -o x.bc
6 //
7 // Alternatively, this can be used as an 'ar' tool as well.  If invoked as
8 // either 'ar' or 'llvm-ar', it accepts a 'rc' parameter as well.
9 //
10 //===----------------------------------------------------------------------===//
11
12 #include "llvm/Transforms/Utils/Linker.h"
13 #include "llvm/Bytecode/Reader.h"
14 #include "llvm/Bytecode/Writer.h"
15 #include "llvm/Module.h"
16 #include "Support/CommandLine.h"
17 #include "Support/Signals.h"
18 #include <fstream>
19 #include <memory>
20 #include <sys/types.h>     // For FileExists
21 #include <sys/stat.h>
22 #include <iostream>
23
24 using std::cerr;
25
26 cl::StringList InputFilenames("", "Load <arg> files, linking them together", 
27                               cl::OneOrMore);
28 cl::String OutputFilename("o", "Override output filename", cl::NoFlags, "-");
29 cl::Flag   Force         ("f", "Overwrite output files", cl::NoFlags, false);
30 cl::Flag   Verbose       ("v", "Print information about actions taken");
31 cl::Flag   DumpAsm       ("d", "Print assembly as linked", cl::Hidden, false);
32 cl::StringList LibPaths  ("L", "Specify a library search path", cl::ZeroOrMore);
33
34 // FileExists - Return true if the specified string is an openable file...
35 static inline bool FileExists(const std::string &FN) {
36   struct stat StatBuf;
37   return stat(FN.c_str(), &StatBuf) != -1;
38 }
39
40 // LoadFile - Read the specified bytecode file in and return it.  This routine
41 // searches the link path for the specified file to try to find it...
42 //
43 static inline std::auto_ptr<Module> LoadFile(const std::string &FN) {
44   std::string Filename = FN;
45   std::string ErrorMessage;
46
47   unsigned NextLibPathIdx = 0;
48   bool FoundAFile = false;
49
50   while (1) {
51     if (Verbose) cerr << "Loading '" << Filename << "'\n";
52     if (FileExists(Filename)) FoundAFile = true;
53     Module *Result = ParseBytecodeFile(Filename, &ErrorMessage);
54     if (Result) return std::auto_ptr<Module>(Result);   // Load successful!
55
56     if (Verbose) {
57       cerr << "Error opening bytecode file: '" << Filename << "'";
58       if (ErrorMessage.size()) cerr << ": " << ErrorMessage;
59       cerr << "\n";
60     }
61     
62     if (NextLibPathIdx == LibPaths.size()) break;
63     Filename = LibPaths[NextLibPathIdx++] + "/" + FN;
64   }
65
66   if (FoundAFile)
67     cerr << "Bytecode file '" << FN << "' corrupt!  "
68          << "Use 'link -v ...' for more info.\n";
69   else
70     cerr << "Could not locate bytecode file: '" << FN << "'\n";
71   return std::auto_ptr<Module>();
72 }
73
74
75
76
77 int main(int argc, char **argv) {
78   cl::ParseCommandLineOptions(argc, argv, " llvm linker\n",
79                               cl::EnableSingleLetterArgValue |
80                               cl::DisableSingleLetterArgGrouping);
81   assert(InputFilenames.size() > 0 && "OneOrMore is not working");
82
83   unsigned BaseArg = 0;
84   std::string ErrorMessage;
85
86   // TODO: TEST argv[0] for llvm-ar forms... for now, this is a huge hack.
87   if (InputFilenames.size() >= 3 && InputFilenames[0] == "rc" &&
88       OutputFilename == "-") {
89     BaseArg = 2;
90     OutputFilename = InputFilenames[1];
91   }
92
93   std::auto_ptr<Module> Composite(LoadFile(InputFilenames[BaseArg]));
94   if (Composite.get() == 0) return 1;
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) return 1;
99
100     if (Verbose) cerr << "Linking in '" << InputFilenames[i] << "'\n";
101
102     if (LinkModules(Composite.get(), M.get(), &ErrorMessage)) {
103       cerr << "Error linking in '" << InputFilenames[i] << "': "
104            << ErrorMessage << "\n";
105       return 1;
106     }
107   }
108
109   if (DumpAsm) 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       cerr << "Error opening '" << OutputFilename << "': 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       cerr << "Error opening '" << OutputFilename << "'!\n";
122       return 1;
123     }
124
125     // Make sure that the Out file gets unlink'd from the disk if we get a
126     // SIGINT
127     RemoveFileOnSignal(OutputFilename);
128   }
129
130   if (Verbose) cerr << "Writing bytecode...\n";
131   WriteBytecodeToFile(Composite.get(), *Out);
132
133   if (Out != &std::cout) delete Out;
134   return 0;
135 }