blob: 3b492145163e2b89823225b2c5e5d7551d14d991 [file] [log] [blame]
Chris Lattner825937d2003-09-20 02:42:54 +00001//===- llvm-link.cpp - Low-level LLVM linker ------------------------------===//
John Criswell09344dc2003-10-20 17:47:21 +00002//
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//===----------------------------------------------------------------------===//
Chris Lattner9d810e02001-10-13 07:06:23 +00009//
10// This utility may be invoked in the following manner:
Misha Brukmancf0c7442003-09-15 18:34:34 +000011// llvm-link a.bc b.bc c.bc -o x.bc
Chris Lattner9d810e02001-10-13 07:06:23 +000012//
13//===----------------------------------------------------------------------===//
14
Chris Lattneraa6a44f2003-08-28 16:25:34 +000015#include "llvm/Module.h"
16#include "llvm/Analysis/Verifier.h"
Chris Lattner9d810e02001-10-13 07:06:23 +000017#include "llvm/Bytecode/Reader.h"
18#include "llvm/Bytecode/Writer.h"
Chris Lattneraa6a44f2003-08-28 16:25:34 +000019#include "llvm/Transforms/Utils/Linker.h"
Chris Lattner5de22042001-11-27 00:03:19 +000020#include "Support/CommandLine.h"
Chris Lattnerc065ad82002-04-18 19:55:25 +000021#include "Support/Signals.h"
Chris Lattner5de22042001-11-27 00:03:19 +000022#include <fstream>
Chris Lattner9d810e02001-10-13 07:06:23 +000023#include <memory>
Chris Lattner5053ba92001-12-08 20:31:32 +000024#include <sys/types.h> // For FileExists
25#include <sys/stat.h>
Chris Lattner9d810e02001-10-13 07:06:23 +000026
Brian Gaeke960707c2003-11-11 22:41:34 +000027using namespace llvm;
28
Chris Lattnerf5cad152002-07-22 02:10:13 +000029static cl::list<std::string>
30InputFilenames(cl::Positional, cl::OneOrMore,
Chris Lattner17570e12002-07-22 02:18:09 +000031 cl::desc("<input bytecode files>"));
Chris Lattnerf5cad152002-07-22 02:10:13 +000032
33static cl::opt<std::string>
34OutputFilename("o", cl::desc("Override output filename"), cl::init("-"),
35 cl::value_desc("filename"));
36
37static cl::opt<bool> Force("f", cl::desc("Overwrite output files"));
38
39static cl::opt<bool>
40Verbose("v", cl::desc("Print information about actions taken"));
41
42static cl::opt<bool>
43DumpAsm("d", cl::desc("Print assembly as linked"), cl::Hidden);
44
45static cl::list<std::string>
46LibPaths("L", cl::desc("Specify a library search path"), cl::ZeroOrMore,
47 cl::value_desc("directory"), cl::Prefix);
Chris Lattner5053ba92001-12-08 20:31:32 +000048
49// FileExists - Return true if the specified string is an openable file...
Chris Lattner7f74a562002-01-20 22:54:45 +000050static inline bool FileExists(const std::string &FN) {
Chris Lattner5053ba92001-12-08 20:31:32 +000051 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//
Chris Lattner7f74a562002-01-20 22:54:45 +000058static inline std::auto_ptr<Module> LoadFile(const std::string &FN) {
59 std::string Filename = FN;
60 std::string ErrorMessage;
Chris Lattnerae31f5b2001-10-24 06:23:00 +000061
62 unsigned NextLibPathIdx = 0;
Chris Lattner5053ba92001-12-08 20:31:32 +000063 bool FoundAFile = false;
Chris Lattnerae31f5b2001-10-24 06:23:00 +000064
65 while (1) {
Chris Lattner02a16832003-05-22 20:13:16 +000066 if (Verbose) std::cerr << "Loading '" << Filename << "'\n";
Chris Lattner5053ba92001-12-08 20:31:32 +000067 if (FileExists(Filename)) FoundAFile = true;
Chris Lattnerae31f5b2001-10-24 06:23:00 +000068 Module *Result = ParseBytecodeFile(Filename, &ErrorMessage);
69 if (Result) return std::auto_ptr<Module>(Result); // Load successful!
70
71 if (Verbose) {
Chris Lattner02a16832003-05-22 20:13:16 +000072 std::cerr << "Error opening bytecode file: '" << Filename << "'";
73 if (ErrorMessage.size()) std::cerr << ": " << ErrorMessage;
74 std::cerr << "\n";
Chris Lattnerae31f5b2001-10-24 06:23:00 +000075 }
76
77 if (NextLibPathIdx == LibPaths.size()) break;
78 Filename = LibPaths[NextLibPathIdx++] + "/" + FN;
79 }
80
Chris Lattner5053ba92001-12-08 20:31:32 +000081 if (FoundAFile)
Chris Lattner02a16832003-05-22 20:13:16 +000082 std::cerr << "Bytecode file '" << FN << "' corrupt! "
Misha Brukmancf0c7442003-09-15 18:34:34 +000083 << "Use 'llvm-link -v ...' for more info.\n";
Chris Lattner5053ba92001-12-08 20:31:32 +000084 else
Chris Lattner02a16832003-05-22 20:13:16 +000085 std::cerr << "Could not locate bytecode file: '" << FN << "'\n";
Chris Lattnerae31f5b2001-10-24 06:23:00 +000086 return std::auto_ptr<Module>();
87}
Chris Lattner9d810e02001-10-13 07:06:23 +000088
Chris Lattner5053ba92001-12-08 20:31:32 +000089
90
91
Chris Lattner9d810e02001-10-13 07:06:23 +000092int main(int argc, char **argv) {
Chris Lattnerf5cad152002-07-22 02:10:13 +000093 cl::ParseCommandLineOptions(argc, argv, " llvm linker\n");
Chris Lattner9d810e02001-10-13 07:06:23 +000094 assert(InputFilenames.size() > 0 && "OneOrMore is not working");
95
Chris Lattnerae31f5b2001-10-24 06:23:00 +000096 unsigned BaseArg = 0;
Chris Lattner7f74a562002-01-20 22:54:45 +000097 std::string ErrorMessage;
Chris Lattnerae31f5b2001-10-24 06:23:00 +000098
Chris Lattnerae31f5b2001-10-24 06:23:00 +000099 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) {
Chris Lattner7f74a562002-01-20 22:54:45 +0000103 std::auto_ptr<Module> M(LoadFile(InputFilenames[i]));
Chris Lattnerae31f5b2001-10-24 06:23:00 +0000104 if (M.get() == 0) return 1;
Chris Lattnerebaa7882001-10-23 20:44:55 +0000105
Chris Lattner02a16832003-05-22 20:13:16 +0000106 if (Verbose) std::cerr << "Linking in '" << InputFilenames[i] << "'\n";
Chris Lattnerebaa7882001-10-23 20:44:55 +0000107
Chris Lattner9d810e02001-10-13 07:06:23 +0000108 if (LinkModules(Composite.get(), M.get(), &ErrorMessage)) {
Chris Lattner02a16832003-05-22 20:13:16 +0000109 std::cerr << argv[0] << ": error linking in '" << InputFilenames[i]
110 << "': " << ErrorMessage << "\n";
Chris Lattner9d810e02001-10-13 07:06:23 +0000111 return 1;
112 }
113 }
114
Chris Lattner02a16832003-05-22 20:13:16 +0000115 if (DumpAsm) std::cerr << "Here's the assembly:\n" << Composite.get();
Chris Lattnerd6311652001-10-14 23:23:33 +0000116
Anand Shuklafef32412002-06-25 21:57:48 +0000117 std::ostream *Out = &std::cout; // Default to printing to stdout...
Chris Lattner3aa32572003-06-13 16:10:26 +0000118 if (OutputFilename != "-") {
Chris Lattner0e11e542002-01-22 21:07:24 +0000119 if (!Force && std::ifstream(OutputFilename.c_str())) {
Chris Lattner7f74a562002-01-20 22:54:45 +0000120 // If force is not specified, make sure not to overwrite a file!
Chris Lattner02a16832003-05-22 20:13:16 +0000121 std::cerr << argv[0] << ": error opening '" << OutputFilename
122 << "': file exists!\n"
123 << "Use -f command line argument to force output\n";
Chris Lattner7f74a562002-01-20 22:54:45 +0000124 return 1;
125 }
126 Out = new std::ofstream(OutputFilename.c_str());
Chris Lattner9d810e02001-10-13 07:06:23 +0000127 if (!Out->good()) {
Chris Lattner02a16832003-05-22 20:13:16 +0000128 std::cerr << argv[0] << ": error opening '" << OutputFilename << "'!\n";
Chris Lattner9d810e02001-10-13 07:06:23 +0000129 return 1;
130 }
Chris Lattnerc065ad82002-04-18 19:55:25 +0000131
Misha Brukmand6769742003-10-10 17:56:49 +0000132 // Make sure that the Out file gets unlinked from the disk if we get a
Chris Lattnerc065ad82002-04-18 19:55:25 +0000133 // SIGINT
134 RemoveFileOnSignal(OutputFilename);
Chris Lattner9d810e02001-10-13 07:06:23 +0000135 }
136
Chris Lattneraa6a44f2003-08-28 16:25:34 +0000137 if (verifyModule(*Composite.get())) {
138 std::cerr << argv[0] << ": linked module is broken!\n";
139 return 1;
140 }
141
Chris Lattner02a16832003-05-22 20:13:16 +0000142 if (Verbose) std::cerr << "Writing bytecode...\n";
Chris Lattner9d810e02001-10-13 07:06:23 +0000143 WriteBytecodeToFile(Composite.get(), *Out);
144
Chris Lattner7f74a562002-01-20 22:54:45 +0000145 if (Out != &std::cout) delete Out;
Chris Lattner9d810e02001-10-13 07:06:23 +0000146 return 0;
147}