]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/llvm/tools/lld/ELF/LTO.h
Merge OpenSSL 1.1.1a.
[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/Common/LLVM.h"
25 #include "llvm/ADT/DenseSet.h"
26 #include "llvm/ADT/SmallString.h"
27 #include <memory>
28 #include <vector>
29
30 namespace llvm {
31 namespace lto {
32 class LTO;
33 }
34 } // namespace llvm
35
36 namespace lld {
37 namespace elf {
38
39 class BitcodeFile;
40 class InputFile;
41
42 class BitcodeCompiler {
43 public:
44   BitcodeCompiler();
45   ~BitcodeCompiler();
46
47   void add(BitcodeFile &F);
48   std::vector<InputFile *> compile();
49
50 private:
51   std::unique_ptr<llvm::lto::LTO> LTOObj;
52   std::vector<SmallString<0>> Buff;
53   std::vector<std::unique_ptr<MemoryBuffer>> Files;
54   llvm::DenseSet<StringRef> UsedStartStop;
55 };
56 } // namespace elf
57 } // namespace lld
58
59 #endif