Peter Collingbourne | 88fae0e | 2013-09-19 22:15:52 +0000 | [diff] [blame] | 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 | |
Rafael Espindola | c13c9e5 | 2013-09-30 16:39:19 +0000 | [diff] [blame] | 15 | #include "llvm/CodeGen/CommandFlags.h" |
Peter Collingbourne | cc48854 | 2013-09-24 23:52:22 +0000 | [diff] [blame] | 16 | #include "llvm/LTO/LTOCodeGenerator.h" |
| 17 | #include "llvm/LTO/LTOModule.h" |
Peter Collingbourne | 88fae0e | 2013-09-19 22:15:52 +0000 | [diff] [blame] | 18 | #include "llvm/Support/CommandLine.h" |
| 19 | #include "llvm/Support/ManagedStatic.h" |
| 20 | #include "llvm/Support/PrettyStackTrace.h" |
| 21 | #include "llvm/Support/Signals.h" |
| 22 | #include "llvm/Support/raw_ostream.h" |
Peter Collingbourne | cc48854 | 2013-09-24 23:52:22 +0000 | [diff] [blame] | 23 | #include "llvm/Support/TargetSelect.h" |
Peter Collingbourne | 88fae0e | 2013-09-19 22:15:52 +0000 | [diff] [blame] | 24 | |
| 25 | using namespace llvm; |
| 26 | |
Rafael Espindola | c13c9e5 | 2013-09-30 16:39:19 +0000 | [diff] [blame] | 27 | static cl::opt<bool> |
| 28 | DisableOpt("disable-opt", cl::init(false), |
| 29 | cl::desc("Do not run any optimization passes")); |
Peter Collingbourne | 88fae0e | 2013-09-19 22:15:52 +0000 | [diff] [blame] | 30 | |
Rafael Espindola | c13c9e5 | 2013-09-30 16:39:19 +0000 | [diff] [blame] | 31 | static cl::opt<bool> |
| 32 | DisableInline("disable-inlining", cl::init(false), |
| 33 | cl::desc("Do not run the inliner pass")); |
| 34 | |
| 35 | static cl::opt<bool> |
| 36 | DisableGVNLoadPRE("disable-gvn-loadpre", cl::init(false), |
| 37 | cl::desc("Do not run the GVN load PRE pass")); |
| 38 | |
| 39 | static cl::list<std::string> |
| 40 | InputFilenames(cl::Positional, cl::OneOrMore, |
| 41 | cl::desc("<input bitcode files>")); |
| 42 | |
| 43 | static cl::opt<std::string> |
| 44 | OutputFilename("o", cl::init(""), |
| 45 | cl::desc("Override output filename"), |
| 46 | cl::value_desc("filename")); |
Peter Collingbourne | 88fae0e | 2013-09-19 22:15:52 +0000 | [diff] [blame] | 47 | |
| 48 | int main(int argc, char **argv) { |
| 49 | // Print a stack trace if we signal out. |
| 50 | sys::PrintStackTraceOnErrorSignal(); |
| 51 | PrettyStackTraceProgram X(argc, argv); |
| 52 | |
| 53 | llvm_shutdown_obj Y; // Call llvm_shutdown() on exit. |
| 54 | cl::ParseCommandLineOptions(argc, argv, "llvm LTO linker\n"); |
| 55 | |
Peter Collingbourne | cc48854 | 2013-09-24 23:52:22 +0000 | [diff] [blame] | 56 | // Initialize the configured targets. |
| 57 | InitializeAllTargets(); |
| 58 | InitializeAllTargetMCs(); |
| 59 | InitializeAllAsmPrinters(); |
| 60 | InitializeAllAsmParsers(); |
| 61 | |
Rafael Espindola | c13c9e5 | 2013-09-30 16:39:19 +0000 | [diff] [blame] | 62 | // set up the TargetOptions for the machine |
| 63 | TargetOptions Options; |
| 64 | Options.LessPreciseFPMADOption = EnableFPMAD; |
| 65 | Options.NoFramePointerElim = DisableFPElim; |
| 66 | Options.AllowFPOpFusion = FuseFPOps; |
| 67 | Options.UnsafeFPMath = EnableUnsafeFPMath; |
| 68 | Options.NoInfsFPMath = EnableNoInfsFPMath; |
| 69 | Options.NoNaNsFPMath = EnableNoNaNsFPMath; |
| 70 | Options.HonorSignDependentRoundingFPMathOption = |
| 71 | EnableHonorSignDependentRoundingFPMath; |
| 72 | Options.UseSoftFloat = GenerateSoftFloatCalls; |
| 73 | if (FloatABIForCalls != FloatABI::Default) |
| 74 | Options.FloatABIType = FloatABIForCalls; |
| 75 | Options.NoZerosInBSS = DontPlaceZerosInBSS; |
| 76 | Options.GuaranteedTailCallOpt = EnableGuaranteedTailCallOpt; |
| 77 | Options.DisableTailCalls = DisableTailCalls; |
| 78 | Options.StackAlignmentOverride = OverrideStackAlignment; |
| 79 | Options.TrapFuncName = TrapFuncName; |
| 80 | Options.PositionIndependentExecutable = EnablePIE; |
| 81 | Options.EnableSegmentedStacks = SegmentedStacks; |
| 82 | Options.UseInitArray = UseInitArray; |
| 83 | |
Peter Collingbourne | 88fae0e | 2013-09-19 22:15:52 +0000 | [diff] [blame] | 84 | unsigned BaseArg = 0; |
Peter Collingbourne | 88fae0e | 2013-09-19 22:15:52 +0000 | [diff] [blame] | 85 | |
Peter Collingbourne | cc48854 | 2013-09-24 23:52:22 +0000 | [diff] [blame] | 86 | LTOCodeGenerator CodeGen; |
Peter Collingbourne | 88fae0e | 2013-09-19 22:15:52 +0000 | [diff] [blame] | 87 | |
Peter Collingbourne | cc48854 | 2013-09-24 23:52:22 +0000 | [diff] [blame] | 88 | CodeGen.setCodePICModel(LTO_CODEGEN_PIC_MODEL_DYNAMIC); |
| 89 | CodeGen.setDebugInfo(LTO_DEBUG_MODEL_DWARF); |
Rafael Espindola | c13c9e5 | 2013-09-30 16:39:19 +0000 | [diff] [blame] | 90 | CodeGen.setTargetOptions(Options); |
Peter Collingbourne | 88fae0e | 2013-09-19 22:15:52 +0000 | [diff] [blame] | 91 | |
| 92 | for (unsigned i = BaseArg; i < InputFilenames.size(); ++i) { |
Peter Collingbourne | cc48854 | 2013-09-24 23:52:22 +0000 | [diff] [blame] | 93 | std::string error; |
| 94 | OwningPtr<LTOModule> Module(LTOModule::makeLTOModule(InputFilenames[i].c_str(), |
Rafael Espindola | c13c9e5 | 2013-09-30 16:39:19 +0000 | [diff] [blame] | 95 | Options, error)); |
Peter Collingbourne | cc48854 | 2013-09-24 23:52:22 +0000 | [diff] [blame] | 96 | if (!error.empty()) { |
Peter Collingbourne | 88fae0e | 2013-09-19 22:15:52 +0000 | [diff] [blame] | 97 | errs() << argv[0] << ": error loading file '" << InputFilenames[i] |
Peter Collingbourne | cc48854 | 2013-09-24 23:52:22 +0000 | [diff] [blame] | 98 | << "': " << error << "\n"; |
Peter Collingbourne | 88fae0e | 2013-09-19 22:15:52 +0000 | [diff] [blame] | 99 | return 1; |
| 100 | } |
| 101 | |
Peter Collingbourne | cc48854 | 2013-09-24 23:52:22 +0000 | [diff] [blame] | 102 | |
| 103 | if (!CodeGen.addModule(Module.get(), error)) { |
Peter Collingbourne | 88fae0e | 2013-09-19 22:15:52 +0000 | [diff] [blame] | 104 | errs() << argv[0] << ": error adding file '" << InputFilenames[i] |
Peter Collingbourne | cc48854 | 2013-09-24 23:52:22 +0000 | [diff] [blame] | 105 | << "': " << error << "\n"; |
Peter Collingbourne | 88fae0e | 2013-09-19 22:15:52 +0000 | [diff] [blame] | 106 | return 1; |
| 107 | } |
Peter Collingbourne | 88fae0e | 2013-09-19 22:15:52 +0000 | [diff] [blame] | 108 | } |
| 109 | |
| 110 | if (!OutputFilename.empty()) { |
| 111 | size_t len = 0; |
Peter Collingbourne | cc48854 | 2013-09-24 23:52:22 +0000 | [diff] [blame] | 112 | std::string ErrorInfo; |
Rafael Espindola | c13c9e5 | 2013-09-30 16:39:19 +0000 | [diff] [blame] | 113 | const void *Code = CodeGen.compile(&len, DisableOpt, DisableInline, |
| 114 | DisableGVNLoadPRE, ErrorInfo); |
Peter Collingbourne | 88fae0e | 2013-09-19 22:15:52 +0000 | [diff] [blame] | 115 | if (Code == NULL) { |
| 116 | errs() << argv[0] |
Peter Collingbourne | cc48854 | 2013-09-24 23:52:22 +0000 | [diff] [blame] | 117 | << ": error compiling the code: " << ErrorInfo << "\n"; |
Peter Collingbourne | 88fae0e | 2013-09-19 22:15:52 +0000 | [diff] [blame] | 118 | return 1; |
| 119 | } |
| 120 | |
Peter Collingbourne | 88fae0e | 2013-09-19 22:15:52 +0000 | [diff] [blame] | 121 | raw_fd_ostream FileStream(OutputFilename.c_str(), ErrorInfo); |
| 122 | if (!ErrorInfo.empty()) { |
| 123 | errs() << argv[0] << ": error opening the file '" << OutputFilename |
| 124 | << "': " << ErrorInfo << "\n"; |
| 125 | return 1; |
| 126 | } |
| 127 | |
| 128 | FileStream.write(reinterpret_cast<const char *>(Code), len); |
| 129 | } else { |
Peter Collingbourne | cc48854 | 2013-09-24 23:52:22 +0000 | [diff] [blame] | 130 | std::string ErrorInfo; |
Peter Collingbourne | 88fae0e | 2013-09-19 22:15:52 +0000 | [diff] [blame] | 131 | const char *OutputName = NULL; |
Rafael Espindola | c13c9e5 | 2013-09-30 16:39:19 +0000 | [diff] [blame] | 132 | if (!CodeGen.compile_to_file(&OutputName, DisableOpt, DisableInline, |
| 133 | DisableGVNLoadPRE, ErrorInfo)) { |
Peter Collingbourne | 88fae0e | 2013-09-19 22:15:52 +0000 | [diff] [blame] | 134 | errs() << argv[0] |
Peter Collingbourne | cc48854 | 2013-09-24 23:52:22 +0000 | [diff] [blame] | 135 | << ": error compiling the code: " << ErrorInfo |
Peter Collingbourne | 88fae0e | 2013-09-19 22:15:52 +0000 | [diff] [blame] | 136 | << "\n"; |
| 137 | return 1; |
| 138 | } |
| 139 | |
| 140 | outs() << "Wrote native object file '" << OutputName << "'\n"; |
| 141 | } |
| 142 | |
Peter Collingbourne | 88fae0e | 2013-09-19 22:15:52 +0000 | [diff] [blame] | 143 | return 0; |
| 144 | } |