[ORC] Add std::tuple support to SimplePackedSerialization.
[llvm-project.git] / lld / COFF / LTO.h
bloba2b321df7901bf8ed2c1cd05bd33922632d0ade9
1 //===- LTO.h ----------------------------------------------------*- C++ -*-===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
8 //
9 // This file provides a way to combine bitcode files into one COFF
10 // file by compiling them using LLVM.
12 // If LTO is in use, your input files are not in regular COFF files
13 // but instead LLVM bitcode files. In that case, the linker has to
14 // convert bitcode files into the native format so that we can create
15 // a COFF file that contains native code. This file provides that
16 // functionality.
18 //===----------------------------------------------------------------------===//
20 #ifndef LLD_COFF_LTO_H
21 #define LLD_COFF_LTO_H
23 #include "lld/Common/LLVM.h"
24 #include "llvm/ADT/DenseSet.h"
25 #include "llvm/ADT/SmallString.h"
26 #include "llvm/Support/raw_ostream.h"
27 #include <memory>
28 #include <vector>
30 namespace llvm {
31 namespace lto {
32 class LTO;
36 namespace lld {
37 namespace coff {
39 class BitcodeFile;
40 class InputFile;
42 class BitcodeCompiler {
43 public:
44 BitcodeCompiler();
45 ~BitcodeCompiler();
47 void add(BitcodeFile &f);
48 std::vector<InputFile *> compile();
50 private:
51 std::unique_ptr<llvm::lto::LTO> ltoObj;
52 std::vector<SmallString<0>> buf;
53 std::vector<std::unique_ptr<MemoryBuffer>> files;
54 std::unique_ptr<llvm::raw_fd_ostream> indexFile;
55 llvm::DenseSet<StringRef> thinIndices;
60 #endif