#ifndef LLD_COFF_LTO_H
#define LLD_COFF_LTO_H
#include "lld/Common/LLVM.h"
#include "llvm/ADT/DenseSet.h"
#include "llvm/ADT/SmallString.h"
#include "llvm/Support/raw_ostream.h"
#include <memory>
#include <vector>
namespace llvm::lto {
struct Config;
class LTO;
}
namespace lld::coff {
class BitcodeFile;
class InputFile;
class COFFLinkerContext;
class BitcodeCompiler {
public:
BitcodeCompiler(COFFLinkerContext &ctx);
~BitcodeCompiler();
void add(BitcodeFile &f);
std::vector<InputFile *> compile();
private:
std::unique_ptr<llvm::lto::LTO> ltoObj;
std::vector<std::pair<std::string, SmallString<0>>> buf;
std::vector<std::unique_ptr<MemoryBuffer>> files;
std::vector<std::string> file_names;
std::unique_ptr<llvm::raw_fd_ostream> indexFile;
llvm::DenseSet<StringRef> thinIndices;
std::string getThinLTOOutputFile(StringRef path);
llvm::lto::Config createConfig();
COFFLinkerContext &ctx;
};
}
#endif