Refactor TargetOptions initialization into a single place.
[oota-llvm.git] / tools / llvm-lto / llvm-lto.cpp
1 //===-- llvm-lto: a simple command-line program to link modules with LTO --===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This program takes in a list of bitcode files, links them, performs link-time
11 // optimization, and outputs an object file.
12 //
13 //===----------------------------------------------------------------------===//
14
15 #include "llvm/ADT/StringSet.h"
16 #include "llvm/CodeGen/CommandFlags.h"
17 #include "llvm/LTO/LTOCodeGenerator.h"
18 #include "llvm/LTO/LTOModule.h"
19 #include "llvm/Support/CommandLine.h"
20 #include "llvm/Support/ManagedStatic.h"
21 #include "llvm/Support/PrettyStackTrace.h"
22 #include "llvm/Support/Signals.h"
23 #include "llvm/Support/TargetSelect.h"
24 #include "llvm/Support/raw_ostream.h"
25
26 using namespace llvm;
27
28 static cl::opt<bool>
29 DisableOpt("disable-opt", cl::init(false),
30   cl::desc("Do not run any optimization passes"));
31
32 static cl::opt<bool>
33 DisableInline("disable-inlining", cl::init(false),
34   cl::desc("Do not run the inliner pass"));
35
36 static cl::opt<bool>
37 DisableGVNLoadPRE("disable-gvn-loadpre", cl::init(false),
38   cl::desc("Do not run the GVN load PRE pass"));
39
40 static cl::list<std::string>
41 InputFilenames(cl::Positional, cl::OneOrMore,
42   cl::desc("<input bitcode files>"));
43
44 static cl::opt<std::string>
45 OutputFilename("o", cl::init(""),
46   cl::desc("Override output filename"),
47   cl::value_desc("filename"));
48
49 static cl::list<std::string>
50 ExportedSymbols("exported-symbol",
51   cl::desc("Symbol to export from the resulting object file"),
52   cl::ZeroOrMore);
53
54 static cl::list<std::string>
55 DSOSymbols("dso-symbol",
56   cl::desc("Symbol to put in the symtab in the resulting dso"),
57   cl::ZeroOrMore);
58
59 namespace {
60 struct ModuleInfo {
61   std::vector<bool> CanBeHidden;
62 };
63 }
64
65 int main(int argc, char **argv) {
66   // Print a stack trace if we signal out.
67   sys::PrintStackTraceOnErrorSignal();
68   PrettyStackTraceProgram X(argc, argv);
69
70   llvm_shutdown_obj Y; // Call llvm_shutdown() on exit.
71   cl::ParseCommandLineOptions(argc, argv, "llvm LTO linker\n");
72
73   // Initialize the configured targets.
74   InitializeAllTargets();
75   InitializeAllTargetMCs();
76   InitializeAllAsmPrinters();
77   InitializeAllAsmParsers();
78
79   // set up the TargetOptions for the machine
80   TargetOptions Options = InitTargetOptionsFromCodeGenFlags();
81
82   unsigned BaseArg = 0;
83
84   LTOCodeGenerator CodeGen;
85
86   CodeGen.setCodePICModel(LTO_CODEGEN_PIC_MODEL_DYNAMIC);
87   CodeGen.setDebugInfo(LTO_DEBUG_MODEL_DWARF);
88   CodeGen.setTargetOptions(Options);
89
90   llvm::StringSet<llvm::MallocAllocator> DSOSymbolsSet;
91   for (unsigned i = 0; i < DSOSymbols.size(); ++i)
92     DSOSymbolsSet.insert(DSOSymbols[i]);
93
94   std::vector<std::string> KeptDSOSyms;
95
96   for (unsigned i = BaseArg; i < InputFilenames.size(); ++i) {
97     std::string error;
98     OwningPtr<LTOModule> Module(LTOModule::makeLTOModule(InputFilenames[i].c_str(),
99                                                          Options, error));
100     if (!error.empty()) {
101       errs() << argv[0] << ": error loading file '" << InputFilenames[i]
102              << "': " << error << "\n";
103       return 1;
104     }
105
106
107     if (!CodeGen.addModule(Module.get(), error)) {
108       errs() << argv[0] << ": error adding file '" << InputFilenames[i]
109              << "': " << error << "\n";
110       return 1;
111     }
112
113     unsigned NumSyms = Module->getSymbolCount();
114     for (unsigned I = 0; I < NumSyms; ++I) {
115       StringRef Name = Module->getSymbolName(I);
116       if (!DSOSymbolsSet.count(Name))
117         continue;
118       lto_symbol_attributes Attrs = Module->getSymbolAttributes(I);
119       unsigned Scope = Attrs & LTO_SYMBOL_SCOPE_MASK;
120       if (Scope != LTO_SYMBOL_SCOPE_DEFAULT_CAN_BE_HIDDEN)
121         KeptDSOSyms.push_back(Name);
122     }
123   }
124
125   // Add all the exported symbols to the table of symbols to preserve.
126   for (unsigned i = 0; i < ExportedSymbols.size(); ++i)
127     CodeGen.addMustPreserveSymbol(ExportedSymbols[i].c_str());
128
129   // Add all the dso symbols to the table of symbols to expose.
130   for (unsigned i = 0; i < KeptDSOSyms.size(); ++i)
131     CodeGen.addMustPreserveSymbol(KeptDSOSyms[i].c_str());
132
133   if (!OutputFilename.empty()) {
134     size_t len = 0;
135     std::string ErrorInfo;
136     const void *Code = CodeGen.compile(&len, DisableOpt, DisableInline,
137                                        DisableGVNLoadPRE, ErrorInfo);
138     if (Code == NULL) {
139       errs() << argv[0]
140              << ": error compiling the code: " << ErrorInfo << "\n";
141       return 1;
142     }
143
144     raw_fd_ostream FileStream(OutputFilename.c_str(), ErrorInfo,
145                               sys::fs::F_Binary);
146     if (!ErrorInfo.empty()) {
147       errs() << argv[0] << ": error opening the file '" << OutputFilename
148              << "': " << ErrorInfo << "\n";
149       return 1;
150     }
151
152     FileStream.write(reinterpret_cast<const char *>(Code), len);
153   } else {
154     std::string ErrorInfo;
155     const char *OutputName = NULL;
156     if (!CodeGen.compile_to_file(&OutputName, DisableOpt, DisableInline,
157                                  DisableGVNLoadPRE, ErrorInfo)) {
158       errs() << argv[0]
159              << ": error compiling the code: " << ErrorInfo
160              << "\n";
161       return 1;
162     }
163
164     outs() << "Wrote native object file '" << OutputName << "'\n";
165   }
166
167   return 0;
168 }