]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/llvm/tools/lld/ELF/LTO.h
Update lld to trunk r290819 and resolve conflicts.
[FreeBSD/FreeBSD.git] / contrib / llvm / tools / lld / ELF / LTO.h
1 //===- LTO.h ----------------------------------------------------*- C++ -*-===//
2 //
3 //                             The LLVM Linker
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 file provides a way to combine bitcode files into one ELF
11 // file by compiling them using LLVM.
12 //
13 // If LTO is in use, your input files are not in regular ELF files
14 // but instead LLVM bitcode files. In that case, the linker has to
15 // convert bitcode files into the native format so that we can create
16 // an ELF file that contains native code. This file provides that
17 // functionality.
18 //
19 //===----------------------------------------------------------------------===//
20
21 #ifndef LLD_ELF_LTO_H
22 #define LLD_ELF_LTO_H
23
24 #include "lld/Core/LLVM.h"
25 #include "llvm/ADT/SmallString.h"
26 #include <memory>
27 #include <vector>
28
29 namespace llvm {
30 namespace lto {
31 class LTO;
32 }
33 }
34
35 namespace lld {
36 namespace elf {
37
38 class BitcodeFile;
39 class InputFile;
40
41 class BitcodeCompiler {
42 public:
43   BitcodeCompiler();
44   ~BitcodeCompiler();
45
46   void add(BitcodeFile &F);
47   std::vector<InputFile *> compile();
48
49 private:
50   std::unique_ptr<llvm::lto::LTO> LTOObj;
51   std::vector<SmallString<0>> Buff;
52 };
53 }
54 }
55
56 #endif